mirror of
https://github.com/Instadapp/dsa-polygon-migration.git
synced 2024-07-29 22:27:58 +00:00
40 lines
943 B
JavaScript
40 lines
943 B
JavaScript
require("@nomiclabs/hardhat-ethers");
|
|
require("@nomiclabs/hardhat-waffle");
|
|
require("@nomiclabs/hardhat-etherscan");
|
|
|
|
require("dotenv").config();
|
|
const ALCHEMY_ID = process.env.ALCHEMY_ID;
|
|
const PRIVATE_KEY = process.env.PRIVATE_KEY;
|
|
|
|
// You need to export an object to set up your config
|
|
// Go to https://hardhat.org/config/ to learn more
|
|
|
|
/**
|
|
* @type import('hardhat/config').HardhatUserConfig
|
|
*/
|
|
module.exports = {
|
|
solidity: "0.7.3",
|
|
networks: {
|
|
hardhat: {
|
|
forking: {
|
|
url: `https://eth-mainnet.alchemyapi.io/v2/${ALCHEMY_ID}`,
|
|
blockNumber: 12070498,
|
|
},
|
|
blockGasLimit: 12000000,
|
|
},
|
|
kovan: {
|
|
url: `https://eth-kovan.alchemyapi.io/v2/${ALCHEMY_ID}`,
|
|
accounts: [`0x${PRIVATE_KEY}`],
|
|
gas: 12500000,
|
|
},
|
|
polygon: {
|
|
url: 'https://rpc-mainnet.matic.network',
|
|
accounts: [`0x${PRIVATE_KEY}`],
|
|
}
|
|
},
|
|
etherscan: {
|
|
apiKey: process.env.ETHERSCAN
|
|
}
|
|
};
|
|
|