test-ic-wallet-middleware-icrc
Version:
Ic middleware wallet ICRC protocol
11 lines (10 loc) • 355 B
TypeScript
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;
}