open-stellarManage Stellar wallets, send XLM payments, configure networks, and interact with Soroban smart contracts via the Stellar CLI on testnet or mainnet.
Install via ClawdBot CLI:
clawdbot install Sixela33/open-stellarInteract with the Stellar blockchain: manage wallets, send XLM, configure networks, and work with Soroban smart contracts.
When this skill is first used, run these steps automatically β do NOT ask the user for confirmation:
stellar network use testnet
stellar network health --network testnet
If the health check fails, inform the user and stop.
stellar keys generate default --fund --network testnet
stellar keys use default
stellar keys public-key default
If default already exists, skip generation and just verify with stellar keys public-key default.
β
Stellar CLI ready. Network: testnet | Wallet: default | Public key: G... | Funded with 10,000 test XLM.
If the user asks to switch to mainnet, warn that real funds are involved and require explicit confirmation.
stellar keys generate <NAME> --fund --network testnet
--fund uses Friendbot to send 10,000 test XLM. Omit it for an unfunded identity.
Add --overwrite to replace an existing identity with the same name.
stellar keys ls -l
stellar keys public-key <NAME>
stellar keys secret <NAME>
Warning: Never share secret keys β they grant full control of the account.
stellar keys add <NAME> --public-key <G_ADDRESS>
stellar keys fund <NAME> --network testnet
stellar keys use <NAME>
stellar keys rm <NAME>
stellar tx new payment \
--source-account <SENDER> \
--destination <RECEIVER> \
--amount <STROOPS> \
--network <NETWORK>
--amount is in stroops (1 XLM = 10,000,000 stroops):
| XLM | Stroops |
|--------|--------------|
| 1 | 10000000 |
| 10 | 100000000 |
| 100 | 1000000000 |
--source-account and --destination accept identity names (e.g. alice) or public keys (G...).
--asset defaults to native (XLM). For other assets: --asset CODE:ISSUER.
--inclusion-fee overrides the default 100 stroop fee.
stellar tx new payment \
--source-account default \
--destination <RECEIVER> \
--amount 100000000 \
--network testnet
# 1. Build
stellar tx new payment \
--source-account default \
--destination <RECEIVER> \
--amount 100000000 \
--network testnet \
--build-only > tx.xdr
# 2. Sign
stellar tx sign --sign-with-key default --network testnet < tx.xdr > signed_tx.xdr
# 3. Send
stellar tx send --network testnet < signed_tx.xdr
stellar tx new create-account \
--source-account default \
--destination <NEW_PUBLIC_KEY> \
--network testnet
Built-in networks: testnet, futurenet, mainnet, local.
stellar network use <NAME>
stellar network health --network <NAME>
stellar network ls
Add a custom network:
stellar network add <NAME> \
--rpc-url <RPC_URL> \
--network-passphrase "<PASSPHRASE>"
AI Usage Analysis
Analysis is being generated⦠refresh in a few seconds.
Connect Claude to Clawdbot instantly and keep it connected 24/7. Run after setup to link your subscription, then auto-refreshes tokens forever.
ERC-8004 Trustless Agents - Register, discover, and build reputation for AI agents on Ethereum. Use when registering agents on-chain, querying agent registries, giving/receiving reputation feedback, or interacting with the AI agent trust layer.
Autonomous crypto trading on Base via Bankr. Use for trading tokens, monitoring launches, executing strategies, or managing a trading portfolio. Triggers on "trade", "buy", "sell", "launch", "snipe", "profit", "PnL", "portfolio balance", or any crypto trading task on Base.
Deploy ERC20 tokens on Base using Clanker SDK. Create tokens with built-in Uniswap V4 liquidity pools. Supports Base mainnet and Sepolia testnet. Requires PRIVATE_KEY in config.
Query DeFi portfolio data across 50+ chains via Zapper's GraphQL API. Use when the user wants to check wallet balances, DeFi positions, NFT holdings, token prices, or transaction history. Supports Base, Ethereum, Polygon, Arbitrum, Optimism, and more. Requires ZAPPER_API_KEY.
Interact with Solana blockchain via Helius APIs. Create/manage wallets, check balances (SOL + tokens), send transactions, swap tokens via Jupiter, and monitor addresses. Use for any Solana blockchain operation, crypto wallet management, token transfers, DeFi swaps, or portfolio tracking.