Skip to content

Commit 62da8e9

Browse files
committedMar 13, 2025
refactor: use hardhat
1 parent 6ef2038 commit 62da8e9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+5551
-126362
lines changed
 

‎.env.example

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
PRIVATE_KEY=

‎.gitignore

+17-10
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
1-
/build
2-
/.openzeppelin
3-
/node_modules
4-
/output
5-
/org
6-
._.DS_Store
7-
.DS_Store
8-
.idea
9-
10-
.openzeppelin/.session
1+
node_modules
2+
.env
3+
4+
# Hardhat files
5+
/cache
6+
/artifacts
7+
8+
# TypeChain files
9+
/typechain
10+
/typechain-types
11+
12+
# solidity-coverage files
13+
/coverage
14+
/coverage.json
15+
16+
# Hardhat Ignition default folder for deployments against a local node
17+
ignition/deployments/chain-31337

0 commit comments

Comments
 (0)
Please sign in to comment.