@sentio/sdk
    Preparing search index...

    Interface SplitPayload<T0>

    interface SplitPayload<T0 = any> {
        arguments: Argument[];
        arguments_decoded: [string, bigint, string];
        function?: string;
        module?: string;
        package?: string;
        type_arguments: [string];
        typeArguments: string[];
    }

    Type Parameters

    • T0 = any

    Hierarchy (View Summary)

    Index

    Properties

    arguments: Argument[]

    The arguments to the function.

    from protobuf field: repeated sui.rpc.v2.Argument arguments = 5;

    arguments_decoded: [string, bigint, 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.

    from protobuf field: optional string function = 3;

    module?: string

    The specific module in the package containing the function.

    from protobuf field: optional string module = 2;

    package?: string

    The package containing the module and function.

    from protobuf field: optional string package = 1;

    type_arguments: [string]
    typeArguments: string[]

    The type arguments to the function.

    from protobuf field: repeated string type_arguments = 4;