Interface ITransactionData

Interface for transaction data

See

  • fee - fee paid for transaction
  • amount - amount of tokens sent
  • recipientAddress - recipient address
interface ITransactionData {
    amount: bigint;
    fee: bigint;
    recipientAddress: string;
}

Properties

amount: bigint
fee: bigint
recipientAddress: string

Generated using TypeDoc