nftItems: ZodObject<
{
nft_items: ZodArray<
ZodObject<
{
address: ZodString;
code_hash: ZodString;
collection: ZodNullable<
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,
>,
>;
collection_address: ZodNullable<ZodString>;
content: ZodAny;
data_hash: ZodString;
index: ZodString;
init: ZodBoolean;
last_transaction_lt: ZodString;
owner_address: ZodNullable<ZodString>;
},
$strip,
>,
>;
},
$strip,
> = ...