UNPKG

test-ic-wallet-middleware-icrc

Version:
19 lines (18 loc) 530 B
import { SupportedStandardEnum } from "../../types/wallets"; import { AssetSubAccountView } from "./assetSubAccountView"; export interface AssetView { sortOrder: number; indexAddress: string; ledgerAddress: string; name: string; symbol: string; subAccounts: AssetSubAccountView[]; supportedStandards: SupportedStandardEnum[]; logo: string | undefined; shortDecimal: number; decimal: number; tokenName: string; tokenSymbol: string; transactionFee: bigint; isSync: boolean; }