-
Notifications
You must be signed in to change notification settings - Fork 332
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document how to read keys from stdin in
keys add
command
- Loading branch information
Showing
13 changed files
with
140 additions
and
34 deletions.
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
[[#BINARY hermes]][[#GLOBALOPTIONS]] keys add[[#OPTIONS]] --chain [[#CHAIN_ID]] --key-file [[#KEY_FILE]] | ||
Add a key from a Comet keyring file: |
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 |
---|---|---|
@@ -1 +1 @@ | ||
[[#BINARY hermes]][[#GLOBALOPTIONS]] keys add[[#OPTIONS]] --chain [[#CHAIN_ID]] --mnemonic-file [[#MNEMONIC_FILE]] | ||
[[#BINARY hermes]][[#GLOBALOPTIONS]] keys add[[#OPTIONS]] --chain [[#CHAIN_ID]] --key-file [[#KEY_FILE]] |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
Add a key from a file containing its mnemonic: |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
[[#BINARY hermes]][[#GLOBALOPTIONS]] keys add[[#OPTIONS]] --chain [[#CHAIN_ID]] --mnemonic-file [[#MNEMONIC_FILE]] |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
On flake.nix platforms, both flags also accept `/dev/stdin` as a value, which will read the key or the mnemonic from stdin. |
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
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 |
---|---|---|
@@ -0,0 +1,89 @@ | ||
[global] | ||
log_level = "info" | ||
|
||
[mode.clients] | ||
enabled = true | ||
refresh = true | ||
misbehaviour = true | ||
|
||
[mode.connections] | ||
enabled = false | ||
|
||
[mode.channels] | ||
enabled = false | ||
|
||
[mode.packets] | ||
enabled = true | ||
clear_interval = 100 | ||
clear_on_start = true | ||
tx_confirmation = false | ||
auto_register_counterparty_payee = false | ||
|
||
[rest] | ||
enabled = false | ||
host = "127.0.0.1" | ||
port = 3000 | ||
|
||
[telemetry] | ||
enabled = false | ||
host = "127.0.0.1" | ||
port = 3001 | ||
|
||
[telemetry.buckets.latency_submitted] | ||
start = 500 | ||
end = 20000 | ||
buckets = 10 | ||
|
||
[telemetry.buckets.latency_confirmed] | ||
start = 1000 | ||
end = 30000 | ||
buckets = 10 | ||
|
||
[[chains]] | ||
id = "injective-1" | ||
type = "CosmosSdk" | ||
rpc_addr = "https://injective-rpc.lavenderfive.com/" | ||
grpc_addr = "https://injective-grpc.lavenderfive.com/" | ||
rpc_timeout = "10s" | ||
trusted_node = false | ||
account_prefix = "inj" | ||
key_name = "" | ||
key_store_type = "Test" | ||
store_prefix = "ibc" | ||
default_gas = 100000 | ||
max_gas = 400000 | ||
gas_multiplier = 1.1 | ||
max_msg_num = 30 | ||
max_tx_size = 180000 | ||
max_grpc_decoding_size = 33554432 | ||
clock_drift = "5s" | ||
max_block_time = "10s" | ||
ccv_consumer_chain = false | ||
memo_prefix = "" | ||
sequential_batch_tx = false | ||
|
||
[chains.event_source] | ||
mode = "push" | ||
url = "wss://injective-rpc.lavenderfive.com/websocket" | ||
batch_delay = "100ms" | ||
|
||
[chains.trust_threshold] | ||
numerator = "1" | ||
denominator = "3" | ||
|
||
[chains.gas_price] | ||
price = 700000000.0 | ||
denom = "inj" | ||
|
||
[chains.packet_filter] | ||
policy = "allowall" | ||
|
||
[chains.packet_filter.min_fees] | ||
|
||
[chains.address_type] | ||
derivation = "cosmos" | ||
|
||
[tracing_server] | ||
enabled = false | ||
port = 5555 | ||
|