dagger-contracts/hardhat.config.js

36 lines
658 B
JavaScript
Raw Normal View History

2021-10-12 06:35:24 +00:00
require("@nomiclabs/hardhat-waffle")
2021-11-16 09:44:13 +00:00
require("hardhat-deploy")
2021-11-16 13:06:37 +00:00
require("hardhat-deploy-ethers")
2021-10-12 06:35:24 +00:00
module.exports = {
solidity: {
version: "0.8.8",
settings: {
optimizer: {
enabled: true,
runs: 1000,
},
},
},
mocha: {
bail: true,
slow: 200,
timeout: 30 * 1000,
},
namedAccounts: {
deployer: { default: 0 },
},
networks: {
hardhat: {
tags: ["local"],
},
codexdisttestnetwork: {
url: `${process.env.DISTTEST_NETWORK_URL}`,
},
taiko_test: {
url: "https://rpc.test.taiko.xyz",
accounts: ["<YOUR_SEPOLIA_TEST_WALLET_PRIVATE_KEY_HERE>"],
},
},
2021-10-12 06:35:24 +00:00
}