Variable nftCollectionsConst

nftCollections: ZodObject<{
    nft_collections: ZodArray<ZodObject<{
        address: ZodString;
        code_hash: ZodString;
        collection_content: ZodAny;
        data_hash: ZodString;
        last_transaction_lt: ZodString;
        next_item_index: ZodString;
        owner_address: ZodNullable<ZodString>;
    }, "strip", ZodTypeAny, {
        address: string;
        code_hash: string;
        collection_content?: any;
        data_hash: string;
        last_transaction_lt: string;
        next_item_index: string;
        owner_address: null | string;
    }, {
        address: string;
        code_hash: string;
        collection_content?: any;
        data_hash: string;
        last_transaction_lt: string;
        next_item_index: string;
        owner_address: null | string;
    }>, "many">;
}, "strip", ZodTypeAny, {
    nft_collections: ({ address: string; code_hash: string; data_hash: string; last_transaction_lt: string; owner_address: string | null; next_item_index: string; collection_content?: any; })[];
}, {
    nft_collections: ({ address: string; code_hash: string; data_hash: string; last_transaction_lt: string; owner_address: string | null; next_item_index: string; collection_content?: any; })[];
}> = ...

Type declaration

  • nft_collections: ZodArray<ZodObject<{
        address: ZodString;
        code_hash: ZodString;
        collection_content: ZodAny;
        data_hash: ZodString;
        last_transaction_lt: ZodString;
        next_item_index: ZodString;
        owner_address: ZodNullable<ZodString>;
    }, "strip", ZodTypeAny, {
        address: string;
        code_hash: string;
        collection_content?: any;
        data_hash: string;
        last_transaction_lt: string;
        next_item_index: string;
        owner_address: null | string;
    }, {
        address: string;
        code_hash: string;
        collection_content?: any;
        data_hash: string;
        last_transaction_lt: string;
        next_item_index: string;
        owner_address: null | string;
    }>, "many">

Type declaration

  • nft_collections: ({ address: string; code_hash: string; data_hash: string; last_transaction_lt: string; owner_address: string | null; next_item_index: string; collection_content?: any; })[]

Type declaration

  • nft_collections: ({ address: string; code_hash: string; data_hash: string; last_transaction_lt: string; owner_address: string | null; next_item_index: string; collection_content?: any; })[]

Generated using TypeDoc