Skip to main content
Bridge supports flexible liquidation addresses that can accept deposits across multiple EVM chains by using the same EVM address.
To get access to this feature, please contact your account manager!

Supported EVM Chain x Currency Pairs

Only these EVM chains are supported:
  • Arbitrum: USDC
  • Avalanche C-Chain: USDC
  • Base: EURC, USDB, USDC
  • Ethereum: USDB, USDC
  • Optimism: USDC
  • Polygon: USDC
  • WorldChain: USDC
We do not support returning unsupported currencies! Please be careful and guide your users not to send currencies we do not support outside of what is listed above.

API Examples

When creating the Liquidation Address, set chain="evm" to accept deposits from supported EVM chains to the same address.

You can deposit USDC from the above supported EVM chains (e.g., Base, Ethereum, Polygon) into the same address.
curl --location --request POST 'https://api.bridge.xyz/v0/customers/cust_alice/liquidation_addresses' \
  --header 'Content-Type: application/json' \
  --header 'Api-Key: <Api-Key>' \
  --header 'Idempotency-Key: <Unique Idempotency Key>' \
  --data-raw '{
    "chain": "evm",
    "currency": "usdc",
    "external_account_id": "ea_alice_bofa",
    "destination_wire_message": "alice_wire_123",
    "destination_payment_rail": "wire",
    "destination_currency": "usd"
  }'