Skip to content

wallet-cli v0.1.0 (Forge testnet)

Latest

Choose a tag to compare

@moshemalawach moshemalawach released this 01 Jun 15:09
· 2 commits to main since this release

wallet-cli is the command-line wallet for Orogen Forge-testnet operators and users: create accounts (sr25519 hotkey + derived EVM-bridge key from one BIP-39 mnemonic, encrypted at rest), query balances, transfer OROG, register as an operator, and submit on-chain liveness heartbeats.

Quickstart (live Forge testnet)

export OROGEN_RPC_URL=wss://forge-rpc.orogen.network

# 1. Create an account and show its addresses.
wallet-cli new my-operator
wallet-cli address my-operator

# 2. Fund the ss58 address from the public faucet (low-cap testnet OROG).
curl -X POST https://faucet.orogen.network/drip-public \
  -H 'Content-Type: application/json' \
  -d '{"recipient":"<ss58 address from step 1>"}'
wallet-cli balance my-operator

# 3. Register as an operator (--stake in plancks; MinStake = 1 OROG).
wallet-cli register-operator my-operator --stake 1000000000000

# 4. Submit an on-chain liveness heartbeat for the current epoch.
wallet-cli heartbeat-test my-operator --submit --epoch <current-epoch>

OROG has 12 decimals, ss58 prefix 42, MinStake 1 OROG (1000000000000 plancks). Gateway: https://gateway.orogen.network

Artifact

  • wallet-cli-0.1.0-x86_64-linux-gnu.tar.gz — the binary plus an INSTALL.txt. Verify with the accompanying .sha256.

Platform / glibc caveat

The binary is dynamically linked against host glibc (x86_64 Linux). It was built on Ubuntu 25.10 (glibc 2.42) and requires glibc >= 2.34 at runtime. On older distros, build from source instead: cargo build --release.

Forge is a test-mode preview (mock attestation, low-cap faucet). See https://docs.orogen.network/start/forge-testnet for caveats.