Skip to content

Commit

Permalink
docs: update tmkms.toml.example for cosmos-json
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig committed Oct 7, 2021
1 parent 8ef0fae commit fe7dfa0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tmkms.toml.example
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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"
Expand Down

0 comments on commit fe7dfa0

Please sign in to comment.