@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
17 lines (13 loc) • 376 B
text/typescript
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,
) {}
}