LaunchKit · 2026
Back to Skills

open-stellar

Interact with the Stellar blockchain — manage keys, networks, and smart contracts using the Stellar CLI.

0
442 downloads
by @sixela33

Setup & Installation

openclaw skills install @sixela33/open-stellar

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install open-stellar

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.

INPUT

User asks: send 10 XLM from my default wallet to GABCDE... on testnet

AGENT
  1. 1Verify active network with `stellar network use testnet`
  2. 2Build the payment transaction with `stellar tx new payment --source-account default --destination GABCDE... --amount 100000000 --network testnet --build-only`
  3. 3Sign the built transaction with `stellar tx sign --sign-with-key default --network testnet`
  4. 4Broadcast the signed transaction with `stellar tx send --network testnet`
OUTPUT

Transaction confirmed on testnet — 10 XLM sent to GABCDE...