Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions docs/operations.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,42 @@

**NOTE**: Share the wormchain public key for your validator with the Wormhole Foundation. It should be in the format: `wormhole1xxx`.

#### Confirm keys exist

List the available keys:

```bash
$ wormchaind keys list --keyring-backend file

- name: accountant
type: local
address: wormhole1nugmxrhwke85n7vg3hwahqjs53xs8elrlpvv3v

Check warning on line 226 in docs/operations.md

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (elrlpvv)

Check warning on line 226 in docs/operations.md

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (hwahqjs)

Check warning on line 226 in docs/operations.md

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (nugmxrhwke)
Comment thread
djb15 marked this conversation as resolved.
pubkey: '{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"Ars70r0YUo0iMXTyoJS9ID7YpfJjBgC21nOkdJRvoJS0"}'
mnemonic: ""
- name: ntt-accountant
type: local
address: wormhole1kbgwuswmchqf3vzsjd5sfnzs5jnuk8p936yvgr

Check warning on line 231 in docs/operations.md

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (yvgr)

Check warning on line 231 in docs/operations.md

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (jnuk)

Check warning on line 231 in docs/operations.md

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (sfnzs)

Check warning on line 231 in docs/operations.md

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (vzsjd)

Check warning on line 231 in docs/operations.md

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (kbgwuswmchqf)
pubkey: '{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A2HP1PLn68waZr9hyY1W3WOWvtamq32KkgEFry3ItE42"}'
mnemonic: ""
```

#### Verify balances

Given a key of `wormhole1kbgwuswmchqf3vzsjd5sfnzs5jnuk8p936yvgr`, verify the balance:

Check warning on line 238 in docs/operations.md

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (vzsjd)

Check warning on line 238 in docs/operations.md

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (kbgwuswmchqf)

```bash
$ wormchaind query bank balances wormhole1kbgwuswmchqf3vzsjd5sfnzs5jnuk8p936yvgr --node http://localhost:26657 -o json
{
"balances": [],
"pagination": {
"next_key": null,
"total": "0"
}
}
```

If the balance shows up as zero like this, work with the Wormhole Foundation or another guardian to send you at least 1utest token for gas. If your guardian has a balance and your accountant or ntt-accountant keys do not, you can send them a small amount of gas.

#### Allowlist your new validator

Work with the Wormhole Foundation to have another guardian add your new wormchain validator to the allowlist.
Expand Down
Loading