p2pix-smart-contracts/hardhat.config.js
2022-11-07 16:40:10 -03:00

13 lines
236 B
JavaScript

require("@nomiclabs/hardhat-waffle");
/** @type import('hardhat/config').HardhatUserConfig */
module.exports = {
solidity: "0.8.17",
networks: {
hardhat: {
blockGasLimit: 30000000,
//hardfork: 'london'
}
}
};