1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
use cosmwasm_schema::QueryResponses;
use cosmwasm_std::{Decimal, Uint128};
use crate::objects::{AssetEntry, ContractEntry};
pub type DexName = String;
pub type OfferAsset = (AssetEntry, Uint128);
pub type AskAsset = OfferAsset;
pub const IBC_DEX_ID: u32 = 11335;
#[cosmwasm_schema::cw_serde]
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>,
},
}
#[cosmwasm_schema::cw_serde]
pub enum SwapRouter {
Matrix,
Custom(String),
}
#[cosmwasm_schema::cw_serde]
pub struct DexRequestMsg {
pub dex: DexName,
pub action: DexAction,
}
#[cosmwasm_schema::cw_serde]
#[derive(QueryResponses)]
pub enum DexQueryMsg {
#[returns(SimulateSwapResponse)]
SimulateSwap {
offer_asset: OfferAsset,
ask_asset: AssetEntry,
dex: Option<DexName>,
},
}
#[cosmwasm_schema::cw_serde]
pub struct SimulateSwapResponse {
pub pool: ContractEntry,
pub return_amount: Uint128,
pub spread_amount: Uint128,
pub commission: (AssetEntry, Uint128),
}