EvaluableConfigV3

Git Source

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 IExpressionDeployerV3 but is NOT mandatory.

struct EvaluableConfigV3 {
    IExpressionDeployerV3 deployer;
    bytes bytecode;
    uint256[] constants;
}

Properties

NameTypeDescription
deployerIExpressionDeployerV3Will deploy the expression from sources and constants.
bytecodebytesWill be deployed to an expression address for use in Evaluable.
constantsuint256[]Will be available to the expression at runtime.