Updated connectors.json

This commit is contained in:
Thrilok Kumar 2021-04-07 18:43:37 +05:30
parent 1dab4ecfc3
commit ad10944b63
2 changed files with 26 additions and 13 deletions

View File

@ -1,4 +1,5 @@
{
"1" : {
"1INCH-A": "0x6C7256cf7C003dD85683339F75DdE9971f98f2FD",
"AAVE-V1-A": "0x127d8cD0E2b2E0366D522DeA53A787bfE9002C14",
"AAVE-V2-A": "0x497Bc53507DF17e60F731e9534cff74E8BC9DBb8",
@ -8,4 +9,10 @@
"COMPOUND-A": "0xcD7661f786D5fd6b87ee33497Dd9cCD3b2702012",
"MAKERDAO-A": "0x839c2D3aDe63DF5b0b8F3E57D5e145057Ab41556",
"UNISWAP-A": "0xA4BF319968986D2352FA1c550D781bBFCCE3FcaB"
},
"137" : {
"AUTHORITY-A" : "0xf6474aD0dA75A0dE15D2c915e601D9f754B9e6fe",
"BASIC-A": "0x1cAF5EC802ca602E98139AD96A8f2B7BC524264E",
"AAVE-V2-A" : "0xE84d8010Afc3663919F44685cB53ED88866da3eE"
}
}

View File

@ -29,16 +29,16 @@ module.exports = {
]
},
networks: {
default: "hardhat",
// default: "hardhat",
kovan: {
url: `https://eth-kovan.alchemyapi.io/v2/${ALCHEMY_ID}`,
accounts: [`0x${PRIVATE_KEY}`]
},
mainnet: {
url: `https://eth.alchemyapi.io/v2/${ALCHEMY_ID}`,
url: `https://eth-mainnet.alchemyapi.io/v2/${ALCHEMY_ID}`,
accounts: [`0x${PRIVATE_KEY}`],
timeout: 150000,
gasPrice: parseInt(utils.parseUnits("161", "gwei"))
gasPrice: parseInt(utils.parseUnits("132", "gwei"))
},
hardhat: {
forking: {
@ -47,6 +47,12 @@ module.exports = {
},
blockGasLimit: 12000000,
},
matic: {
url: "https://rpc-mainnet.maticvigil.com/",
accounts: [`0x${PRIVATE_KEY}`],
timeout: 150000,
gasPrice: parseInt(utils.parseUnits("1", "gwei"))
}
},
etherscan: {
apiKey: process.env.ETHERSCAN_API_KEY