> ## Documentation Index
> Fetch the complete documentation index at: https://docs.arc.io/llms.txt
> Use this file to discover all available pages before exploring further.

# How-to: Specify a recipient address

> Send bridged USDC to a different address on the destination chain

By default, bridged USDC arrives at the same address as your signing wallet on
the destination chain. For bridge transfers, you can specify a recipient address
so the tokens are minted to that address instead.

## Prerequisites

Before you begin, ensure that you've:

* [Installed the App Kit SDK](/app-kit/tutorials/installation)
* [Configured an adapter](/app-kit/tutorials/adapter-setups)

These are required so any example below runs with a valid `kit` and `adapter`.

## Specify a recipient

This example bridges 1.00 USDC from your wallet address on Ethereum Sepolia to a
different address on Arc Testnet:

```typescript TypeScript theme={null}
const result = await kit.bridge({
  from: { adapter, chain: "Ethereum_Sepolia" },
  to: {
    adapter,
    chain: "Arc_Testnet",
    recipientAddress: "0xRecipientAddress", // Specify a recipient address
  },
  amount: "1.00",
});
```
