-
Notifications
You must be signed in to change notification settings - Fork 23
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
Showing
16 changed files
with
75 additions
and
136 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "plerkle" | ||
description = "Geyser plugin with dynamic config reloading, message bus agnostic abstractions and a whole lot of fun." | ||
version = "0.4.0" | ||
version = "0.4.1" | ||
authors = ["Metaplex Developers <[email protected]>"] | ||
repository = "https://github.com/metaplex-foundation/digital-asset-validator-plugin" | ||
license = "AGPL-3.0" | ||
|
@@ -33,9 +33,9 @@ cadence-macros = "0.29.0" | |
chrono = "0.4.19" | ||
tracing = "0.1.35" | ||
hex = "0.4.3" | ||
plerkle_messenger = { path = "../plerkle_messenger", version = "0.4.0", features = ["redis"] } | ||
plerkle_messenger = { path = "../plerkle_messenger", version = "0.4.1", features = ["redis"] } | ||
flatbuffers = "2.1.2" | ||
plerkle_serialization = { path = "../plerkle_serialization", version = "0.4.0" } | ||
plerkle_serialization = { path = "../plerkle_serialization", version = "0.4.1" } | ||
tokio = { version = "1.17.0", features = ["full"] } | ||
figment = { version = "0.10.6", features = ["env", "test"] } | ||
|
||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "plerkle_messenger" | ||
description = "Metaplex Messenger trait for Geyser plugin producer/consumer patterns." | ||
version = "0.4.0" | ||
version = "0.4.1" | ||
authors = ["Metaplex Developers <[email protected]>"] | ||
repository = "https://github.com/metaplex-foundation/digital-asset-validator-plugin" | ||
license = "AGPL-3.0" | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "plerkle_serialization" | ||
description = "Metaplex Flatbuffers Plerkle Serialization for Geyser plugin producer/consumer patterns." | ||
version = "0.4.0" | ||
version = "0.4.1" | ||
authors = ["Metaplex Developers <[email protected]>"] | ||
repository = "https://github.com/metaplex-foundation/digital-asset-validator-plugin" | ||
license = "AGPL-3.0" | ||
|
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,3 @@ | ||
struct Pubkey { | ||
key:[uint8:32]; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
mod account_info_generated; | ||
mod block_info_generated; | ||
mod common_generated; | ||
mod compiled_instruction_generated; | ||
mod slot_status_info_generated; | ||
mod transaction_info_generated; | ||
|
||
pub mod serializer; | ||
pub use account_info_generated::*; | ||
pub use block_info_generated::*; | ||
pub use common_generated::*; | ||
pub use compiled_instruction_generated::*; | ||
pub use slot_status_info_generated::*; | ||
pub use transaction_info_generated::*; |
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 |
---|---|---|
@@ -1 +1,8 @@ | ||
use crate::Pubkey; | ||
|
||
impl From<&[u8]> for Pubkey { | ||
fn from(slice: &[u8]) -> Self { | ||
let arr = <[u8; 32]>::try_from(slice); | ||
Pubkey::new(&arr.unwrap()) | ||
} | ||
} |
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
Oops, something went wrong.