Use source loader for email sprite icons
[ProtonMail-WebClient.git] / packages / wallet / types / wallet.ts
blobbd351e8cfa65fad98e88e1e2c257712e810c4006
1 import type { WasmAccount, WasmWallet } from '@proton/andromeda';
2 import { type SimpleMap } from '@proton/shared/lib/interfaces';
4 export type AccountWithChainData = {
5     account: WasmAccount;
6     scriptType: number;
7     derivationPath: string;
8     poolSize: number;
9 };
11 export type AccountChainDataByAccountId = SimpleMap<AccountWithChainData>;
12 export type AccountIdByDerivationPathAndWalletId = SimpleMap<SimpleMap<string>>;
14 export type WalletWithChainData = {
15     wallet: WasmWallet;
16     accounts: AccountChainDataByAccountId;
19 export type WalletChainDataByWalletId = SimpleMap<WalletWithChainData>;