-
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.
feat: allow
key_format = { type = "cosmos-json" }
(#407)
- Loading branch information
1 parent
2a76bfa
commit 687c163
Showing
4 changed files
with
73 additions
and
1 deletion.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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" | ||
|