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 = {
|
2022-04-06 14:51:25 +02:00
|
|
|
solidity: {
|
2022-09-29 20:18:02 +10:00
|
|
|
version: "0.8.8",
|
2022-04-06 14:51:25 +02:00
|
|
|
settings: {
|
|
|
|
optimizer: {
|
|
|
|
enabled: true,
|
|
|
|
runs: 1000,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2023-01-25 13:59:55 +01:00
|
|
|
mocha: {
|
|
|
|
bail: true,
|
|
|
|
slow: 200,
|
|
|
|
timeout: 30 * 1000,
|
|
|
|
},
|
2021-11-16 13:54:38 +01:00
|
|
|
namedAccounts: {
|
2022-03-15 16:45:35 +01:00
|
|
|
deployer: { default: 0 },
|
|
|
|
},
|
|
|
|
networks: {
|
|
|
|
hardhat: {
|
|
|
|
tags: ["local"],
|
|
|
|
},
|
2023-04-17 15:00:48 +02:00
|
|
|
codexdisttestnetwork: {
|
|
|
|
url: process.env.DISTTEST_NETWORK_URL
|
|
|
|
}
|
2022-03-15 16:45:35 +01:00
|
|
|
},
|
2021-10-12 08:35:24 +02:00
|
|
|
}
|