forked from blockworks-foundation/lite-rpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Accounts support (blockworks-foundation#327)
* Slitting rpc and pubsub services, adding few class and rpc, pubsub callbacks for accounts * Implementing account storage and service writing some tests * Chainging to interface, adding new tests * Implementing accounts related rpc endpoints * Adding tests for account filters * Minor bug fixed and errors * Fixing issue with get program accounts * Implementing subscription * use auto reconnect (blockworks-foundation#329) * groovie comments part_1 * Fixing tests, fixing groovies comments * Adding workspace to test filters, minor changes --------- Co-authored-by: Groovie | Mango <[email protected]>
- Loading branch information
1 parent
0821057
commit bcc3c37
Showing
27 changed files
with
2,710 additions
and
440 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,47 @@ | ||
[package] | ||
name = "solana-lite-rpc-accounts" | ||
version = "0.2.4" | ||
edition = "2021" | ||
description = "Library which implements accounts in lite-rpc" | ||
rust-version = "1.73.0" | ||
repository = "https://github.com/blockworks-foundation/lite-rpc" | ||
license = "AGPL" | ||
|
||
[dependencies] | ||
solana-sdk = { workspace = true } | ||
solana-rpc-client-api = { workspace = true } | ||
solana-transaction-status = { workspace = true } | ||
solana-version = { workspace = true } | ||
solana-client = { workspace = true } | ||
solana-net-utils = { workspace = true } | ||
solana-pubsub-client = { workspace = true } | ||
solana-rpc-client = { workspace = true } | ||
solana-streamer = { workspace = true } | ||
solana-account-decoder = { workspace = true } | ||
solana-address-lookup-table-program = { workspace = true } | ||
|
||
serde = { workspace = true } | ||
serde_json = { workspace = true } | ||
tokio = "1.*" | ||
bincode = { workspace = true } | ||
bs58 = { workspace = true } | ||
base64 = { workspace = true } | ||
thiserror = { workspace = true } | ||
futures = { workspace = true } | ||
bytes = { workspace = true } | ||
anyhow = { workspace = true } | ||
log = { workspace = true } | ||
dashmap = { workspace = true } | ||
quinn = { workspace = true } | ||
chrono = { workspace = true } | ||
rustls = { workspace = true } | ||
async-trait = { workspace = true } | ||
itertools = { workspace = true } | ||
prometheus = { workspace = true } | ||
lazy_static = { workspace = true } | ||
|
||
solana-lite-rpc-core = { workspace = true } | ||
|
||
[dev-dependencies] | ||
rand = "0.8.5" | ||
rand_chacha = "0.3.1" |
Oops, something went wrong.