solana_rpc_client/
lib.rs

1#![allow(clippy::arithmetic_side_effects)]
2
3pub mod http_sender;
4pub mod mock_sender;
5pub mod nonblocking;
6pub mod rpc_client;
7pub mod rpc_sender;
8pub mod spinner;
9
10pub mod mock_sender_for_cli {
11    /// Magic `SIGNATURE` value used by `solana-cli` unit tests.
12    /// Please don't use this constant.
13    pub const SIGNATURE: &str =
14        "43yNSFC6fYTuPgTNFFhF4axw7AfWxB2BPdurme8yrsWEYwm8299xh8n6TAHjGymiSub1XtyxTNyd9GBfY2hxoBw8";
15}