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
#![cfg_attr(not(feature = "std"), no_std)]
pub use pallet::*;
pub use pallet_assets as Assets;
pub use pallet_housing_fund as HousingFund;
pub use pallet_nft as Nft;
pub use pallet_onboarding as Onboarding;
pub use pallet_roles as Roles;
mod functions;
mod types;
pub use functions::*;
pub use types::*;
#[cfg(test)]
mod mock;
#[cfg(test)]
mod tests;
#[cfg(feature = "runtime-benchmarks")]
mod benchmarking;
#[frame_support::pallet]
pub mod pallet {
use super::*;
#[pallet::pallet]
#[pallet::generate_store(pub(super) trait Store)]
#[pallet::without_storage_info]
pub struct Pallet<T>(_);
#[pallet::config]
pub trait Config:
frame_system::Config
+ Assets::Config
+ Roles::Config
+ Nft::Config
+ Onboarding::Config
+ HousingFund::Config
{
type Event: From<Event<Self>> + IsType<<Self as frame_system::Config>::Event>;
type Currency: Currency<Self::AccountId> + ReservableCurrency<Self::AccountId>;
type AssetId: IsType<<Self as Assets::Config>::AssetId> + Parameter + From<u32> + Ord + Copy;
#[pallet::constant]
type Fees: Get<BalanceOf<Self>>;
}
#[pallet::storage]
#[pallet::getter(fn virtual_acc)]
pub type Virtual<T: Config> = StorageDoubleMap<
_,
Blake2_128Concat,
T::NftCollectionId,
Blake2_128Concat,
T::NftItemId,
Ownership<T>,
OptionQuery,
>;
#[pallet::storage]
#[pallet::getter(fn tokens_infos)]
pub type Tokens<T: Config> =
StorageMap<_, Blake2_128Concat, T::AccountId, Owners<T>, OptionQuery>;
#[pallet::type_value]
pub fn InitDefault<T: Config>() -> u32 {
0
}
#[pallet::storage]
#[pallet::getter(fn token_id)]
pub type TokenId<T: Config> = StorageValue<_, u32, ValueQuery, InitDefault<T>>;
#[pallet::event]
#[pallet::generate_deposit(pub(super) fn deposit_event)]
pub enum Event<T: Config> {
VirtualCreated {
account: T::AccountId,
collection: T::NftCollectionId,
item: T::NftItemId,
when: BlockNumberOf<T>,
},
NftTransactionExecuted {
nft_transfer_to: T::AccountId,
nft_transfer_from: T::AccountId,
when: BlockNumberOf<T>,
},
OwnershipTokensDistributed {
from: T::AccountId,
to: Vec<T::AccountId>,
token_id: <T as pallet::Config>::AssetId,
owners: Vec<(T::AccountId, <T as Assets::Config>::Balance)>,
},
}
#[pallet::error]
pub enum Error<T> {
NoneValue,
InvalidValue,
ReservedToServicer,
NotEnoughFees,
}
#[pallet::call]
impl<T: Config> Pallet<T> {
#[pallet::weight(10_000)]
pub fn create_virtual(
origin: OriginFor<T>,
collection_id: T::NftCollectionId,
item_id: T::NftItemId,
) -> DispatchResult {
let _caller = ensure_root(origin.clone());
let seller: T::AccountId = Nft::Pallet::<T>::owner(collection_id, item_id).unwrap();
Self::virtual_account(collection_id, item_id).ok();
let account = Self::virtual_acc(collection_id, item_id).unwrap().virtual_account;
Self::nft_transaction(collection_id, item_id, account.clone()).ok();
Self::create_tokens(origin, collection_id, item_id, account.clone()).ok();
Self::distribute_tokens(account.clone(), collection_id, item_id).ok();
HousingFund::Pallet::<T>::validate_house_bidding(collection_id, item_id).ok();
let created = <frame_system::Pallet<T>>::block_number();
Self::deposit_event(Event::VirtualCreated {
account: account.clone(),
collection: collection_id,
item: item_id,
when: created,
});
Self::deposit_event(Event::NftTransactionExecuted {
nft_transfer_to: account.clone(),
nft_transfer_from: seller,
when: created,
});
let new_owners = Self::virtual_acc(collection_id, item_id).unwrap().owners;
let token_id = Self::virtual_acc(collection_id, item_id).unwrap().token_id;
let owners = Self::tokens_infos(account.clone()).unwrap().owners;
Self::deposit_event(Event::OwnershipTokensDistributed {
from: account,
to: new_owners,
token_id,
owners,
});
Ok(())
}
}
}