Skip to content

Commit

Permalink
fix: archway version placement (#386)
Browse files Browse the repository at this point in the history
  • Loading branch information
eliasmpw authored Aug 30, 2023
1 parent 482cd6a commit 1f9fae0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Binary
::highlight-card

```bash
archwayd gentx my-validator-account 9500000000000000000aarch --commission-rate 0.01 --commission-max-rate 0.1 --commission-max-change-rate 0.1 --pubkey "$($$archwayVersion$$ tendermint show-validator)" --chain-id archway-1 --fees 180000000000000000aarch
archwayd gentx my-validator-account 9500000000000000000aarch --commission-rate 0.01 --commission-max-rate 0.1 --commission-max-change-rate 0.1 --pubkey "$(archwayd tendermint show-validator)" --chain-id archway-1 --fees 180000000000000000aarch
```
::

Expand Down Expand Up @@ -213,7 +213,7 @@ Binary
::highlight-card

```bash
archwayd tx staking create-validator --from <my-validator-account> --amount 1000000000udenom --min-self-delegation 1000000000udenom --commission-rate 0.01 --commission-max-rate 0.1 --commission-max-change-rate 0.1 --pubkey "$($$archwayVersion$$ tendermint show-validator)" --chain-id <chain-id> --gas auto --gas-adjustment 1.3 --gas-prices $($$archwayVersion$$ q rewards estimate-fees 1 --output json | jq -r '.gas_unit_price | (.amount + .denom)')
archwayd tx staking create-validator --from <my-validator-account> --amount 1000000000udenom --min-self-delegation 1000000000udenom --commission-rate 0.01 --commission-max-rate 0.1 --commission-max-change-rate 0.1 --pubkey "$(archwayd tendermint show-validator)" --chain-id <chain-id> --gas auto --gas-adjustment 1.3 --gas-prices $(archwayd q rewards estimate-fees 1 --output json | jq -r '.gas_unit_price | (.amount + .denom)')



Expand Down Expand Up @@ -265,7 +265,7 @@ Docker
::highlight-card

```bash
docker run --rm -it -v ~/.archway:/root/.archway ghcr.io/archway-network/$$archwayVersion$$:v2.0.0 tx staking create-validator --from <my-validator-account> --amount 10000000000000000000aarch --min-self-delegation 10000000000000000000aarch --commission-rate 0.01 --commission-max-rate 0.1 --commission-max-change-rate 0.1 --pubkey "$($$archwayVersion$$ tendermint show-validator)" --chain-id archway-1 --gas auto --gas-adjustment 1.3 --gas-prices $($$archwayVersion$$ q rewards estimate-fees 1 --output json | jq -r '.gas_unit_price | (.amount + .denom)')
docker run --rm -it -v ~/.archway:/root/.archway ghcr.io/archway-network/archway:$$archwayVersion$$ tx staking create-validator --from <my-validator-account> --amount 10000000000000000000aarch --min-self-delegation 10000000000000000000aarch --commission-rate 0.01 --commission-max-rate 0.1 --commission-max-change-rate 0.1 --pubkey "$(archwayd tendermint show-validator)" --chain-id archway-1 --gas auto --gas-adjustment 1.3 --gas-prices $(archwayd q rewards estimate-fees 1 --output json | jq -r '.gas_unit_price | (.amount + .denom)')

```
::
Expand Down

0 comments on commit 1f9fae0

Please sign in to comment.