fynd-rpc 0.54.0

HTTP RPC server for Fynd DEX router
1
2
3
4
5
6
7
8
9
10
11
//! Data Transfer Objects (DTOs) for the HTTP API.
//!
//! Types are defined in `fynd-rpc-types` and re-exported here. Conversions
//! between DTO types and `fynd-core` domain types are implemented in
//! `fynd-rpc-types` via `From`/`Into` (enabled by the `core` feature).

pub use fynd_rpc_types::{
    BlockInfo, EncodingOptions, ErrorResponse, HealthStatus, InstanceInfo, Order, OrderQuote,
    OrderSide, PermitDetails, PermitSingle, PriceGuardConfig, Quote, QuoteOptions, QuoteRequest,
    QuoteStatus, Route, Swap, Transaction, UserTransferType,
};