Variable jettonBurnConst

jettonBurn: ZodObject<{
    custom_payload: ZodNullable<ZodString>;
    jetton_master: ZodString;
    owner: ZodString;
    query_id: ZodString;
    response_destination: ZodNullable<ZodString>;
    transaction_hash: ZodString;
    transaction_lt: ZodString;
    transaction_now: ZodNumber;
}, "strip", ZodTypeAny, {
    custom_payload: null | string;
    jetton_master: string;
    owner: string;
    query_id: string;
    response_destination: null | string;
    transaction_hash: string;
    transaction_lt: string;
    transaction_now: number;
}, {
    custom_payload: null | string;
    jetton_master: string;
    owner: string;
    query_id: string;
    response_destination: null | string;
    transaction_hash: string;
    transaction_lt: string;
    transaction_now: number;
}> = ...

Type declaration

  • custom_payload: ZodNullable<ZodString>
  • jetton_master: ZodString
  • owner: ZodString
  • query_id: ZodString
  • response_destination: ZodNullable<ZodString>
  • transaction_hash: ZodString
  • transaction_lt: ZodString
  • transaction_now: ZodNumber

Type declaration

  • custom_payload: null | string
  • jetton_master: string
  • owner: string
  • query_id: string
  • response_destination: null | string
  • transaction_hash: string
  • transaction_lt: string
  • transaction_now: number

Type declaration

  • custom_payload: null | string
  • jetton_master: string
  • owner: string
  • query_id: string
  • response_destination: null | string
  • transaction_hash: string
  • transaction_lt: string
  • transaction_now: number

Generated using TypeDoc