Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Transfer USDC from Solana to any EVM chain
Build Transaction
const { transaction, intentId } = await bridge.createSolanaTransfer({ to: 'BASE', amount: '100.00', fromWallet: publicKey.toBase58(), recipient: '0x...' })
Sign with Wallet
import { Transaction } from '@solana/web3.js' const tx = Transaction.from(Buffer.from(transaction, 'base64')) const signed = await signTransaction(tx)
Submit
const result = await bridge.submitSolanaTransfer({ intentId, signedTransaction: Buffer.from(signed.serialize()).toString('base64') })
Track Status
const status = await bridge.getStatus(result.intentId)