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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
#![cfg_attr(not(feature = "std"), no_std)]
#![allow(clippy::all)]
use common::{balance, AssetInfoProvider, Balance, HERMES_ASSET_ID, PSWAP, VAL, XOR};
use frame_support::ensure;
use hex_literal::hex;
use sp_arithmetic::traits::Saturating;
mod benchmarking;
#[cfg(test)]
mod mock;
#[cfg(test)]
mod tests;
pub mod weights;
pub use weights::WeightInfo;
type Assets<T> = assets::Pallet<T>;
type System<T> = frame_system::Pallet<T>;
type Technical<T> = technical::Pallet<T>;
type BlockNumberOf<T> = <T as frame_system::Config>::BlockNumber;
type WeightInfoOf<T> = <T as Config>::WeightInfo;
pub const TECH_ACCOUNT_PREFIX: &[u8] = b"faucet";
pub const TECH_ACCOUNT_MAIN: &[u8] = b"main";
pub const DEFAULT_LIMIT: Balance = balance!(5);
pub fn transfer_limit_block_count<T: frame_system::Config>() -> BlockNumberOf<T> {
14400u32.into()
}
pub use pallet::*;
#[frame_support::pallet]
pub mod pallet {
use frame_support::pallet_prelude::*;
use frame_support::traits::StorageVersion;
use frame_system::pallet_prelude::*;
use hex_literal::hex;
use sp_core::H160;
use common::AccountIdOf;
use rewards::{PswapFarmOwners, PswapWaifuOwners, RewardInfo, ValOwners};
use super::*;
#[pallet::config]
pub trait Config:
frame_system::Config + assets::Config + rewards::Config + technical::Config
{
type RuntimeEvent: From<Event<Self>> + IsType<<Self as frame_system::Config>::RuntimeEvent>;
type WeightInfo: WeightInfo;
}
const STORAGE_VERSION: StorageVersion = StorageVersion::new(1);
#[pallet::pallet]
#[pallet::generate_store(pub(super) trait Store)]
#[pallet::storage_version(STORAGE_VERSION)]
#[pallet::without_storage_info]
pub struct Pallet<T>(PhantomData<T>);
#[pallet::hooks]
impl<T: Config> Hooks<BlockNumberFor<T>> for Pallet<T> {}
#[pallet::call]
impl<T: Config> Pallet<T> {
#[pallet::call_index(0)]
#[pallet::weight((WeightInfoOf::<T>::transfer(), Pays::No))]
pub fn transfer(
_origin: OriginFor<T>,
asset_id: T::AssetId,
target: AccountIdOf<T>,
amount: Balance,
) -> DispatchResultWithPostInfo {
Self::ensure_asset_supported(asset_id)?;
let block_number = System::<T>::block_number();
let (block_number, taken_amount) =
Self::prepare_transfer(&target, asset_id, amount, block_number)?;
let reserves_tech_account_id = Self::reserves_account_id();
let reserves_account_id =
Technical::<T>::tech_account_id_to_account_id(&reserves_tech_account_id)?;
let reserves_amount = Assets::<T>::total_balance(&asset_id, &reserves_account_id)?;
ensure!(amount <= reserves_amount, Error::<T>::NotEnoughReserves);
technical::Pallet::<T>::transfer_out(
&asset_id,
&reserves_tech_account_id,
&target,
amount,
)?;
Transfers::<T>::insert(target.clone(), asset_id, (block_number, taken_amount));
Self::deposit_event(Event::Transferred(target, amount));
Ok(().into())
}
#[pallet::call_index(1)]
#[pallet::weight((WeightInfoOf::<T>::reset_rewards(), Pays::No))]
pub fn reset_rewards(_origin: OriginFor<T>) -> DispatchResultWithPostInfo {
common::storage_remove_all!(ValOwners::<T>);
ValOwners::<T>::insert(
H160::from(hex!("21Bc9f4a3d9Dc86f142F802668dB7D908cF0A636")),
RewardInfo::from(balance!(111)),
);
ValOwners::<T>::insert(
H160::from(hex!("D67fea281B2C5dC3271509c1b628E0867a9815D7")),
RewardInfo::from(balance!(444)),
);
common::storage_remove_all!(PswapFarmOwners::<T>);
PswapFarmOwners::<T>::insert(
H160::from(hex!("4fE143cDD48791cB364823A41e018AEC5cBb9AbB")),
balance!(222),
);
PswapFarmOwners::<T>::insert(
H160::from(hex!("D67fea281B2C5dC3271509c1b628E0867a9815D7")),
balance!(555),
);
common::storage_remove_all!(PswapWaifuOwners::<T>);
PswapWaifuOwners::<T>::insert(
H160::from(hex!("886021F300dC809269CFC758A2364a2baF63af0c")),
balance!(333),
);
Ok(().into())
}
#[pallet::call_index(2)]
#[pallet::weight((WeightInfoOf::<T>::update_limit(), Pays::No))]
pub fn update_limit(
origin: OriginFor<T>,
new_limit: Balance,
) -> DispatchResultWithPostInfo {
ensure_root(origin)?;
TransferLimit::<T>::set(new_limit);
Self::deposit_event(Event::LimitUpdated(new_limit));
Ok(().into())
}
}
#[pallet::event]
#[pallet::generate_deposit(pub(super) fn deposit_event)]
pub enum Event<T: Config> {
Transferred(AccountIdOf<T>, Balance),
LimitUpdated(Balance),
}
#[pallet::error]
pub enum Error<T> {
AssetNotSupported,
AmountAboveLimit,
NotEnoughReserves,
}
#[pallet::storage]
#[pallet::getter(fn reserves_account_id)]
pub(super) type ReservesAcc<T: Config> = StorageValue<_, T::TechAccountId, ValueQuery>;
#[pallet::storage]
pub(super) type Transfers<T: Config> = StorageDoubleMap<
_,
Identity,
T::AccountId,
Blake2_256,
T::AssetId,
(BlockNumberOf<T>, Balance),
>;
#[pallet::type_value]
pub fn DefaultForTransferLimit<T: Config>() -> Balance {
DEFAULT_LIMIT
}
#[pallet::storage]
#[pallet::getter(fn transfer_limit)]
pub(super) type TransferLimit<T: Config> =
StorageValue<_, Balance, ValueQuery, DefaultForTransferLimit<T>>;
#[pallet::genesis_config]
pub struct GenesisConfig<T: Config> {
pub reserves_account_id: T::TechAccountId,
}
#[cfg(feature = "std")]
impl<T: Config> Default for GenesisConfig<T> {
fn default() -> Self {
Self {
reserves_account_id: Default::default(),
}
}
}
#[pallet::genesis_build]
impl<T: Config> GenesisBuild<T> for GenesisConfig<T> {
fn build(&self) {
ReservesAcc::<T>::put(&self.reserves_account_id);
}
}
}
impl<T: Config> Pallet<T> {
fn ensure_asset_supported(asset_id: T::AssetId) -> Result<(), Error<T>> {
let xor = XOR.into();
let val = VAL.into();
let pswap = PSWAP.into();
let ceres = common::AssetId32::from_bytes(hex!(
"008bcfd2387d3fc453333557eecb0efe59fcba128769b2feefdd306e98e66440"
))
.into();
if asset_id == xor
|| asset_id == val
|| asset_id == pswap
|| asset_id == ceres
|| asset_id == HERMES_ASSET_ID.into()
{
Ok(())
} else {
Err(Error::AssetNotSupported)
}
}
fn prepare_transfer(
target: &T::AccountId,
asset_id: T::AssetId,
amount: Balance,
current_block_number: BlockNumberOf<T>,
) -> Result<(BlockNumberOf<T>, Balance), Error<T>> {
let balance_limit = Self::transfer_limit();
ensure!(amount <= balance_limit, Error::AmountAboveLimit);
if let Some((initial_block_number, taken_amount)) = Transfers::<T>::get(target, asset_id) {
let transfer_limit_block_count = transfer_limit_block_count::<T>();
if transfer_limit_block_count
<= current_block_number.saturating_sub(initial_block_number)
{
Ok((current_block_number, amount))
} else if amount <= balance_limit.saturating_sub(taken_amount) {
Ok((initial_block_number, taken_amount + amount))
} else {
Err(Error::<T>::AmountAboveLimit)
}
} else {
Ok((current_block_number, amount))
}
}
}