Upgrade relayer-test for rly latest (cf49cb4) (#458)

This commit is contained in:
Alexander Peters
2021-03-12 08:06:20 +01:00
committed by GitHub
parent 0370397a78
commit ffb7c29a7a
6 changed files with 10 additions and 9 deletions

View File

@@ -1,5 +1,13 @@
# Relayer tests
These scripts helps to test go-relayer with two local wasmd chains. \
Make sure you run below scripts under `wasmd/contrib/relayer-tests` directory.
- `./init_two_chainz_relayer.sh` will spin two chains and runs
- `./one_chain.sh` will spin a single chain. This script used by the one above
- `./test_ibc_transfer.sh` will setup a path between chains and send tokens between chains.
## Thank you
The setup scripts here are taken from [cosmos/relayer](https://github.com/cosmos/relayer)
Thank your relayer team for these scripts.

View File

@@ -1,8 +0,0 @@
# Relayer tests
These scripts helps to test go-relayer with two local wasmd chains. \
Make sure you run below scripts under `wasmd/contrib/relayer-tests` directory.
- `./init_two_chainz_relayer.sh` will spin two chains and runs
- `./one_chain.sh` will spin a single chain. This script used by the one above
-`./test_ibc_transfer.sh` will setup a path between chains and send tokens between chains.

View File

@@ -51,7 +51,8 @@ mkdir -p $WASMD_DATA && cd $WASMD_DATA && cd ../
echo "Generating rly configurations..."
rly config init
rly config add-dir configs/wasmd/
rly config add-chains configs/wasmd/chains
rly config add-paths configs/wasmd/paths
SEED0=$(jq -r '.mnemonic' $WASMD_DATA/ibc-0/key_seed.json)
SEED1=$(jq -r '.mnemonic' $WASMD_DATA/ibc-1/key_seed.json)