diff --git a/packages/web-extension/src/walletManager/types.ts b/packages/web-extension/src/walletManager/types.ts index bef32173c20..cadd6dab8ee 100644 --- a/packages/web-extension/src/walletManager/types.ts +++ b/packages/web-extension/src/walletManager/types.ts @@ -21,10 +21,12 @@ export type Bip32WalletAccount = { extendedAccountPublicKey: Bip32PublicKeyHex; }; +export type Blockchain = 'Cardano' | 'Bitcoin'; export type Bip32Wallet = { walletId: WalletId; metadata: WalletMetadata; accounts: Bip32WalletAccount[]; + blockchainName?: Blockchain; }; export type HardwareWallet = Bip32Wallet<