@dcentralab/evm-providers
v2.0.34
Published
## Instalation ```shell npm install @dcentralab/wc-cardano-providers ``` or ```shell yarn add @dcentralab/wc-cardano-providers ```
Downloads
773
Readme
Wallet Ethereum Based Networks Cardano providers
Instalation
npm install @dcentralab/wc-cardano-providers
or
yarn add @dcentralab/wc-cardano-providers
Getting started
Package that aggregate all ethereum based providers supported by Dcentralab team:
- wc-binance
- wc-clover
- wc-coinbase
- wc-ledger
- wc-mm
- wc-portis
- wc-trezor
- wallet-connect
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
}