@tonkite/highload-wallet-v3
Version:
The wrapper for highload-wallet-v3.
13 lines (12 loc) • 490 B
TypeScript
import { Builder, OutActionSendMsg, Writable } from '@ton/core';
export declare class InternalMessage implements Writable {
readonly queryId: number;
readonly actions: OutActionSendMsg[];
/**
* @dev internal_transfer#ae42e5a4 n:# query_id:uint64 actions:^OutList n = InternalMsgBody n
*/
static readonly TAG = 2923619748;
constructor(queryId: number, actions: OutActionSendMsg[]);
writeTo(builder: Builder): void;
toCell(): import("@ton/core").Cell;
}