Skip to content

Commit

Permalink
add hardhat tests
Browse files Browse the repository at this point in the history
  • Loading branch information
a2rocket committed Nov 7, 2023
1 parent d245a92 commit 50e3d17
Show file tree
Hide file tree
Showing 6 changed files with 8,926 additions and 0 deletions.
24 changes: 24 additions & 0 deletions hardhat/hardhat.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
require("@nomicfoundation/hardhat-toolbox")
require("hardhat-gas-reporter")

module.exports = {
paths: {
sources: "./smart-contracts",
},
solidity: {
compilers: [
{
version: "0.8.19",
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
],
},
gasReporter: {
enabled: true,
},
}
Loading

0 comments on commit 50e3d17

Please sign in to comment.