recipe-first-transaction
Getting started: Create a wallet and send your first transaction.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Getting started: Create a wallet and send your first transaction.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
web3 balance: Check native token and ERC-20 token balances.
web3 send: Send native tokens or ERC-20 tokens to an address.
web3 CLI: Shared patterns for key management, global flags, and security rules.
web3 wallet: Create, import, show, export, and reset wallets.
| name | recipe-first-transaction |
| version | 1.0.0 |
| description | Getting started: Create a wallet and send your first transaction. |
| metadata | {"openclaw":{"category":"recipe","domain":"web3","requires":{"bins":["web3"],"skills":["web3-shared","web3-wallet","web3-send","web3-balance"]}}} |
PREREQUISITE: Load the following skills to execute this recipe:
web3-shared,web3-wallet,web3-send,web3-balance
Walk through wallet creation to your first on-chain transaction.
Create a wallet:
web3 wallet create
Show your address (share this to receive funds):
web3 wallet show
Check your balance (you need funds before sending):
web3 balance --chain ethereum
Dry-run a send (simulate without spending):
web3 send 0x742d35Cc6634C0532925a3b844Bc9e7595f2bD18 0.01 --dry-run --chain ethereum
Confirm with the user, then execute the real send:
web3 send 0x742d35Cc6634C0532925a3b844Bc9e7595f2bD18 0.01 --chain ethereum
Check transaction status:
web3 tx status <HASH> --chain ethereum
--network testnet for experimentation without real funds.