#[macro_use]
extern crate serde_derive;
extern crate async_trait;
extern crate serde;
extern crate cxmr_currency;
extern crate cxmr_exchanges;
use std::sync::Arc;
use async_trait::async_trait;
use cxmr_currency::CurrencyPair;
use cxmr_exchanges::{
AccountInfo, Exchange, ExchangeInfo, ExchangeOrder, MarketOrder, OrderExecution,
};
#[derive(Deserialize, Serialize, Clone)]
pub struct Account {
pub name: String,
pub enabled: bool,
pub exchange: Exchange,
pub credentials: Credentials,
}
impl Account {
pub fn new(key: String, secret: String, exchange: Exchange) -> Self {
let mut name = key.clone();
name.truncate(3);
Account {
name: name,
enabled: false,
exchange: exchange,
credentials: Credentials::new(key, secret),
}
}
}
#[derive(Deserialize, Serialize, Clone, Default)]
pub struct Credentials {
pub key: String,
pub secret: String,
}
impl Credentials {
pub fn new(key: String, secret: String) -> Self {
Credentials {
key: key,
secret: secret,
}
}
}
#[async_trait]
pub trait PrivateClient: Send + Sync {
type Error;
fn account(&self) -> &Account;
fn exchange(&self) -> &'static Exchange;
async fn account_info(&self) -> Result<AccountInfo, Self::Error>;
async fn open_orders(&self, pair: CurrencyPair) -> Result<Vec<MarketOrder>, Self::Error>;
async fn create_order(&self, order: &ExchangeOrder) -> Result<OrderExecution, Self::Error>;
async fn user_data_stream(&self, key: Option<String>) -> Result<String, Self::Error>;
}
#[async_trait]
pub trait PublicClient: Send + Sync {
type Error;
fn exchange(&self) -> &'static Exchange;
async fn exchange_info(&self) -> Result<ExchangeInfo, Self::Error>;
}
pub type SharedPublicClient<E> = Arc<dyn PublicClient<Error = E>>;
pub type SharedPrivateClient<E> = Arc<dyn PrivateClient<Error = E>>;