test-ic-wallet-middleware-icrc
Version:
Ic middleware wallet ICRC protocol
19 lines (18 loc) • 530 B
TypeScript
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;
}