$npx -y skills add basezh/agent-skills-on-base --skill fundAdd money to the wallet. Use when you or the user want to fund, deposit, top up, load, buy USDC, add funds, onramp, or get USDC. Also use when the wallet has insufficient balance for a send or trade operation, or when someone asks "how do I get USDC?
| 1 | # Funding the Wallet |
| 2 | |
| 3 | Use the wallet companion app to fund the wallet with USDC via Coinbase Onramp. This supports multiple payment methods including Apple Pay, debit cards, bank transfers, and funding from a Coinbase account. |
| 4 | |
| 5 | ## Confirm wallet is initialized and authed |
| 6 | |
| 7 | ```bash |
| 8 | npx awal@2.0.3 status |
| 9 | ``` |
| 10 | |
| 11 | If the wallet is not authenticated, refer to the `authenticate-wallet` skill. |
| 12 | |
| 13 | ## Opening the Funding Interface |
| 14 | |
| 15 | ```bash |
| 16 | npx awal@2.0.3 show |
| 17 | ``` |
| 18 | |
| 19 | This opens the wallet companion window where users can: |
| 20 | |
| 21 | 1. Select a preset amount ($10, $20, $50) or enter a custom amount |
| 22 | 2. Choose their preferred payment method |
| 23 | 3. Complete the purchase through Coinbase Pay |
| 24 | |
| 25 | ## Payment Methods |
| 26 | |
| 27 | | Method | Description | |
| 28 | | --------- | ---------------------------------------------- | |
| 29 | | Apple Pay | Fast checkout with Apple Pay (where available) | |
| 30 | | Coinbase | Transfer from existing Coinbase account | |
| 31 | | Card | Debit card payment | |
| 32 | | Bank | ACH bank transfer | |
| 33 | |
| 34 | ## Alternative |
| 35 | |
| 36 | You can also ask your human to send usdc on Base to your wallet address. You can find your wallet address buy running the following: |
| 37 | |
| 38 | ```bash |
| 39 | npx awal@2.0.3 address |
| 40 | ``` |
| 41 | |
| 42 | ## Prerequisites |
| 43 | |
| 44 | - Must be authenticated (`npx awal@2.0.3 status` to check) |
| 45 | - Coinbase Onramp is available in supported regions (US, etc.) |
| 46 | |
| 47 | ## Flow |
| 48 | |
| 49 | 1. Run `npx awal@2.0.3 show` to open the wallet UI |
| 50 | 2. Instruct the user to click the Fund button |
| 51 | 3. User selects amount and payment method in the UI |
| 52 | 4. User completes payment through Coinbase Pay (opens in browser) |
| 53 | 5. USDC is deposited to the wallet once payment confirms |
| 54 | |
| 55 | ## Checking Balance After Funding |
| 56 | |
| 57 | ```bash |
| 58 | # Check updated balance |
| 59 | npx awal@2.0.3 balance |
| 60 | ``` |
| 61 | |
| 62 | ## Notes |
| 63 | |
| 64 | - Funding goes through Coinbase's regulated onramp |
| 65 | - Processing time varies by payment method (instant for card/Apple Pay, 1-3 days for bank) |
| 66 | - Funds are deposited as USDC on Base network |
| 67 | - If funding is not available, users can also send USDC on Base directly to the wallet address |