* Add RpcFilterType, and implement CompareBytes for getProgramAccounts * Accept bytes in bs58 * Rename to memcmp * Add Memcmp optional encoding field * Add dataSize filter * Update docs * Clippy * Simplify tests that don't need to test account contents; add multiple-filter tests
16 lines
292 B
Rust
16 lines
292 B
Rust
#[macro_use]
|
|
extern crate serde_derive;
|
|
|
|
pub mod client_error;
|
|
pub mod http_sender;
|
|
pub mod mock_sender;
|
|
pub mod perf_utils;
|
|
pub mod pubsub_client;
|
|
pub mod rpc_client;
|
|
pub mod rpc_config;
|
|
pub mod rpc_filter;
|
|
pub mod rpc_request;
|
|
pub mod rpc_response;
|
|
pub mod rpc_sender;
|
|
pub mod thin_client;
|