Skip to content

Commit

Permalink
added mainnet support
Browse files Browse the repository at this point in the history
  • Loading branch information
Robsonsjre committed Apr 28, 2021
1 parent 586abd4 commit d756b41
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
9 changes: 9 additions & 0 deletions deployments/mainnet.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"USDC": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"DAI": "0x6B175474E89094C44Da98b954EedeAC495271d0F",
"WBTC": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599",
"WETH": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
"LINK": "0x514910771af9ca656af840dff83e8264ecf986ca",
"ADAI": "0x028171bCA77440897B824Ca71D1c56caC55b68A3",
"AUSDC": "0xBcca60bB61934080951369a648Fb03DF4F96263C"
}
9 changes: 9 additions & 0 deletions deployments/matic.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"USDC": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174",
"DAI": "0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063",
"WBTC": "0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6",
"WETH": "0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619",
"WMATIC": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270",
"ADAI": "0xE0b22E0037B130A9F56bBb537684E6fA18192341",
"AUSDC": "0x9719d867A500Ef117cC201206B8ab51e794d3F82"
}
9 changes: 9 additions & 0 deletions hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,15 @@ module.exports = {
url: 'https://kovan.infura.io/v3/' + process.env.INFURA_PROJECT_ID,
network_id: 42
},
mainnet: {
accounts: {
mnemonic: process.env.DEV_MNEMONIC,
initialIndex: parseInt(process.env.ADDRESS_INDEX),
count: 1
},
url: 'https://mainnet.infura.io/v3/' + process.env.INFURA_PROJECT_ID,
network_id: 1
},
goerli: {
accounts: {
mnemonic: process.env.DEV_MNEMONIC,
Expand Down

0 comments on commit d756b41

Please sign in to comment.