aave-protocol-v2/hardhat.config.ts

148 lines
4.2 KiB
TypeScript
Raw Permalink Normal View History

2020-11-05 11:18:20 +00:00
import path from 'path';
import fs from 'fs';
2020-11-30 13:14:29 +00:00
import { HardhatUserConfig } from 'hardhat/types';
2020-11-05 11:18:20 +00:00
// @ts-ignore
2020-11-30 13:14:29 +00:00
import { accounts } from './test-wallets.js';
import {
eArbitrumNetwork,
eAvalancheNetwork,
eEthereumNetwork,
eNetwork,
ePolygonNetwork,
eXDaiNetwork,
} from './helpers/types';
2020-11-30 13:14:29 +00:00
import { BUIDLEREVM_CHAINID, COVERAGE_CHAINID } from './helpers/buidler-constants';
import {
NETWORKS_RPC_URL,
NETWORKS_DEFAULT_GAS,
BLOCK_TO_FORK,
buildForkConfig,
} from './helper-hardhat-config';
2021-03-03 11:25:10 +00:00
require('dotenv').config();
2020-11-05 11:18:20 +00:00
import '@nomiclabs/hardhat-ethers';
import '@nomiclabs/hardhat-waffle';
import 'temp-hardhat-etherscan';
2020-11-05 11:18:20 +00:00
import 'hardhat-gas-reporter';
import 'hardhat-typechain';
import '@tenderly/hardhat-tenderly';
import 'solidity-coverage';
import { fork } from 'child_process';
2020-11-05 11:18:20 +00:00
const SKIP_LOAD = process.env.SKIP_LOAD === 'true';
const DEFAULT_BLOCK_GAS_LIMIT = 12450000;
const DEFAULT_GAS_MUL = 5;
2020-11-05 11:18:20 +00:00
const HARDFORK = 'istanbul';
const ETHERSCAN_KEY = process.env.ETHERSCAN_KEY || '';
const MNEMONIC_PATH = "m/44'/60'/0'/0";
const MNEMONIC = process.env.MNEMONIC || '';
// Prevent to load scripts before compilation and typechain
if (!SKIP_LOAD) {
2021-01-12 11:11:03 +00:00
['misc', 'migrations', 'dev', 'full', 'verifications', 'deployments', 'helpers'].forEach(
(folder) => {
const tasksPath = path.join(__dirname, 'tasks', folder);
fs.readdirSync(tasksPath)
.filter((pth) => pth.includes('.ts'))
.forEach((task) => {
require(`${tasksPath}/${task}`);
});
}
);
2020-11-05 11:18:20 +00:00
}
require(`${path.join(__dirname, 'tasks/misc')}/set-bre.ts`);
const getCommonNetworkConfig = (networkName: eNetwork, networkId: number) => ({
2021-02-22 08:59:21 +00:00
url: NETWORKS_RPC_URL[networkName],
hardfork: HARDFORK,
blockGasLimit: DEFAULT_BLOCK_GAS_LIMIT,
gasMultiplier: DEFAULT_GAS_MUL,
gasPrice: NETWORKS_DEFAULT_GAS[networkName],
chainId: networkId,
accounts: {
mnemonic: MNEMONIC,
path: MNEMONIC_PATH,
initialIndex: 0,
count: 20,
},
});
2020-11-05 11:18:20 +00:00
let forkMode;
2020-11-16 10:09:23 +00:00
const buidlerConfig: HardhatUserConfig = {
2020-11-05 11:18:20 +00:00
solidity: {
2020-11-20 10:41:58 +00:00
version: '0.6.12',
2020-11-05 11:18:20 +00:00
settings: {
2020-11-30 13:14:29 +00:00
optimizer: { enabled: true, runs: 200 },
2020-11-05 11:18:20 +00:00
evmVersion: 'istanbul',
},
},
typechain: {
outDir: 'types',
target: 'ethers-v5',
},
etherscan: {
apiKey: ETHERSCAN_KEY,
},
mocha: {
timeout: 0,
},
2020-11-12 08:11:17 +00:00
tenderly: {
2020-11-16 10:09:23 +00:00
project: process.env.TENDERLY_PROJECT || '',
username: process.env.TENDERLY_USERNAME || '',
2020-11-12 08:11:17 +00:00
forkNetwork: '1', //Network id of the network we want to fork
},
2020-11-05 11:18:20 +00:00
networks: {
coverage: {
url: 'http://localhost:8555',
chainId: COVERAGE_CHAINID,
},
kovan: getCommonNetworkConfig(eEthereumNetwork.kovan, 42),
ropsten: getCommonNetworkConfig(eEthereumNetwork.ropsten, 3),
main: getCommonNetworkConfig(eEthereumNetwork.main, 1),
2021-03-03 11:25:10 +00:00
tenderlyMain: getCommonNetworkConfig(eEthereumNetwork.tenderlyMain, 3030),
2021-02-22 09:55:36 +00:00
matic: getCommonNetworkConfig(ePolygonNetwork.matic, 137),
mumbai: getCommonNetworkConfig(ePolygonNetwork.mumbai, 80001),
fuji: getCommonNetworkConfig(eAvalancheNetwork.fuji, 43113),
arbitrum_rinkeby: getCommonNetworkConfig(eArbitrumNetwork.arbitrum_rinkeby, 421611),
2021-02-22 09:55:36 +00:00
xdai: getCommonNetworkConfig(eXDaiNetwork.xdai, 100),
2020-11-05 11:18:20 +00:00
hardhat: {
hardfork: 'berlin',
2020-11-05 11:18:20 +00:00
blockGasLimit: DEFAULT_BLOCK_GAS_LIMIT,
gas: DEFAULT_BLOCK_GAS_LIMIT,
gasPrice: 8000000000,
chainId: BUIDLEREVM_CHAINID,
throwOnTransactionFailures: true,
throwOnCallFailures: true,
2020-11-30 13:14:29 +00:00
accounts: accounts.map(({ secretKey, balance }: { secretKey: string; balance: string }) => ({
2020-11-05 11:18:20 +00:00
privateKey: secretKey,
balance,
})),
forking: buildForkConfig(),
2020-11-05 11:18:20 +00:00
},
buidlerevm_docker: {
hardfork: 'berlin',
2020-11-05 11:18:20 +00:00
blockGasLimit: 9500000,
gas: 9500000,
gasPrice: 8000000000,
chainId: BUIDLEREVM_CHAINID,
throwOnTransactionFailures: true,
throwOnCallFailures: true,
url: 'http://localhost:8545',
},
ganache: {
url: 'http://ganache:8545',
accounts: {
mnemonic: 'fox sight canyon orphan hotel grow hedgehog build bless august weather swarm',
path: "m/44'/60'/0'/0",
initialIndex: 0,
count: 20,
},
},
},
};
export default buidlerConfig;