test-ic-wallet-middleware-icrc
Version:
Ic middleware wallet ICRC protocol
14 lines (13 loc) • 337 B
TypeScript
import { IcrcSubAccount } from "./icrcSubAccount";
export interface IcrcAsset {
ledgerAddress: string;
indexAddress: string;
decimal: number;
logo: string | undefined;
name: string;
symbol: string;
fee: string | undefined;
transactionFee: bigint;
subAccounts: IcrcSubAccount[];
isSync: boolean;
}