Conversation
|
I see you updated files related to
|
There was a problem hiding this comment.
Pull request overview
Adds a new CRE environment TOML config for running a larger sharded workflow-gateway topology.
Changes:
- Introduces a new environment config with two Anvil chains and a Job Distributor image.
- Defines multiple workflow “shard” DON nodesets plus a bootstrap/gateway nodeset.
- Configures node Docker build parameters, DB containers, and selected exposed ports.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
core/scripts/cre/environment/configs/workflow-gateway-sharded-5-dons.toml
Outdated
Show resolved
Hide resolved
core/scripts/cre/environment/configs/workflow-gateway-sharded-5-dons.toml
Outdated
Show resolved
Hide resolved
core/scripts/cre/environment/configs/workflow-gateway-sharded-5-dons.toml
Outdated
Show resolved
Hide resolved
core/scripts/cre/environment/configs/workflow-gateway-sharded-5-dons.toml
Outdated
Show resolved
Hide resolved
core/scripts/cre/environment/configs/workflow-gateway-sharded-5-dons.toml
Outdated
Show resolved
Hide resolved
|
|
||
| [[blockchains]] | ||
| type = "anvil" | ||
| chain_id = "1337" |
There was a problem hiding this comment.
chain_id is configured as a string while supported_evm_chains uses integers. If the config loader expects consistent types, this can break chain matching/selection. Consider making chain_id numeric (no quotes) or making supported_evm_chains strings to match.
|
|
||
| [[blockchains]] | ||
| type = "anvil" | ||
| chain_id = "2337" |
There was a problem hiding this comment.
chain_id is configured as a string while supported_evm_chains uses integers. If the config loader expects consistent types, this can break chain matching/selection. Consider making chain_id numeric (no quotes) or making supported_evm_chains strings to match.
| http_port_range_start = 10300 | ||
|
|
||
| env_vars = { CL_EVM_CMD = "" } | ||
| supported_evm_chains = [1337, 2337] |
There was a problem hiding this comment.
chain_id is configured as a string while supported_evm_chains uses integers. If the config loader expects consistent types, this can break chain matching/selection. Consider making chain_id numeric (no quotes) or making supported_evm_chains strings to match.
| [[nodesets]] | ||
| nodes = 4 | ||
| name = "shard5" | ||
| don_types = ["workflow", "shard"] | ||
| shard_index = 5 |
There was a problem hiding this comment.
The filename indicates “sharded-5-dons”, but the config defines shard0 through shard5 (6 shard DONs). Rename the file to reflect the actual shard count or adjust the topology to match the “5 dons” naming.
core/scripts/cre/environment/configs/workflow-gateway-sharded-5-dons.toml
Show resolved
Hide resolved
adc5d63 to
ae61787
Compare
ae61787 to
48c7f5d
Compare
|





No description provided.