@dcentralab/wc-hw-wallet-utils
v2.0.34
Published
Ethereum Utils for hardware wallets
Downloads
894
Readme
Hardware Wallet utils
Instalation
npm install @dcentralab/wc-hw-wallet-utils
or
yarn add @dcentralab/wc-hw-wallet-utils
Getting started
Services and utils for hardware wallet required by:
- wc-ledger
- wc-trezor
CREATE-REACT-APP
To support hardware wallets in create-react-app
you need to use react-app-rewired
const NodePolyfill = require('node-polyfill-webpack-plugin');
module.exports = function override (config, env) {
console.log('override')
config.plugins.push(new NodePolyfill())
return config
}