dagger-contracts/hardhat.config.js

38 lines
678 B
JavaScript
Raw Normal View History

2021-10-12 08:35:24 +02:00
require("@nomiclabs/hardhat-waffle")
2021-11-16 10:44:13 +01:00
require("hardhat-deploy")
2021-11-16 14:06:37 +01:00
require("hardhat-deploy-ethers")
2021-10-12 08:35:24 +02:00
module.exports = {
solidity: {
2024-01-23 10:24:02 +01: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 15:58:08 +02:00
accounts: [
// "<YOUR_SEPOLIA_TEST_WALLET_PRIVATE_KEY_HERE>"
],
},
},
2021-10-12 08:35:24 +02:00
}