@tatumio/tatum
Version:
Tatum JS SDK
15 lines (14 loc) • 399 B
TypeScript
import type { AccountAddress } from './AccountAddress';
import type { EncryptedComment } from './EncryptedComment';
import type { Refund } from './Refund';
export type TonTransferAction = {
sender: AccountAddress;
recipient: AccountAddress;
/**
* amount in nanotons
*/
amount: number;
comment?: string;
encrypted_comment?: EncryptedComment;
refund?: Refund;
};