1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
//! Official Rust SDK for Polyester APIs.
//!
//! Built on [Connect for Rust](https://github.com/connectrpc/connect-rust) and
//! Polyester's published Protobuf contracts (Buffa + Connect codegen).
//!
//! # Quick start
//!
//! ```rust,no_run
//! use polyester::{Client, Config};
//! use polyester::types::{Price, Quantity};
//!
//! #[tokio::main]
//! async fn main() -> polyester::Result<()> {
//! let client = Client::new(Config {
//! api_key_id: Some("ak_...".into()),
//! api_private_key: Some("...".into()),
//! default_account_id: Some("...".into()),
//! ..Default::default()
//! })?;
//! let _ = client.auth.me().await?;
//! Ok(())
//! }
//! ```
//!
//! # Qty / price
//!
//! Order write APIs take [`types::Price`] / [`types::Quantity`] only:
//! - Humans: `Price::from_decimal_str("1.5")` / `Quantity::from_decimal_str("0.01", scale, …)`
//! - Bots: `Price::from_ticks(1_500_000)` / `Quantity::from_scaled(…)`
//!
//! Floats and bare integers are rejected.
/// Generated Buffa message types (`crate::proto` for Connect stubs).
/// Generated ConnectRPC service clients and server traits.
/// On-chain Funding and smart-account helpers.
///
/// Calldata encoders, Safe CREATE2 prediction, and UserOperation submit.
pub use ;
pub use ;
pub use ;
pub use ;
pub const VERSION: &str = env!;