interface DefaultPayload {
    arguments?: SuiArgument[];
    arguments_decoded: [string];
    function: string;
    module: string;
    package: string;
    type_arguments: [];
}

Hierarchy (view full)

Properties

arguments?: SuiArgument[]

The arguments to the function.

arguments_decoded: [string]

decoded argument data using ABI, undefined if there is decoding error, usually because the ABI/data mismatch

function: string

The function to be called.

module: string

The specific module in the package containing the function.

package: string

The package containing the module and function.

type_arguments: []

The type arguments to the function.