11require ( 'dotenv' ) . config ( )
22
3- require ( "@nomiclabs/hardhat-ethers" )
3+ // require("@nomiclabs/hardhat-ethers")
44require ( 'hardhat-docgen' )
55require ( 'hardhat-deploy' )
6- require ( "@nomiclabs/hardhat-waffle" )
6+
77require ( "@nomiclabs/hardhat-web3" )
8- require ( "@nomiclabs/hardhat-etherscan" )
9- require ( "solidity-coverage" )
10- require ( "hardhat-gas-reporter" )
8+ //require("@nomiclabs/hardhat-etherscan")
9+
1110//require("hardhat-docgen")
1211require ( "@hardhat-docgen/core" )
1312//require("@hardhat-docgen/markdown")
1413require ( "./docgen-custom-markdown" )
1514require ( 'hardhat-contract-sizer' )
1615require ( "hardhat-gas-trackooor" ) ;
1716
17+ require ( "@nomicfoundation/hardhat-toolbox" ) ;
18+ require ( "@nomicfoundation/hardhat-chai-matchers" ) ;
19+
1820const kovanURL = `https://eth-kovan.alchemyapi.io/v2/${ process . env . ALCHEMY_KOVAN } `
1921const goerliURL = `https://eth-goerli.alchemyapi.io/v2/${ process . env . ALCHEMY_GOERLI } `
2022const rinkebyURL = `https://rinkeby.infura.io/v3/${ process . env . INFURA_ID_PROJECT } ` //`https://eth-rinkeby.alchemyapi.io/v2/${process.env.ALCHEMY_RINKEBY}`
2123const bscURL = 'https://bsc-dataseed.binance.org' //`https://eth-rinkeby.alchemyapi.io/v2/${process.env.ALCHEMY_RINKEBY}`
2224const bsctestURL = 'https://data-seed-prebsc-1-s1.binance.org:8545' ;
2325const mainnetURL = `https://eth-mainnet.alchemyapi.io/v2/${ process . env . ALCHEMY_MAINNET } `
2426const maticURL = `https://polygon-mainnet.g.alchemy.com/v2/${ process . env . ALCHEMY_MATIC } `
25- const mumbaiURL = 'https://matic-mumbai.chainstacklabs.com' ;
27+ const mumbaiURL = 'https://polygon-mumbai-bor.publicnode.com' ; //'https:// matic-mumbai.chainstacklabs.com';
2628const arbitrumURL = `https://arbitrum-one.publicnode.com` ;
2729//const avalancheURL = `https://endpoints.omniatech.io/v1/avax/mainnet/public`;
2830const avalancheURL = `https://avalanche-c-chain.publicnode.com` ;
@@ -88,7 +90,7 @@ module.exports = {
8890 polygon : {
8991 url : maticURL ,
9092 chainId : 137 ,
91- // gasPrice: "auto",
93+ gasPrice : "auto" ,
9294 accounts : [
9395 process . env . private_key ,
9496 process . env . private_key_auxiliary ,
@@ -101,7 +103,7 @@ module.exports = {
101103 polygonMumbai : {
102104 url : mumbaiURL ,
103105 chainId : 80001 ,
104- // gasPrice: "auto",
106+ gasPrice : "auto" ,
105107 accounts : [
106108 process . env . private_key_auxiliary ,
107109 process . env . private_key_auxiliary ,
0 commit comments