Ai
2 Star 20 Fork 0

ProjectOpenSea/seaport

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
hardhat-coverage.config.ts 870 Bytes
一键复制 编辑 原始数据 按行查看 历史
0age 提交于 2024-03-08 02:55 +08:00 . add all the foundry tests
import type { HardhatUserConfig } from "hardhat/config";
import "dotenv/config";
import "@nomicfoundation/hardhat-chai-matchers";
import "@typechain/hardhat";
import "hardhat-gas-reporter";
import "solidity-coverage";
// You need to export an object to set up your config
// Go to https://hardhat.org/config/ to learn more
const config: HardhatUserConfig = {
solidity: {
compilers: [
{
version: "0.8.24",
settings: {
evmVersion: "cancun",
viaIR: false,
optimizer: {
enabled: false,
},
},
},
],
},
networks: {
hardhat: {
blockGasLimit: 300_000_000,
throwOnCallFailures: false,
allowUnlimitedContractSize: true,
},
},
gasReporter: {
enabled: process.env.REPORT_GAS !== undefined,
currency: "USD",
},
};
export default config;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ProjectOpenSea/seaport.git
git@gitee.com:ProjectOpenSea/seaport.git
ProjectOpenSea
seaport
seaport
main

搜索帮助