diff --git a/ci/simapp/README.md b/ci/simapp/README.md index 9c7724a339..3fb714f7fc 100644 --- a/ci/simapp/README.md +++ b/ci/simapp/README.md @@ -24,8 +24,8 @@ can then query. For instance: ``` curl 'localhost:26657/abci_query?path="store/ibc/key"&data="connections/connectionidone"' -curl 'localhost:26657/abci_query?path="store/ibc/key"&data="clients/ethbridge"' -curl 'localhost:26657/abci_query?path="store/ibc/key"&data="channels/firstchannel"' +curl 'localhost:26657/abci_query?path="store/ibc/key"&data="clients/ethbridge/clientState"&prove=true' +curl 'localhost:26657/abci_query?path="store/ibc/key"&data="channelEnds/ports/firstport/channels/firstchannel"' ``` will return the relevent proto encoded data. diff --git a/relayer/relay/tests/config/fixtures/simple_config.toml b/relayer/relay/tests/config/fixtures/simple_config.toml new file mode 100644 index 0000000000..01981717ab --- /dev/null +++ b/relayer/relay/tests/config/fixtures/simple_config.toml @@ -0,0 +1,43 @@ +# This is an IBC relayer sample configuration + +title = "IBC Relayer Config Example" + +[global] +timeout = "10s" +strategy = "naive" + +[[chains]] + id = "ibc-test" + rpc_addr = "localhost:26657" + account_prefix = "cosmos" + key_name = "testkey" + store_prefix = "ibc" + client_ids = ["ethbridge"] + gas = 200000 + gas_adjustement = 1.3 + gas_price = "0.025stake" + trusting_period = "336h" + +[[chains]] + id = "chain_B" + rpc_addr = "localhost:26557" + account_prefix = "cosmos" + key_name = "testkey" + store_prefix = "ibc" + client_ids = ["ibconeclient"] + gas = 200000 + gas_adjustement = 1.3 + gas_price = "0.025stake" + trusting_period = "336h" + +[[connections]] + +[connections.src] + chain_id = "ibc1" + client_id = "ibconeclient" + connection_id = "ibconeconnection" + +[connections.dest] + chain_id = "ibc0" + client_id = "ibczeroclientt" + connection_id = "ibczeroconnection"