Enum abstract_os::dex::DexAction
source · pub enum DexAction {
ProvideLiquidity {
assets: Vec<OfferAsset>,
max_spread: Option<Decimal>,
},
ProvideLiquiditySymmetric {
offer_asset: OfferAsset,
paired_assets: Vec<AssetEntry>,
},
WithdrawLiquidity {
lp_token: AssetEntry,
amount: Uint128,
},
Swap {
offer_asset: OfferAsset,
ask_asset: AssetEntry,
max_spread: Option<Decimal>,
belief_price: Option<Decimal>,
},
CustomSwap {
offer_assets: Vec<OfferAsset>,
ask_assets: Vec<AskAsset>,
max_spread: Option<Decimal>,
router: Option<SwapRouter>,
},
}Expand description
Possible actions to perform on the DEX
Variants§
ProvideLiquidity
Provide arbitrary liquidity
ProvideLiquiditySymmetric
Fields
§
offer_asset: OfferAsset§
paired_assets: Vec<AssetEntry>Assets that are paired with the offered asset
Provide liquidity equally between assets to a pool
WithdrawLiquidity
Withdraw liquidity from a pool
Swap
Standard swap between one asset to another
CustomSwap
Allow alternative swap routers and methods
Trait Implementations§
source§impl<'de> Deserialize<'de> for DexAction
impl<'de> Deserialize<'de> for DexAction
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl JsonSchema for DexAction
impl JsonSchema for DexAction
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read more