solana/client/src/lib.rs

39 lines
938 B
Rust
Raw Normal View History

#![allow(clippy::integer_arithmetic)]
#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate solana_metrics;
pub mod blockhash_query;
2019-04-25 10:29:44 -07:00
pub mod client_error;
pub mod connection_cache;
pub(crate) mod http_sender;
pub(crate) mod mock_sender;
pub mod nonblocking;
2020-09-21 12:26:06 -07:00
pub mod nonce_utils;
pub mod pubsub_client;
pub mod quic_client;
pub mod rpc_cache;
pub mod rpc_client;
pub mod rpc_config;
pub mod rpc_custom_error;
pub mod rpc_deprecated_config;
pub mod rpc_filter;
2019-03-12 17:26:07 -07:00
pub mod rpc_request;
pub mod rpc_response;
pub mod rpc_sender;
pub mod spinner;
2019-03-12 17:26:07 -07:00
pub mod thin_client;
pub mod tpu_client;
pub mod tpu_connection;
2021-10-13 04:06:23 -07:00
pub mod transaction_executor;
pub mod udp_client;
pub mod mock_sender_for_cli {
/// Magic `SIGNATURE` value used by `solana-cli` unit tests.
/// Please don't use this constant.
pub const SIGNATURE: &str =
"43yNSFC6fYTuPgTNFFhF4axw7AfWxB2BPdurme8yrsWEYwm8299xh8n6TAHjGymiSub1XtyxTNyd9GBfY2hxoBw8";
}