Variable jettonTransferConst

jettonTransfer: ZodObject<{
    amount: ZodString;
    custom_payload: ZodNullable<ZodString>;
    destination: ZodString;
    forward_payload: ZodNullable<ZodString>;
    forward_ton_amount: ZodNullable<ZodString>;
    jetton_master: ZodString;
    query_id: ZodString;
    response_destination: ZodNullable<ZodString>;
    source: ZodString;
    source_wallet: ZodString;
    transaction_hash: ZodString;
    transaction_lt: ZodString;
    transaction_now: ZodNumber;
}, "strip", ZodTypeAny, {
    amount: string;
    custom_payload: null | string;
    destination: string;
    forward_payload: null | string;
    forward_ton_amount: null | string;
    jetton_master: string;
    query_id: string;
    response_destination: null | string;
    source: string;
    source_wallet: string;
    transaction_hash: string;
    transaction_lt: string;
    transaction_now: number;
}, {
    amount: string;
    custom_payload: null | string;
    destination: string;
    forward_payload: null | string;
    forward_ton_amount: null | string;
    jetton_master: string;
    query_id: string;
    response_destination: null | string;
    source: string;
    source_wallet: string;
    transaction_hash: string;
    transaction_lt: string;
    transaction_now: number;
}> = ...

Type declaration

  • amount: ZodString
  • custom_payload: ZodNullable<ZodString>
  • destination: ZodString
  • forward_payload: ZodNullable<ZodString>
  • forward_ton_amount: ZodNullable<ZodString>
  • jetton_master: ZodString
  • query_id: ZodString
  • response_destination: ZodNullable<ZodString>
  • source: ZodString
  • source_wallet: ZodString
  • transaction_hash: ZodString
  • transaction_lt: ZodString
  • transaction_now: ZodNumber

Type declaration

  • amount: string
  • custom_payload: null | string
  • destination: string
  • forward_payload: null | string
  • forward_ton_amount: null | string
  • jetton_master: string
  • query_id: string
  • response_destination: null | string
  • source: string
  • source_wallet: string
  • transaction_hash: string
  • transaction_lt: string
  • transaction_now: number

Type declaration

  • amount: string
  • custom_payload: null | string
  • destination: string
  • forward_payload: null | string
  • forward_ton_amount: null | string
  • jetton_master: string
  • query_id: string
  • response_destination: null | string
  • source: string
  • source_wallet: string
  • transaction_hash: string
  • transaction_lt: string
  • transaction_now: number

Generated using TypeDoc