IInterpreterExternV3

Git Source

Functions

externIntegrity

Checks the integrity of some extern call.

function externIntegrity(ExternDispatch dispatch, uint256 expectedInputs, uint256 expectedOutputs)
    external
    view
    returns (uint256 actualInputs, uint256 actualOutputs);

Parameters

NameTypeDescription
dispatchExternDispatchEncoded information about the extern to dispatch. Analogous to the opcode/operand in the interpreter.
expectedInputsuint256The number of inputs expected for the dispatched logic.
expectedOutputsuint256The number of outputs expected for the dispatched logic.

Returns

NameTypeDescription
actualInputsuint256The actual number of inputs for the dispatched logic.
actualOutputsuint256The actual number of outputs for the dispatched logic.

extern

Handles a single dispatch.

function extern(ExternDispatch dispatch, uint256[] calldata inputs)
    external
    view
    returns (uint256[] calldata outputs);

Parameters

NameTypeDescription
dispatchExternDispatchEncoded information about the extern to dispatch. Analogous to the opcode/operand in the interpreter.
inputsuint256[]The array of inputs for the dispatched logic.

Returns

NameTypeDescription
outputsuint256[]The result of the dispatched logic.