#[path = "../../ix/src/lib.rs"]
pub mod ix;
#[path = "../../math/src/lib.rs"]
pub mod math;
#[path = "../../types/src/lib.rs"]
pub mod types;
pub mod phoenix_rise_ix {
pub use crate::ix::{flight, *};
}
pub mod phoenix_rise_math {
pub use crate::math::{
direction, errors, fixed, funding, leverage_tiers, limit_order_state, margin, margin_calc,
market_math, perp_metadata, portfolio, price, quantities, risk, trader_position, *,
};
}
pub mod phoenix_rise_types {
pub use crate::types::{
accounts, auth, candles, client, conversions, core, exchange, exchange_ws, http_error, ix,
js_safe_ints, l2book, market, market_state, market_stats, metadata, service_accounts,
subscription_key, trader, trader_http, trader_key, trader_state, trades, ws, ws_error, *,
};
}
pub mod accounts;
pub mod api;
mod auth;
mod auth_lifecycle;
mod auth_signers;
mod client;
mod env;
mod exchange_cache;
mod flight_client;
mod http_client;
mod order_tickets;
mod transport;
mod tx_builder;
mod ws_client;
pub use accounts::{AccountDataFetcher, PhoenixAccountClient, PhoenixAccountClientError};
pub use api::{
CandlesClient, CollateralClient, ExchangeClient, FundingClient, InviteClient, MarketsClient,
OrdersClient, TradersClient, TradesClient,
};
pub use auth::{
AuthError, AuthSession, AuthSessionSnapshot, AuthSessionStore, FileAuthSessionStore,
MemoryAuthSessionStore, PhoenixAuthSigner, PhoenixHttpAuthConfig, PhoenixServiceAuthClient,
PhoenixServiceChallenge, PhoenixServiceLoginRequest, PhoenixWalletNonce,
PhoenixWalletNonceRequest, default_auth_session_store_path,
};
pub use auth_lifecycle::{AuthLifecycleError, AuthLifecycleErrorReason, AuthLifecycleState};
#[cfg(feature = "ed25519-dalek")]
pub use auth_signers::PhoenixEd25519ServiceAuthSigner;
pub use auth_signers::{
PhoenixAuthSignerKind, PhoenixHttpAuthConfigSignerExt, PhoenixHttpClientBuilderSignerExt,
PhoenixServiceAccountCredential,
};
#[cfg(feature = "solana-keypair")]
pub use auth_signers::{PhoenixSolanaKeypairAuthSigner, default_solana_keypair_path};
pub use client::PhoenixClient;
pub use env::PhoenixEnv;
pub use exchange_cache::{
ExchangeCacheApplyError, ExchangeCacheEvent, ExchangeCacheExchangeChangeKind,
ExchangeCacheMarketChangeKind, ExchangeCacheSnapshotSource, ExchangeInstructionContext,
PhoenixExchangeCacheStore,
};
pub use flight_client::PhoenixFlightClient;
pub use http_client::{PhoenixHttpClient, PhoenixHttpClientBuilder, RateLimitRetryConfig};
pub use order_tickets::{
BracketLeg, BracketLegOrders, BracketLegSize, BracketLegTicket, LimitOrderTicket,
LimitOrderTicketBuilder, MarketOrderTicket, MarketOrderTicketBuilder, OrderTicketMetadata,
};
pub use rust_decimal::Decimal;
pub use tx_builder::{PhoenixTxBuilder, PhoenixTxBuilderError};
pub use ws_client::{PhoenixWSClient, SubscriptionHandle, WsConnectionStatus};
pub use crate::phoenix_rise_ix::{
CancelConditionalOrderParams, CancelId, CancelStopLossParams, CondensedOrder,
CreateConditionalOrdersAccountParams, Direction, FifoOrderId, IsolatedCollateralFlow,
IsolatedLimitOrderParams, IsolatedMarketOrderParams, MultiLimitOrderParams, OrderFlags,
PlaceAttachedConditionalOrderParams, PlaceLimitOrderWithConditionalsParams,
PlacePositionConditionalOrderParams, RegisterTraderParams, SelfTradeBehavior, Side,
StopLossOrderKind, TransferCollateralParams, TriggerOrderParams,
get_conditional_orders_address,
};
pub use crate::phoenix_rise_types::{
AllMidsData, ApiCandle, AuthoritySet, CROSS_MARGIN_SUBACCOUNT_IDX,
CancelConditionalOrderRequest, CandleData, CandlesQueryParams, CandlesSubscriptionRequest,
ClientCommand, ClientSubscriptionId, CollateralEvent, CollateralHistoryQueryParams,
CollateralHistoryResponse, CommodityMarketState, ETERNAL_PROGRAM_ID, ExchangeDeltaMessage,
ExchangeDeltaOp, ExchangeEncodedSnapshotMessage, ExchangeMarketConfig,
ExchangeMarketParameterUpdate, ExchangeMarketSnapshot, ExchangeSnapshotEncoding,
ExchangeSnapshotMessage, ExchangeSnapshotReason, ExchangeSnapshotView, ExchangeStateSnapshot,
ExchangeView, ExchangeWsCommodityMetadata, ExchangeWsFeeConfig, ExchangeWsFundingConfig,
ExchangeWsLeverageTier, ExchangeWsMarkPriceParameters, ExchangeWsMarketPriceBand,
FundingHistoryEvent, FundingHistoryQueryParams, FundingHistoryResponse, FundingRateMessage,
L2Book, L2BookUpdate, LogicalSubscription, MarginTrigger, Market, MarketStats,
MarketStatsUpdate, NextCommodityMarketTransition, OrderHistoryItem, OrderHistoryQueryParams,
OrderHistoryResponse, OrderStatus, PaginatedResponse, PhoenixClientError, PhoenixClientEvent,
PhoenixClientSubscriptionHandle, PhoenixHttpError, PhoenixMetadata, PhoenixSubscription,
PhoenixWsError, PlaceIsolatedLimitOrderRequest, PlaceIsolatedMarketOrderRequest, PnlPoint,
PnlQueryParams, PnlResolution, Position, PriceLevel, RuntimeState, ServerMessage, Spline,
SubaccountState, SubscriptionKey, Timeframe, TpSlOrderConfig, TradeEvent, TradeHistoryItem,
TradeHistoryQueryParams, TradeHistoryResponse, Trader, TraderKey, TraderStateDelta,
TraderStatePayload, TraderStateServerMessage, TraderStateSnapshot, TradesMessage,
TradesSubscriptionRequest, WalletNonceResponse,
};
pub use crate::types::conversions::*;