npm install failed
See original GitHub issue- System: windows10 x64
- npm version: 6.13.1
- nodejs version: 12.16.3
when I run command npm install --save ethers
,
npm ERR! code EINVALIDPACKAGENAME npm ERR! Invalid package name "@sindresorhus_is@0.14.0@@sindresorhus": name can not start with an underscore; name can only contain URL-friendly characters npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\Bruce\AppData\Roaming\npm-cache_logs\2020-05-12T06_44_06 696Z-debug.log
How to fix it, I find nothing about this error.
Issue Analytics
- State:
- Created 3 years ago
- Comments:8 (4 by maintainers)
Top GitHub Comments
You could subclass Wallet and do that (call super, passing in the default provider).
But you probably don’t always want all your wallets automatically connected to mainnet. Your test cases will usually connect to a dev network or in-process provider and your users may be using other networks.
Also, a lot of times you will want a Wallet with no provider (or even network access) at all. 😃
It’s right! Many Thanks!