-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dbef0d7
commit 04aa5cf
Showing
13 changed files
with
159 additions
and
88 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
chains: | ||
- name: gaia | ||
chain_id: localcosmos-1 | ||
denom: uatom | ||
binary: gaiad | ||
bech32_prefix: cosmos | ||
docker_image: | ||
version: v10.0.1 | ||
gas_prices: 0%DENOM% | ||
chain_type: cosmos | ||
coin_type: 118 | ||
trusting_period: 112h | ||
gas_adjustment: 2 | ||
number_vals: 1 | ||
number_node: 0 | ||
debugging: true | ||
block_time: 500ms | ||
genesis: | ||
modify: | ||
- key: app_state.gov.voting_params.voting_period | ||
value: 15s | ||
- key: app_state.gov.deposit_params.max_deposit_period | ||
value: 15s | ||
- key: app_state.gov.deposit_params.min_deposit.0.denom | ||
value: uatom | ||
accounts: | ||
- name: acc0 | ||
address: cosmos1hj5fveer5cjtn4wd6wstzugjfdxzl0xpxvjjvr | ||
amount: 10000000000%DENOM% | ||
mnemonic: decorate bright ozone fork gallery riot bus exhaust worth way bone | ||
indoor calm squirrel merry zero scheme cotton until shop any excess stage | ||
laundry |
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
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
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,17 +1,17 @@ | ||
package types | ||
|
||
type MainLogs struct { | ||
StartTime uint64 `json:"start_time"` | ||
Chains []LogOutput `json:"chains"` | ||
Channels []IBCChannel `json:"ibc_channels"` | ||
StartTime uint64 `json:"start_time" yaml:"start_time"` | ||
Chains []LogOutput `json:"chains" yaml:"chains"` | ||
Channels []IBCChannel `json:"ibc_channels" yaml:"ibc_channels"` | ||
} | ||
|
||
type LogOutput struct { | ||
ChainID string `json:"chain_id"` | ||
ChainName string `json:"chain_name"` | ||
RPCAddress string `json:"rpc_address"` | ||
RESTAddress string `json:"rest_address"` | ||
GRPCAddress string `json:"grpc_address"` | ||
P2PAddress string `json:"p2p_address"` | ||
IBCPath []string `json:"ibc_paths"` | ||
ChainID string `json:"chain_id" yaml:"chain_id"` | ||
ChainName string `json:"chain_name" yaml:"chain_name"` | ||
RPCAddress string `json:"rpc_address" yaml:"rpc_address"` | ||
RESTAddress string `json:"rest_address" yaml:"rest_address"` | ||
GRPCAddress string `json:"grpc_address" yaml:"grpc_address"` | ||
P2PAddress string `json:"p2p_address" yaml:"p2p_address"` | ||
IBCPath []string `json:"ibc_paths" yaml:"ibc_paths"` | ||
} |
Oops, something went wrong.