Skip to main content

clob_client_rust/
lib.rs

1pub mod client;
2pub mod constants;
3pub mod endpoints;
4pub mod errors;
5pub mod exchange_consts;
6pub mod exchange_order_builder;
7pub mod headers;
8pub mod http_helpers;
9pub mod order_builder;
10pub mod rfq_client;
11pub mod signer_adapter;
12pub mod signing;
13pub mod types;
14pub mod utilities;
15
16pub use client::*;
17pub use constants::*;
18pub use endpoints::*;
19pub use errors::*;
20pub use exchange_consts::*;
21pub use exchange_order_builder::*;
22pub use headers::*;
23pub use http_helpers::*;
24pub use order_builder::*;
25pub use rfq_client::*;
26pub use signer_adapter::EthersSigner;
27pub use signing::*;
28pub use types::*;
29pub use utilities::*;
30
31/// Simple smoke function to verify the crate is usable
32pub fn client_version() -> &'static str {
33    "0.1.0-rust-translation"
34}