2021-03-15 12:26:22 +00:00
|
|
|
const hre = require("hardhat");
|
|
|
|
const { ethers } = hre;
|
|
|
|
|
|
|
|
const deployConnector = require("./deployConnector");
|
|
|
|
|
|
|
|
async function main() {
|
2021-03-15 16:46:22 +00:00
|
|
|
const accounts = await hre.ethers.getSigners()
|
|
|
|
const wallet = accounts[0]
|
|
|
|
|
|
|
|
const connectMapping = {
|
2021-03-16 05:57:22 +00:00
|
|
|
'1INCH-A': 'ConnectV2OneInch',
|
2021-06-25 15:18:51 +00:00
|
|
|
'1INCH-B': 'ConnectV2OneProto',
|
2021-03-16 05:57:22 +00:00
|
|
|
'AAVE-V1-A': 'ConnectV2AaveV1',
|
|
|
|
'AAVE-V2-A': 'ConnectV2AaveV2',
|
|
|
|
'AUTHORITY-A': 'ConnectV2Auth',
|
|
|
|
'BASIC-A': 'ConnectV2Basic',
|
|
|
|
'COMP-A': 'ConnectV2COMP',
|
|
|
|
'COMPOUND-A': 'ConnectV2Compound',
|
|
|
|
'DYDX-A': 'ConnectV2Dydx',
|
|
|
|
'FEE-A': 'ConnectV2Fee',
|
|
|
|
'GELATO-A': 'ConnectV2Gelato',
|
|
|
|
'MAKERDAO-A': 'ConnectV2Maker',
|
|
|
|
'UNISWAP-A': 'ConnectV2UniswapV2'
|
2021-03-15 12:26:22 +00:00
|
|
|
}
|
2021-03-15 16:46:22 +00:00
|
|
|
|
|
|
|
const addressMapping = {}
|
|
|
|
|
|
|
|
for (const key in connectMapping) {
|
|
|
|
addressMapping[key] = await deployConnector(connectMapping[key])
|
|
|
|
}
|
2021-03-15 12:26:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main()
|
2021-03-15 16:46:22 +00:00
|
|
|
.then(() => process.exit(0))
|
|
|
|
.catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
process.exit(1);
|
2021-03-15 17:23:55 +00:00
|
|
|
});
|