kobe_client/
lib.rs

1pub mod client;
2pub mod client_builder;
3pub mod config;
4pub mod error;
5pub mod staker_reward;
6pub mod types;
7
8/// Default base URL for mainnet Kobe API
9pub const MAINNET_BASE_URL: &str = "https://kobe.mainnet.jito.network";
10
11/// Default base URL for testnet Kobe API
12pub const TESTNET_BASE_URL: &str = "https://kobe.testnet.jito.network";
13
14/// API version
15pub const API_VERSION: &str = "v1";