Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/gradlew text eol=lf
*.bat text eol=crlf
*.jar binary
91 changes: 91 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
########################################
# OS / Editor
########################################
.DS_Store
Thumbs.db

########################################
# Environment / Secrets
########################################
.env
.env.*
*.env

########################################
# Logs
########################################
*.log
hs_err_pid*
replay_pid*

########################################
# Node / JS
########################################
node_modules/
package-lock.json

########################################
# Java / Gradle
########################################
*.class
*.jar
*.war
*.ear

.gradle/
build/
**/build/

# Keep Gradle wrapper
!gradle/wrapper/gradle-wrapper.jar

########################################
# Repo-local build artifacts
########################################
bin/

########################################
# IDEs
########################################
# IntelliJ IDEA
.idea/
*.iml
*.ipr
*.iws
out/

# Eclipse / STS
.project
.classpath
.settings/
.springBeans
.sts4-cache
.apt_generated
.factorypath

# NetBeans
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/

# VS Code
.vscode/

########################################
# Solidity / Foundry
########################################
# Compiler outputs
cache/
out/

# Foundry broadcast logs
!/broadcast
/broadcast/*/31337/
/broadcast/**/dry-run/

########################################
# Docs / local notes
########################################
HELP.md
6 changes: 6 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[submodule "lib/forge-std"]
path = lib/forge-std
url = https://github.com/foundry-rs/forge-std
[submodule "lib/openzeppelin-contracts"]
path = lib/openzeppelin-contracts
url = https://github.com/openzeppelin/openzeppelin-contracts
Loading