BaseRainterpreterExternNPE2

Git Source

Inherits: IInterpreterExternV3, ERC165

Base implementation of IInterpreterExternV3. Inherit from this contract, and override functionPointers to provide a list of function pointers.

Functions

extern

Handles a single dispatch.

function extern(ExternDispatch dispatch, uint256[] memory inputs)
    external
    view
    virtual
    override
    returns (uint256[] memory 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.

externIntegrity

Checks the integrity of some extern call.

function externIntegrity(ExternDispatch dispatch, uint256 expectedInputs, uint256 expectedOutputs)
    external
    pure
    virtual
    override
    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.

supportsInterface

See {IERC165-supportsInterface}.

function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool);

opcodeFunctionPointers

Overrideable function to provide the list of function pointers for word dispatches.

function opcodeFunctionPointers() internal view virtual returns (bytes memory);

integrityFunctionPointers

Overrideable function to provide the list of function pointers for integrity checks.

function integrityFunctionPointers() internal pure virtual returns (bytes memory);