Minimal CLI for Avalanche P-Chain operations.
Requirements:
- Go 1.24.13+
go install github.com/ava-labs/platform-cli@latestOr build from source:
git clone https://github.com/ava-labs/platform-cli.git
cd platform-cli
go build -o platform .For Ledger support, build with:
go build -tags ledger -o platform .# Generate a key
platform keys generate --name mykey
# Check your address
platform wallet address --key-name mykey
# Check balance on Fuji
platform wallet balance --network fuji --key-name mykeyDetailed docs live in docs/:
platform --help
platform <command> --help