-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b910bbe
commit 9451dc3
Showing
11 changed files
with
474 additions
and
569 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,22 +10,23 @@ members = [ | |
resolver = "2" | ||
|
||
[workspace.package] | ||
version = "1.18.1" | ||
version = "2.0.5" | ||
license = "Apache-2.0" | ||
authors = ["Jito Foundation <[email protected]>"] | ||
edition = "2021" | ||
repository = "https://github.com/jito-foundation/geyser-grpc-plugin" | ||
homepage = "https://jito.network/" | ||
|
||
[workspace.dependencies] | ||
agave-geyser-plugin-interface = "=2.0.5" | ||
bincode = "1.3.3" | ||
bs58 = "0.5.0" | ||
clap = { version = "4.4.6", features = ["derive", "env"] } | ||
crossbeam-channel = "0.5.8" | ||
enum-iterator = "1.4.1" | ||
futures-util = "0.3.28" | ||
geyser-grpc-plugin-client = { path = "client", version = "=1.18.1" } | ||
jito-geyser-protos = { path = "proto", version = "=1.18.1" } | ||
geyser-grpc-plugin-client = { path = "client", version = "=2.0.5" } | ||
jito-geyser-protos = { path = "proto", version = "=2.0.5" } | ||
log = "0.4.17" | ||
lru = "0.12.0" | ||
once_cell = "1.17.1" | ||
|
@@ -36,14 +37,13 @@ rand = "0.8" | |
serde = "1.0.160" | ||
serde_derive = "1.0.160" | ||
serde_json = "1.0.96" | ||
solana-account-decoder = "=1.18.1" | ||
solana-geyser-plugin-interface = "=1.18.1" | ||
solana-logger = "=1.18.1" | ||
solana-metrics = "=1.18.1" | ||
solana-program = "=1.18.1" | ||
solana-sdk = "=1.18.1" | ||
solana-transaction-status = "=1.18.1" | ||
solana-vote-program = "=1.18.1" | ||
solana-account-decoder = "=2.0.5" | ||
solana-logger = "=2.0.5" | ||
solana-metrics = "=2.0.5" | ||
solana-program = "=2.0.5" | ||
solana-sdk = "=2.0.5" | ||
solana-transaction-status = "=2.0.5" | ||
solana-vote-program = "=2.0.5" | ||
thiserror = "1.0.40" | ||
tokio = { version = "1", features = ["rt-multi-thread"] } | ||
tokio-stream = "0.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
syntax = "proto3"; | ||
|
||
package solana.storage.Entries; | ||
|
||
message Entries { | ||
repeated Entry entries = 1; | ||
} | ||
|
||
message Entry { | ||
uint32 index = 1; | ||
uint64 num_hashes = 2; | ||
bytes hash = 3; | ||
uint64 num_transactions = 4; | ||
uint32 starting_transaction_index = 5; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters