Skip to content

Commit

Permalink
ci README fix and added simple_config
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-szabo committed Jul 15, 2020
1 parent fa4cf48 commit 86fb408
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/simapp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
43 changes: 43 additions & 0 deletions relayer/relay/tests/config/fixtures/simple_config.toml
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 86fb408

Please sign in to comment.