EvaluableConfigV2
Standard struct that can be embedded in ABIs in a consistent format for
tooling to read/write. MAY be useful to bundle up the data required to call
IExpressionDeployerV2 but is NOT mandatory.
struct EvaluableConfigV2 {
IExpressionDeployerV2 deployer;
bytes bytecode;
uint256[] constants;
}
Properties
| Name | Type | Description |
|---|---|---|
deployer | IExpressionDeployerV2 | Will deploy the expression from sources and constants. |
bytecode | bytes | Will be deployed to an expression address for use in Evaluable. |
constants | uint256[] | Will be available to the expression at runtime. |