pub struct SDKClientCore {
    pub markets: BTreeMap<Pubkey, MarketMetadata, Global>,
    pub rng: Arc<Mutex<StdRng>>,
    pub active_market_key: Pubkey,
    pub trader: Pubkey,
}

Fields§

§markets: BTreeMap<Pubkey, MarketMetadata, Global>§rng: Arc<Mutex<StdRng>>§active_market_key: Pubkey§trader: Pubkey

Implementations§

source§

impl SDKClientCore

source

pub fn raw_base_units_to_base_lots(&self, raw_base_units: f64) -> u64

RECOMMENDED: Converts raw base units (whole tokens) to base lots. For example if the base currency was a Widget and you wanted to convert 3 Widget tokens to base lots you would call sdk.raw_base_units_to_base_lots(3.0). This would return the number of base lots that would be equivalent to 3 Widget tokens.

source

pub fn raw_base_units_to_base_lots_rounded_up(&self, raw_base_units: f64) -> u64

The same function as raw_base_units_to_base_lots, but rounds up instead of down.

source

pub fn base_atoms_to_base_lots(&self, base_atoms: u64) -> u64

RECOMMENDED: Converts base atoms to base lots. For example if the base currency was a Widget with 9 decimals, where 1 atom is 1e-9 of one Widget and you wanted to convert 3 Widgets to base lots you would call sdk.base_amount_to_base_lots(3_000_000_000). This would return the number of base lots that would be equivalent to 3 Widgets or 3 * 1e9 Widget atoms.

source

pub fn base_lots_to_base_atoms(&self, base_lots: u64) -> u64

RECOMMENDED: Converts base lots to base atoms. For example if the base currency was a Widget where there are 1_000 base atoms per base lot of Widget, you would call sdk.base_lots_to_base_atoms(300) to convert 300 base lots to 300_000 Widget atoms.

source

pub fn quote_units_to_quote_lots(&self, quote_units: f64) -> u64

RECOMMENDED: Converts quote units to quote lots. For example if the quote currency was USDC you wanted to convert 3 USDC to quote lots you would call sdk.quote_unit_to_quote_lots(3.0). This would return the number of quote lots that would be equivalent to 3 USDC.

source

pub fn quote_atoms_to_quote_lots(&self, quote_atoms: u64) -> u64

RECOMMENDED: Converts quote atoms to quote lots. For example if the quote currency was USDC with 6 decimals and you wanted to convert 3 USDC, or 3_000_000 USDC atoms, to quote lots you would call sdk.quote_atoms_to_quote_lots(3_000_000). This would return the number of quote lots that would be equivalent to 3_000_000 USDC atoms.

source

pub fn quote_lots_to_quote_atoms(&self, quote_lots: u64) -> u64

RECOMMENDED: Converts quote lots to quote atoms. For example if the quote currency was USDC and there are 100 quote atoms per quote lot of USDC, you would call sdk.quote_lots_to_quote_atoms(300) to convert 300 quote lots to 30_000 USDC atoms.

source

pub fn base_atoms_to_base_unit_as_float(&self, base_atoms: u64) -> f64

Converts a number of base atoms to a floating point number of base units. For example if the base currency is a Widget where the token has 9 decimals and you wanted to convert 1_000_000_000 base atoms to a floating point number of whole Widget tokens you would call sdk.base_amount_to_float(1_000_000_000). This would return 1.0. This is useful for displaying the base amount in a human readable format.

source

pub fn quote_atoms_to_quote_unit_as_float(&self, quote_atoms: u64) -> f64

Converts a number of quote atoms to a floating point number of quote units. For example if the quote currency is USDC the token has 6 decimals and you wanted to convert 1_000_000 USDC atoms to a floating point number of whole USDC tokens you would call sdk.quote_amount_to_float(1_000_000). This would return 1.0. This is useful for displaying the quote amount in a human readable format.

source

pub fn print_quote_amount(&self, quote_amount: u64)

Takes in a number of quote atoms, converts to floating point number of whole tokens, and prints it as a human readable string to the console

source

pub fn print_base_amount(&self, base_amount: u64)

Takes in a number of base atoms, converts to floating point number of whole tokens, and prints it as a human readable string to the console

source

pub fn fill_event_to_quote_amount(&self, fill: &Fill) -> u64

Takes in information from a fill event and converts it into the equivalent quote amount

source

pub fn order_to_quote_amount(&self, base_lots: u64, price_in_ticks: u64) -> u64

Takes in tick price and base lots of an order converts it into the equivalent quote amount

source

pub fn float_price_to_ticks(&self, price: f64) -> u64

Takes in a price as a floating point number and converts it to a number of ticks (rounded down)

source

pub fn float_price_to_ticks_rounded_up(&self, price: f64) -> u64

Takes in a price as a floating point number and converts it to a number of ticks (rounded up)

source

pub fn ticks_to_float_price(&self, ticks: u64) -> f64

Takes in a number of ticks and converts it to a floating point number price

source

pub fn base_lots_to_base_units_multiplier(&self) -> f64

source

pub fn ticks_to_float_price_multiplier(&self) -> f64

source§

impl SDKClientCore

source

pub fn get_next_client_order_id(&self) -> u128

source

pub fn change_active_market(&mut self, market: &Pubkey) -> Result<(), Error>

source

pub fn get_active_market_metadata(&self) -> &MarketMetadata

source

pub fn parse_phoenix_events( &self, sig: &Signature, events: Vec<Vec<u8, Global>, Global> ) -> Option<Vec<PhoenixEvent, Global>>

source

pub fn get_ioc_ix( &self, price: u64, side: Side, num_base_lots: u64 ) -> Instruction

source

pub fn get_ioc_generic_ix( &self, price: u64, side: Side, num_base_lots: u64, self_trade_behavior: Option<SelfTradeBehavior>, match_limit: Option<u64>, client_order_id: Option<u128>, use_only_deposited_funds: Option<bool> ) -> Instruction

source

pub fn get_fok_sell_ix(&self, price: u64, size_in_base_lots: u64) -> Instruction

source

pub fn get_fok_buy_generic_ix( &self, price: u64, size_in_quote_lots: u64, self_trade_behavior: Option<SelfTradeBehavior>, match_limit: Option<u64>, client_order_id: Option<u128>, use_only_deposited_funds: Option<bool> ) -> Instruction

source

pub fn get_fok_sell_generic_ix( &self, price: u64, size_in_base_lots: u64, self_trade_behavior: Option<SelfTradeBehavior>, match_limit: Option<u64>, client_order_id: Option<u128>, use_only_deposited_funds: Option<bool> ) -> Instruction

source

pub fn get_fok_generic_ix( &self, price: u64, side: Side, size: u64, self_trade_behavior: Option<SelfTradeBehavior>, match_limit: Option<u64>, client_order_id: Option<u128>, use_only_deposited_funds: Option<bool> ) -> Instruction

source

pub fn get_ioc_with_slippage_ix( &self, lots_in: u64, min_lots_out: u64, side: Side ) -> Instruction

source

pub fn get_ioc_from_tick_price_ix( &self, tick_price: u64, side: Side, size: u64 ) -> Instruction

source

pub fn get_post_only_ix(&self, price: u64, side: Side, size: u64) -> Instruction

source

pub fn get_post_only_generic_ix( &self, price: u64, side: Side, size: u64, client_order_id: Option<u128>, reject_post_only: Option<bool>, use_only_deposited_funds: Option<bool> ) -> Instruction

source

pub fn get_post_only_ix_from_tick_price( &self, tick_price: u64, side: Side, size: u64, client_order_id: u128, improve_price_on_cross: bool ) -> Instruction

source

pub fn get_limit_order_ix( &self, price: u64, side: Side, size: u64 ) -> Instruction

source

pub fn get_limit_order_generic_ix( &self, price: u64, side: Side, size: u64, self_trade_behavior: Option<SelfTradeBehavior>, match_limit: Option<u64>, client_order_id: Option<u128>, use_only_deposited_funds: Option<bool> ) -> Instruction

source

pub fn get_limit_order_ix_from_tick_price( &self, tick_price: u64, side: Side, size: u64, client_order_id: u128 ) -> Instruction

source

pub fn get_cancel_ids_ix(&self, ids: Vec<FIFOOrderId, Global>) -> Instruction

source

pub fn get_cancel_up_to_ix( &self, tick_limit: Option<u64>, side: Side ) -> Instruction

source

pub fn get_cancel_all_ix(&self) -> Instruction

Trait Implementations§

source§

impl Deref for SDKClientCore

§

type Target = MarketMetadata

The resulting type after dereferencing.
source§

fn deref(&self) -> &<SDKClientCore as Deref>::Target

Dereferences the value.

Auto Trait Implementations§

Blanket Implementations§

§

impl<T> AbiExample for T

§

default fn example() -> T

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

§

impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32 ) -> TaggedParser<'a, Implicit, Self, E>

source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FutureExt for T

§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more