@unirep/contracts
Version:
Client library for contracts related functions which are used in UniRep protocol.
39 lines (38 loc) • 929 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
require("@typechain/hardhat");
require("@nomiclabs/hardhat-ethers");
require("hardhat-gas-reporter");
require("solidity-coverage");
require("@nomicfoundation/hardhat-chai-matchers");
const config = {
defaultNetwork: 'hardhat',
paths: {
artifacts: './build/artifacts',
},
networks: {
hardhat: {
blockGasLimit: 12000000,
},
local: {
url: 'http://localhost:8545',
},
},
solidity: {
compilers: [
{
version: '0.8.19',
settings: {
optimizer: { enabled: true, runs: 2 ** 32 - 1 },
},
},
],
},
typechain: {
outDir: './typechain',
},
gasReporter: {
enabled: process.env.REPORT_GAS ? true : false,
},
};
exports.default = config;