UNPKG

@tatumio/tatum

Version:

Tatum JS SDK

14 lines (13 loc) 329 B
import type { AccountAddress } from './AccountAddress'; import type { Refund } from './Refund'; export type SmartContractAction = { executor: AccountAddress; contract: AccountAddress; /** * amount in nanotons */ ton_attached: number; operation: string; payload?: string; refund?: Refund; };