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

    Type Alias GetAccountCollectionsWithOwnedTokensQuery

    type GetAccountCollectionsWithOwnedTokensQuery = {
        current_collection_ownership_v2_view: {
            collection_id?: string | null;
            collection_name?: string | null;
            collection_uri?: string | null;
            creator_address?: string | null;
            current_collection?:
                | {
                    collection_id: string;
                    collection_name: string;
                    creator_address: string;
                    current_supply: any;
                    description: string;
                    last_transaction_timestamp: any;
                    last_transaction_version: any;
                    max_supply?: any
                    | null;
                    mutable_description?: boolean | null;
                    mutable_uri?: boolean | null;
                    table_handle_v1?: string | null;
                    token_standard: string;
                    total_minted_v2?: any | null;
                    uri: string;
                }
                | null;
            distinct_tokens?: any
            | null;
            last_transaction_version?: any | null;
            owner_address?: string | null;
            single_token_uri?: string | null;
        }[];
    }
    Index

    Properties

    current_collection_ownership_v2_view: {
        collection_id?: string | null;
        collection_name?: string | null;
        collection_uri?: string | null;
        creator_address?: string | null;
        current_collection?:
            | {
                collection_id: string;
                collection_name: string;
                creator_address: string;
                current_supply: any;
                description: string;
                last_transaction_timestamp: any;
                last_transaction_version: any;
                max_supply?: any
                | null;
                mutable_description?: boolean | null;
                mutable_uri?: boolean | null;
                table_handle_v1?: string | null;
                token_standard: string;
                total_minted_v2?: any | null;
                uri: string;
            }
            | null;
        distinct_tokens?: any
        | null;
        last_transaction_version?: any | null;
        owner_address?: string | null;
        single_token_uri?: string | null;
    }[]