Skip to content

Operations module

Andrei Schneider edited this page May 17, 2021 · 5 revisions

Operations

Operations module is responsible for reseting account and PDV rewards distribution.

CLI

# Reset account
decentrcli tx op reset-account [account] 
# Min gas price
decentrcli query operations min-gas-price

REST

# Reset account
curl -XPOST -s http://localhost:1317/operations/{account}/reset \
     -d '{"base_req":{"chain_id":"testnet", "from": "'$(decentrcli keys show jack -a)'"}}' > unsignedTx.json
# Min gas price
curl -XGET http://localhost:1317/operations/min-gas-price
Clone this wiki locally