Skip to content

Commit

Permalink
add script
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewsource147 committed Jan 25, 2025
1 parent 387472c commit 30a013d
Show file tree
Hide file tree
Showing 37 changed files with 29,795 additions and 20 deletions.
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,10 @@ test-ledger
.yarn
proptest-regressions

.idea
.idea

trash
base.json

yarn.lock
pnpm-lock.yaml
197 changes: 197 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 11 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace]
resolver = "2"
members = ["programs/*", "cli"]
members = ["programs/*", "cli", "merkle-tree","merkle-verify"]

[workspace.package]
edition = "2021"
Expand All @@ -26,4 +26,13 @@ serde = "1.0.137"
solana-program = { version = "1.18.21" }
solana-rpc-client = { version = "1.18.21" }
solana-sdk = { version = "1.18.21" }
spl-associated-token-account = "2.2.0"
spl-associated-token-account = "2.2.0"
fast-math = "0.1"
indexmap = "2.1.0"
merkle-verify = { path = "merkle-verify" }
rust_decimal = "1.35.0"
rand = "0.8.5"
serde_derive = "1.0.171"
serde_json = "1.0.102"
thiserror = "1.0.50"
hex = "0.4.3"
7 changes: 6 additions & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name = "cli"
version = { workspace = true }
edition = { workspace = true }

[features]
localnet = ["locker/localnet"]

[dependencies]
anchor-lang = { workspace = true }
anchor-spl = { workspace = true }
Expand All @@ -15,4 +18,6 @@ spl-associated-token-account = { workspace = true }
csv= { workspace = true }
anyhow = "1.0.57"
serde = { workspace = true }
locker = { path = "../programs/locker" }
locker = { path = "../programs/locker" }
merkle-tree = { path = "../merkle-tree" }
rand = "0.8"
Loading

0 comments on commit 30a013d

Please sign in to comment.