File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change 2727 "@ethereum-waffle/chai" : " ^3.4.4" ,
2828 "@remix-project/remix-simulator" : " ^0.2.79" ,
2929 "chai" : " ^4.3.7" ,
30- "ethers" : " ^6.14.0" ,
31- "web3" : " ^4.1.1"
30+ "ethers" : " ^6.14.0"
3231 },
3332 "types" : " ./src/index.d.ts" ,
3433 "gitHead" : " 326045634cac1e4a67dd21ac2d7716d21ebd6754"
Original file line number Diff line number Diff line change 22import { BrowserProvider , Contract , InterfaceAbi } from "ethers"
33import { Provider } from '@remix-project/remix-simulator'
44import { getArtifactsByContractName } from './artifacts-helper'
5- import { Web3 } from "web3"
65
76const providerConfig = {
87 fork : global . fork || null ,
@@ -16,8 +15,6 @@ global.remixProvider.init()
1615global . web3Provider = new BrowserProvider ( global . remixProvider )
1716global . provider = global . web3Provider
1817global . ethereum = global . web3Provider
19- global . web3 = new Web3 ( global . web3Provider )
20- global . web3 . eth . setConfig ( config )
2118
2219const isFactoryOptions = ( signerOrOptions : any ) => {
2320 if ( ! signerOrOptions || signerOrOptions === undefined || typeof ( signerOrOptions . connect ) === 'function' ) return false
You can’t perform that action at this time.
0 commit comments