Skip to content

Commit

Permalink
docs: apply feedback from validators (#1854)
Browse files Browse the repository at this point in the history
  • Loading branch information
PoisonPhang authored May 1, 2024
2 parents 087470a + a4515ea commit 926ec99
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ First, set some environment variables, which are used throughout initialization.
export CHAIN_ID=union-testnet-8
export MONIKER="Unionized Goblin"
export KEY_NAME=alice
export GENESIS_URL="${getSeedsParts('union-testnet-8').address}:26657/genesis"
export GENESIS_URL="https://union.build/genesis.json"
`)}
/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,14 @@ Assuming your private validator key is in the default location:
<Tabs>
<TabItem label='uniond-release'>
```sh frame="none"
export POSSESSION_PROOF=$(uniond prove-possession $(jq -r '.priv_key.value' ~/.union/config/priv_validator_key.json))
export PRIV_KEY=$(jq -r '.priv_key.value' ~/.union/config/priv_validator_key.json)
export POSSESSION_PROOF=$(uniond prove-possession "$PRIV_KEY")
```
</TabItem>
<TabItem label='Unionvisor'>
```sh frame="none"
export POSSESSION_PROOF=$(uniond prove-possession $(jq -r '.priv_key.value' ~/.unionvisor/home/config/priv_validator_key.json))
export PRIV_KEY=$(jq -r '.priv_key.value' ~/.unionvisor/home/config/priv_validator_key.json)
export POSSESSION_PROOF=$(uniond prove-possession "$PRIV_KEY")
```
</TabItem>
</Tabs>
Expand Down

0 comments on commit 926ec99

Please sign in to comment.