autoswap_rs/lib.rs
1pub mod constant;
2pub mod swappr;
3pub mod types;
4
5// Re-export main types and clients for easy access
6pub use types::connector::{
7 AutoSwappr, AutoSwapprError, ContractInfo, Delta, FeeType, I129, PoolKey, Route, SwapData,
8 SwapOptions, SwapParameters, SwapParams, SwapResult,
9};
10
11pub use constant::{ETH, STRK, TokenAddress, TokenInfo, USDC, USDT, WBTC};
12
13#[cfg(test)]
14#[path = "contracts_test.rs"]
15mod contracts_tests;