@aptos-labs/ts-sdk - v5.1.4
    Preparing search index...

    Type Alias DecodedTableData

    The decoded data for a table, including its key in JSON format.

    type DecodedTableData = {
        key: any;
        key_type: string;
        value: any;
        value_type: string;
    }
    Index

    Properties

    key: any

    Key of table in JSON

    key_type: string

    Type of key

    value: any

    Value of table in JSON

    value_type: string

    Type of value