mirror of
https://github.com/codex-storage/codex-contracts-eth.git
synced 2025-01-10 03:45:41 +00:00
b797f7d428
* 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>
39 lines
705 B
JavaScript
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>"
|
|
],
|
|
},
|
|
},
|
|
}
|