dagger-contracts/hardhat.config.js

38 lines
678 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: {
2024-01-23 09:24:02 +00:00
version: "0.8.23",
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",
2023-07-05 13:58:08 +00:00
accounts: [
// "<YOUR_SEPOLIA_TEST_WALLET_PRIVATE_KEY_HERE>"
],
},
},
2021-10-12 06:35:24 +00:00
}