1 import type { WasmAccount, WasmWallet } from '@proton/andromeda';
2 import { type SimpleMap } from '@proton/shared/lib/interfaces';
4 export type AccountWithChainData = {
7 derivationPath: string;
11 export type AccountChainDataByAccountId = SimpleMap<AccountWithChainData>;
12 export type AccountIdByDerivationPathAndWalletId = SimpleMap<SimpleMap<string>>;
14 export type WalletWithChainData = {
16 accounts: AccountChainDataByAccountId;
19 export type WalletChainDataByWalletId = SimpleMap<WalletWithChainData>;