Interface EntryFunctionJSON

interface EntryFunctionJSON {
    args: number[][];
    function: string;
    module: {
        address: string;
        name: string;
    };
    ty_args: FunctionTypeArgs[];
}

Properties

args: number[][]
function: string
module: {
    address: string;
    name: string;
}

Type declaration

  • address: string
  • name: string
ty_args: FunctionTypeArgs[]