test-ic-wallet-middleware-icrc
Version:
Ic middleware wallet ICRC protocol
13 lines (12 loc) • 350 B
TypeScript
import { AssetSubAccountView } from "../../types/assets/assetSubAccountView";
export interface AssetICRC {
indexAddress: string;
ledgerAddress: string;
decimal: number;
logo: string | undefined;
tokenName: string;
tokenSymbol: string;
transactionFee: bigint;
subAccounts: AssetSubAccountView[];
isSync: boolean;
}