difftreelog
Chain runtime variable name changed
in: master
1 file changed
pallets/nft/src/lib.rsdiffbeforeafterboth1#![cfg_attr(not(feature = "std"), no_std)]23/// For more guidance on Substrate FRAME, see the example pallet4/// https://github.com/paritytech/substrate/blob/master/frame/example/src/lib.rs5use codec::{Decode, Encode};6pub use frame_support::{7 construct_runtime, decl_event, decl_module, decl_storage,8 dispatch::DispatchResult,9 ensure, parameter_types,10 traits::{11 Currency, ExistenceRequirement, Get, Imbalance, KeyOwnerProofSystem, OnUnbalanced,12 Randomness, WithdrawReason,13 },14 weights::{15 constants::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, WEIGHT_PER_SECOND},16 DispatchInfo, GetDispatchInfo, IdentityFee, Pays, PostDispatchInfo, Weight,17 WeightToFeePolynomial,18 },19 IsSubType, StorageValue,20};2122use frame_system::{self as system, ensure_signed};23use sp_runtime::sp_std::prelude::Vec;24use sp_runtime::{25 traits::{26 DispatchInfoOf, Dispatchable, PostDispatchInfoOf, SaturatedConversion, Saturating,27 SignedExtension, Zero,28 },29 transaction_validity::{30 InvalidTransaction, TransactionPriority, TransactionValidity, TransactionValidityError,31 ValidTransaction,32 },33 FixedPointOperand, FixedU128,34};35use sp_std::prelude::*;3637#[cfg(test)]38mod mock;3940#[cfg(test)]41mod tests;4243#[derive(Encode, Decode, Debug, Eq, Clone, PartialEq)]44pub enum CollectionMode {45 Invalid,46 // custom data size47 NFT(u32),48 // decimal points49 Fungible(u32),50 // custom data size and decimal points51 ReFungible(u32, u32),52}5354impl Into<u8> for CollectionMode {55 fn into(self) -> u8 {56 match self {57 CollectionMode::Invalid => 0,58 CollectionMode::NFT(_) => 1,59 CollectionMode::Fungible(_) => 2,60 CollectionMode::ReFungible(_, _) => 3,61 }62 }63}6465#[derive(Encode, Decode, Debug, Clone, PartialEq)]66pub enum AccessMode {67 Normal,68 WhiteList,69}70impl Default for AccessMode {71 fn default() -> Self {72 Self::Normal73 }74}7576impl Default for CollectionMode {77 fn default() -> Self {78 Self::Invalid79 }80}8182#[derive(Encode, Decode, Default, Clone, PartialEq)]83#[cfg_attr(feature = "std", derive(Debug))]84pub struct Ownership<AccountId> {85 pub owner: AccountId,86 pub fraction: u128,87}8889#[derive(Encode, Decode, Default, Clone, PartialEq)]90#[cfg_attr(feature = "std", derive(Debug))]91pub struct CollectionType<AccountId> {92 pub owner: AccountId,93 pub mode: CollectionMode,94 pub access: AccessMode,95 pub decimal_points: u32,96 pub name: Vec<u16>, // 64 include null escape char97 pub description: Vec<u16>, // 256 include null escape char98 pub token_prefix: Vec<u8>, // 16 include null escape char99 pub custom_data_size: u32,100 pub offchain_schema: Vec<u8>,101 pub sponsor: AccountId, // Who pays fees. If set to default address, the fees are applied to the transaction sender102 pub unconfirmed_sponsor: AccountId, // Sponsor address that has not yet confirmed sponsorship103}104105#[derive(Encode, Decode, Default, Clone, PartialEq)]106#[cfg_attr(feature = "std", derive(Debug))]107pub struct CollectionAdminsType<AccountId> {108 pub admin: AccountId,109 pub collection_id: u64,110}111112#[derive(Encode, Decode, Default, Clone, PartialEq)]113#[cfg_attr(feature = "std", derive(Debug))]114pub struct NftItemType<AccountId> {115 pub collection: u64,116 pub owner: AccountId,117 pub data: Vec<u8>,118}119120#[derive(Encode, Decode, Default, Clone, PartialEq)]121#[cfg_attr(feature = "std", derive(Debug))]122pub struct FungibleItemType<AccountId> {123 pub collection: u64,124 pub owner: AccountId,125 pub value: u128,126}127128#[derive(Encode, Decode, Default, Clone, PartialEq)]129#[cfg_attr(feature = "std", derive(Debug))]130pub struct ReFungibleItemType<AccountId> {131 pub collection: u64,132 pub owner: Vec<Ownership<AccountId>>,133 pub data: Vec<u8>,134}135136#[derive(Encode, Decode, Default, Clone, PartialEq)]137#[cfg_attr(feature = "std", derive(Debug))]138pub struct ApprovePermissions<AccountId> {139 pub approved: AccountId,140 pub amount: u64,141}142143#[derive(Encode, Decode, Default, Clone, PartialEq)]144#[cfg_attr(feature = "std", derive(Debug))]145pub struct VestingItem<AccountId, Moment> {146 pub sender: AccountId,147 pub recipient: AccountId,148 pub collection_id: u64,149 pub item_id: u64,150 pub amount: u64,151 pub vesting_date: Moment,152}153154pub trait Trait: system::Trait {155 type Event: From<Event<Self>> + Into<<Self as system::Trait>::Event>;156}157158decl_storage! {159 trait Store for Module<T: Trait> as Nft {160161 // Private members162 NextCollectionID: u64;163 ItemListIndex: map hasher(blake2_128_concat) u64 => u64;164165 pub Collection get(fn collection): map hasher(identity) u64 => CollectionType<T::AccountId>;166 pub AdminList get(fn admin_list_collection): map hasher(identity) u64 => Vec<T::AccountId>;167 pub WhiteList get(fn white_list): map hasher(identity) u64 => Vec<T::AccountId>;168169 /// Balance owner per collection map170 pub Balance get(fn balance_count): double_map hasher(blake2_128_concat) u64, hasher(blake2_128_concat) T::AccountId => u64;171172 /// second parameter: item id + owner account id173 pub ApprovedList get(fn approved): double_map hasher(blake2_128_concat) u64, hasher(blake2_128_concat) (u64, T::AccountId) => Vec<ApprovePermissions<T::AccountId>>;174175 /// Item collections176 pub NftItemList get(fn nft_item_id): double_map hasher(blake2_128_concat) u64, hasher(blake2_128_concat) u64 => NftItemType<T::AccountId>;177 pub FungibleItemList get(fn fungible_item_id): double_map hasher(blake2_128_concat) u64, hasher(blake2_128_concat) u64 => FungibleItemType<T::AccountId>;178 pub ReFungibleItemList get(fn refungible_item_id): double_map hasher(blake2_128_concat) u64, hasher(blake2_128_concat) u64 => ReFungibleItemType<T::AccountId>;179180 // Active vesting list181 // pub VestingList get(fn vesting): double_map hasher(blake2_128_concat) u64, hasher(blake2_128_concat) u64 => VestingItem<T::AccountId, T::Moment>;182183 /// Index list184 pub AddressTokens get(fn address_tokens): double_map hasher(blake2_128_concat) u64, hasher(blake2_128_concat) T::AccountId => Vec<u64>;185186 // Sponsorship187 pub ContractSponsor get(fn contract_sponsor): map hasher(identity) T::AccountId => T::AccountId;188 pub UnconfirmedContractSponsor get(fn unconfirmed_contract_sponsor): map hasher(identity) T::AccountId => T::AccountId;189 }190}191192decl_event!(193 pub enum Event<T>194 where195 AccountId = <T as system::Trait>::AccountId,196 {197 Created(u64, u8, AccountId),198 ItemCreated(u64, u64),199 ItemDestroyed(u64, u64),200 }201);202203decl_module! {204 pub struct Module<T: Trait> for enum Call where origin: T::Origin {205206 fn deposit_event() = default;207208 // Create collection of NFT with given parameters209 //210 // @param customDataSz size of custom data in each collection item211 // returns collection ID212 #[weight = 0]213 pub fn create_collection( origin,214 collection_name: Vec<u16>,215 collection_description: Vec<u16>,216 token_prefix: Vec<u8>,217 mode: CollectionMode) -> DispatchResult {218219 // Anyone can create a collection220 let who = ensure_signed(origin)?;221 let custom_data_size = match mode {222 CollectionMode::NFT(size) => size,223 CollectionMode::ReFungible(size, _) => size,224 _ => 0225 };226227 let decimal_points = match mode {228 CollectionMode::Fungible(points) => points,229 CollectionMode::ReFungible(_, points) => points,230 _ => 0231 };232233 // check params234 ensure!(decimal_points <= 4, "decimal_points parameter must be lower than 4");235236 let mut name = collection_name.to_vec();237 name.push(0);238 ensure!(name.len() <= 64, "Collection name can not be longer than 63 char");239240 let mut description = collection_description.to_vec();241 description.push(0);242 ensure!(name.len() <= 256, "Collection description can not be longer than 255 char");243244 let mut prefix = token_prefix.to_vec();245 prefix.push(0);246 ensure!(prefix.len() <= 16, "Token prefix can not be longer than 15 char");247248 // Generate next collection ID249 let next_id = NextCollectionID::get()250 .checked_add(1)251 .expect("collection id error");252253 NextCollectionID::put(next_id);254255 // Create new collection256 let new_collection = CollectionType {257 owner: who.clone(),258 name: name,259 mode: mode.clone(),260 access: AccessMode::Normal,261 description: description,262 decimal_points: decimal_points,263 token_prefix: prefix,264 offchain_schema: Vec::new(),265 custom_data_size: custom_data_size,266 sponsor: T::AccountId::default(),267 unconfirmed_sponsor: T::AccountId::default(),268 };269270 // Add new collection to map271 <Collection<T>>::insert(next_id, new_collection);272273 // call event274 Self::deposit_event(RawEvent::Created(next_id, mode.into(), who.clone()));275276 Ok(())277 }278279 #[weight = 0]280 pub fn destroy_collection(origin, collection_id: u64) -> DispatchResult {281282 let sender = ensure_signed(origin)?;283 Self::check_owner_permissions(collection_id, sender)?;284285 // TODO Items remove286 <AddressTokens<T>>::remove_prefix(collection_id);287 <ApprovedList<T>>::remove_prefix(collection_id);288 <Balance<T>>::remove_prefix(collection_id);289 <ItemListIndex>::remove(collection_id);290 <AdminList<T>>::remove(collection_id);291 <Collection<T>>::remove(collection_id);292 <WhiteList<T>>::remove(collection_id);293294 Ok(())295 }296297 #[weight = 0]298 pub fn change_collection_owner(origin, collection_id: u64, new_owner: T::AccountId) -> DispatchResult {299300 let sender = ensure_signed(origin)?;301 Self::check_owner_permissions(collection_id, sender)?;302 let mut target_collection = <Collection<T>>::get(collection_id);303 target_collection.owner = new_owner;304 <Collection<T>>::insert(collection_id, target_collection);305306 Ok(())307 }308309 #[weight = 0]310 pub fn add_collection_admin(origin, collection_id: u64, new_admin_id: T::AccountId) -> DispatchResult {311312 let sender = ensure_signed(origin)?;313 Self::check_owner_or_admin_permissions(collection_id, sender)?;314 let mut admin_arr: Vec<T::AccountId> = Vec::new();315316 if <AdminList<T>>::contains_key(collection_id)317 {318 admin_arr = <AdminList<T>>::get(collection_id);319 ensure!(!admin_arr.contains(&new_admin_id), "Account already has admin role");320 }321322 admin_arr.push(new_admin_id);323 <AdminList<T>>::insert(collection_id, admin_arr);324325 Ok(())326 }327328 #[weight = 0]329 pub fn remove_collection_admin(origin, collection_id: u64, account_id: T::AccountId) -> DispatchResult {330331 let sender = ensure_signed(origin)?;332 Self::check_owner_or_admin_permissions(collection_id, sender)?;333334 if <AdminList<T>>::contains_key(collection_id)335 {336 let mut admin_arr = <AdminList<T>>::get(collection_id);337 admin_arr.retain(|i| *i != account_id);338 <AdminList<T>>::insert(collection_id, admin_arr);339 }340341 Ok(())342 }343344 #[weight = 0]345 pub fn set_collection_sponsor(origin, collection_id: u64, new_sponsor: T::AccountId) -> DispatchResult {346347 let sender = ensure_signed(origin)?;348 ensure!(<Collection<T>>::contains_key(collection_id), "This collection does not exist");349350 let mut target_collection = <Collection<T>>::get(collection_id);351 ensure!(sender == target_collection.owner, "You do not own this collection");352353 target_collection.unconfirmed_sponsor = new_sponsor;354 <Collection<T>>::insert(collection_id, target_collection);355356 Ok(())357 }358359 #[weight = 0]360 pub fn confirm_sponsorship(origin, collection_id: u64) -> DispatchResult {361362 let sender = ensure_signed(origin)?;363 ensure!(<Collection<T>>::contains_key(collection_id), "This collection does not exist");364365 let mut target_collection = <Collection<T>>::get(collection_id);366 ensure!(sender == target_collection.unconfirmed_sponsor, "This address is not set as sponsor, use setCollectionSponsor first");367368 target_collection.sponsor = target_collection.unconfirmed_sponsor;369 target_collection.unconfirmed_sponsor = T::AccountId::default();370 <Collection<T>>::insert(collection_id, target_collection);371372 Ok(())373 }374375 #[weight = 0]376 pub fn remove_collection_sponsor(origin, collection_id: u64) -> DispatchResult {377378 let sender = ensure_signed(origin)?;379 ensure!(<Collection<T>>::contains_key(collection_id), "This collection does not exist");380381 let mut target_collection = <Collection<T>>::get(collection_id);382 ensure!(sender == target_collection.owner, "You do not own this collection");383384 target_collection.sponsor = T::AccountId::default();385 <Collection<T>>::insert(collection_id, target_collection);386387 Ok(())388 }389390 #[weight = 0]391 pub fn create_item(origin, collection_id: u64, properties: Vec<u8>, owner: T::AccountId) -> DispatchResult {392393 let sender = ensure_signed(origin)?;394 let target_collection = <Collection<T>>::get(collection_id);395 Self::check_owner_or_admin_permissions(collection_id, sender.clone())?;396397 match target_collection.mode398 {399 CollectionMode::NFT(_) => {400401 // check size402 ensure!(target_collection.custom_data_size >= properties.len() as u32, "Size of item is too large");403404 // Create nft item405 let item = NftItemType {406 collection: collection_id,407 owner: owner,408 data: properties,409 };410411 Self::add_nft_item(item)?;412413 },414 CollectionMode::Fungible(_) => {415416 // check size417 ensure!(properties.len() as u32 == 0, "Size of item must be 0 with fungible type");418419 let item = FungibleItemType {420 collection: collection_id,421 owner: owner,422 value: (10 as u128).pow(target_collection.decimal_points)423 };424425 Self::add_fungible_item(item)?;426 },427 CollectionMode::ReFungible(_, _) => {428429 // check size430 ensure!(target_collection.custom_data_size >= properties.len() as u32, "Size of item is too large");431432 let mut owner_list = Vec::new();433 let value = (10 as u128).pow(target_collection.decimal_points);434 owner_list.push(Ownership {owner: owner, fraction: value});435436 let item = ReFungibleItemType {437 collection: collection_id,438 owner: owner_list,439 data: properties440 };441442 Self::add_refungible_item(item)?;443 },444 _ => ()445 };446447 // call event448 Self::deposit_event(RawEvent::ItemCreated(collection_id, <ItemListIndex>::get(collection_id)));449450 Ok(())451 }452453 #[weight = 0]454 pub fn burn_item(origin, collection_id: u64, item_id: u64) -> DispatchResult {455456 let sender = ensure_signed(origin)?;457 let item_owner = Self::is_item_owner(sender.clone(), collection_id, item_id);458 if !item_owner459 {460 Self::check_owner_or_admin_permissions(collection_id, sender.clone())?;461 }462 let target_collection = <Collection<T>>::get(collection_id);463464 match target_collection.mode465 {466 CollectionMode::NFT(_) => Self::burn_nft_item(collection_id, item_id)?,467 CollectionMode::Fungible(_) => Self::burn_fungible_item(collection_id, item_id)?,468 CollectionMode::ReFungible(_, _) => Self::burn_refungible_item(collection_id, item_id, sender.clone())?,469 _ => ()470 };471472 // call event473 Self::deposit_event(RawEvent::ItemDestroyed(collection_id, item_id));474475 Ok(())476 }477478 #[weight = 0]479 pub fn transfer(origin, recipient: T::AccountId, collection_id: u64, item_id: u64, value: u64) -> DispatchResult {480481 let sender = ensure_signed(origin)?;482 ensure!(Self::is_item_owner(sender.clone(), collection_id, item_id), "Only item owner can call transfer method");483484 let target_collection = <Collection<T>>::get(collection_id);485486 // TODO: implement other modes487 match target_collection.mode488 {489 CollectionMode::NFT(_) => Self::transfer_nft(collection_id, item_id, sender.clone(), recipient)?,490 CollectionMode::Fungible(_) => Self::transfer_fungible(collection_id, item_id, value, sender.clone(), recipient)?,491 CollectionMode::ReFungible(_, _) => Self::transfer_refungible(collection_id, item_id, value, sender.clone(), recipient)?,492 _ => ()493 };494495 Ok(())496 }497498 #[weight = 0]499 pub fn approve(origin, approved: T::AccountId, collection_id: u64, item_id: u64) -> DispatchResult {500501 let sender = ensure_signed(origin)?;502503 // amount param stub504 let amount = 100000000;505506 ensure!(Self::is_item_owner(sender.clone(), collection_id, item_id), "Only item owner can call transfer method");507508 let list_exists = <ApprovedList<T>>::contains_key(collection_id, (item_id, sender.clone()));509 if list_exists {510511 let mut list = <ApprovedList<T>>::get(collection_id, (item_id, sender.clone()));512 let item_contains = list.iter().any(|i| i.approved == approved);513514 if !item_contains {515 list.push(ApprovePermissions { approved: approved.clone(), amount: amount });516 <ApprovedList<T>>::insert(collection_id, (item_id, sender.clone()), list);517 }518 } else {519520 let mut list = Vec::new();521 list.push(ApprovePermissions { approved: approved.clone(), amount: amount });522 <ApprovedList<T>>::insert(collection_id, (item_id, sender.clone()), list);523 }524525 Ok(())526 }527528 #[weight = 0]529 pub fn transfer_from(origin, from: T::AccountId, recipient: T::AccountId, collection_id: u64, item_id: u64, value: u64 ) -> DispatchResult {530531 let sender = ensure_signed(origin)?;532 let approved_list_exists = <ApprovedList<T>>::contains_key(collection_id, (item_id, from.clone()));533 if approved_list_exists534 {535 let list_itm = <ApprovedList<T>>::get(collection_id, (item_id, from.clone()));536 let opt_item = list_itm.iter().find(|i| i.approved == sender.clone());537 ensure!(opt_item.is_some(), "No approve found");538 ensure!(opt_item.unwrap().amount >= value, "Requested value more than approved");539540 // remove approve541 let approve_list: Vec<ApprovePermissions<T::AccountId>> = <ApprovedList<T>>::get(collection_id, (item_id, from.clone()))542 .into_iter().filter(|i| i.approved != sender.clone()).collect();543 <ApprovedList<T>>::insert(collection_id, (item_id, from.clone()), approve_list);544 }545 else546 {547 Self::check_owner_or_admin_permissions(collection_id, sender)?;548 }549550 let target_collection = <Collection<T>>::get(collection_id);551552 match target_collection.mode553 {554 CollectionMode::NFT(_) => Self::transfer_nft(collection_id, item_id, from, recipient)?,555 CollectionMode::Fungible(_) => Self::transfer_fungible(collection_id, item_id, value, from.clone(), recipient)?,556 CollectionMode::ReFungible(_, _) => Self::transfer_refungible(collection_id, item_id, value, from.clone(), recipient)?,557 _ => ()558 };559560 Ok(())561 }562563 #[weight = 0]564 pub fn safe_transfer_from(origin, collection_id: u64, item_id: u64, new_owner: T::AccountId) -> DispatchResult {565566 // let no_perm_mes = "You do not have permissions to modify this collection";567 // ensure!(<ApprovedList<T>>::contains_key((collection_id, item_id)), no_perm_mes);568 // let list_itm = <ApprovedList<T>>::get((collection_id, item_id));569 // ensure!(list_itm.contains(&new_owner.clone()), no_perm_mes);570571 // // on_nft_received call572573 // Self::transfer(origin, collection_id, item_id, new_owner)?;574575 Ok(())576 }577578 #[weight = 0]579 pub fn set_offchain_schema(580 origin,581 collection_id: u64,582 schema: Vec<u8>583 ) -> DispatchResult {584 let sender = ensure_signed(origin)?;585 Self::check_owner_or_admin_permissions(collection_id, sender.clone())?;586587 let mut target_collection = <Collection<T>>::get(collection_id);588 target_collection.offchain_schema = schema;589 <Collection<T>>::insert(collection_id, target_collection);590591 Ok(())592 }593 }594}595596impl<T: Trait> Module<T> {597 fn add_fungible_item(item: FungibleItemType<T::AccountId>) -> DispatchResult {598 let current_index = <ItemListIndex>::get(item.collection)599 .checked_add(1)600 .expect("Item list index id error");601 let itemcopy = item.clone();602 let owner = item.owner.clone();603 let value = item.value as u64;604605 Self::add_token_index(item.collection, current_index, owner.clone())?;606607 <ItemListIndex>::insert(item.collection, current_index);608 <FungibleItemList<T>>::insert(item.collection, current_index, itemcopy);609610 // Update balance611 let new_balance = <Balance<T>>::get(item.collection, owner.clone())612 .checked_add(value)613 .unwrap();614 <Balance<T>>::insert(item.collection, owner.clone(), new_balance);615616 Ok(())617 }618619 fn add_refungible_item(item: ReFungibleItemType<T::AccountId>) -> DispatchResult {620 let current_index = <ItemListIndex>::get(item.collection)621 .checked_add(1)622 .expect("Item list index id error");623 let itemcopy = item.clone();624625 let value = item.owner.first().unwrap().fraction as u64;626 let owner = item.owner.first().unwrap().owner.clone();627628 Self::add_token_index(item.collection, current_index, owner.clone())?;629630 <ItemListIndex>::insert(item.collection, current_index);631 <ReFungibleItemList<T>>::insert(item.collection, current_index, itemcopy);632633 // Update balance634 let new_balance = <Balance<T>>::get(item.collection, owner.clone())635 .checked_add(value)636 .unwrap();637 <Balance<T>>::insert(item.collection, owner.clone(), new_balance);638639 Ok(())640 }641642 fn add_nft_item(item: NftItemType<T::AccountId>) -> DispatchResult {643 let current_index = <ItemListIndex>::get(item.collection)644 .checked_add(1)645 .expect("Item list index id error");646647 let item_owner = item.owner.clone();648 let collection_id = item.collection.clone();649 Self::add_token_index(collection_id, current_index, item.owner.clone())?;650651 <ItemListIndex>::insert(collection_id, current_index);652 <NftItemList<T>>::insert(collection_id, current_index, item);653654 // Update balance655 let new_balance = <Balance<T>>::get(collection_id, item_owner.clone())656 .checked_add(1)657 .unwrap();658 <Balance<T>>::insert(collection_id, item_owner.clone(), new_balance);659660 Ok(())661 }662663 fn burn_refungible_item(664 collection_id: u64,665 item_id: u64,666 owner: T::AccountId,667 ) -> DispatchResult {668 ensure!(669 <ReFungibleItemList<T>>::contains_key(collection_id, item_id),670 "Item does not exists"671 );672 let collection = <ReFungibleItemList<T>>::get(collection_id, item_id);673 let item = collection674 .owner675 .iter()676 .filter(|&i| i.owner == owner)677 .next()678 .unwrap();679 Self::remove_token_index(collection_id, item_id, owner.clone())?;680681 // remove approve list682 <ApprovedList<T>>::remove(collection_id, (item_id, owner.clone()));683684 // update balance685 let new_balance = <Balance<T>>::get(collection_id, item.owner.clone())686 .checked_sub(item.fraction as u64)687 .unwrap();688 <Balance<T>>::insert(collection_id, item.owner.clone(), new_balance);689690 <ReFungibleItemList<T>>::remove(collection_id, item_id);691692 Ok(())693 }694695 fn burn_nft_item(collection_id: u64, item_id: u64) -> DispatchResult {696 ensure!(697 <NftItemList<T>>::contains_key(collection_id, item_id),698 "Item does not exists"699 );700 let item = <NftItemList<T>>::get(collection_id, item_id);701 Self::remove_token_index(collection_id, item_id, item.owner.clone())?;702703 // remove approve list704 <ApprovedList<T>>::remove(collection_id, (item_id, item.owner.clone()));705706 // update balance707 let new_balance = <Balance<T>>::get(collection_id, item.owner.clone())708 .checked_sub(1)709 .unwrap();710 <Balance<T>>::insert(collection_id, item.owner.clone(), new_balance);711 <NftItemList<T>>::remove(collection_id, item_id);712713 Ok(())714 }715716 fn burn_fungible_item(collection_id: u64, item_id: u64) -> DispatchResult {717 ensure!(718 <FungibleItemList<T>>::contains_key(collection_id, item_id),719 "Item does not exists"720 );721 let item = <FungibleItemList<T>>::get(collection_id, item_id);722 Self::remove_token_index(collection_id, item_id, item.owner.clone())?;723724 // remove approve list725 <ApprovedList<T>>::remove(collection_id, (item_id, item.owner.clone()));726727 // update balance728 let new_balance = <Balance<T>>::get(collection_id, item.owner.clone())729 .checked_sub(item.value as u64)730 .unwrap();731 <Balance<T>>::insert(collection_id, item.owner.clone(), new_balance);732733 <FungibleItemList<T>>::remove(collection_id, item_id);734735 Ok(())736 }737738 fn collection_exists(collection_id: u64) -> DispatchResult {739 ensure!(740 <Collection<T>>::contains_key(collection_id),741 "This collection does not exist"742 );743 Ok(())744 }745746 fn check_owner_permissions(collection_id: u64, subject: T::AccountId) -> DispatchResult {747 Self::collection_exists(collection_id)?;748749 let target_collection = <Collection<T>>::get(collection_id);750 ensure!(751 subject == target_collection.owner,752 "You do not own this collection"753 );754755 Ok(())756 }757758 fn check_owner_or_admin_permissions(759 collection_id: u64,760 subject: T::AccountId,761 ) -> DispatchResult {762 Self::collection_exists(collection_id)?;763764 let target_collection = <Collection<T>>::get(collection_id);765 let is_owner = subject == target_collection.owner;766767 let no_perm_mes = "You do not have permissions to modify this collection";768 let exists = <AdminList<T>>::contains_key(collection_id);769770 if !is_owner {771 ensure!(exists, no_perm_mes);772 ensure!(773 <AdminList<T>>::get(collection_id).contains(&subject),774 no_perm_mes775 );776 }777 Ok(())778 }779780 fn is_item_owner(subject: T::AccountId, collection_id: u64, item_id: u64) -> bool {781 let target_collection = <Collection<T>>::get(collection_id);782783 match target_collection.mode {784 CollectionMode::NFT(_) => {785 <NftItemList<T>>::get(collection_id, item_id).owner == subject786 }787 CollectionMode::Fungible(_) => {788 <FungibleItemList<T>>::get(collection_id, item_id).owner == subject789 }790 CollectionMode::ReFungible(_, _) => {791 <ReFungibleItemList<T>>::get(collection_id, item_id)792 .owner793 .iter()794 .any(|i| i.owner == subject)795 }796 CollectionMode::Invalid => false,797 }798 }799800 fn transfer_fungible(801 collection_id: u64,802 item_id: u64,803 value: u64,804 owner: T::AccountId,805 new_owner: T::AccountId,806 ) -> DispatchResult {807 let full_item = <FungibleItemList<T>>::get(collection_id, item_id);808 let amount = full_item.value;809810 ensure!(amount >= value.into(), "Item balance not enouth");811812 // update balance813 let balance_old_owner = <Balance<T>>::get(collection_id, owner.clone())814 .checked_sub(value)815 .unwrap();816 <Balance<T>>::insert(collection_id, owner.clone(), balance_old_owner);817818 let mut new_owner_account_id = 0;819 let new_owner_items = <AddressTokens<T>>::get(collection_id, new_owner.clone());820 if new_owner_items.len() > 0 {821 new_owner_account_id = new_owner_items[0];822 }823824 let val64 = value.into();825826 // transfer827 if amount == val64 && new_owner_account_id == 0 {828 // change owner829 // new owner do not have account830 let mut new_full_item = full_item.clone();831 new_full_item.owner = new_owner.clone();832 <FungibleItemList<T>>::insert(collection_id, item_id, new_full_item);833834 // update balance835 let balance_new_owner = <Balance<T>>::get(collection_id, new_owner.clone())836 .checked_add(value)837 .unwrap();838 <Balance<T>>::insert(collection_id, new_owner.clone(), balance_new_owner);839840 // update index collection841 Self::move_token_index(collection_id, item_id, owner.clone(), new_owner.clone())?;842 } else {843 let mut new_full_item = full_item.clone();844 new_full_item.value -= val64;845846 // separate amount847 if new_owner_account_id > 0 {848 // new owner has account849 let mut item = <FungibleItemList<T>>::get(collection_id, new_owner_account_id);850 item.value += val64;851852 // update balance853 let balance_new_owner = <Balance<T>>::get(collection_id, new_owner.clone())854 .checked_add(value)855 .unwrap();856 <Balance<T>>::insert(collection_id, new_owner.clone(), balance_new_owner);857858 <FungibleItemList<T>>::insert(collection_id, new_owner_account_id, item);859 } else {860 // new owner do not have account861 let item = FungibleItemType {862 collection: collection_id,863 owner: new_owner.clone(),864 value: val64,865 };866867 Self::add_fungible_item(item)?;868 }869870 if amount == val64 {871 Self::remove_token_index(collection_id, item_id, full_item.owner.clone())?;872873 // remove approve list874 <ApprovedList<T>>::remove(collection_id, (item_id, full_item.owner.clone()));875 <FungibleItemList<T>>::remove(collection_id, item_id);876 }877878 <FungibleItemList<T>>::insert(collection_id, item_id, new_full_item);879 }880881 Ok(())882 }883884 fn transfer_refungible(885 collection_id: u64,886 item_id: u64,887 value: u64,888 owner: T::AccountId,889 new_owner: T::AccountId,890 ) -> DispatchResult {891 let full_item = <ReFungibleItemList<T>>::get(collection_id, item_id);892 let item = full_item893 .owner894 .iter()895 .filter(|i| i.owner == owner)896 .next()897 .unwrap();898 let amount = item.fraction;899900 ensure!(amount >= value.into(), "Item balance not enouth");901902 // update balance903 let balance_old_owner = <Balance<T>>::get(collection_id, item.owner.clone())904 .checked_sub(value)905 .unwrap();906 <Balance<T>>::insert(collection_id, item.owner.clone(), balance_old_owner);907908 let balance_new_owner = <Balance<T>>::get(collection_id, new_owner.clone())909 .checked_add(value)910 .unwrap();911 <Balance<T>>::insert(collection_id, new_owner.clone(), balance_new_owner);912913 let old_owner = item.owner.clone();914 let new_owner_has_account = full_item.owner.iter().any(|i| i.owner == new_owner);915 let val64 = value.into();916917 // transfer918 if amount == val64 && !new_owner_has_account {919 // change owner920 // new owner do not have account921 let mut new_full_item = full_item.clone();922 new_full_item923 .owner924 .iter_mut()925 .find(|i| i.owner == owner)926 .unwrap()927 .owner = new_owner.clone();928 <ReFungibleItemList<T>>::insert(collection_id, item_id, new_full_item);929930 // update index collection931 Self::move_token_index(collection_id, item_id, old_owner.clone(), new_owner.clone())?;932 } else {933 let mut new_full_item = full_item.clone();934 new_full_item935 .owner936 .iter_mut()937 .find(|i| i.owner == owner)938 .unwrap()939 .fraction -= val64;940941 // separate amount942 if new_owner_has_account {943 // new owner has account944 new_full_item945 .owner946 .iter_mut()947 .find(|i| i.owner == new_owner)948 .unwrap()949 .fraction += val64;950 } else {951 // new owner do not have account952 new_full_item.owner.push(Ownership {953 owner: new_owner.clone(),954 fraction: val64,955 });956 Self::add_token_index(collection_id, item_id, new_owner.clone())?;957 }958959 <ReFungibleItemList<T>>::insert(collection_id, item_id, new_full_item);960 }961962 Ok(())963 }964965 fn transfer_nft(966 collection_id: u64,967 item_id: u64,968 sender: T::AccountId,969 new_owner: T::AccountId,970 ) -> DispatchResult {971 let mut item = <NftItemList<T>>::get(collection_id, item_id);972973 ensure!(974 sender == item.owner,975 "sender parameter and item owner must be equal"976 );977978 // update balance979 let balance_old_owner = <Balance<T>>::get(collection_id, item.owner.clone())980 .checked_sub(1)981 .unwrap();982 <Balance<T>>::insert(collection_id, item.owner.clone(), balance_old_owner);983984 let balance_new_owner = <Balance<T>>::get(collection_id, new_owner.clone())985 .checked_add(1)986 .unwrap();987 <Balance<T>>::insert(collection_id, new_owner.clone(), balance_new_owner);988989 // change owner990 let old_owner = item.owner.clone();991 item.owner = new_owner.clone();992 <NftItemList<T>>::insert(collection_id, item_id, item);993994 // update index collection995 Self::move_token_index(collection_id, item_id, old_owner.clone(), new_owner.clone())?;996997 // reset approved list998 <ApprovedList<T>>::remove(collection_id, (item_id, old_owner));999 Ok(())1000 }10011002 fn add_token_index(collection_id: u64, item_index: u64, owner: T::AccountId) -> DispatchResult {1003 let list_exists = <AddressTokens<T>>::contains_key(collection_id, owner.clone());1004 if list_exists {1005 let mut list = <AddressTokens<T>>::get(collection_id, owner.clone());1006 let item_contains = list.contains(&item_index.clone());10071008 if !item_contains {1009 list.push(item_index.clone());1010 }10111012 <AddressTokens<T>>::insert(collection_id, owner.clone(), list);1013 } else {1014 let mut itm = Vec::new();1015 itm.push(item_index.clone());1016 <AddressTokens<T>>::insert(collection_id, owner, itm);1017 }10181019 Ok(())1020 }10211022 fn remove_token_index(1023 collection_id: u64,1024 item_index: u64,1025 owner: T::AccountId,1026 ) -> DispatchResult {1027 let list_exists = <AddressTokens<T>>::contains_key(collection_id, owner.clone());1028 if list_exists {1029 let mut list = <AddressTokens<T>>::get(collection_id, owner.clone());1030 let item_contains = list.contains(&item_index.clone());10311032 if item_contains {1033 list.retain(|&item| item != item_index);1034 <AddressTokens<T>>::insert(collection_id, owner, list);1035 }1036 }10371038 Ok(())1039 }10401041 fn move_token_index(1042 collection_id: u64,1043 item_index: u64,1044 old_owner: T::AccountId,1045 new_owner: T::AccountId,1046 ) -> DispatchResult {1047 Self::remove_token_index(collection_id, item_index, old_owner)?;1048 Self::add_token_index(collection_id, item_index, new_owner)?;10491050 Ok(())1051 }1052}10531054////////////////////////////////////////////////////////////////////////////////////////////////////1055// Economic models10561057/// Fee multiplier.1058pub type Multiplier = FixedU128;10591060type BalanceOf<T> = <<T as transaction_payment::Trait>::Currency as Currency<1061 <T as system::Trait>::AccountId,1062>>::Balance;1063type NegativeImbalanceOf<T> = <<T as transaction_payment::Trait>::Currency as Currency<1064 <T as system::Trait>::AccountId,1065>>::NegativeImbalance;10661067/// Require the transactor pay for themselves and maybe include a tip to gain additional priority1068/// in the queue.1069#[derive(Encode, Decode, Clone, Eq, PartialEq)]1070pub struct ChargeTransactionPayment<T: transaction_payment::Trait + Send + Sync>(1071 #[codec(compact)] BalanceOf<T>,1072);10731074impl<T: Trait + transaction_payment::Trait + Send + Sync> sp_std::fmt::Debug1075 for ChargeTransactionPayment<T>1076{1077 #[cfg(feature = "std")]1078 fn fmt(&self, f: &mut sp_std::fmt::Formatter) -> sp_std::fmt::Result {1079 write!(f, "ChargeTransactionPayment<{:?}>", self.0)1080 }1081 #[cfg(not(feature = "std"))]1082 fn fmt(&self, _: &mut sp_std::fmt::Formatter) -> sp_std::fmt::Result {1083 Ok(())1084 }1085}10861087impl<T: Trait + transaction_payment::Trait + Send + Sync> ChargeTransactionPayment<T>1088where1089 T::Call:1090 Dispatchable<Info = DispatchInfo, PostInfo = PostDispatchInfo> + IsSubType<Module<T>, T>,1091 BalanceOf<T>: Send + Sync + FixedPointOperand,1092{1093 /// utility constructor. Used only in client/factory code.1094 pub fn from(fee: BalanceOf<T>) -> Self {1095 Self(fee)1096 }10971098 pub fn traditional_fee(1099 len: usize,1100 info: &DispatchInfoOf<T::Call>,1101 tip: BalanceOf<T>,1102 ) -> BalanceOf<T>1103 where1104 T::Call: Dispatchable<Info = DispatchInfo>,1105 {1106 <transaction_payment::Module<T>>::compute_fee(len as u32, info, tip)1107 }11081109 fn withdraw_fee(1110 &self,1111 who: &T::AccountId,1112 call: &T::Call,1113 info: &DispatchInfoOf<T::Call>,1114 len: usize,1115 ) -> Result<(BalanceOf<T>, Option<NegativeImbalanceOf<T>>), TransactionValidityError> {1116 let tip = self.0;11171118 // Set fee based on call type. Creating collection costs 1 Unique.1119 // All other transactions have traditional fees so far1120 let fee = match call.is_sub_type() {1121 Some(Call::create_collection(..)) => <BalanceOf<T>>::from(1_000_000_000),1122 _ => Self::traditional_fee(len, info, tip), // Flat fee model, use only for testing purposes1123 // _ => <BalanceOf<T>>::from(100)1124 };11251126 // Determine who is paying transaction fee based on ecnomic model1127 // Parse call to extract collection ID and access collection sponsor1128 let sponsor: T::AccountId = match call.is_sub_type() {1129 Some(Call::create_item(collection_id, _properties, _owner)) => {1130 <Collection<T>>::get(collection_id).sponsor1131 }1132 Some(Call::transfer(_new_owner, collection_id, _item_id, _value)) => {1133 <Collection<T>>::get(collection_id).sponsor1134 }11351136 _ => T::AccountId::default(),1137 };11381139 let mut who_pays_fee: T::AccountId = sponsor.clone();1140 if sponsor == T::AccountId::default() {1141 who_pays_fee = who.clone();1142 }11431144 // Only mess with balances if fee is not zero.1145 if fee.is_zero() {1146 return Ok((fee, None));1147 }11481149 match <T as transaction_payment::Trait>::Currency::withdraw(1150 &who_pays_fee,1151 fee,1152 if tip.is_zero() {1153 WithdrawReason::TransactionPayment.into()1154 } else {1155 WithdrawReason::TransactionPayment | WithdrawReason::Tip1156 },1157 ExistenceRequirement::KeepAlive,1158 ) {1159 Ok(imbalance) => Ok((fee, Some(imbalance))),1160 Err(_) => Err(InvalidTransaction::Payment.into()),1161 }1162 }1163}11641165impl<T: Trait + transaction_payment::Trait + Send + Sync> SignedExtension1166 for ChargeTransactionPayment<T>1167where1168 BalanceOf<T>: Send + Sync + From<u64> + FixedPointOperand,1169 T::Call:1170 Dispatchable<Info = DispatchInfo, PostInfo = PostDispatchInfo> + IsSubType<Module<T>, T>,1171{1172 const IDENTIFIER: &'static str = "ChargeTransactionPayment";1173 type AccountId = T::AccountId;1174 type Call = T::Call;1175 type AdditionalSigned = ();1176 type Pre = (1177 BalanceOf<T>,1178 Self::AccountId,1179 Option<NegativeImbalanceOf<T>>,1180 BalanceOf<T>,1181 );1182 fn additional_signed(&self) -> sp_std::result::Result<(), TransactionValidityError> {1183 Ok(())1184 }11851186 fn validate(1187 &self,1188 who: &Self::AccountId,1189 call: &Self::Call,1190 info: &DispatchInfoOf<Self::Call>,1191 len: usize,1192 ) -> TransactionValidity {1193 let (fee, _) = self.withdraw_fee(who, call, info, len)?;11941195 let mut r = ValidTransaction::default();1196 // NOTE: we probably want to maximize the _fee (of any type) per weight unit_ here, which1197 // will be a bit more than setting the priority to tip. For now, this is enough.1198 r.priority = fee.saturated_into::<TransactionPriority>();1199 Ok(r)1200 }12011202 fn pre_dispatch(1203 self,1204 who: &Self::AccountId,1205 call: &Self::Call,1206 info: &DispatchInfoOf<Self::Call>,1207 len: usize,1208 ) -> Result<Self::Pre, TransactionValidityError> {1209 let (fee, imbalance) = self.withdraw_fee(who, call, info, len)?;1210 Ok((self.0, who.clone(), imbalance, fee))1211 }12121213 fn post_dispatch(1214 pre: Self::Pre,1215 info: &DispatchInfoOf<Self::Call>,1216 post_info: &PostDispatchInfoOf<Self::Call>,1217 len: usize,1218 _result: &DispatchResult,1219 ) -> Result<(), TransactionValidityError> {1220 let (tip, who, imbalance, fee) = pre;1221 if let Some(payed) = imbalance {1222 let actual_fee = <transaction_payment::Module<T>>::compute_actual_fee(1223 len as u32, info, post_info, tip,1224 );1225 let refund = fee.saturating_sub(actual_fee);1226 let actual_payment =1227 match <T as transaction_payment::Trait>::Currency::deposit_into_existing(1228 &who, refund,1229 ) {1230 Ok(refund_imbalance) => {1231 // The refund cannot be larger than the up front payed max weight.1232 // `PostDispatchInfo::calc_unspent` guards against such a case.1233 match payed.offset(refund_imbalance) {1234 Ok(actual_payment) => actual_payment,1235 Err(_) => return Err(InvalidTransaction::Payment.into()),1236 }1237 }1238 // We do not recreate the account using the refund. The up front payment1239 // is gone in that case.1240 Err(_) => payed,1241 };1242 let imbalances = actual_payment.split(tip);1243 <T as transaction_payment::Trait>::OnTransactionPayment::on_unbalanceds(1244 Some(imbalances.0).into_iter().chain(Some(imbalances.1)),1245 );1246 }1247 Ok(())1248 }1249}1#![cfg_attr(not(feature = "std"), no_std)]23/// For more guidance on Substrate FRAME, see the example pallet4/// https://github.com/paritytech/substrate/blob/master/frame/example/src/lib.rs5use codec::{Decode, Encode};6pub use frame_support::{7 construct_runtime, decl_event, decl_module, decl_storage,8 dispatch::DispatchResult,9 ensure, parameter_types,10 traits::{11 Currency, ExistenceRequirement, Get, Imbalance, KeyOwnerProofSystem, OnUnbalanced,12 Randomness, WithdrawReason,13 },14 weights::{15 constants::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, WEIGHT_PER_SECOND},16 DispatchInfo, GetDispatchInfo, IdentityFee, Pays, PostDispatchInfo, Weight,17 WeightToFeePolynomial,18 },19 IsSubType, StorageValue,20};2122use frame_system::{self as system, ensure_signed};23use sp_runtime::sp_std::prelude::Vec;24use sp_runtime::{25 traits::{26 DispatchInfoOf, Dispatchable, PostDispatchInfoOf, SaturatedConversion, Saturating,27 SignedExtension, Zero,28 },29 transaction_validity::{30 InvalidTransaction, TransactionPriority, TransactionValidity, TransactionValidityError,31 ValidTransaction,32 },33 FixedPointOperand, FixedU128,34};35use sp_std::prelude::*;3637#[cfg(test)]38mod mock;3940#[cfg(test)]41mod tests;4243#[derive(Encode, Decode, Debug, Eq, Clone, PartialEq)]44pub enum CollectionMode {45 Invalid,46 // custom data size47 NFT(u32),48 // decimal points49 Fungible(u32),50 // custom data size and decimal points51 ReFungible(u32, u32),52}5354impl Into<u8> for CollectionMode {55 fn into(self) -> u8 {56 match self {57 CollectionMode::Invalid => 0,58 CollectionMode::NFT(_) => 1,59 CollectionMode::Fungible(_) => 2,60 CollectionMode::ReFungible(_, _) => 3,61 }62 }63}6465#[derive(Encode, Decode, Debug, Clone, PartialEq)]66pub enum AccessMode {67 Normal,68 WhiteList,69}70impl Default for AccessMode {71 fn default() -> Self {72 Self::Normal73 }74}7576impl Default for CollectionMode {77 fn default() -> Self {78 Self::Invalid79 }80}8182#[derive(Encode, Decode, Default, Clone, PartialEq)]83#[cfg_attr(feature = "std", derive(Debug))]84pub struct Ownership<AccountId> {85 pub owner: AccountId,86 pub fraction: u128,87}8889#[derive(Encode, Decode, Default, Clone, PartialEq)]90#[cfg_attr(feature = "std", derive(Debug))]91pub struct CollectionType<AccountId> {92 pub owner: AccountId,93 pub mode: CollectionMode,94 pub access: AccessMode,95 pub decimal_points: u32,96 pub name: Vec<u16>, // 64 include null escape char97 pub description: Vec<u16>, // 256 include null escape char98 pub token_prefix: Vec<u8>, // 16 include null escape char99 pub custom_data_size: u32,100 pub offchain_schema: Vec<u8>,101 pub sponsor: AccountId, // Who pays fees. If set to default address, the fees are applied to the transaction sender102 pub unconfirmed_sponsor: AccountId, // Sponsor address that has not yet confirmed sponsorship103}104105#[derive(Encode, Decode, Default, Clone, PartialEq)]106#[cfg_attr(feature = "std", derive(Debug))]107pub struct CollectionAdminsType<AccountId> {108 pub admin: AccountId,109 pub collection_id: u64,110}111112#[derive(Encode, Decode, Default, Clone, PartialEq)]113#[cfg_attr(feature = "std", derive(Debug))]114pub struct NftItemType<AccountId> {115 pub collection: u64,116 pub owner: AccountId,117 pub data: Vec<u8>,118}119120#[derive(Encode, Decode, Default, Clone, PartialEq)]121#[cfg_attr(feature = "std", derive(Debug))]122pub struct FungibleItemType<AccountId> {123 pub collection: u64,124 pub owner: AccountId,125 pub value: u128,126}127128#[derive(Encode, Decode, Default, Clone, PartialEq)]129#[cfg_attr(feature = "std", derive(Debug))]130pub struct ReFungibleItemType<AccountId> {131 pub collection: u64,132 pub owner: Vec<Ownership<AccountId>>,133 pub data: Vec<u8>,134}135136#[derive(Encode, Decode, Default, Clone, PartialEq)]137#[cfg_attr(feature = "std", derive(Debug))]138pub struct ApprovePermissions<AccountId> {139 pub approved: AccountId,140 pub amount: u64,141}142143#[derive(Encode, Decode, Default, Clone, PartialEq)]144#[cfg_attr(feature = "std", derive(Debug))]145pub struct VestingItem<AccountId, Moment> {146 pub sender: AccountId,147 pub recipient: AccountId,148 pub collection_id: u64,149 pub item_id: u64,150 pub amount: u64,151 pub vesting_date: Moment,152}153154pub trait Trait: system::Trait {155 type Event: From<Event<Self>> + Into<<Self as system::Trait>::Event>;156}157158decl_storage! {159 trait Store for Module<T: Trait> as Nft {160161 // Private members162 NextCollectionID: u64;163 CreatedCollectionCount: u64;164 ChainVersion: u64;165 ItemListIndex: map hasher(blake2_128_concat) u64 => u64;166167 pub Collection get(fn collection): map hasher(identity) u64 => CollectionType<T::AccountId>;168 pub AdminList get(fn admin_list_collection): map hasher(identity) u64 => Vec<T::AccountId>;169 pub WhiteList get(fn white_list): map hasher(identity) u64 => Vec<T::AccountId>;170171 /// Balance owner per collection map172 pub Balance get(fn balance_count): double_map hasher(blake2_128_concat) u64, hasher(blake2_128_concat) T::AccountId => u64;173174 /// second parameter: item id + owner account id175 pub ApprovedList get(fn approved): double_map hasher(blake2_128_concat) u64, hasher(blake2_128_concat) (u64, T::AccountId) => Vec<ApprovePermissions<T::AccountId>>;176177 /// Item collections178 pub NftItemList get(fn nft_item_id): double_map hasher(blake2_128_concat) u64, hasher(blake2_128_concat) u64 => NftItemType<T::AccountId>;179 pub FungibleItemList get(fn fungible_item_id): double_map hasher(blake2_128_concat) u64, hasher(blake2_128_concat) u64 => FungibleItemType<T::AccountId>;180 pub ReFungibleItemList get(fn refungible_item_id): double_map hasher(blake2_128_concat) u64, hasher(blake2_128_concat) u64 => ReFungibleItemType<T::AccountId>;181182 // Active vesting list183 // pub VestingList get(fn vesting): double_map hasher(blake2_128_concat) u64, hasher(blake2_128_concat) u64 => VestingItem<T::AccountId, T::Moment>;184185 /// Index list186 pub AddressTokens get(fn address_tokens): double_map hasher(blake2_128_concat) u64, hasher(blake2_128_concat) T::AccountId => Vec<u64>;187188 // Sponsorship189 pub ContractSponsor get(fn contract_sponsor): map hasher(identity) T::AccountId => T::AccountId;190 pub UnconfirmedContractSponsor get(fn unconfirmed_contract_sponsor): map hasher(identity) T::AccountId => T::AccountId;191 }192}193194decl_event!(195 pub enum Event<T>196 where197 AccountId = <T as system::Trait>::AccountId,198 {199 Created(u64, u8, AccountId),200 ItemCreated(u64, u64),201 ItemDestroyed(u64, u64),202 }203);204205decl_module! {206 pub struct Module<T: Trait> for enum Call where origin: T::Origin {207208 fn deposit_event() = default;209210 fn on_initialize(now: T::BlockNumber) -> Weight {211212 if ChainVersion::get() == 0213 {214 let value = NextCollectionID::get();215 CreatedCollectionCount::put(value);216 ChainVersion::put(2);217 }218219 0220 }221222 // Create collection of NFT with given parameters223 //224 // @param customDataSz size of custom data in each collection item225 // returns collection ID226 #[weight = 0]227 pub fn create_collection( origin,228 collection_name: Vec<u16>,229 collection_description: Vec<u16>,230 token_prefix: Vec<u8>,231 mode: CollectionMode) -> DispatchResult {232233 // Anyone can create a collection234 let who = ensure_signed(origin)?;235 let custom_data_size = match mode {236 CollectionMode::NFT(size) => size,237 CollectionMode::ReFungible(size, _) => size,238 _ => 0239 };240241 let decimal_points = match mode {242 CollectionMode::Fungible(points) => points,243 CollectionMode::ReFungible(_, points) => points,244 _ => 0245 };246247 // check params248 ensure!(decimal_points <= 4, "decimal_points parameter must be lower than 4");249250 let mut name = collection_name.to_vec();251 name.push(0);252 ensure!(name.len() <= 64, "Collection name can not be longer than 63 char");253254 let mut description = collection_description.to_vec();255 description.push(0);256 ensure!(name.len() <= 256, "Collection description can not be longer than 255 char");257258 let mut prefix = token_prefix.to_vec();259 prefix.push(0);260 ensure!(prefix.len() <= 16, "Token prefix can not be longer than 15 char");261262 // Generate next collection ID263 let next_id = NextCollectionID::get()264 .checked_add(1)265 .expect("collection id error");266267 NextCollectionID::put(next_id);268269 // Create new collection270 let new_collection = CollectionType {271 owner: who.clone(),272 name: name,273 mode: mode.clone(),274 access: AccessMode::Normal,275 description: description,276 decimal_points: decimal_points,277 token_prefix: prefix,278 offchain_schema: Vec::new(),279 custom_data_size: custom_data_size,280 sponsor: T::AccountId::default(),281 unconfirmed_sponsor: T::AccountId::default(),282 };283284 // Add new collection to map285 <Collection<T>>::insert(next_id, new_collection);286287 // call event288 Self::deposit_event(RawEvent::Created(next_id, mode.into(), who.clone()));289290 Ok(())291 }292293 #[weight = 0]294 pub fn destroy_collection(origin, collection_id: u64) -> DispatchResult {295296 let sender = ensure_signed(origin)?;297 Self::check_owner_permissions(collection_id, sender)?;298299 // TODO Items remove300 <AddressTokens<T>>::remove_prefix(collection_id);301 <ApprovedList<T>>::remove_prefix(collection_id);302 <Balance<T>>::remove_prefix(collection_id);303 <ItemListIndex>::remove(collection_id);304 <AdminList<T>>::remove(collection_id);305 <Collection<T>>::remove(collection_id);306 <WhiteList<T>>::remove(collection_id);307308 Ok(())309 }310311 #[weight = 0]312 pub fn change_collection_owner(origin, collection_id: u64, new_owner: T::AccountId) -> DispatchResult {313314 let sender = ensure_signed(origin)?;315 Self::check_owner_permissions(collection_id, sender)?;316 let mut target_collection = <Collection<T>>::get(collection_id);317 target_collection.owner = new_owner;318 <Collection<T>>::insert(collection_id, target_collection);319320 Ok(())321 }322323 #[weight = 0]324 pub fn add_collection_admin(origin, collection_id: u64, new_admin_id: T::AccountId) -> DispatchResult {325326 let sender = ensure_signed(origin)?;327 Self::check_owner_or_admin_permissions(collection_id, sender)?;328 let mut admin_arr: Vec<T::AccountId> = Vec::new();329330 if <AdminList<T>>::contains_key(collection_id)331 {332 admin_arr = <AdminList<T>>::get(collection_id);333 ensure!(!admin_arr.contains(&new_admin_id), "Account already has admin role");334 }335336 admin_arr.push(new_admin_id);337 <AdminList<T>>::insert(collection_id, admin_arr);338339 Ok(())340 }341342 #[weight = 0]343 pub fn remove_collection_admin(origin, collection_id: u64, account_id: T::AccountId) -> DispatchResult {344345 let sender = ensure_signed(origin)?;346 Self::check_owner_or_admin_permissions(collection_id, sender)?;347348 if <AdminList<T>>::contains_key(collection_id)349 {350 let mut admin_arr = <AdminList<T>>::get(collection_id);351 admin_arr.retain(|i| *i != account_id);352 <AdminList<T>>::insert(collection_id, admin_arr);353 }354355 Ok(())356 }357358 #[weight = 0]359 pub fn set_collection_sponsor(origin, collection_id: u64, new_sponsor: T::AccountId) -> DispatchResult {360361 let sender = ensure_signed(origin)?;362 ensure!(<Collection<T>>::contains_key(collection_id), "This collection does not exist");363364 let mut target_collection = <Collection<T>>::get(collection_id);365 ensure!(sender == target_collection.owner, "You do not own this collection");366367 target_collection.unconfirmed_sponsor = new_sponsor;368 <Collection<T>>::insert(collection_id, target_collection);369370 Ok(())371 }372373 #[weight = 0]374 pub fn confirm_sponsorship(origin, collection_id: u64) -> DispatchResult {375376 let sender = ensure_signed(origin)?;377 ensure!(<Collection<T>>::contains_key(collection_id), "This collection does not exist");378379 let mut target_collection = <Collection<T>>::get(collection_id);380 ensure!(sender == target_collection.unconfirmed_sponsor, "This address is not set as sponsor, use setCollectionSponsor first");381382 target_collection.sponsor = target_collection.unconfirmed_sponsor;383 target_collection.unconfirmed_sponsor = T::AccountId::default();384 <Collection<T>>::insert(collection_id, target_collection);385386 Ok(())387 }388389 #[weight = 0]390 pub fn remove_collection_sponsor(origin, collection_id: u64) -> DispatchResult {391392 let sender = ensure_signed(origin)?;393 ensure!(<Collection<T>>::contains_key(collection_id), "This collection does not exist");394395 let mut target_collection = <Collection<T>>::get(collection_id);396 ensure!(sender == target_collection.owner, "You do not own this collection");397398 target_collection.sponsor = T::AccountId::default();399 <Collection<T>>::insert(collection_id, target_collection);400401 Ok(())402 }403404 #[weight = 0]405 pub fn create_item(origin, collection_id: u64, properties: Vec<u8>, owner: T::AccountId) -> DispatchResult {406407 let sender = ensure_signed(origin)?;408 let target_collection = <Collection<T>>::get(collection_id);409 Self::check_owner_or_admin_permissions(collection_id, sender.clone())?;410411 match target_collection.mode412 {413 CollectionMode::NFT(_) => {414415 // check size416 ensure!(target_collection.custom_data_size >= properties.len() as u32, "Size of item is too large");417418 // Create nft item419 let item = NftItemType {420 collection: collection_id,421 owner: owner,422 data: properties,423 };424425 Self::add_nft_item(item)?;426427 },428 CollectionMode::Fungible(_) => {429430 // check size431 ensure!(properties.len() as u32 == 0, "Size of item must be 0 with fungible type");432433 let item = FungibleItemType {434 collection: collection_id,435 owner: owner,436 value: (10 as u128).pow(target_collection.decimal_points)437 };438439 Self::add_fungible_item(item)?;440 },441 CollectionMode::ReFungible(_, _) => {442443 // check size444 ensure!(target_collection.custom_data_size >= properties.len() as u32, "Size of item is too large");445446 let mut owner_list = Vec::new();447 let value = (10 as u128).pow(target_collection.decimal_points);448 owner_list.push(Ownership {owner: owner, fraction: value});449450 let item = ReFungibleItemType {451 collection: collection_id,452 owner: owner_list,453 data: properties454 };455456 Self::add_refungible_item(item)?;457 },458 _ => ()459 };460461 // call event462 Self::deposit_event(RawEvent::ItemCreated(collection_id, <ItemListIndex>::get(collection_id)));463464 Ok(())465 }466467 #[weight = 0]468 pub fn burn_item(origin, collection_id: u64, item_id: u64) -> DispatchResult {469470 let sender = ensure_signed(origin)?;471 let item_owner = Self::is_item_owner(sender.clone(), collection_id, item_id);472 if !item_owner473 {474 Self::check_owner_or_admin_permissions(collection_id, sender.clone())?;475 }476 let target_collection = <Collection<T>>::get(collection_id);477478 match target_collection.mode479 {480 CollectionMode::NFT(_) => Self::burn_nft_item(collection_id, item_id)?,481 CollectionMode::Fungible(_) => Self::burn_fungible_item(collection_id, item_id)?,482 CollectionMode::ReFungible(_, _) => Self::burn_refungible_item(collection_id, item_id, sender.clone())?,483 _ => ()484 };485486 // call event487 Self::deposit_event(RawEvent::ItemDestroyed(collection_id, item_id));488489 Ok(())490 }491492 #[weight = 0]493 pub fn transfer(origin, recipient: T::AccountId, collection_id: u64, item_id: u64, value: u64) -> DispatchResult {494495 let sender = ensure_signed(origin)?;496 ensure!(Self::is_item_owner(sender.clone(), collection_id, item_id), "Only item owner can call transfer method");497498 let target_collection = <Collection<T>>::get(collection_id);499500 // TODO: implement other modes501 match target_collection.mode502 {503 CollectionMode::NFT(_) => Self::transfer_nft(collection_id, item_id, sender.clone(), recipient)?,504 CollectionMode::Fungible(_) => Self::transfer_fungible(collection_id, item_id, value, sender.clone(), recipient)?,505 CollectionMode::ReFungible(_, _) => Self::transfer_refungible(collection_id, item_id, value, sender.clone(), recipient)?,506 _ => ()507 };508509 Ok(())510 }511512 #[weight = 0]513 pub fn approve(origin, approved: T::AccountId, collection_id: u64, item_id: u64) -> DispatchResult {514515 let sender = ensure_signed(origin)?;516517 // amount param stub518 let amount = 100000000;519520 ensure!(Self::is_item_owner(sender.clone(), collection_id, item_id), "Only item owner can call transfer method");521522 let list_exists = <ApprovedList<T>>::contains_key(collection_id, (item_id, sender.clone()));523 if list_exists {524525 let mut list = <ApprovedList<T>>::get(collection_id, (item_id, sender.clone()));526 let item_contains = list.iter().any(|i| i.approved == approved);527528 if !item_contains {529 list.push(ApprovePermissions { approved: approved.clone(), amount: amount });530 <ApprovedList<T>>::insert(collection_id, (item_id, sender.clone()), list);531 }532 } else {533534 let mut list = Vec::new();535 list.push(ApprovePermissions { approved: approved.clone(), amount: amount });536 <ApprovedList<T>>::insert(collection_id, (item_id, sender.clone()), list);537 }538539 Ok(())540 }541542 #[weight = 0]543 pub fn transfer_from(origin, from: T::AccountId, recipient: T::AccountId, collection_id: u64, item_id: u64, value: u64 ) -> DispatchResult {544545 let sender = ensure_signed(origin)?;546 let approved_list_exists = <ApprovedList<T>>::contains_key(collection_id, (item_id, from.clone()));547 if approved_list_exists548 {549 let list_itm = <ApprovedList<T>>::get(collection_id, (item_id, from.clone()));550 let opt_item = list_itm.iter().find(|i| i.approved == sender.clone());551 ensure!(opt_item.is_some(), "No approve found");552 ensure!(opt_item.unwrap().amount >= value, "Requested value more than approved");553554 // remove approve555 let approve_list: Vec<ApprovePermissions<T::AccountId>> = <ApprovedList<T>>::get(collection_id, (item_id, from.clone()))556 .into_iter().filter(|i| i.approved != sender.clone()).collect();557 <ApprovedList<T>>::insert(collection_id, (item_id, from.clone()), approve_list);558 }559 else560 {561 Self::check_owner_or_admin_permissions(collection_id, sender)?;562 }563564 let target_collection = <Collection<T>>::get(collection_id);565566 match target_collection.mode567 {568 CollectionMode::NFT(_) => Self::transfer_nft(collection_id, item_id, from, recipient)?,569 CollectionMode::Fungible(_) => Self::transfer_fungible(collection_id, item_id, value, from.clone(), recipient)?,570 CollectionMode::ReFungible(_, _) => Self::transfer_refungible(collection_id, item_id, value, from.clone(), recipient)?,571 _ => ()572 };573574 Ok(())575 }576577 #[weight = 0]578 pub fn safe_transfer_from(origin, collection_id: u64, item_id: u64, new_owner: T::AccountId) -> DispatchResult {579580 // let no_perm_mes = "You do not have permissions to modify this collection";581 // ensure!(<ApprovedList<T>>::contains_key((collection_id, item_id)), no_perm_mes);582 // let list_itm = <ApprovedList<T>>::get((collection_id, item_id));583 // ensure!(list_itm.contains(&new_owner.clone()), no_perm_mes);584585 // // on_nft_received call586587 // Self::transfer(origin, collection_id, item_id, new_owner)?;588589 Ok(())590 }591592 #[weight = 0]593 pub fn set_offchain_schema(594 origin,595 collection_id: u64,596 schema: Vec<u8>597 ) -> DispatchResult {598 let sender = ensure_signed(origin)?;599 Self::check_owner_or_admin_permissions(collection_id, sender.clone())?;600601 let mut target_collection = <Collection<T>>::get(collection_id);602 target_collection.offchain_schema = schema;603 <Collection<T>>::insert(collection_id, target_collection);604605 Ok(())606 }607 }608}609610impl<T: Trait> Module<T> {611 fn add_fungible_item(item: FungibleItemType<T::AccountId>) -> DispatchResult {612 let current_index = <ItemListIndex>::get(item.collection)613 .checked_add(1)614 .expect("Item list index id error");615 let itemcopy = item.clone();616 let owner = item.owner.clone();617 let value = item.value as u64;618619 Self::add_token_index(item.collection, current_index, owner.clone())?;620621 <ItemListIndex>::insert(item.collection, current_index);622 <FungibleItemList<T>>::insert(item.collection, current_index, itemcopy);623624 // Update balance625 let new_balance = <Balance<T>>::get(item.collection, owner.clone())626 .checked_add(value)627 .unwrap();628 <Balance<T>>::insert(item.collection, owner.clone(), new_balance);629630 Ok(())631 }632633 fn add_refungible_item(item: ReFungibleItemType<T::AccountId>) -> DispatchResult {634 let current_index = <ItemListIndex>::get(item.collection)635 .checked_add(1)636 .expect("Item list index id error");637 let itemcopy = item.clone();638639 let value = item.owner.first().unwrap().fraction as u64;640 let owner = item.owner.first().unwrap().owner.clone();641642 Self::add_token_index(item.collection, current_index, owner.clone())?;643644 <ItemListIndex>::insert(item.collection, current_index);645 <ReFungibleItemList<T>>::insert(item.collection, current_index, itemcopy);646647 // Update balance648 let new_balance = <Balance<T>>::get(item.collection, owner.clone())649 .checked_add(value)650 .unwrap();651 <Balance<T>>::insert(item.collection, owner.clone(), new_balance);652653 Ok(())654 }655656 fn add_nft_item(item: NftItemType<T::AccountId>) -> DispatchResult {657 let current_index = <ItemListIndex>::get(item.collection)658 .checked_add(1)659 .expect("Item list index id error");660661 let item_owner = item.owner.clone();662 let collection_id = item.collection.clone();663 Self::add_token_index(collection_id, current_index, item.owner.clone())?;664665 <ItemListIndex>::insert(collection_id, current_index);666 <NftItemList<T>>::insert(collection_id, current_index, item);667668 // Update balance669 let new_balance = <Balance<T>>::get(collection_id, item_owner.clone())670 .checked_add(1)671 .unwrap();672 <Balance<T>>::insert(collection_id, item_owner.clone(), new_balance);673674 Ok(())675 }676677 fn burn_refungible_item(678 collection_id: u64,679 item_id: u64,680 owner: T::AccountId,681 ) -> DispatchResult {682 ensure!(683 <ReFungibleItemList<T>>::contains_key(collection_id, item_id),684 "Item does not exists"685 );686 let collection = <ReFungibleItemList<T>>::get(collection_id, item_id);687 let item = collection688 .owner689 .iter()690 .filter(|&i| i.owner == owner)691 .next()692 .unwrap();693 Self::remove_token_index(collection_id, item_id, owner.clone())?;694695 // remove approve list696 <ApprovedList<T>>::remove(collection_id, (item_id, owner.clone()));697698 // update balance699 let new_balance = <Balance<T>>::get(collection_id, item.owner.clone())700 .checked_sub(item.fraction as u64)701 .unwrap();702 <Balance<T>>::insert(collection_id, item.owner.clone(), new_balance);703704 <ReFungibleItemList<T>>::remove(collection_id, item_id);705706 Ok(())707 }708709 fn burn_nft_item(collection_id: u64, item_id: u64) -> DispatchResult {710 ensure!(711 <NftItemList<T>>::contains_key(collection_id, item_id),712 "Item does not exists"713 );714 let item = <NftItemList<T>>::get(collection_id, item_id);715 Self::remove_token_index(collection_id, item_id, item.owner.clone())?;716717 // remove approve list718 <ApprovedList<T>>::remove(collection_id, (item_id, item.owner.clone()));719720 // update balance721 let new_balance = <Balance<T>>::get(collection_id, item.owner.clone())722 .checked_sub(1)723 .unwrap();724 <Balance<T>>::insert(collection_id, item.owner.clone(), new_balance);725 <NftItemList<T>>::remove(collection_id, item_id);726727 Ok(())728 }729730 fn burn_fungible_item(collection_id: u64, item_id: u64) -> DispatchResult {731 ensure!(732 <FungibleItemList<T>>::contains_key(collection_id, item_id),733 "Item does not exists"734 );735 let item = <FungibleItemList<T>>::get(collection_id, item_id);736 Self::remove_token_index(collection_id, item_id, item.owner.clone())?;737738 // remove approve list739 <ApprovedList<T>>::remove(collection_id, (item_id, item.owner.clone()));740741 // update balance742 let new_balance = <Balance<T>>::get(collection_id, item.owner.clone())743 .checked_sub(item.value as u64)744 .unwrap();745 <Balance<T>>::insert(collection_id, item.owner.clone(), new_balance);746747 <FungibleItemList<T>>::remove(collection_id, item_id);748749 Ok(())750 }751752 fn collection_exists(collection_id: u64) -> DispatchResult {753 ensure!(754 <Collection<T>>::contains_key(collection_id),755 "This collection does not exist"756 );757 Ok(())758 }759760 fn check_owner_permissions(collection_id: u64, subject: T::AccountId) -> DispatchResult {761 Self::collection_exists(collection_id)?;762763 let target_collection = <Collection<T>>::get(collection_id);764 ensure!(765 subject == target_collection.owner,766 "You do not own this collection"767 );768769 Ok(())770 }771772 fn check_owner_or_admin_permissions(773 collection_id: u64,774 subject: T::AccountId,775 ) -> DispatchResult {776 Self::collection_exists(collection_id)?;777778 let target_collection = <Collection<T>>::get(collection_id);779 let is_owner = subject == target_collection.owner;780781 let no_perm_mes = "You do not have permissions to modify this collection";782 let exists = <AdminList<T>>::contains_key(collection_id);783784 if !is_owner {785 ensure!(exists, no_perm_mes);786 ensure!(787 <AdminList<T>>::get(collection_id).contains(&subject),788 no_perm_mes789 );790 }791 Ok(())792 }793794 fn is_item_owner(subject: T::AccountId, collection_id: u64, item_id: u64) -> bool {795 let target_collection = <Collection<T>>::get(collection_id);796797 match target_collection.mode {798 CollectionMode::NFT(_) => {799 <NftItemList<T>>::get(collection_id, item_id).owner == subject800 }801 CollectionMode::Fungible(_) => {802 <FungibleItemList<T>>::get(collection_id, item_id).owner == subject803 }804 CollectionMode::ReFungible(_, _) => {805 <ReFungibleItemList<T>>::get(collection_id, item_id)806 .owner807 .iter()808 .any(|i| i.owner == subject)809 }810 CollectionMode::Invalid => false,811 }812 }813814 fn transfer_fungible(815 collection_id: u64,816 item_id: u64,817 value: u64,818 owner: T::AccountId,819 new_owner: T::AccountId,820 ) -> DispatchResult {821 let full_item = <FungibleItemList<T>>::get(collection_id, item_id);822 let amount = full_item.value;823824 ensure!(amount >= value.into(), "Item balance not enouth");825826 // update balance827 let balance_old_owner = <Balance<T>>::get(collection_id, owner.clone())828 .checked_sub(value)829 .unwrap();830 <Balance<T>>::insert(collection_id, owner.clone(), balance_old_owner);831832 let mut new_owner_account_id = 0;833 let new_owner_items = <AddressTokens<T>>::get(collection_id, new_owner.clone());834 if new_owner_items.len() > 0 {835 new_owner_account_id = new_owner_items[0];836 }837838 let val64 = value.into();839840 // transfer841 if amount == val64 && new_owner_account_id == 0 {842 // change owner843 // new owner do not have account844 let mut new_full_item = full_item.clone();845 new_full_item.owner = new_owner.clone();846 <FungibleItemList<T>>::insert(collection_id, item_id, new_full_item);847848 // update balance849 let balance_new_owner = <Balance<T>>::get(collection_id, new_owner.clone())850 .checked_add(value)851 .unwrap();852 <Balance<T>>::insert(collection_id, new_owner.clone(), balance_new_owner);853854 // update index collection855 Self::move_token_index(collection_id, item_id, owner.clone(), new_owner.clone())?;856 } else {857 let mut new_full_item = full_item.clone();858 new_full_item.value -= val64;859860 // separate amount861 if new_owner_account_id > 0 {862 // new owner has account863 let mut item = <FungibleItemList<T>>::get(collection_id, new_owner_account_id);864 item.value += val64;865866 // update balance867 let balance_new_owner = <Balance<T>>::get(collection_id, new_owner.clone())868 .checked_add(value)869 .unwrap();870 <Balance<T>>::insert(collection_id, new_owner.clone(), balance_new_owner);871872 <FungibleItemList<T>>::insert(collection_id, new_owner_account_id, item);873 } else {874 // new owner do not have account875 let item = FungibleItemType {876 collection: collection_id,877 owner: new_owner.clone(),878 value: val64,879 };880881 Self::add_fungible_item(item)?;882 }883884 if amount == val64 {885 Self::remove_token_index(collection_id, item_id, full_item.owner.clone())?;886887 // remove approve list888 <ApprovedList<T>>::remove(collection_id, (item_id, full_item.owner.clone()));889 <FungibleItemList<T>>::remove(collection_id, item_id);890 }891892 <FungibleItemList<T>>::insert(collection_id, item_id, new_full_item);893 }894895 Ok(())896 }897898 fn transfer_refungible(899 collection_id: u64,900 item_id: u64,901 value: u64,902 owner: T::AccountId,903 new_owner: T::AccountId,904 ) -> DispatchResult {905 let full_item = <ReFungibleItemList<T>>::get(collection_id, item_id);906 let item = full_item907 .owner908 .iter()909 .filter(|i| i.owner == owner)910 .next()911 .unwrap();912 let amount = item.fraction;913914 ensure!(amount >= value.into(), "Item balance not enouth");915916 // update balance917 let balance_old_owner = <Balance<T>>::get(collection_id, item.owner.clone())918 .checked_sub(value)919 .unwrap();920 <Balance<T>>::insert(collection_id, item.owner.clone(), balance_old_owner);921922 let balance_new_owner = <Balance<T>>::get(collection_id, new_owner.clone())923 .checked_add(value)924 .unwrap();925 <Balance<T>>::insert(collection_id, new_owner.clone(), balance_new_owner);926927 let old_owner = item.owner.clone();928 let new_owner_has_account = full_item.owner.iter().any(|i| i.owner == new_owner);929 let val64 = value.into();930931 // transfer932 if amount == val64 && !new_owner_has_account {933 // change owner934 // new owner do not have account935 let mut new_full_item = full_item.clone();936 new_full_item937 .owner938 .iter_mut()939 .find(|i| i.owner == owner)940 .unwrap()941 .owner = new_owner.clone();942 <ReFungibleItemList<T>>::insert(collection_id, item_id, new_full_item);943944 // update index collection945 Self::move_token_index(collection_id, item_id, old_owner.clone(), new_owner.clone())?;946 } else {947 let mut new_full_item = full_item.clone();948 new_full_item949 .owner950 .iter_mut()951 .find(|i| i.owner == owner)952 .unwrap()953 .fraction -= val64;954955 // separate amount956 if new_owner_has_account {957 // new owner has account958 new_full_item959 .owner960 .iter_mut()961 .find(|i| i.owner == new_owner)962 .unwrap()963 .fraction += val64;964 } else {965 // new owner do not have account966 new_full_item.owner.push(Ownership {967 owner: new_owner.clone(),968 fraction: val64,969 });970 Self::add_token_index(collection_id, item_id, new_owner.clone())?;971 }972973 <ReFungibleItemList<T>>::insert(collection_id, item_id, new_full_item);974 }975976 Ok(())977 }978979 fn transfer_nft(980 collection_id: u64,981 item_id: u64,982 sender: T::AccountId,983 new_owner: T::AccountId,984 ) -> DispatchResult {985 let mut item = <NftItemList<T>>::get(collection_id, item_id);986987 ensure!(988 sender == item.owner,989 "sender parameter and item owner must be equal"990 );991992 // update balance993 let balance_old_owner = <Balance<T>>::get(collection_id, item.owner.clone())994 .checked_sub(1)995 .unwrap();996 <Balance<T>>::insert(collection_id, item.owner.clone(), balance_old_owner);997998 let balance_new_owner = <Balance<T>>::get(collection_id, new_owner.clone())999 .checked_add(1)1000 .unwrap();1001 <Balance<T>>::insert(collection_id, new_owner.clone(), balance_new_owner);10021003 // change owner1004 let old_owner = item.owner.clone();1005 item.owner = new_owner.clone();1006 <NftItemList<T>>::insert(collection_id, item_id, item);10071008 // update index collection1009 Self::move_token_index(collection_id, item_id, old_owner.clone(), new_owner.clone())?;10101011 // reset approved list1012 <ApprovedList<T>>::remove(collection_id, (item_id, old_owner));1013 Ok(())1014 }10151016 fn add_token_index(collection_id: u64, item_index: u64, owner: T::AccountId) -> DispatchResult {1017 let list_exists = <AddressTokens<T>>::contains_key(collection_id, owner.clone());1018 if list_exists {1019 let mut list = <AddressTokens<T>>::get(collection_id, owner.clone());1020 let item_contains = list.contains(&item_index.clone());10211022 if !item_contains {1023 list.push(item_index.clone());1024 }10251026 <AddressTokens<T>>::insert(collection_id, owner.clone(), list);1027 } else {1028 let mut itm = Vec::new();1029 itm.push(item_index.clone());1030 <AddressTokens<T>>::insert(collection_id, owner, itm);1031 }10321033 Ok(())1034 }10351036 fn remove_token_index(1037 collection_id: u64,1038 item_index: u64,1039 owner: T::AccountId,1040 ) -> DispatchResult {1041 let list_exists = <AddressTokens<T>>::contains_key(collection_id, owner.clone());1042 if list_exists {1043 let mut list = <AddressTokens<T>>::get(collection_id, owner.clone());1044 let item_contains = list.contains(&item_index.clone());10451046 if item_contains {1047 list.retain(|&item| item != item_index);1048 <AddressTokens<T>>::insert(collection_id, owner, list);1049 }1050 }10511052 Ok(())1053 }10541055 fn move_token_index(1056 collection_id: u64,1057 item_index: u64,1058 old_owner: T::AccountId,1059 new_owner: T::AccountId,1060 ) -> DispatchResult {1061 Self::remove_token_index(collection_id, item_index, old_owner)?;1062 Self::add_token_index(collection_id, item_index, new_owner)?;10631064 Ok(())1065 }1066}10671068////////////////////////////////////////////////////////////////////////////////////////////////////1069// Economic models10701071/// Fee multiplier.1072pub type Multiplier = FixedU128;10731074type BalanceOf<T> = <<T as transaction_payment::Trait>::Currency as Currency<1075 <T as system::Trait>::AccountId,1076>>::Balance;1077type NegativeImbalanceOf<T> = <<T as transaction_payment::Trait>::Currency as Currency<1078 <T as system::Trait>::AccountId,1079>>::NegativeImbalance;10801081/// Require the transactor pay for themselves and maybe include a tip to gain additional priority1082/// in the queue.1083#[derive(Encode, Decode, Clone, Eq, PartialEq)]1084pub struct ChargeTransactionPayment<T: transaction_payment::Trait + Send + Sync>(1085 #[codec(compact)] BalanceOf<T>,1086);10871088impl<T: Trait + transaction_payment::Trait + Send + Sync> sp_std::fmt::Debug1089 for ChargeTransactionPayment<T>1090{1091 #[cfg(feature = "std")]1092 fn fmt(&self, f: &mut sp_std::fmt::Formatter) -> sp_std::fmt::Result {1093 write!(f, "ChargeTransactionPayment<{:?}>", self.0)1094 }1095 #[cfg(not(feature = "std"))]1096 fn fmt(&self, _: &mut sp_std::fmt::Formatter) -> sp_std::fmt::Result {1097 Ok(())1098 }1099}11001101impl<T: Trait + transaction_payment::Trait + Send + Sync> ChargeTransactionPayment<T>1102where1103 T::Call:1104 Dispatchable<Info = DispatchInfo, PostInfo = PostDispatchInfo> + IsSubType<Module<T>, T>,1105 BalanceOf<T>: Send + Sync + FixedPointOperand,1106{1107 /// utility constructor. Used only in client/factory code.1108 pub fn from(fee: BalanceOf<T>) -> Self {1109 Self(fee)1110 }11111112 pub fn traditional_fee(1113 len: usize,1114 info: &DispatchInfoOf<T::Call>,1115 tip: BalanceOf<T>,1116 ) -> BalanceOf<T>1117 where1118 T::Call: Dispatchable<Info = DispatchInfo>,1119 {1120 <transaction_payment::Module<T>>::compute_fee(len as u32, info, tip)1121 }11221123 fn withdraw_fee(1124 &self,1125 who: &T::AccountId,1126 call: &T::Call,1127 info: &DispatchInfoOf<T::Call>,1128 len: usize,1129 ) -> Result<(BalanceOf<T>, Option<NegativeImbalanceOf<T>>), TransactionValidityError> {1130 let tip = self.0;11311132 // Set fee based on call type. Creating collection costs 1 Unique.1133 // All other transactions have traditional fees so far1134 let fee = match call.is_sub_type() {1135 Some(Call::create_collection(..)) => <BalanceOf<T>>::from(1_000_000_000),1136 _ => Self::traditional_fee(len, info, tip), // Flat fee model, use only for testing purposes1137 // _ => <BalanceOf<T>>::from(100)1138 };11391140 // Determine who is paying transaction fee based on ecnomic model1141 // Parse call to extract collection ID and access collection sponsor1142 let sponsor: T::AccountId = match call.is_sub_type() {1143 Some(Call::create_item(collection_id, _properties, _owner)) => {1144 <Collection<T>>::get(collection_id).sponsor1145 }1146 Some(Call::transfer(_new_owner, collection_id, _item_id, _value)) => {1147 <Collection<T>>::get(collection_id).sponsor1148 }11491150 _ => T::AccountId::default(),1151 };11521153 let mut who_pays_fee: T::AccountId = sponsor.clone();1154 if sponsor == T::AccountId::default() {1155 who_pays_fee = who.clone();1156 }11571158 // Only mess with balances if fee is not zero.1159 if fee.is_zero() {1160 return Ok((fee, None));1161 }11621163 match <T as transaction_payment::Trait>::Currency::withdraw(1164 &who_pays_fee,1165 fee,1166 if tip.is_zero() {1167 WithdrawReason::TransactionPayment.into()1168 } else {1169 WithdrawReason::TransactionPayment | WithdrawReason::Tip1170 },1171 ExistenceRequirement::KeepAlive,1172 ) {1173 Ok(imbalance) => Ok((fee, Some(imbalance))),1174 Err(_) => Err(InvalidTransaction::Payment.into()),1175 }1176 }1177}11781179impl<T: Trait + transaction_payment::Trait + Send + Sync> SignedExtension1180 for ChargeTransactionPayment<T>1181where1182 BalanceOf<T>: Send + Sync + From<u64> + FixedPointOperand,1183 T::Call:1184 Dispatchable<Info = DispatchInfo, PostInfo = PostDispatchInfo> + IsSubType<Module<T>, T>,1185{1186 const IDENTIFIER: &'static str = "ChargeTransactionPayment";1187 type AccountId = T::AccountId;1188 type Call = T::Call;1189 type AdditionalSigned = ();1190 type Pre = (1191 BalanceOf<T>,1192 Self::AccountId,1193 Option<NegativeImbalanceOf<T>>,1194 BalanceOf<T>,1195 );1196 fn additional_signed(&self) -> sp_std::result::Result<(), TransactionValidityError> {1197 Ok(())1198 }11991200 fn validate(1201 &self,1202 who: &Self::AccountId,1203 call: &Self::Call,1204 info: &DispatchInfoOf<Self::Call>,1205 len: usize,1206 ) -> TransactionValidity {1207 let (fee, _) = self.withdraw_fee(who, call, info, len)?;12081209 let mut r = ValidTransaction::default();1210 // NOTE: we probably want to maximize the _fee (of any type) per weight unit_ here, which1211 // will be a bit more than setting the priority to tip. For now, this is enough.1212 r.priority = fee.saturated_into::<TransactionPriority>();1213 Ok(r)1214 }12151216 fn pre_dispatch(1217 self,1218 who: &Self::AccountId,1219 call: &Self::Call,1220 info: &DispatchInfoOf<Self::Call>,1221 len: usize,1222 ) -> Result<Self::Pre, TransactionValidityError> {1223 let (fee, imbalance) = self.withdraw_fee(who, call, info, len)?;1224 Ok((self.0, who.clone(), imbalance, fee))1225 }12261227 fn post_dispatch(1228 pre: Self::Pre,1229 info: &DispatchInfoOf<Self::Call>,1230 post_info: &PostDispatchInfoOf<Self::Call>,1231 len: usize,1232 _result: &DispatchResult,1233 ) -> Result<(), TransactionValidityError> {1234 let (tip, who, imbalance, fee) = pre;1235 if let Some(payed) = imbalance {1236 let actual_fee = <transaction_payment::Module<T>>::compute_actual_fee(1237 len as u32, info, post_info, tip,1238 );1239 let refund = fee.saturating_sub(actual_fee);1240 let actual_payment =1241 match <T as transaction_payment::Trait>::Currency::deposit_into_existing(1242 &who, refund,1243 ) {1244 Ok(refund_imbalance) => {1245 // The refund cannot be larger than the up front payed max weight.1246 // `PostDispatchInfo::calc_unspent` guards against such a case.1247 match payed.offset(refund_imbalance) {1248 Ok(actual_payment) => actual_payment,1249 Err(_) => return Err(InvalidTransaction::Payment.into()),1250 }1251 }1252 // We do not recreate the account using the refund. The up front payment1253 // is gone in that case.1254 Err(_) => payed,1255 };1256 let imbalances = actual_payment.split(tip);1257 <T as transaction_payment::Trait>::OnTransactionPayment::on_unbalanceds(1258 Some(imbalances.0).into_iter().chain(Some(imbalances.1)),1259 );1260 }1261 Ok(())1262 }1263}