Interface EVMABIFunctionDefinition

Represents a function defined in accordance with the solidity ABI specification.

interface EVMABIFunctionDefinition {
    inputs: EVMABITupleComponent<ABIDefType>[];
    name: string;
    outputs: EVMABITupleComponent<ABIDefType>[];
    stateMutability: EVMABIFunctionStateAccess;
    type: EVMABIFunctionType;
}

Properties

name: string
stateMutability: EVMABIFunctionStateAccess