Setup & Installation
Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:
What This Skill Does
CLI tool for interacting with the Stellar blockchain. Manages wallets and keys, sends XLM payments, and works with Soroban smart contracts across testnet, mainnet, and custom networks.
Gives full Stellar account and transaction control from the terminal without needing a GUI wallet or browser extension.
When to use it
- Generating and funding a testnet wallet for development
- Sending XLM to another account on testnet or mainnet
- Switching between Stellar networks during a project
- Building, signing, and broadcasting transactions as separate steps
- Creating new on-chain accounts from an existing funded wallet
Example Workflow
Here's how your AI assistant might use this skill in practice.
User asks: send 10 XLM from my default wallet to GABCDE... on testnet
- 1Verify active network with `stellar network use testnet`
- 2Build the payment transaction with `stellar tx new payment --source-account default --destination GABCDE... --amount 100000000 --network testnet --build-only`
- 3Sign the built transaction with `stellar tx sign --sign-with-key default --network testnet`
- 4Broadcast the signed transaction with `stellar tx send --network testnet`
Transaction confirmed on testnet — 10 XLM sent to GABCDE...