@@ -155,7 +155,7 @@ The configuration file is a toml file that at the moment, that expects the follo
155
155
``` toml
156
156
# Hyperbridge config, required
157
157
[hyperbridge ]
158
- state_machine = { Kusama = 4009 }
158
+ state_machine = " KUSAMA- 4009"
159
159
# Hyperbridge node ws rpc endpoint.
160
160
rpc_ws = " ws://127.0.0.1:9944" # example endpoint
161
161
# Sets the maximum size of an rpc request or response in bytes defaults to 150mb
@@ -176,11 +176,11 @@ minimum_withdrawal_amount = 100
176
176
unprofitable_retry_frequency = 600
177
177
# (Optional) If not empty, tesseract will only deliver requests to the specified state-machines
178
178
delivery_endpoints = [
179
- { Ethereum = " ExecutionLayer " } ,
180
- { Ethereum = " Arbitrum " } ,
181
- { Ethereum = " Optimism " } ,
182
- { Ethereum = " Base " } ,
183
- " Bsc "
179
+ " ETH-EXEC " ,
180
+ " ETH-ARBI " ,
181
+ " ETH-OPTI " ,
182
+ " ETH-BASE " ,
183
+ " BSC "
184
184
]
185
185
186
186
# Here you'll declare a new chain entry for every chain you want to support.
@@ -189,12 +189,12 @@ delivery_endpoints = [
189
189
# configuration type can be either "evm" or "substrate"
190
190
type = " evm"
191
191
# State machine identifier for the this evm chain. The possible values:
192
- # state_machine = { Ethereum = "ExecutionLayer" } # Ethereum L1
193
- # state_machine = { Ethereum = "Arbitrum" }
194
- # state_machine = { Ethereum = "Optimism" }
195
- # state_machine = { Ethereum = "Base" }
196
- # state_machine = "Bsc " # Binance smart chain
197
- state_machine = { Ethereum = " ExecutionLayer " }
192
+ # state_machine = "ETH-EXEC" # Ethereum L1
193
+ # state_machine = "ETH-ARBI" # Arbitrum
194
+ # state_machine = "ETH-OPTI" # Optimism
195
+ # state_machine = "ETH-BASE" # Base
196
+ # state_machine = "BSC " # Binance smart chain
197
+ state_machine = " ETH-EXEC "
198
198
# http(s) rpc urls for evm based chains
199
199
# Multiple rpc endpoints supported for increased reliability
200
200
rpc_urls = [" http://127.0.0.1:8545" , " " ]
@@ -236,15 +236,15 @@ gas_price_buffer = 1
236
236
# client_type = Geth
237
237
# client_type = Erigon
238
238
# If this field is not set, the default is Geth
239
- client_type = " Erigon "
239
+ client_type = " Geth "
240
240
241
241
[substrate ]
242
242
type = " substrate"
243
243
# The state machine identifier for this substrate based chain.
244
244
# must be one of:
245
- # - { Polkadot = paraId }
246
- # - { Kusama = paraId }
247
- state_machine = { Kusama = 4009 }
245
+ # - "POLKADOT-{ paraId}"
246
+ # - "KUSAMA-{ paraId}"
247
+ state_machine = " KUSAMA- 4009"
248
248
# substrate node ws(s) rpc endpoint.
249
249
rpc_ws = " ws://127.0.0.1:9944" # example endpoint
250
250
# Configures the maximum size of an rpc request/response in bytes
0 commit comments