Operator Cheat Sheets
Quick-reference commands for common operator tasks. All commands assume --network=main for mainnet. Replace with --network=beta for testnet.
Supplier Operations
Stake a Supplier
bash
pocketd tx supplier stake-supplier \
--config supplier-config.yaml \
--from mySupplierWallet \
--network=main \
--gas=auto --fees=1upoktCheck Supplier Status
bash
pocketd query supplier show-supplier pokt1yoursupplieraddress --network=mainList All Suppliers
bash
pocketd query supplier list-supplier --network=mainUnstake a Supplier
bash
pocketd tx supplier unstake-supplier \
--from mySupplierWallet \
--network=main \
--gas=auto --fees=1upoktGateway Operations
Stake a Gateway
bash
pocketd tx gateway stake-gateway \
--config gateway-config.yaml \
--from myGatewayWallet \
--network=main \
--gas=auto --fees=1upoktCheck Gateway Status
bash
pocketd query gateway show-gateway pokt1yourgatewayaddress --network=mainApplication Operations
Stake an Application
bash
pocketd tx application stake-application \
--config app-config.yaml \
--from myAppWallet \
--network=main \
--gas=auto --fees=1upoktDelegate to a Gateway
bash
pocketd tx application delegate-to-gateway pokt1gatewayaddress \
--from myAppWallet \
--network=main \
--gas=auto --fees=1upoktService Operations
List All Services
bash
pocketd query service list-services --network=mainCreate a New Service
bash
pocketd tx service add-service \
--name "my-service" \
--compute-units-per-relay 1 \
--from myWallet \
--network=main \
--gas=auto --fees=1upoktBalance and Token Operations
Check Balance
bash
pocketd query bank balance pokt1youraddress upokt --network=mainSend Tokens
bash
pocketd tx bank send myWallet pokt1recipient 1000000upokt \
--network=main --gas=auto --fees=1upoktQuery Operations
Current Block Height
bash
pocketd query block --type=height latest --network=mainProtocol Parameters
bash
# All tokenomics params
pocketd query tokenomics params --network=main
# Session params
pocketd query session params --network=main
# Proof params
pocketd query proof params --network=mainRelay Mining Difficulty
bash
# All services
pocketd query service relay-mining-difficulty-all --network=main
# Specific service
pocketd query service relay-mining-difficulty eth --network=mainClaims and Proofs
bash
pocketd query proof list-claims --network=main
pocketd query proof list-proofs --network=mainCommon Patterns
Fund a New Wallet from Faucet (TestNet)
bash
pocketd faucet fund upokt myNewWallet --network=betaVerify a Transaction
bash
pocketd query tx TXHASH --network=mainExport Keys for Backup
bash
pocketd keys export myWallet --unsafe --unarmored-hex --yes Danger
Handle exported keys with extreme care. Store offline, never commit to version control.