Skip to content

Commit 911ecb7

Browse files
authored
Added a pinocchio block list (#398)
* Added pinocchio block list * Added pinocchio subfolder
1 parent 33e969a commit 911ecb7

File tree

105 files changed

+12145
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+12145
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
target/
2+
test-ledger/
3+
node_modules/
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[workspace]
2+
members = ["program", "cli", "sdk/rust"]
3+
resolver = "2"
4+
5+
6+
[workspace.dependencies]
7+
block-list-client = { path = "sdk/rust"}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
[package]
2+
name = "block-list-cli"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
[dependencies]
7+
clap = { version = "3", features = ["cargo"] }
8+
futures-util = "0.3.31"
9+
solana-clap-v3-utils = "2.2.0"
10+
solana-cli-config = "2.2.0"
11+
solana-client = "2.2.0"
12+
solana-logger = "2.2.0"
13+
solana-remote-wallet = "2.2.0"
14+
solana-sdk = "2.2.0"
15+
spl-token-client = { version = "0.13.0" }
16+
tokio = { version = "1", features = ["full"] }
17+
block-list-client = { workspace = true }
18+
spl-tlv-account-resolution = "0.8.1"
19+
spl-transfer-hook-interface = { version = "0.8.2" }
20+
21+
22+
23+
[[bin]]
24+
name = "block-list-cli"
25+
path = "src/main.rs"

0 commit comments

Comments
 (0)