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;
}
