This module provides a custom WalletStore implementation that allows a Hyperledger Fabric version 1.4 wallet to be used with the Hyperledger Fabric version 2.0 SDK for Node.
Example migration from v1.4 to v2 wallet format
;; // fabric-network v2 { const walletStore = await WalletMigration; const oldWallet = walletStore; const newWallet = await Wallets; const identityLabels = await oldWallet; for const label of identityLabels const identity = await oldWallet; if identity await newWallet; }