Variable jettonMasterConst
jettonMaster: ZodObject<{
address: ZodString;
admin_address: ZodNullable<ZodString>;
code_hash: ZodString;
data_hash: ZodString;
jetton_content: ZodAny;
jetton_wallet_code_hash: ZodString;
last_transaction_lt: ZodString;
mintable: ZodBoolean;
total_supply: ZodString;
}, "strip", ZodTypeAny, {
address: string;
admin_address: null | string;
code_hash: string;
data_hash: string;
jetton_content?: any;
jetton_wallet_code_hash: string;
last_transaction_lt: string;
mintable: boolean;
total_supply: string;
}, {
address: string;
admin_address: null | string;
code_hash: string;
data_hash: string;
jetton_content?: any;
jetton_wallet_code_hash: string;
last_transaction_lt: string;
mintable: boolean;
total_supply: string;
}> = ...
Type declaration
address: ZodString
admin_address: ZodNullable<ZodString>
code_hash: ZodString
data_hash: ZodString
jetton_content: ZodAny
jetton_wallet_code_hash: ZodString
last_transaction_lt: ZodString
mintable: ZodBoolean
total_supply: ZodString
Type declaration
address: string
admin_address: null | string
code_hash: string
data_hash: string
Optional
jetton_content?: any
jetton_wallet_code_hash: string
last_transaction_lt: string
mintable: boolean
total_supply: string
Type declaration
address: string
admin_address: null | string
code_hash: string
data_hash: string
Optional
jetton_content?: any
jetton_wallet_code_hash: string
last_transaction_lt: string
mintable: boolean
total_supply: string