codex-contracts-eth/hardhat.config.js
Ben Bierens b797f7d428
Fix/dist tests (#90)
* fix: downgrade targetted evm version

* feat: remove the target compilation downgrade

* Revert "feat: remove the target compilation downgrade"

This reverts commit a7705608da61af60939b45accefbf3f903c332bf.

* Revert "fix: downgrade targetted evm version"

This reverts commit 8c7501b54958fb93200dae9f8d0d13475873bafe.

* apply only evm version change

---------

Co-authored-by: Adam Uhlíř <adam@uhlir.dev>
2024-03-05 11:14:31 +01:00

39 lines
705 B
JavaScript

require("@nomiclabs/hardhat-waffle")
require("hardhat-deploy")
require("hardhat-deploy-ethers")
module.exports = {
solidity: {
version: "0.8.23",
settings: {
evmVersion: "paris",
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>"
],
},
},
}