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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
#![cfg_attr(not(feature = "std"), no_std)]
pub use pallet::*;
#[cfg(test)]
mod mock;
#[cfg(test)]
mod tests;
#[cfg(feature = "runtime-benchmarks")]
mod benchmarking;
mod structs;
pub use crate::structs::*;
pub use pallet_housing_fund as Housing_Fund;
pub use pallet_nft as Nft;
pub use pallet_onboarding as Onboarding;
pub use pallet_share_distributor as ShareDistributor;
#[frame_support::pallet]
pub mod pallet {
use super::*;
use frame_system::{pallet_prelude::*, WeightInfo};
pub const PERCENT_FACTOR: u64 = 100;
#[pallet::config]
pub trait Config: frame_system::Config + ShareDistributor::Config {
type Event: From<Event<Self>> + IsType<<Self as frame_system::Config>::Event>;
type WeightInfo: WeightInfo;
type Currency: ReservableCurrency<Self::AccountId>;
type SimultaneousAssetBidder: Get<u64>;
type MaxTriesBid: Get<u64>;
type MaxTriesAseemblingInvestor: Get<u64>;
type MaximumSharePerInvestor: Get<u64>;
type MinimumSharePerInvestor: Get<u64>;
#[pallet::constant]
type NewAssetScanPeriod: Get<Self::BlockNumber>;
}
pub type HousingFundAccount<T> = Housing_Fund::AccountIdOf<T>;
pub type HousingFundBalance<T> = Housing_Fund::BalanceOf<T>;
pub type EligibleContribution<T> = (HousingFundAccount<T>, HousingFundBalance<T>, HousingFundBalance<T>);
pub type UserBalance<T> = (HousingFundAccount<T>, HousingFundBalance<T>);
#[pallet::pallet]
#[pallet::generate_store(pub(super) trait Store)]
#[pallet::without_storage_info]
pub struct Pallet<T>(_);
#[pallet::event]
#[pallet::generate_deposit(pub(super) fn deposit_event)]
pub enum Event<T: Config> {
HousingFundNotEnough(
T::NftCollectionId,
T::NftItemId,
HousingFundBalance<T>,
BlockNumberOf<T>,
),
HouseBiddingSucceeded(
T::NftCollectionId,
T::NftItemId,
HousingFundBalance<T>,
BlockNumberOf<T>,
),
HouseBiddingFailed(
T::NftCollectionId,
T::NftItemId,
HousingFundBalance<T>,
BlockNumberOf<T>,
Vec<UserBalance<T>>,
),
FailedToAssembleInvestors(
T::NftCollectionId,
T::NftItemId,
HousingFundBalance<T>,
BlockNumberOf<T>,
),
NoHousesOnboardedFound(BlockNumberOf<T>),
NotEnoughAmongEligibleInvestors(
T::NftCollectionId,
T::NftItemId,
HousingFundBalance<T>,
BlockNumberOf<T>,
),
NoHousesFinalisedFound(BlockNumberOf<T>),
SellAssetToInvestorsSuccessful(T::NftCollectionId, T::NftItemId, BlockNumberOf<T>),
SellAssetToInvestorsFailed(T::NftCollectionId, T::NftItemId, BlockNumberOf<T>),
ProcessingAsset(T::NftCollectionId, T::NftItemId, HousingFundBalance<T>),
InvestorListCreationSuccessful(
T::NftCollectionId,
T::NftItemId,
HousingFundBalance<T>,
Vec<UserBalance<T>>,
),
}
#[pallet::hooks]
impl<T: Config> Hooks<BlockNumberFor<T>> for Pallet<T> {
fn on_initialize(n: T::BlockNumber) -> Weight {
Self::begin_block(n)
}
}
#[pallet::call]
impl<T: Config> Pallet<T> {
#[pallet::weight(10_000)]
pub fn force_process_onboarded_asset(_origin: OriginFor<T>) -> DispatchResultWithPostInfo {
Self::process_onboarded_assets()
}
#[pallet::weight(10_000)]
pub fn force_process_finalised_asset(_origin: OriginFor<T>) -> DispatchResultWithPostInfo {
Self::process_finalised_assets()
}
}
}
use enum_iterator::all;
use frame_support::pallet_prelude::*;
impl<T: Config> Pallet<T> {
fn begin_block(now: T::BlockNumber) -> Weight {
let max_block_weight = Weight::from_ref_time(1000_u64);
if (now % T::NewAssetScanPeriod::get()).is_zero() {
Self::process_onboarded_assets().ok();
Self::process_finalised_assets().ok();
}
max_block_weight
}
pub fn process_finalised_assets() -> DispatchResultWithPostInfo {
let houses = Onboarding::Pallet::<T>::get_finalised_houses();
if houses.is_empty() {
let block = <frame_system::Pallet<T>>::block_number();
Self::deposit_event(Event::NoHousesFinalisedFound(block));
return Ok(().into())
}
let houses_iter = houses.iter();
for item in houses_iter {
let result = ShareDistributor::Pallet::<T>::create_virtual(
frame_system::RawOrigin::Root.into(),
item.0,
item.1,
);
let block_number = <frame_system::Pallet<T>>::block_number();
match result {
Ok(_) => {
Self::deposit_event(Event::SellAssetToInvestorsSuccessful(
item.0,
item.1,
block_number,
));
},
Err(_e) => {
Self::deposit_event(Event::SellAssetToInvestorsFailed(
item.0,
item.1,
block_number,
));
},
}
}
Ok(().into())
}
pub fn process_onboarded_assets() -> DispatchResultWithPostInfo {
let houses = Onboarding::Pallet::<T>::get_onboarded_houses();
let block_number = <frame_system::Pallet<T>>::block_number();
if houses.is_empty() {
Self::deposit_event(Event::NoHousesOnboardedFound(block_number));
return Ok(().into())
}
for (collection_id, item_id, house) in houses.into_iter() {
if house.price.is_none() {
continue
}
let amount_wrap = Self::convert_balance(house.price.unwrap());
if amount_wrap.is_none() {
continue
}
let amount = amount_wrap.unwrap();
Self::deposit_event(Event::ProcessingAsset(collection_id, item_id, amount));
if !Housing_Fund::Pallet::<T>::check_available_fund(amount) {
Self::deposit_event(Event::HousingFundNotEnough(
collection_id,
item_id,
amount,
block_number,
));
continue
}
let investor_shares = Self::create_investor_list(amount);
if investor_shares.is_empty() {
Self::deposit_event(Event::FailedToAssembleInvestors(
collection_id,
item_id,
amount,
block_number,
));
continue
}
Self::deposit_event(Event::InvestorListCreationSuccessful(
collection_id,
item_id,
amount,
investor_shares.clone(),
));
let result = Housing_Fund::Pallet::<T>::house_bidding(
collection_id,
item_id,
amount,
investor_shares.clone(),
);
match result {
Ok(_) => {
Self::deposit_event(Event::HouseBiddingSucceeded(
collection_id,
item_id,
amount,
block_number,
));
let collections = all::<Nft::PossibleCollections>().collect::<Vec<_>>();
let mut possible_collection = Nft::PossibleCollections::HOUSES;
for item in collections.iter() {
let value: T::NftCollectionId = item.value().into();
if value == collection_id {
possible_collection = *item;
break
}
}
let owner: T::AccountId =
Nft::Pallet::<T>::owner(collection_id, item_id).unwrap();
Onboarding::Pallet::<T>::change_status(
frame_system::RawOrigin::Signed(owner).into(),
possible_collection,
item_id,
Onboarding::AssetStatus::FINALISING,
)
.ok();
},
Err(_e) => {
Self::deposit_event(Event::HouseBiddingFailed(
collection_id,
item_id,
amount,
block_number,
investor_shares,
));
continue
},
}
Self::simulate_notary_intervention();
}
Ok(().into())
}
fn create_investor_list(
amount: HousingFundBalance<T>,
) -> Vec<UserBalance<T>> {
let mut result: Vec<UserBalance<T>> =
Vec::new();
let percent = Self::u64_to_balance_option(100).unwrap();
let contributions = Self::get_eligible_investors_contribution(amount);
let contributions_length =
Self::u64_to_balance_option(contributions.1.len() as u64).unwrap();
if contributions.0 < amount ||
contributions_length <
(percent /
Self::u64_to_balance_option(T::MaximumSharePerInvestor::get()).unwrap())
{
return result
}
if contributions_length >=
(percent / Self::u64_to_balance_option(T::MinimumSharePerInvestor::get()).unwrap())
{
result = Self::get_common_investor_distribution(
amount,
Self::u64_to_balance_option(T::MinimumSharePerInvestor::get()).unwrap(),
contributions.1,
);
}
else if contributions_length ==
(percent / Self::u64_to_balance_option(T::MaximumSharePerInvestor::get()).unwrap())
{
result = Self::get_common_investor_distribution(
amount,
Self::u64_to_balance_option(T::MaximumSharePerInvestor::get()).unwrap(),
contributions.1,
);
}
else {
result = Self::get_investor_distribution(amount, contributions.1)
}
result
}
fn get_common_investor_distribution(
amount: HousingFundBalance<T>,
common_share: HousingFundBalance<T>,
eligible_contributions: Vec<EligibleContribution<T>>,
) -> Vec<UserBalance<T>> {
let percent = Self::u64_to_balance_option(100).unwrap();
let mut result: Vec<UserBalance<T>> =
Vec::new();
for item in eligible_contributions.iter() {
result.push((item.0.clone(), common_share * amount / percent));
}
result
}
fn get_investor_distribution(
amount: HousingFundBalance<T>,
eligible_contributions: Vec<(
HousingFundAccount<T>,
HousingFundBalance<T>,
HousingFundBalance<T>,
)>,
) -> Vec<UserBalance<T>> {
let percent = Self::u64_to_balance_option(100).unwrap();
let zero_percent = Self::u64_to_balance_option(0).unwrap();
let mut actual_percentage: HousingFundBalance<T> = percent;
let mut result: Vec<UserBalance<T>> =
Vec::new();
let mut count: u64 = 1;
let contributions_length: u64 = eligible_contributions.len() as u64;
for item in eligible_contributions.iter() {
let item_share;
if count == contributions_length {
item_share = actual_percentage;
} else if item.1 >= actual_percentage {
item_share = actual_percentage /
Self::u64_to_balance_option(contributions_length - count + 1).unwrap();
} else {
let share_median_diff = (actual_percentage - item.1) /
Self::u64_to_balance_option(contributions_length - count).unwrap();
if share_median_diff <
Self::u64_to_balance_option(T::MinimumSharePerInvestor::get()).unwrap()
{
item_share = actual_percentage /
Self::u64_to_balance_option(contributions_length - count + 1).unwrap();
} else {
item_share = item.1;
}
}
result.push((item.0.clone(), item_share * amount / percent));
actual_percentage -= item_share;
count += 1;
if actual_percentage == zero_percent {
break
}
}
result
}
fn get_eligible_investors_contribution(
amount: HousingFundBalance<T>,
) -> (
HousingFundBalance<T>,
Vec<(HousingFundAccount<T>, HousingFundBalance<T>, HousingFundBalance<T>)>,
) {
let mut result: Vec<(
HousingFundAccount<T>,
HousingFundBalance<T>,
HousingFundBalance<T>,
)> = Vec::new();
let contributions = Housing_Fund::Pallet::<T>::get_contributions();
let mut ordered_account_id_list: Vec<HousingFundAccount<T>> = Vec::new();
let mut ordered_contributions: Vec<(
HousingFundAccount<T>,
Housing_Fund::Contribution<T>,
)> = Vec::new();
let zero_percent = Self::u64_to_balance_option(0).unwrap();
let mut total_share: HousingFundBalance<T> = Self::u64_to_balance_option(0).unwrap();
for _ in 0..contributions.len() {
let oldest_contribution = Self::get_oldest_contribution(
ordered_account_id_list.clone(),
contributions.clone(),
);
ordered_account_id_list.push(oldest_contribution.0.clone());
ordered_contributions.push(oldest_contribution.clone());
}
for (account_id, contribution) in ordered_contributions.into_iter() {
let (share, value) = Self::get_investor_share(amount, contribution.clone());
if share > zero_percent {
result.push((account_id, share, value));
total_share += value;
}
}
(total_share, result)
}
fn simulate_notary_intervention() {}
fn get_oldest_contribution(
ordered_list: Vec<HousingFundAccount<T>>,
contributions: Vec<(HousingFundAccount<T>, Housing_Fund::Contribution<T>)>,
) -> (HousingFundAccount<T>, Housing_Fund::Contribution<T>) {
let mut contributions_cut: Vec<(
HousingFundAccount<T>,
Housing_Fund::Contribution<T>,
)> = Vec::new();
for item in contributions.iter() {
if !ordered_list.contains(&item.0) {
contributions_cut.push(item.clone());
}
}
let mut min = contributions_cut[0].clone();
for item in contributions_cut.iter() {
if item.1.block_number < min.1.block_number {
min = item.clone();
}
}
min
}
fn get_investor_share(
amount: HousingFundBalance<T>,
contribution: Housing_Fund::Contribution<T>,
) -> (HousingFundBalance<T>, HousingFundBalance<T>) {
let mut share: HousingFundBalance<T> = Self::u64_to_balance_option(0).unwrap();
let mut value: HousingFundBalance<T> = Self::u64_to_balance_option(0).unwrap();
if contribution.available_balance >=
Self::get_amount_percentage(amount, T::MaximumSharePerInvestor::get())
{
share = Self::u64_to_balance_option(T::MaximumSharePerInvestor::get()).unwrap();
value = Self::get_amount_percentage(amount, T::MaximumSharePerInvestor::get());
}
else if contribution.available_balance >=
Self::get_amount_percentage(amount, T::MinimumSharePerInvestor::get())
{
share =
contribution.available_balance * Self::u64_to_balance_option(100).unwrap() / amount;
value = contribution.available_balance;
}
(share, value)
}
fn get_amount_percentage(
amount: HousingFundBalance<T>,
percentage: u64,
) -> HousingFundBalance<T> {
amount * Self::u64_to_balance_option(percentage).unwrap() /
Self::u64_to_balance_option(100).unwrap()
}
fn convert_balance(amount: Onboarding::BalanceOf<T>) -> Option<HousingFundBalance<T>> {
let value: Option<u128> = amount.try_into().ok();
let result: Option<HousingFundBalance<T>> = value.unwrap().try_into().ok();
result
}
pub fn u64_to_balance_option(input: u64) -> Option<HousingFundBalance<T>> {
input.try_into().ok()
}
}