Cross-platform Go CLI for multi-family wallets and x402 exact payments.
Supports EVM (eip155:* — exact EIP-3009/Permit2 and batch-settlement), Solana (solana:*), and Hedera (hedera:mainnet / hedera:testnet).
Download a release binary from the latest release, or build from source:
make build # → ./bin/saw
make install # → ~/.local/bin/saw (requires ~/.local/bin on PATH)Agent skill:
npx skills add AxLabs/simple-agent-wallet --skill saw -g -ysaw init # interactive wizard (add EVM / Solana / Hedera)
saw init status
saw address
saw inspect https://example.com/paid
saw pay https://example.com/paid --confirmSecrets are never accepted via CLI flags — only stdin / interactive prompts. Wallet file: ~/.config/saw/wallet.json (mode 0600). RPC endpoints: ~/.config/saw/config.env.
| Command | Purpose |
|---|---|
saw init / create / import / status |
Multi-family wallet lifecycle |
saw address [--family] |
Print configured addresses |
saw balance … |
Native / token balances |
saw inspect <url> |
Decode 402 accepts[] |
saw pay <url> --confirm |
Sign and retry (exact or batch-settlement) |
saw channels / saw refund <url> --confirm |
Batch-settlement sessions / cooperative refund |
saw approve-permit2 --chain-id N --token 0x… --confirm |
ERC-20 approve Permit2 |
saw transfer … --confirm |
EVM / Solana / Hedera transfers |
saw call / saw abi encode |
EVM only |
See skill/saw/SKILL.md.
Static site in docs/ (GitHub Pages). Local preview:
make docs-serve
# → http://127.0.0.1:4173/make test
make buildRequires local ../x402/go (go.mod replace) — use the AxLabs x402 fork while Hedera mechanisms are not upstream. CI checks out AxLabs/x402@feat/go-mechanisms-hedera-exact.
Apache License 2.0 — see LICENSE.