UNPKG

@ledgerhq/live-common

Version:
17 lines (13 loc) 376 B
import { Fee } from "../enum/Fee"; import { AccountType } from "../enum/Account"; export type TransactionType = Transaction; export class Transaction { public recipientAddress?: string; constructor( public accountToDebit: AccountType, public accountToCredit: AccountType, public amount: string, public speed?: Fee, public memoTag?: string, ) {} }