Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions agent-wallet/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ After setup, prompt your agent in plain language:

<!-- vale off -->

| You ask your agent | What happens |
| -------------------------------------------------- | ----------------------------------------------------------------- |
| "Show the wallet address and USDC balance on Base" | Your agent checks auth, then queries balances. |
| "Send 10 USDT to 0x123… on Base" | Your agent confirms details, then submits a transfer. |
| "Swap 0.1 ETH to USDC on Base" | Your agent fetches a quote, confirms with you, then executes. |
| "Open a 5x long on BTC with $100 on Hyperliquid" | Your agent deposits if needed, quotes, and opens the position. |
| "Bet 10 USDT on YES for BTC 5-min price up" | Your agent searches markets, confirms odds, and places the order. |
| You ask your agent | What happens |
| ------------------------------------------------ | ----------------------------------------------------------------- |
| "Show the wallet address and USDC balance" | Your agent checks auth, then queries balances. |
| "Send 10 USDT to 0x123… on Ethereum" | Your agent confirms details, then submits a transfer. |
| "Swap 0.1 ETH to USDC on Base" | Your agent fetches a quote, confirms with you, then executes. |
| "Open a 5x long on BTC with $100 on Hyperliquid" | Your agent deposits if needed, quotes, and opens the position. |
| "Bet 10 USDT on YES for BTC 5-min price up" | Your agent searches markets, confirms odds, and places the order. |

<!-- vale on -->

Expand Down
4 changes: 2 additions & 2 deletions agent-wallet/guides/check-balances-and-prices.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ Query wallet balances, spot prices, and token metadata without submitting transa
## Ask your agent

```text
You (to your agent): "What's my USDC balance on Base?"
You (to your agent): "What's my USDC balance?"
```

```text
You (to your agent): "What's the current price of ETH?"
```

```text
You (to your agent): "Show me trending tokens on Base"
You (to your agent): "Show me trending tokens"
```

Read-only queries like these do not require confirmation before your agent runs them.
Expand Down
2 changes: 1 addition & 1 deletion agent-wallet/guides/send-tokens.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Transfer native currency or ERC-20 tokens to a recipient on one EVM chain.
## Ask your agent

```text
You (to your agent): "Send 10 USDC to 0xabc... on Base"
You (to your agent): "Send 10 USDC to 0xabc..."
```

Your agent confirms the recipient, amount, token, and chain before executing.
Expand Down
2 changes: 1 addition & 1 deletion agent-wallet/guides/sign-messages-and-transactions.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ You (to your agent): "Sign this message on Ethereum: Hello, world"
```

```text
You (to your agent): "Sign this EIP-712 typed data on Base: <paste JSON payload>"
You (to your agent): "Sign this EIP-712 typed data: <paste JSON payload>"
```

Your agent shows the exact payload and asks you to confirm before signing.
Expand Down
2 changes: 1 addition & 1 deletion agent-wallet/guides/swap-and-bridge.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Get a quote, review the route, and execute a same-chain swap or cross-chain brid
## Ask your agent

```text
You (to your agent): "Swap 0.1 ETH to USDC on Base"
You (to your agent): "Swap 0.1 ETH to USDC"
```

For a cross-chain bridge:
Expand Down
5 changes: 5 additions & 0 deletions vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -1024,6 +1024,11 @@
"source": "/embedded-wallets/sdk/flutter/migration-guides/:path*",
"destination": "/embedded-wallets/migration-guides/flutter",
"permanent": true
},
{
"source": "/agent-wallet/get-started/quickstart",
"destination": "/agent-wallet/quickstart",
"permanent": true
}
]
}
Loading