Variable nftCollectionConst
nftCollection: 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;
}> = ...
Type declaration
address: ZodString
code_hash: ZodString
collection_content: ZodAny
data_hash: ZodString
last_transaction_lt: ZodString
next_item_index: ZodString
owner_address: ZodNullable<ZodString>
Type declaration
address: string
code_hash: string
Optional
collection_content?: any
data_hash: string
last_transaction_lt: string
next_item_index: string
owner_address: null | string
Type declaration
address: string
code_hash: string
Optional
collection_content?: any
data_hash: string
last_transaction_lt: string
next_item_index: string
owner_address: null | string