-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: update tmkms.toml.example for cosmos-json
- Loading branch information
1 parent
8ef0fae
commit fe7dfa0
Showing
1 changed file
with
6 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
# Information about Tendermint blockchain networks this KMS services | ||
# | ||
# - id: The chain ID for this chain | ||
# - key_format: How this chain handles serialization. Type may be "bech32" or "hex" | ||
# - key_format: How this chain handles serialization. Type may be "bech32", "cosmos-json" or "hex" | ||
# - state_file (optional): path to where the state of the last signing operation is persisted | ||
# - state_hook (optional): user-specified command to run on startup to obtain the current height | ||
# of this chain. The command should output JSON which looks like the following: | ||
|
@@ -24,6 +24,11 @@ id = "irishub" | |
key_format = { type = "bech32", account_key_prefix = "iap", consensus_key_prefix = "icp" } | ||
# state_file = "/path/to/irishub_priv_validator_state.json" | ||
|
||
[[chain]] | ||
id = "agoricdev-4" | ||
key_format = { type = "cosmos-json" } | ||
# state_file = "/path/to/agoricdev_priv_validator_state.json" | ||
|
||
## Validator configuration | ||
[[validator]] | ||
addr = "tcp://[email protected]:26658" | ||
|