Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: succinct operator #23

Merged
merged 13 commits into from
Jul 3, 2024
Merged
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
12 changes: 10 additions & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
**target/
**direnv/
target/
.direnv/
vendor/
nearx/contract/out/
nearx/build/
state.db/
wrapped/
build/
.git/
.env/
1 change: 1 addition & 0 deletions .envrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ if ! has nix_direnv_version || ! nix_direnv_version 2.2.0; then
source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/2.2.0/direnvrc" "sha256-5EwyKnkJNQeXrRkYbwwRBcXbibosCJqyIUuz9Xq+LRc="
fi
use flake
source .env
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,15 @@ nearx/build
nearx/contract/cache
nearx/contract/out
nearx/contract/lib
near/contract/script/FunctionVerifier
# Ignores development broadcast logs
!**broadcast
**broadcast/*/31337/
**broadcast/**/dry-run/
nearx/contract/broadcast
state.json

# Dotenv file
.env

http-cacache/
9 changes: 6 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
[submodule "nearx/contract/lib/openzeppelin-contracts"]
path = nearx/contract/lib/openzeppelin-contracts
url = https://github.com/OpenZeppelin/openzeppelin-contracts
[submodule "nearx/contract/lib/openzeppelin-contracts-upgradeable"]
path = nearx/contract/lib/openzeppelin-contracts-upgradeable
url = https://github.com/OpenZeppelin/openzeppelin-contracts-upgradeable
[submodule "nearx/contract/lib/foundry-devops"]
path = nearx/contract/lib/foundry-devops
url = https://github.com/chainaccelorg/foundry-devops
Expand All @@ -19,3 +16,9 @@
[submodule "nearx/contract/lib/forge-std"]
path = nearx/contract/lib/forge-std
url = https://github.com/foundry-rs/forge-std
[submodule "nearx/contract/lib/openzeppelin-foundry-upgrades"]
path = nearx/contract/lib/openzeppelin-foundry-upgrades
url = https://github.com/OpenZeppelin/openzeppelin-foundry-upgrades
[submodule "nearx/contract/lib/openzeppelin-contracts-upgradeable"]
path = nearx/contract/lib/openzeppelin-contracts-upgradeable
url = https://github.com/OpenZeppelin/openzeppelin-contracts-upgradeable
Loading
Loading