export interface IcrcSubAccount {
    subAccountId: string;
    ledgerAddress: string;
    balance: bigint;
    currencyAmount: string;
    isSync: boolean;
}
