Skip to main content
By default, tokens go to the same address as your signing wallet. Bridge Kit lets you specify a recipient wallet address so that you can send tokens to a different address. This example transfers 100 USDC from your wallet address on Arc Testnet to a different address on Base Sepolia:
TypeScript
// Send from your wallet address to a different recipient address on the destination chain
const result = await kit.bridge({
  from: { adapter, chain: "Arc_Testnet" },
  to: {
    adapter,
    chain: "Base_Sepolia",
    recipientAddress: "0x1234abcd1234abcd1234abcd1234abcd1234abcd", // Specify a recipient address
  },
  amount: "100.00",
});