Skip to content

Commit 8f53012

Browse files
committedSep 28, 2022
Update gitignore for solidity contracts projects
Exclude mainnet deployment artifacts from gitignore as we need to store them in the repository after migration. Add .openzeppelin ignore for both projects for consistency.
1 parent fecdd38 commit 8f53012

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed
 

‎solidity/ecdsa/.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export.json
88

99
# Contract artifacts
1010
artifacts/
11-
deployments/
11+
deployments/*
1212
!deployments/mainnet
1313

1414
# OpenZeppelin

‎solidity/random-beacon/.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,8 @@ export.json
77

88
# Contract artifacts
99
artifacts/
10-
deployments/
10+
deployments/*
1111
!deployments/mainnet
12+
13+
# OpenZeppelin
14+
.openzeppelin/unknown-*.json

0 commit comments

Comments
 (0)
Please sign in to comment.