Skills mutinynet-cli
Interact with the Mutinynet Bitcoin testnet faucet. Get testnet bitcoin on-chain, pay lightning invoices, open lightning channels, and generate bolt11 invoices. Use when the user needs signet/testnet bitcoin, wants to test lightning payments, or mentions Mutinynet.
git clone https://github.com/openclaw/skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/benthecarman/mutinynet-cli" ~/.claude/skills/openclaw-skills-mutinynet-cli && rm -rf "$T"
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/benthecarman/mutinynet-cli" ~/.openclaw/skills/openclaw-skills-mutinynet-cli && rm -rf "$T"
skills/benthecarman/mutinynet-cli/SKILL.mdMutinynet Faucet CLI
A CLI tool for interacting with the Mutinynet Bitcoin testnet faucet.
Install
Download a prebuilt binary from GitHub Releases, or install from source:
cargo install mutinynet-cli
Commands
Login
Authenticate with GitHub via device flow. Required before using commands that need a token.
mutinynet-cli login
Send on-chain bitcoin
Send testnet bitcoin to an address. Default amount is 10,000 sats. Accepts Bitcoin addresses or BIP21 URIs.
mutinynet-cli onchain <address> [sats]
Examples:
mutinynet-cli onchain tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsxmutinynet-cli onchain tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx 50000
Pay a lightning invoice
Pay a lightning invoice. Accepts bolt11 invoices, LNURL, lightning addresses, and nostr npubs.
mutinynet-cli lightning <invoice>
Examples:
mutinynet-cli lightning lnbc1...mutinynet-cli lightning user@walletofsatoshi.com
Open a lightning channel
Open a lightning channel from the faucet node to your node.
mutinynet-cli channel <pubkey> <capacity> [--push-amount <sats>] [--host <host:port>]
Examples:
mutinynet-cli channel 02abc...def 100000mutinynet-cli channel 02abc...def 100000 --push-amount 50000 --host localhost:9735
Generate a bolt11 invoice
Generate a bolt11 invoice from the faucet node. Omit amount for a zero-amount invoice.
mutinynet-cli bolt11 [amount]
Examples:
mutinynet-cli bolt11 5000mutinynet-cli bolt11
Configuration
| Option | Environment Variable | Default |
|---|---|---|
| | |
| | Loaded from |
Common workflows
- First time setup: Run
to authenticate with GitHub.mutinynet-cli login - Fund a wallet: Use
to receive testnet sats.mutinynet-cli onchain <address> - Test lightning: Use
to pay ormutinynet-cli lightning <invoice>
to receive.mutinynet-cli bolt11 <amount>