-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove pub key from create aggregated key msg & Update decryption to rely on active pub key * Fix incorrect args num in cli * Add setup relayer script & update relayer config & pep test script * Add hermes relayer to test requirement * Fix pub key ibc ack packet is empty * Update setup testing env readme * Remove ./ for the encrypter command * Fix key file deleted before adding to hermes * add incorrect key submission test --------- Co-authored-by: p0p3yee <[email protected]> Co-authored-by: p0p3ye <[email protected]>
- Loading branch information
1 parent
4659717
commit 9e92281
Showing
17 changed files
with
239 additions
and
211 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
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,29 @@ | ||
#!/bin/bash | ||
|
||
echo "" | ||
echo "###########################################################" | ||
echo "# Setting up Relayer between two chain #" | ||
echo "###########################################################" | ||
echo "" | ||
|
||
|
||
CHAINID_1=fairyring_test_1 | ||
CHAINID_2=fairyring_test_2 | ||
CONFIG_FILE=hermes_config.toml | ||
|
||
echo "Creating client on both chain..." | ||
hermes --config $CONFIG_FILE create client --host-chain $CHAINID_1 --reference-chain $CHAINID_2 | ||
hermes --config $CONFIG_FILE create client --host-chain $CHAINID_2 --reference-chain $CHAINID_1 | ||
|
||
echo "Creating connection..." | ||
hermes --config $CONFIG_FILE create connection --a-chain $CHAINID_1 --a-client 07-tendermint-0 --b-client 07-tendermint-0 | ||
|
||
echo "Creating channel..." | ||
hermes --config $CONFIG_FILE create channel --a-chain $CHAINID_1 --a-connection connection-0 --a-port pep --b-port pep --channel-version pep-1 | ||
|
||
|
||
echo "" | ||
echo "###########################################################" | ||
echo "# Successfully Setup Relayer between two chain #" | ||
echo "###########################################################" | ||
echo "" |
Oops, something went wrong.