forked from mico/idle_moloch
71 lines
1.6 KiB
TypeScript
71 lines
1.6 KiB
TypeScript
import '@nomiclabs/hardhat-ethers'
|
|
import '@nomiclabs/hardhat-etherscan'
|
|
import '@nomiclabs/hardhat-waffle'
|
|
import 'hardhat-typechain'
|
|
import 'hardhat-watcher'
|
|
import 'dotenv/config'
|
|
|
|
const DEFAULT_COMPILER_SETTINGS = {
|
|
version: '0.7.6',
|
|
settings: {
|
|
evmVersion: 'istanbul',
|
|
optimizer: {
|
|
enabled: true,
|
|
runs: 1_000_000,
|
|
},
|
|
metadata: {
|
|
bytecodeHash: 'none',
|
|
},
|
|
},
|
|
}
|
|
|
|
export default {
|
|
networks: {
|
|
hardhat: {
|
|
allowUnlimitedContractSize: false,
|
|
},
|
|
mainnet: {
|
|
url: `https://mainnet.infura.io/v3/${process.env.INFURA_API_KEY}`,
|
|
},
|
|
ropsten: {
|
|
url: `https://ropsten.infura.io/v3/${process.env.INFURA_API_KEY}`,
|
|
},
|
|
rinkeby: {
|
|
url: `https://rinkeby.infura.io/v3/${process.env.INFURA_API_KEY}`,
|
|
},
|
|
goerli: {
|
|
url: `https://goerli.infura.io/v3/${process.env.INFURA_API_KEY}`,
|
|
},
|
|
kovan: {
|
|
url: `https://kovan.infura.io/v3/${process.env.INFURA_API_KEY}`,
|
|
},
|
|
arbitrumRinkeby: {
|
|
url: `https://rinkeby.arbitrum.io/rpc`,
|
|
},
|
|
arbitrum: {
|
|
url: `https://arb1.arbitrum.io/rpc`,
|
|
},
|
|
optimismKovan: {
|
|
url: `https://kovan.optimism.io`,
|
|
},
|
|
optimism: {
|
|
url: `https://mainnet.optimism.io`,
|
|
},
|
|
},
|
|
etherscan: {
|
|
// Your API key for Etherscan
|
|
// Obtain one at https://etherscan.io/
|
|
apiKey: process.env.ETHERSCAN_API_KEY,
|
|
},
|
|
solidity: {
|
|
compilers: [DEFAULT_COMPILER_SETTINGS],
|
|
},
|
|
watcher: {
|
|
test: {
|
|
tasks: [{ command: 'test', params: { testFiles: ['{path}'] } }],
|
|
files: ['./test/**/*'],
|
|
verbose: true,
|
|
},
|
|
},
|
|
}
|