SwapInstruction

Enum SwapInstruction 

Source
#[repr(C)]
pub enum SwapInstruction { Initialize(InitializeData), Swap(SwapData), Deposit(DepositData), Withdraw(WithdrawData), WithdrawOne(WithdrawOneData), }
Expand description

Instructions supported by the SwapInfo program.

Variants§

§

Initialize(InitializeData)

Initializes a new SwapInfo.

  1. [writable, signer] New StableSwap to create.
  2. [] $authority derived from create_program_address(&[StableSwap account])
  3. [] admin Account.
  4. [] admin_fee_a admin fee Account for token_a.
  5. [] admin_fee_b admin fee Account for token_b.
  6. [] token_a Account. Must be non zero, owned by $authority.
  7. [] token_b Account. Must be non zero, owned by $authority.
  8. [writable] Pool Token Mint. Must be empty, owned by $authority.
§

Swap(SwapData)

Swap the tokens in the pool.

  1. []StableSwap
  2. [] $authority
  3. [signer] User authority.
  4. [writable] token_(A|B) SOURCE Account, amount is transferable by $authority,
  5. [writable] token_(A|B) Base Account to swap INTO. Must be the SOURCE token.
  6. [writable] token_(A|B) Base Account to swap FROM. Must be the DESTINATION token.
  7. [writable] token_(A|B) DESTINATION Account assigned to USER as the owner.
  8. [writable] token_(A|B) admin fee Account. Must have same mint as DESTINATION token.
  9. [] Token program id
§

Deposit(DepositData)

Deposit some tokens into the pool. The output is a “pool” token representing ownership into the pool. Inputs are converted to the current ratio.

  1. []StableSwap
  2. [] $authority
  3. [signer] User authority.
  4. [writable] token_a $authority can transfer amount,
  5. [writable] token_b $authority can transfer amount,
  6. [writable] token_a Base Account to deposit into.
  7. [writable] token_b Base Account to deposit into.
  8. [writable] Pool MINT account, $authority is the owner.
  9. [writable] Pool Account to deposit the generated tokens, user is the owner.
  10. [] Token program id
§

Withdraw(WithdrawData)

Withdraw tokens from the pool at the current ratio.

  1. []StableSwap
  2. [] $authority
  3. [signer] User authority.
  4. [writable] Pool mint account, $authority is the owner
  5. [writable] SOURCE Pool account, amount is transferable by $authority.
  6. [writable] token_a Swap Account to withdraw FROM.
  7. [writable] token_b Swap Account to withdraw FROM.
  8. [writable] token_a user Account to credit.
  9. [writable] token_b user Account to credit.
  10. [writable] admin_fee_a admin fee Account for token_a.
  11. [writable] admin_fee_b admin fee Account for token_b.
  12. [] Token program id
§

WithdrawOne(WithdrawOneData)

Withdraw one token from the pool at the current ratio.

  1. []StableSwap
  2. [] $authority
  3. [signer] User authority.
  4. [writable] Pool mint account, $authority is the owner
  5. [writable] SOURCE Pool account, amount is transferable by $authority.
  6. [writable] token_(A|B) BASE token Swap Account to withdraw FROM.
  7. [writable] token_(A|B) QUOTE token Swap Account to exchange to base token.
  8. [writable] token_(A|B) BASE token user Account to credit.
  9. [writable] token_(A|B) admin fee Account. Must have same mint as BASE token.
  10. [] Token program id

Implementations§

Source§

impl SwapInstruction

Source

pub fn unpack(input: &[u8]) -> Result<Self, ProgramError>

Unpacks a byte buffer into a SwapInstruction.

Source

pub fn pack(&self) -> Vec<u8>

Packs a SwapInstruction into a byte buffer.

Trait Implementations§

Source§

impl Clone for SwapInstruction

Source§

fn clone(&self) -> SwapInstruction

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for SwapInstruction

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for SwapInstruction

Source§

fn eq(&self, other: &SwapInstruction) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for SwapInstruction

Source§

impl StructuralPartialEq for SwapInstruction

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> AbiExample for T

Source§

default fn example() -> T

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

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.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

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

Initializes a with the given initializer. Read more
Source§

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

Dereferences the given pointer. Read more
Source§

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

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

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

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

fn vzip(self) -> V