Guides/Fund Agent Wallet
Fund Agent Wallet
Your agent wallet must hold funds before it can issue cards. This guide shows how to retrieve your wallet address and fund it with SOL or ETH.
Get wallet address
address.ts
const address = await client.getWalletAddress()
console.log(address.solana) // "7xKX..."
console.log(address.ethereum) // "0xabc..."Fund via SOL
terminal
# Using Solana CLI
solana transfer 7xKX... 1.5 --allow-unfunded-recipient
# Or via the Phantom wallet — send to the address aboveℹ
Minimum funding is 0.05 SOL (~$8) on mainnet.
Fund via ETH
terminal
# Using cast (Foundry)
cast send 0xabc... --value 0.05ether
# Or via MetaMask — send ETH to the address above