Bridge Kit

Specify Recipient Address

By default, tokens are sent to the same address as your signing wallet. Bridge Kit lets you specify any recipient wallet address so that you can send tokens to an address different than the one signing the transaction.

This example code transfers 100 USDC from your wallet address on Ethereum to a different address on Base:

Typescript
// Send from your wallet address to a different recipient address on the destination chain
const result = await kit.bridge({
  from: { adapter, chain: "Ethereum" },
  to: {
    adapter,
    chain: "Base",
    recipientAddress: "0x1234abcd1234abcd1234abcd1234abcd1234abcd", // Specify a recipient address
  },
  amount: "100.0",
});
Did this page help you?
© 2023-2025 Circle Technology Services, LLC. All rights reserved.