UNPKG

test-ic-wallet-middleware-icrc

Version:
16 lines (15 loc) 493 B
import { SupportedStandardEnum } from "../../types/wallets/supportedStandardEnum"; import { WalletSubAccount } from "../../types/wallets/walletSubAccount"; export interface WalletAsset { sortOrder: number; indexAddress: string; ledgerAddress: string; name: string; symbol: string; logo: string | undefined; tokenSymbol: string; tokenName: string; shortDecimal: number; subAccounts: WalletSubAccount[]; supportedStandards: SupportedStandardEnum[]; }