test-ic-wallet-middleware-icrc
Version:
Ic middleware wallet ICRC protocol
16 lines (15 loc) • 493 B
TypeScript
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[];
}