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

Major rewrite of Solana crate which switches the programs over to #11

Open
wants to merge 21 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
c7e826d
Major rewrite of Solana crate which switches the programs over to
Brando753 Dec 10, 2024
c1ac99c
Scripts still need testing but most everything except fireblocks is
Brando753 Dec 15, 2024
943cc29
Fixed bugs in scripts
Brando753 Dec 16, 2024
c709a16
Updated the deployment scripts. Refactored the Router to not require as
Brando753 Dec 18, 2024
b1220a5
Improve error handling, return groth verifier to using generic consts
Brando753 Dec 18, 2024
037104b
Working TransactionSigner for Fireblocks V2 SDK
Brando753 Dec 22, 2024
a1be72f
fix the verification key
Brando753 Dec 24, 2024
e1498ea
Clean up the typescript typing issues, and patch the logger
Brando753 Dec 24, 2024
e277cca
Cleaned up the scripts and fixed typos
Brando753 Dec 24, 2024
b3bf165
More spelling errors and minor fixes
Brando753 Dec 24, 2024
c7690cf
Fixed up typos. Cleaned out unused files.
Brando753 Dec 27, 2024
d276140
Added additional comments and documentation to the project. Added an …
Brando753 Dec 27, 2024
7e6d61a
Remove section from Readme that was left in by mistake
Brando753 Dec 27, 2024
cee308c
Added using borsh in the example program for more complex data use cases
Brando753 Dec 28, 2024
5356359
Finished up the readmes and cleaned up some comments
Brando753 Dec 28, 2024
3d8ca46
Finished the documentation. Fixed a bug in the router storage
Brando753 Dec 28, 2024
11887c3
Renamed README to README.md so that github formats it correctly.
Brando753 Dec 28, 2024
66622a6
Update command in readme to add missing part
Brando753 Dec 28, 2024
2e9c2a8
Made changes suggested by @Hans in initial code review
Brando753 Jan 8, 2025
487f345
adds back the unit tests from the groth 16 verifier
Brando753 Jan 8, 2025
876fd8c
Added a comment in the CPI call for emergency_stop_with_proof
Brando753 Jan 9, 2025
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
37 changes: 2 additions & 35 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,35 +1,2 @@
/target/
Cargo.lock
**/*.rs.bk

# VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

# IntelliJ IDEA files
.idea/
*.iml

# macOS
.DS_Store

# Windows
Thumbs.db
ehthumbs.db
Desktop.ini

# Environments
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

# bun
bun.lockb
node_modules/

test-ledger/
*/test_ledger/*
*/target/*
46 changes: 0 additions & 46 deletions Cargo.toml

This file was deleted.

73 changes: 0 additions & 73 deletions README.md

This file was deleted.

97 changes: 0 additions & 97 deletions examples/hello_example/README.md

This file was deleted.

12 changes: 0 additions & 12 deletions examples/hello_example/host/Cargo.toml

This file was deleted.

1 change: 0 additions & 1 deletion examples/hello_example/host/README.md

This file was deleted.

64 changes: 0 additions & 64 deletions examples/hello_example/host/src/main.rs

This file was deleted.

17 changes: 0 additions & 17 deletions examples/hello_example/methods/build.rs

This file was deleted.

9 changes: 0 additions & 9 deletions examples/hello_example/methods/guest/Cargo.toml

This file was deleted.

21 changes: 0 additions & 21 deletions examples/hello_example/methods/guest/src/main.rs

This file was deleted.

Loading