Skip to content

Commit

Permalink
Add mandatory type setting where missing in the guide (#3679)
Browse files Browse the repository at this point in the history
  • Loading branch information
romac authored Oct 25, 2023
1 parent df57aa3 commit 8bddbe5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ port = 3001

[[chains]]
id = 'ibc-0'
type = 'CosmosSdk'
rpc_addr = 'http://localhost:27050'
grpc_addr = 'http://localhost:27052'
event_source = { mode = 'push', url = 'ws://localhost:27050/websocket', batch_delay = '500ms' }
Expand All @@ -49,6 +50,7 @@ list = [

[[chains]]
id = 'ibc-1'
type = 'CosmosSdk'
rpc_addr = 'http://localhost:27060'
grpc_addr = 'http://localhost:27062'
event_source = { mode = 'push', url = 'ws://localhost:27060/websocket', batch_delay = '500ms' }
Expand All @@ -72,6 +74,7 @@ list = [

[[chains]]
id = 'ibc-2'
type = 'CosmosSdk'
rpc_addr = 'http://localhost:27070'
grpc_addr = 'http://localhost:27072'
event_source = { mode = 'push', url = 'ws://localhost:27070/websocket', batch_delay = '500ms' }
Expand All @@ -94,6 +97,7 @@ list = [

[[chains]]
id = 'ibc-3'
type = 'CosmosSdk'
rpc_addr = 'http://localhost:27080'
grpc_addr = 'http://localhost:27082'
event_source = { mode = 'push', url = 'ws://localhost:27080/websocket', batch_delay = '500ms' }
Expand All @@ -112,4 +116,4 @@ policy = 'allow'
list = [
['transfer', 'channel-0'],
['transfer', 'channel-2'],
]
]
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ port = 3001

[[chains]]
id = 'ibc-0'
type = 'CosmosSdk'
rpc_addr = 'http://localhost:27050'
grpc_addr = 'http://localhost:27052'
event_source = { mode = 'push', url = 'ws://localhost:27050/websocket', batch_delay = '500ms' }
Expand All @@ -42,6 +43,7 @@ trust_threshold = { numerator = '1', denominator = '3' }

[[chains]]
id = 'ibc-1'
type = 'CosmosSdk'
rpc_addr = 'http://localhost:27060'
grpc_addr = 'http://localhost:27062'
event_source = { mode = 'push', url = 'ws://localhost:27060/websocket', batch_delay = '500ms' }
Expand All @@ -57,6 +59,7 @@ trust_threshold = { numerator = '1', denominator = '3' }

[[chains]]
id = 'ibc-2'
type = 'CosmosSdk'
rpc_addr = 'http://localhost:27070'
grpc_addr = 'http://localhost:27072'
event_source = { mode = 'push', url = 'ws://localhost:27070/websocket', batch_delay = '500ms' }
Expand All @@ -72,6 +75,7 @@ trust_threshold = { numerator = '1', denominator = '3' }

[[chains]]
id = 'ibc-3'
type = 'CosmosSdk'
rpc_addr = 'http://localhost:27080'
grpc_addr = 'http://localhost:27082'
event_source = { mode = 'push', url = 'ws://localhost:27080/websocket', batch_delay = '500ms' }
Expand All @@ -83,4 +87,4 @@ gas_price = { price = 0.01, denom = 'stake' }
max_gas = 10000000
clock_drift = '5s'
trusting_period = '14days'
trust_threshold = { numerator = '1', denominator = '3' }
trust_threshold = { numerator = '1', denominator = '3' }
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ port = 3002

[[chains]]
id = 'ibc-0'
type = 'CosmosSdk'
rpc_addr = 'http://localhost:27050'
grpc_addr = 'http://localhost:27052'
event_source = { mode = 'push', url = 'ws://localhost:27050/websocket', batch_delay = '500ms' }
Expand All @@ -48,6 +49,7 @@ list = [

[[chains]]
id = 'ibc-1'
type = 'CosmosSdk'
rpc_addr = 'http://localhost:27060'
grpc_addr = 'http://localhost:27062'
event_source = { mode = 'push', url = 'ws://localhost:27060/websocket', batch_delay = '500ms' }
Expand All @@ -70,6 +72,7 @@ list = [

[[chains]]
id = 'ibc-2'
type = 'CosmosSdk'
rpc_addr = 'http://localhost:27070'
grpc_addr = 'http://localhost:27072'
event_source = { mode = 'push', url = 'ws://localhost:27070/websocket', batch_delay = '500ms' }
Expand All @@ -91,6 +94,7 @@ list = [

[[chains]]
id = 'ibc-3'
type = 'CosmosSdk'
rpc_addr = 'http://localhost:27080'
grpc_addr = 'http://localhost:27082'
event_source = { mode = 'push', url = 'ws://localhost:27080/websocket', batch_delay = '500ms' }
Expand All @@ -108,4 +112,4 @@ trust_threshold = { numerator = '1', denominator = '3' }
policy = 'allow'
list = [
['transfer', 'channel-1'],
]
]

0 comments on commit 8bddbe5

Please sign in to comment.