import { SubAccountId } from "../../types/assets/subAccountId";
export interface AssetSubAccount {
    subAccountId: SubAccountId;
    ledgerAddress: string;
    name: string;
    balance: bigint;
    currencyAmount: string;
    decimal: number;
}
