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: {
|
2024-01-23 10:24:02 +01:00
|
|
|
version: "0.8.23",
|
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: {
|
2023-04-17 13:58:52 +02:00
|
|
|
url: `${process.env.DISTTEST_NETWORK_URL}`,
|
|
|
|
},
|
2023-06-16 10:59:29 +02:00
|
|
|
taiko_test: {
|
|
|
|
url: "https://rpc.test.taiko.xyz",
|
2023-07-05 15:58:08 +02:00
|
|
|
accounts: [
|
|
|
|
// "<YOUR_SEPOLIA_TEST_WALLET_PRIVATE_KEY_HERE>"
|
|
|
|
],
|
2023-06-16 10:59:29 +02:00
|
|
|
},
|
2022-03-15 16:45:35 +01:00
|
|
|
},
|
2021-10-12 08:35:24 +02:00
|
|
|
}
|