-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: locating files for agoric relayer
- Loading branch information
1 parent
6823ba4
commit f1850d0
Showing
4 changed files
with
65 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
src: emerynet | ||
dest: devnet | ||
mnemonic: guess congress coast rifle frown tumble skin whisper cream february identify today | ||
srcConnection: connection-64 | ||
destConnection: connection-53 |
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,6 @@ | ||
{ | ||
"packetHeightA": 6185954, | ||
"packetHeightB": 4223845, | ||
"ackHeightA": 6185956, | ||
"ackHeightB": 4223846 | ||
} |
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,43 @@ | ||
version: 1 | ||
|
||
chains: | ||
emerynet: | ||
chain_id: agoric-emerynet-8 | ||
# Bech32 prefix for addresses | ||
prefix: agoric | ||
# This determines the gas payments we make (and defines the fee token) | ||
gas_price: 0.25ubld | ||
# The path we use to derive the private key from the mnemonic | ||
# Note: The hd paths shown have no meaningful relationship to the existing chains. | ||
# It is recommended practice to use a different hd_path than those commonly used for user accounts. | ||
hd_path: m/44'/1234'/0'/1' | ||
# If you include an optional faucet, it will load the relayer with tokens in `ibc-setup init` | ||
#faucet: https://faucet.malaga-420.cosmwasm.com:443 | ||
# You can optionally define a default ics20_port that will be used instead of transfer if no flags set | ||
ics20_port: 'transfer' | ||
estimated_block_time: 6000 | ||
estimated_indexer_time: 100 | ||
# You can include multiple RPC endpoints and it will rotate through them if | ||
# one is down (TODO) | ||
rpc: | ||
- https://emerynet.rpc.agoric.net:443 | ||
devnet: | ||
chain_id: agoricdev-23 | ||
# Bech32 prefix for addresses | ||
prefix: agoric | ||
# This determines the gas payments we make (and defines the fee token) | ||
gas_price: 0.25ubld | ||
# The path we use to derive the private key from the mnemonic | ||
# Note: The hd paths shown have no meaningful relationship to the existing chains. | ||
# It is recommended practice to use a different hd_path than those commonly used for user accounts. | ||
hd_path: m/44'/1234'/0'/2' | ||
# If you include an optional faucet, it will load the relayer with tokens in `ibc-setup init` | ||
#faucet: https://faucet.malaga-420.cosmwasm.com:443 | ||
# You can optionally define a default ics20_port that will be used instead of transfer if no flags set | ||
ics20_port: 'transfer' | ||
estimated_block_time: 6000 | ||
estimated_indexer_time: 100 | ||
# You can include multiple RPC endpoints and it will rotate through them if | ||
# one is down (TODO) | ||
rpc: | ||
- https://devnet.rpc.agoric.net:443 |