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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
use frame_support::dispatch::{DispatchError, DispatchResult};
use frame_support::{ensure, fail};
use orml_traits::GetByKey;
use common::prelude::{Balance, SwapAmount};
use common::{
AccountIdOf, DexInfoProvider, ToFeeAccount, ToXykTechUnitFromDEXAndTradingPair, TradingPair,
};
use crate::aliases::{AssetIdOf, TechAccountIdOf, TechAssetIdOf};
use crate::bounds::*;
use crate::{Config, Error, Pallet, PoolProviders, TotalIssuances};
impl<T: Config> Pallet<T> {
pub fn decide_is_fee_from_destination(
base_asset_id: &AssetIdOf<T>,
asset_a: &AssetIdOf<T>,
asset_b: &AssetIdOf<T>,
) -> Result<bool, DispatchError> {
if base_asset_id == asset_a {
Ok(false)
} else if base_asset_id == asset_b {
Ok(true)
} else {
Err(Error::<T>::UnsupportedQuotePath.into())
}
}
pub fn get_fee_account(
tech_acc: &TechAccountIdOf<T>,
) -> Result<TechAccountIdOf<T>, DispatchError> {
let fee_acc = tech_acc
.to_fee_account()
.ok_or(Error::<T>::UnableToDeriveFeeAccount)?;
Ok(fee_acc)
}
pub fn is_fee_account_valid_for(
_asset_id: AssetIdOf<T>,
tech_acc: &TechAccountIdOf<T>,
fee_acc: &TechAccountIdOf<T>,
) -> DispatchResult {
let recommended = Self::get_fee_account(tech_acc)?;
if fee_acc != &recommended {
Err(Error::<T>::FeeAccountIsInvalid)?;
}
Ok(())
}
pub fn is_pool_account_valid_for(
_asset_id: AssetIdOf<T>,
tech_acc: &TechAccountIdOf<T>,
) -> DispatchResult {
technical::Pallet::<T>::ensure_tech_account_registered(tech_acc)?;
Ok(())
}
pub fn tech_account_from_dex_and_asset_pair(
dex_id: T::DEXId,
asset_a: T::AssetId,
asset_b: T::AssetId,
) -> Result<(common::TradingPair<TechAssetIdOf<T>>, TechAccountIdOf<T>), DispatchError> {
let dexinfo = T::DexInfoProvider::get_dex_info(&dex_id)?;
let base_asset_id = dexinfo.base_asset_id;
ensure!(asset_a != asset_b, Error::<T>::AssetsMustNotBeSame);
let ba = base_asset_id;
let ta = if base_asset_id == asset_a {
asset_b
} else if base_asset_id == asset_b {
asset_a
} else {
Err(Error::<T>::BaseAssetIsNotMatchedWithAnyAssetArguments)?
};
let tpair = common::TradingPair::<T::AssetId> {
base_asset_id: ba,
target_asset_id: ta,
};
let tpair: common::TradingPair<TechAssetIdOf<T>> = tpair.map(|a| a.into());
Ok((
tpair,
TechAccountIdOf::<T>::to_xyk_tech_unit_from_dex_and_trading_pair(dex_id, tpair),
))
}
pub fn ensure_trading_pair_is_not_restricted(
tpair: &common::TradingPair<T::AssetId>,
) -> Result<(), DispatchError> {
if T::GetTradingPairRestrictedFlag::get(tpair) {
Err(Error::<T>::TargetAssetIsRestricted.into())
} else {
Ok(())
}
}
pub fn get_bounds_from_swap_amount(
swap_amount: SwapAmount<Balance>,
) -> Result<(Bounds<Balance>, Bounds<Balance>), DispatchError> {
match swap_amount {
SwapAmount::WithDesiredInput {
desired_amount_in,
min_amount_out,
} => Ok((
Bounds::Desired(desired_amount_in),
Bounds::Min(min_amount_out),
)),
SwapAmount::WithDesiredOutput {
desired_amount_out,
max_amount_in,
} => Ok((
Bounds::Max(max_amount_in),
Bounds::Desired(desired_amount_out),
)),
}
}
pub fn burn(
pool_account: &AccountIdOf<T>,
user_account: &AccountIdOf<T>,
pool_tokens: Balance,
) -> Result<(), DispatchError> {
let result: Result<_, Error<T>> =
PoolProviders::<T>::mutate_exists(pool_account, user_account, |balance| {
let old_balance = balance.ok_or(Error::<T>::AccountBalanceIsInvalid)?;
let new_balance = old_balance
.checked_sub(pool_tokens)
.ok_or(Error::<T>::AccountBalanceIsInvalid)?;
*balance = (new_balance != 0).then(|| new_balance);
if balance.is_none() {
frame_system::Pallet::<T>::dec_consumers(user_account)
}
Ok(())
});
result?;
let result: Result<_, Error<T>> = TotalIssuances::<T>::mutate(pool_account, |issuance| {
let old_issuance = issuance.ok_or(Error::<T>::PoolIsInvalid)?;
let new_issuance = old_issuance
.checked_sub(pool_tokens)
.ok_or(Error::<T>::PoolIsInvalid)?;
*issuance = Some(new_issuance);
Ok(())
});
result?;
Ok(())
}
pub fn mint(
pool_account: &AccountIdOf<T>,
user_account: &AccountIdOf<T>,
pool_tokens: Balance,
) -> Result<(), DispatchError> {
let result: Result<_, Error<T>> =
PoolProviders::<T>::mutate(pool_account, user_account, |balance| {
if balance.is_none() {
frame_system::Pallet::<T>::inc_consumers(user_account)
.map_err(|_| Error::<T>::IncRefError)?;
}
*balance = Some(balance.unwrap_or(0) + pool_tokens);
Ok(())
});
result?;
let result: Result<_, Error<T>> = TotalIssuances::<T>::mutate(&pool_account, |issuance| {
let new_issuance = issuance
.unwrap_or(0)
.checked_add(pool_tokens)
.ok_or(Error::<T>::PoolTokenSupplyOverflow)?;
*issuance = Some(new_issuance);
Ok(())
});
result?;
Ok(())
}
pub fn strict_sort_pair(
base_asset_id: &T::AssetId,
asset_a: &T::AssetId,
asset_b: &T::AssetId,
) -> Result<TradingPair<T::AssetId>, DispatchError> {
ensure!(asset_a != asset_b, Error::<T>::AssetsMustNotBeSame);
if asset_a == base_asset_id {
Ok(TradingPair {
base_asset_id: asset_a.clone(),
target_asset_id: asset_b.clone(),
})
} else if asset_b == base_asset_id {
Ok(TradingPair {
base_asset_id: asset_b.clone(),
target_asset_id: asset_a.clone(),
})
} else {
fail!(Error::<T>::BaseAssetIsNotMatchedWithAnyAssetArguments)
}
}
}