UNPKG

test-ic-wallet-middleware-icrc

Version:
11 lines (10 loc) 355 B
import { Principal } from "@dfinity/principal"; import { Amount } from "@ic-wallet-middleware/common"; import { SubAccountId } from "../../types/assets"; export interface SendTransactionForm { amount: Amount; ledgerAddress: string; subAccountId: SubAccountId; receiverAccountPrincipal: Principal; receiverSubAccountId: SubAccountId; }