difftreelog
chore fix cargo fmt
in: master
2 files changed
pallets/refungible/src/erc_token.rsdiffbeforeafterboth--- a/pallets/refungible/src/erc_token.rs
+++ b/pallets/refungible/src/erc_token.rs
@@ -46,7 +46,7 @@
#[derive(ToLog)]
pub enum ERC20Events {
/// @dev This event is emitted when the amount of tokens (value) is sent
- /// from the from address to the to address. In the case of minting new
+ /// from the from address to the to address. In the case of minting new
/// tokens, the transfer is usually from the 0 address while in the case
/// of burning tokens the transfer is to 0.
Transfer {
@@ -68,7 +68,7 @@
}
/// @title Standard ERC20 token
-///
+///
/// @dev Implementation of the basic standard token.
/// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
#[solidity_interface(name = "ERC20", events(ERC20Events))]
pallets/refungible/src/lib.rsdiffbeforeafterboth1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.2// This file is part of Unique Network.34// Unique Network is free software: you can redistribute it and/or modify5// it under the terms of the GNU General Public License as published by6// the Free Software Foundation, either version 3 of the License, or7// (at your option) any later version.89// Unique Network is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12// GNU General Public License for more details.1314// You should have received a copy of the GNU General Public License15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.1617//! # Refungible Pallet18//!19//! The Refungible pallet provides functionality for handling refungible collections and tokens.20//!21//! - [`Config`]22//! - [`RefungibleHandle`]23//! - [`Pallet`]24//! - [`CommonWeights`]25//!26//! ## Overview27//!28//! The Refungible pallet provides functions for:29//!30//! - RFT collection creation and removal31//! - Minting and burning of RFT tokens32//! - Partition and repartition of RFT tokens33//! - Retrieving number of pieces of RFT token34//! - Retrieving account balances35//! - Transfering RFT token pieces36//! - Burning RFT token pieces37//! - Setting and checking allowance for RFT tokens38//!39//! ### Terminology40//!41//! - **RFT token:** Non fungible token that was partitioned to pieces. If an account owns all42//! of the RFT token pieces than it owns the RFT token and can repartition it.43//!44//! - **RFT Collection:** A collection of RFT tokens. All RFT tokens are part of a collection.45//! Each collection has its own settings and set of permissions.46//!47//! - **RFT token piece:** A fungible part of an RFT token.48//!49//! - **Balance:** RFT token pieces owned by an account50//!51//! - **Allowance:** Maximum number of RFT token pieces that one account is allowed to52//! transfer from the balance of another account53//!54//! - **Burning:** The process of “deleting” a token from a collection or removing token pieces from55//! an account balance.56//!57//! ### Implementations58//!59//! The Refungible pallet provides implementations for the following traits. If these traits provide60//! the functionality that you need, then you can avoid coupling with the Refungible pallet.61//!62//! - [`CommonWeightInfo`](pallet_common::CommonWeightInfo): Functions for retrieval of transaction weight63//! - [`CommonCollectionOperations`](pallet_common::CommonCollectionOperations): Functions for dealing64//! with collections65//! - [`RefungibleExtensions`](pallet_common::RefungibleExtensions): Functions specific for refungible66//! collection67//!68//! ## Interface69//!70//! ### Dispatchable Functions71//!72//! - `init_collection` - Create RFT collection. RFT collection can be configured to allow or deny access for73//! some accounts.74//! - `destroy_collection` - Destroy exising RFT collection. There should be no tokens in the collection.75//! - `burn` - Burn some amount of RFT token pieces owned by account. Burns the RFT token if no pieces left.76//! - `transfer` - Transfer some amount of RFT token pieces. Transfers should be enabled for RFT collection.77//! Nests the RFT token if RFT token pieces are sent to another token.78//! - `create_item` - Mint RFT token in collection. Sender should have permission to mint tokens.79//! - `set_allowance` - Set allowance for another account to transfer balance from sender's account.80//! - `repartition` - Repartition token to selected number of pieces. Sender should own all existing pieces.81//!82//! ## Assumptions83//!84//! * Total number of pieces for one token shouldn't exceed `up_data_structs::MAX_REFUNGIBLE_PIECES`.85//! * Total number of tokens of all types shouldn't be greater than `up_data_structs::MAX_TOKEN_PREFIX_LENGTH`.86//! * Sender should be in collection's allow list to perform operations on tokens.8788#![cfg_attr(not(feature = "std"), no_std)]8990use crate::erc_token::ERC20Events;9192use codec::{Encode, Decode, MaxEncodedLen};93use core::ops::Deref;94use evm_coder::ToLog;95use frame_support::{BoundedVec, ensure, fail, storage::with_transaction, transactional};96use pallet_evm::{account::CrossAccountId, Pallet as PalletEvm};97use pallet_evm_coder_substrate::WithRecorder;98use pallet_common::{CommonCollectionOperations, Error as CommonError, Event as CommonEvent, Pallet as PalletCommon};99use pallet_structure::Pallet as PalletStructure;100use scale_info::TypeInfo;101use sp_core::H160;102use sp_runtime::{ArithmeticError, DispatchError, DispatchResult, TransactionOutcome};103use sp_std::{vec::Vec, vec, collections::btree_map::BTreeMap};104use up_data_structs::{105 AccessMode, budget::Budget, CollectionId, CreateCollectionData, CreateRefungibleExData, CustomDataLimit, mapping::TokenAddressMapping, MAX_REFUNGIBLE_PIECES, TokenId,106 Property, PropertyKey, PropertyKeyPermission, PropertyPermission, PropertyScope, PropertyValue, TrySetProperty107};108109pub use pallet::*;110#[cfg(feature = "runtime-benchmarks")]111pub mod benchmarking;112pub mod common;113pub mod erc;114pub mod erc_token;115pub mod weights;116pub(crate) type SelfWeightOf<T> = <T as Config>::WeightInfo;117118#[struct_versioning::versioned(version = 2, upper)]119#[derive(Encode, Decode, Default, TypeInfo, MaxEncodedLen)]120pub struct ItemData {121 pub const_data: BoundedVec<u8, CustomDataLimit>,122123 #[version(..2)]124 pub variable_data: BoundedVec<u8, CustomDataLimit>,125}126127#[frame_support::pallet]128pub mod pallet {129 use super::*;130 use frame_support::{131 Blake2_128, Blake2_128Concat, Twox64Concat, pallet_prelude::*, storage::Key,132 traits::StorageVersion,133 };134 use frame_system::pallet_prelude::*;135 use up_data_structs::{CollectionId, TokenId};136 use super::weights::WeightInfo;137138 #[pallet::error]139 pub enum Error<T> {140 /// Not Refungible item data used to mint in Refungible collection.141 NotRefungibleDataUsedToMintFungibleCollectionToken,142 /// Maximum refungibility exceeded143 WrongRefungiblePieces,144 /// Refungible token can't be repartitioned by user who isn't owns all pieces145 RepartitionWhileNotOwningAllPieces,146 /// Refungible token can't nest other tokens147 RefungibleDisallowsNesting,148 /// Setting item properties is not allowed149 SettingPropertiesNotAllowed,150 }151152 #[pallet::config]153 pub trait Config:154 frame_system::Config + pallet_common::Config + pallet_structure::Config155 {156 type WeightInfo: WeightInfo;157 }158159 const STORAGE_VERSION: StorageVersion = StorageVersion::new(1);160161 #[pallet::pallet]162 #[pallet::storage_version(STORAGE_VERSION)]163 #[pallet::generate_store(pub(super) trait Store)]164 pub struct Pallet<T>(_);165166 /// Amount of tokens minted for collection167 #[pallet::storage]168 pub type TokensMinted<T: Config> =169 StorageMap<Hasher = Twox64Concat, Key = CollectionId, Value = u32, QueryKind = ValueQuery>;170171 /// Amount of burnt tokens for collection172 #[pallet::storage]173 pub type TokensBurnt<T: Config> =174 StorageMap<Hasher = Twox64Concat, Key = CollectionId, Value = u32, QueryKind = ValueQuery>;175176 /// Custom data serialized to bytes for token177 #[pallet::storage]178 pub type TokenData<T: Config> = StorageNMap<179 Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),180 Value = ItemData,181 QueryKind = ValueQuery,182 >;183184 #[pallet::storage]185 #[pallet::getter(fn token_properties)]186 pub type TokenProperties<T: Config> = StorageNMap<187 Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),188 Value = up_data_structs::Properties,189 QueryKind = ValueQuery,190 OnEmpty = up_data_structs::TokenProperties,191 >;192193 /// Total amount of pieces for token194 #[pallet::storage]195 pub type TotalSupply<T: Config> = StorageNMap<196 Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),197 Value = u128,198 QueryKind = ValueQuery,199 >;200201 /// Used to enumerate tokens owned by account202 #[pallet::storage]203 pub type Owned<T: Config> = StorageNMap<204 Key = (205 Key<Twox64Concat, CollectionId>,206 Key<Blake2_128Concat, T::CrossAccountId>,207 Key<Twox64Concat, TokenId>,208 ),209 Value = bool,210 QueryKind = ValueQuery,211 >;212213 /// Amount of tokens owned by account214 #[pallet::storage]215 pub type AccountBalance<T: Config> = StorageNMap<216 Key = (217 Key<Twox64Concat, CollectionId>,218 // Owner219 Key<Blake2_128Concat, T::CrossAccountId>,220 ),221 Value = u32,222 QueryKind = ValueQuery,223 >;224225 /// Amount of token pieces owned by account226 #[pallet::storage]227 pub type Balance<T: Config> = StorageNMap<228 Key = (229 Key<Twox64Concat, CollectionId>,230 Key<Twox64Concat, TokenId>,231 // Owner232 Key<Blake2_128Concat, T::CrossAccountId>,233 ),234 Value = u128,235 QueryKind = ValueQuery,236 >;237238 /// Allowance set by an owner for a spender for a token239 #[pallet::storage]240 pub type Allowance<T: Config> = StorageNMap<241 Key = (242 Key<Twox64Concat, CollectionId>,243 Key<Twox64Concat, TokenId>,244 // Owner245 Key<Blake2_128, T::CrossAccountId>,246 // Spender247 Key<Blake2_128Concat, T::CrossAccountId>,248 ),249 Value = u128,250 QueryKind = ValueQuery,251 >;252253 #[pallet::hooks]254 impl<T: Config> Hooks<BlockNumberFor<T>> for Pallet<T> {255 fn on_runtime_upgrade() -> Weight {256 if StorageVersion::get::<Pallet<T>>() < StorageVersion::new(1) {257 <TokenData<T>>::translate_values::<ItemDataVersion1, _>(|v| {258 Some(<ItemDataVersion2>::from(v))259 })260 }261262 0263 }264 }265}266267pub struct RefungibleHandle<T: Config>(pallet_common::CollectionHandle<T>);268impl<T: Config> RefungibleHandle<T> {269 pub fn cast(inner: pallet_common::CollectionHandle<T>) -> Self {270 Self(inner)271 }272 pub fn into_inner(self) -> pallet_common::CollectionHandle<T> {273 self.0274 }275 pub fn common_mut(&mut self) -> &mut pallet_common::CollectionHandle<T> {276 &mut self.0277 }278}279280impl<T: Config> Deref for RefungibleHandle<T> {281 type Target = pallet_common::CollectionHandle<T>;282283 fn deref(&self) -> &Self::Target {284 &self.0285 }286}287288impl<T: Config> WithRecorder<T> for RefungibleHandle<T> {289 fn recorder(&self) -> &pallet_evm_coder_substrate::SubstrateRecorder<T> {290 self.0.recorder()291 }292 fn into_recorder(self) -> pallet_evm_coder_substrate::SubstrateRecorder<T> {293 self.0.into_recorder()294 }295}296297impl<T: Config> Pallet<T> {298 /// Get number of RFT tokens in collection299 pub fn total_supply(collection: &RefungibleHandle<T>) -> u32 {300 <TokensMinted<T>>::get(collection.id) - <TokensBurnt<T>>::get(collection.id)301 }302303 /// Check that RFT token exists304 ///305 /// - `token`: Token ID.306 pub fn token_exists(collection: &RefungibleHandle<T>, token: TokenId) -> bool {307 <TotalSupply<T>>::contains_key((collection.id, token))308 }309310 pub fn set_scoped_token_property(311 collection_id: CollectionId,312 token_id: TokenId,313 scope: PropertyScope,314 property: Property,315 ) -> DispatchResult {316 TokenProperties::<T>::try_mutate((collection_id, token_id), |properties| {317 properties.try_scoped_set(scope, property.key, property.value)318 })319 .map_err(<CommonError<T>>::from)?;320321 Ok(())322 }323324 pub fn set_scoped_token_properties(325 collection_id: CollectionId,326 token_id: TokenId,327 scope: PropertyScope,328 properties: impl Iterator<Item = Property>,329 ) -> DispatchResult {330 TokenProperties::<T>::try_mutate((collection_id, token_id), |stored_properties| {331 stored_properties.try_scoped_set_from_iter(scope, properties)332 })333 .map_err(<CommonError<T>>::from)?;334335 Ok(())336 }337}338339// unchecked calls skips any permission checks340impl<T: Config> Pallet<T> {341 /// Create RFT collection342 ///343 /// `init_collection` will take non-refundable deposit for collection creation.344 ///345 /// - `data`: Contains settings for collection limits and permissions.346 pub fn init_collection(347 owner: T::CrossAccountId,348 data: CreateCollectionData<T::AccountId>,349 ) -> Result<CollectionId, DispatchError> {350 <PalletCommon<T>>::init_collection(owner, data, false)351 }352353 /// Destroy RFT collection354 ///355 /// `destroy_collection` will throw error if collection contains any tokens.356 /// Only owner can destroy collection.357 pub fn destroy_collection(358 collection: RefungibleHandle<T>,359 sender: &T::CrossAccountId,360 ) -> DispatchResult {361 let id = collection.id;362363 if Self::collection_has_tokens(id) {364 return Err(<CommonError<T>>::CantDestroyNotEmptyCollection.into());365 }366367 // =========368369 PalletCommon::destroy_collection(collection.0, sender)?;370371 <TokensMinted<T>>::remove(id);372 <TokensBurnt<T>>::remove(id);373 <TokenData<T>>::remove_prefix((id,), None);374 <TotalSupply<T>>::remove_prefix((id,), None);375 <Balance<T>>::remove_prefix((id,), None);376 <Allowance<T>>::remove_prefix((id,), None);377 <Owned<T>>::remove_prefix((id,), None);378 <AccountBalance<T>>::remove_prefix((id,), None);379 Ok(())380 }381382 fn collection_has_tokens(collection_id: CollectionId) -> bool {383 <TokenData<T>>::iter_prefix((collection_id,))384 .next()385 .is_some()386 }387388 pub fn burn_token_unchecked(389 collection: &RefungibleHandle<T>,390 token_id: TokenId,391 ) -> DispatchResult {392 let burnt = <TokensBurnt<T>>::get(collection.id)393 .checked_add(1)394 .ok_or(ArithmeticError::Overflow)?;395396 <TokensBurnt<T>>::insert(collection.id, burnt);397 <TokenData<T>>::remove((collection.id, token_id));398 <TokenProperties<T>>::remove((collection.id, token_id));399 <TotalSupply<T>>::remove((collection.id, token_id));400 <Balance<T>>::remove_prefix((collection.id, token_id), None);401 <Allowance<T>>::remove_prefix((collection.id, token_id), None);402 // TODO: ERC721 transfer event403 Ok(())404 }405406 /// Burn RFT token pieces407 ///408 /// `burn` will decrease total amount of token pieces and amount owned by sender.409 /// `burn` can be called even if there are multiple owners of the RFT token.410 /// If sender wouldn't have any pieces left after `burn` than she will stop being411 /// one of the owners of the token. If there is no account that owns any pieces of412 /// the token than token will be burned too.413 ///414 /// - `amount`: Amount of token pieces to burn.415 /// - `token`: Token who's pieces should be burned416 /// - `collection`: Collection that contains the token417 pub fn burn(418 collection: &RefungibleHandle<T>,419 owner: &T::CrossAccountId,420 token: TokenId,421 amount: u128,422 ) -> DispatchResult {423 let total_supply = <TotalSupply<T>>::get((collection.id, token))424 .checked_sub(amount)425 .ok_or(<CommonError<T>>::TokenValueTooLow)?;426427 // This was probally last owner of this token?428 if total_supply == 0 {429 // Ensure user actually owns this amount430 ensure!(431 <Balance<T>>::get((collection.id, token, owner)) == amount,432 <CommonError<T>>::TokenValueTooLow433 );434 let account_balance = <AccountBalance<T>>::get((collection.id, owner))435 .checked_sub(1)436 // Should not occur437 .ok_or(ArithmeticError::Underflow)?;438439 // =========440441 <Owned<T>>::remove((collection.id, owner, token));442 <PalletStructure<T>>::unnest_if_nested(owner, collection.id, token);443 <AccountBalance<T>>::insert((collection.id, owner), account_balance);444 Self::burn_token_unchecked(collection, token)?;445 <PalletCommon<T>>::deposit_event(CommonEvent::ItemDestroyed(446 collection.id,447 token,448 owner.clone(),449 amount,450 ));451 return Ok(());452 }453454 let balance = <Balance<T>>::get((collection.id, token, owner))455 .checked_sub(amount)456 .ok_or(<CommonError<T>>::TokenValueTooLow)?;457 let account_balance = if balance == 0 {458 <AccountBalance<T>>::get((collection.id, owner))459 .checked_sub(1)460 // Should not occur461 .ok_or(ArithmeticError::Underflow)?462 } else {463 0464 };465466 // =========467468 if balance == 0 {469 <Owned<T>>::remove((collection.id, owner, token));470 <PalletStructure<T>>::unnest_if_nested(owner, collection.id, token);471 <Balance<T>>::remove((collection.id, token, owner));472 <AccountBalance<T>>::insert((collection.id, owner), account_balance);473 } else {474 <Balance<T>>::insert((collection.id, token, owner), balance);475 }476 <TotalSupply<T>>::insert((collection.id, token), total_supply);477478 <PalletEvm<T>>::deposit_log(479 ERC20Events::Transfer {480 from: *owner.as_eth(),481 to: H160::default(),482 value: amount.into(),483 }484 .to_log(T::EvmTokenAddressMapping::token_to_address(485 collection.id,486 token,487 )),488 );489 <PalletCommon<T>>::deposit_event(CommonEvent::ItemDestroyed(490 collection.id,491 token,492 owner.clone(),493 amount,494 ));495 Ok(())496 }497498 #[transactional]499 fn modify_token_properties(500 collection: &RefungibleHandle<T>,501 sender: &T::CrossAccountId,502 token_id: TokenId,503 properties: impl Iterator<Item = (PropertyKey, Option<PropertyValue>)>,504 is_token_create: bool,505 nesting_budget: &dyn Budget,506 ) -> DispatchResult {507 let is_collection_admin = || collection.is_owner_or_admin(sender);508 let is_token_owner = || -> Result<bool, DispatchError> {509 let balance = collection.balance(sender.clone(), token_id);510 let total_pieces: u128 =511 Self::total_pieces(collection.id, token_id).unwrap_or(u128::MAX);512 if balance != total_pieces {513 return Ok(false);514 }515516 let is_bundle_owner = <PalletStructure<T>>::check_indirectly_owned(517 sender.clone(),518 collection.id,519 token_id,520 None,521 nesting_budget,522 )?;523524 Ok(is_bundle_owner)525 };526527 for (key, value) in properties {528 let permission = <PalletCommon<T>>::property_permissions(collection.id)529 .get(&key)530 .cloned()531 .unwrap_or_else(PropertyPermission::none);532533 let is_property_exists = TokenProperties::<T>::get((collection.id, token_id))534 .get(&key)535 .is_some();536537 match permission {538 PropertyPermission { mutable: false, .. } if is_property_exists => {539 return Err(<CommonError<T>>::NoPermission.into());540 }541542 PropertyPermission {543 collection_admin,544 token_owner,545 ..546 } => {547 //TODO: investigate threats during public minting.548 let is_token_create =549 is_token_create && (collection_admin || token_owner) && value.is_some();550 if !(is_token_create551 || (collection_admin && is_collection_admin())552 || (token_owner && is_token_owner()?))553 {554 fail!(<CommonError<T>>::NoPermission);555 }556 }557 }558559 match value {560 Some(value) => {561 <TokenProperties<T>>::try_mutate((collection.id, token_id), |properties| {562 properties.try_set(key.clone(), value)563 })564 .map_err(<CommonError<T>>::from)?;565566 <PalletCommon<T>>::deposit_event(CommonEvent::TokenPropertySet(567 collection.id,568 token_id,569 key,570 ));571 }572 None => {573 <TokenProperties<T>>::try_mutate((collection.id, token_id), |properties| {574 properties.remove(&key)575 })576 .map_err(<CommonError<T>>::from)?;577578 <PalletCommon<T>>::deposit_event(CommonEvent::TokenPropertyDeleted(579 collection.id,580 token_id,581 key,582 ));583 }584 }585 }586587 Ok(())588 }589590 pub fn set_token_properties(591 collection: &RefungibleHandle<T>,592 sender: &T::CrossAccountId,593 token_id: TokenId,594 properties: impl Iterator<Item = Property>,595 is_token_create: bool,596 nesting_budget: &dyn Budget,597 ) -> DispatchResult {598 Self::modify_token_properties(599 collection,600 sender,601 token_id,602 properties.map(|p| (p.key, Some(p.value))),603 is_token_create,604 nesting_budget,605 )606 }607608 pub fn set_token_property(609 collection: &RefungibleHandle<T>,610 sender: &T::CrossAccountId,611 token_id: TokenId,612 property: Property,613 nesting_budget: &dyn Budget,614 ) -> DispatchResult {615 let is_token_create = false;616617 Self::set_token_properties(618 collection,619 sender,620 token_id,621 [property].into_iter(),622 is_token_create,623 nesting_budget,624 )625 }626627 pub fn delete_token_properties(628 collection: &RefungibleHandle<T>,629 sender: &T::CrossAccountId,630 token_id: TokenId,631 property_keys: impl Iterator<Item = PropertyKey>,632 nesting_budget: &dyn Budget,633 ) -> DispatchResult {634 let is_token_create = false;635636 Self::modify_token_properties(637 collection,638 sender,639 token_id,640 property_keys.into_iter().map(|key| (key, None)),641 is_token_create,642 nesting_budget,643 )644 }645646 pub fn delete_token_property(647 collection: &RefungibleHandle<T>,648 sender: &T::CrossAccountId,649 token_id: TokenId,650 property_key: PropertyKey,651 nesting_budget: &dyn Budget,652 ) -> DispatchResult {653 Self::delete_token_properties(654 collection,655 sender,656 token_id,657 [property_key].into_iter(),658 nesting_budget,659 )660 }661662 /// Transfer RFT token pieces from one account to another.663 ///664 /// If the sender is no longer owns any pieces after the `transfer` than she stops being an owner of the token.665 ///666 /// - `from`: Owner of token pieces to transfer.667 /// - `to`: Recepient of transfered token pieces.668 /// - `amount`: Amount of token pieces to transfer.669 /// - `token`: Token whos pieces should be transfered670 /// - `collection`: Collection that contains the token671 pub fn transfer(672 collection: &RefungibleHandle<T>,673 from: &T::CrossAccountId,674 to: &T::CrossAccountId,675 token: TokenId,676 amount: u128,677 nesting_budget: &dyn Budget,678 ) -> DispatchResult {679 ensure!(680 collection.limits.transfers_enabled(),681 <CommonError<T>>::TransferNotAllowed682 );683684 if collection.permissions.access() == AccessMode::AllowList {685 collection.check_allowlist(from)?;686 collection.check_allowlist(to)?;687 }688 <PalletCommon<T>>::ensure_correct_receiver(to)?;689690 let balance_from = <Balance<T>>::get((collection.id, token, from))691 .checked_sub(amount)692 .ok_or(<CommonError<T>>::TokenValueTooLow)?;693 let mut create_target = false;694 let from_to_differ = from != to;695 let balance_to = if from != to {696 let old_balance = <Balance<T>>::get((collection.id, token, to));697 if old_balance == 0 {698 create_target = true;699 }700 Some(701 old_balance702 .checked_add(amount)703 .ok_or(ArithmeticError::Overflow)?,704 )705 } else {706 None707 };708709 let account_balance_from = if balance_from == 0 {710 Some(711 <AccountBalance<T>>::get((collection.id, from))712 .checked_sub(1)713 // Should not occur714 .ok_or(ArithmeticError::Underflow)?,715 )716 } else {717 None718 };719 // Account data is created in token, AccountBalance should be increased720 // But only if from != to as we shouldn't check overflow in this case721 let account_balance_to = if create_target && from_to_differ {722 let account_balance_to = <AccountBalance<T>>::get((collection.id, to))723 .checked_add(1)724 .ok_or(ArithmeticError::Overflow)?;725 ensure!(726 account_balance_to < collection.limits.account_token_ownership_limit(),727 <CommonError<T>>::AccountTokenLimitExceeded,728 );729730 Some(account_balance_to)731 } else {732 None733 };734735 // =========736737 <PalletStructure<T>>::nest_if_sent_to_token(738 from.clone(),739 to,740 collection.id,741 token,742 nesting_budget,743 )?;744745 if let Some(balance_to) = balance_to {746 // from != to747 if balance_from == 0 {748 <Balance<T>>::remove((collection.id, token, from));749 <PalletStructure<T>>::unnest_if_nested(from, collection.id, token);750 } else {751 <Balance<T>>::insert((collection.id, token, from), balance_from);752 }753 <Balance<T>>::insert((collection.id, token, to), balance_to);754 if let Some(account_balance_from) = account_balance_from {755 <AccountBalance<T>>::insert((collection.id, from), account_balance_from);756 <Owned<T>>::remove((collection.id, from, token));757 }758 if let Some(account_balance_to) = account_balance_to {759 <AccountBalance<T>>::insert((collection.id, to), account_balance_to);760 <Owned<T>>::insert((collection.id, to, token), true);761 }762 }763764 <PalletEvm<T>>::deposit_log(765 ERC20Events::Transfer {766 from: *from.as_eth(),767 to: *to.as_eth(),768 value: amount.into(),769 }770 .to_log(T::EvmTokenAddressMapping::token_to_address(771 collection.id,772 token,773 )),774 );775 <PalletCommon<T>>::deposit_event(CommonEvent::Transfer(776 collection.id,777 token,778 from.clone(),779 to.clone(),780 amount,781 ));782 Ok(())783 }784785 /// Batched operation to create multiple RFT tokens.786 ///787 /// Same as `create_item` but creates multiple tokens.788 ///789 /// - `data`: Same as 'data` in `create_item` but contains data for multiple tokens.790 pub fn create_multiple_items(791 collection: &RefungibleHandle<T>,792 sender: &T::CrossAccountId,793 data: Vec<CreateRefungibleExData<T::CrossAccountId>>,794 nesting_budget: &dyn Budget,795 ) -> DispatchResult {796 if !collection.is_owner_or_admin(sender) {797 ensure!(798 collection.permissions.mint_mode(),799 <CommonError<T>>::PublicMintingNotAllowed800 );801 collection.check_allowlist(sender)?;802803 for item in data.iter() {804 for user in item.users.keys() {805 collection.check_allowlist(user)?;806 }807 }808 }809810 for item in data.iter() {811 for (owner, _) in item.users.iter() {812 <PalletCommon<T>>::ensure_correct_receiver(owner)?;813 }814 }815816 // Total pieces per tokens817 let totals = data818 .iter()819 .map(|data| {820 Ok(data821 .users822 .iter()823 .map(|u| u.1)824 .try_fold(0u128, |acc, v| acc.checked_add(*v))825 .ok_or(ArithmeticError::Overflow)?)826 })827 .collect::<Result<Vec<_>, DispatchError>>()?;828 for total in &totals {829 ensure!(830 *total <= MAX_REFUNGIBLE_PIECES,831 <Error<T>>::WrongRefungiblePieces832 );833 }834835 let first_token_id = <TokensMinted<T>>::get(collection.id);836 let tokens_minted = first_token_id837 .checked_add(data.len() as u32)838 .ok_or(ArithmeticError::Overflow)?;839 ensure!(840 tokens_minted < collection.limits.token_limit(),841 <CommonError<T>>::CollectionTokenLimitExceeded842 );843844 let mut balances = BTreeMap::new();845 for data in &data {846 for owner in data.users.keys() {847 let balance = balances848 .entry(owner)849 .or_insert_with(|| <AccountBalance<T>>::get((collection.id, owner)));850 *balance = balance.checked_add(1).ok_or(ArithmeticError::Overflow)?;851852 ensure!(853 *balance <= collection.limits.account_token_ownership_limit(),854 <CommonError<T>>::AccountTokenLimitExceeded,855 );856 }857 }858859 for (i, token) in data.iter().enumerate() {860 let token_id = TokenId(first_token_id + i as u32 + 1);861 for (to, _) in token.users.iter() {862 <PalletStructure<T>>::check_nesting(863 sender.clone(),864 to,865 collection.id,866 token_id,867 nesting_budget,868 )?;869 }870 }871872 // =========873874 with_transaction(|| {875 for (i, data) in data.iter().enumerate() {876 let token_id = first_token_id + i as u32 + 1;877 <TotalSupply<T>>::insert((collection.id, token_id), totals[i]);878879 <TokenData<T>>::insert(880 (collection.id, token_id),881 ItemData {882 const_data: data.const_data.clone(),883 },884 );885886 for (user, amount) in data.users.iter() {887 if *amount == 0 {888 continue;889 }890 <Balance<T>>::insert((collection.id, token_id, &user), amount);891 <Owned<T>>::insert((collection.id, &user, TokenId(token_id)), true);892 <PalletStructure<T>>::nest_if_sent_to_token_unchecked(893 user,894 collection.id,895 TokenId(token_id),896 );897 }898899 if let Err(e) = Self::set_token_properties(900 collection,901 sender,902 TokenId(token_id),903 data.properties.clone().into_iter(),904 true,905 nesting_budget,906 ) {907 return TransactionOutcome::Rollback(Err(e));908 }909 }910 TransactionOutcome::Commit(Ok(()))911 })?;912913 <TokensMinted<T>>::insert(collection.id, tokens_minted);914915 for (account, balance) in balances {916 <AccountBalance<T>>::insert((collection.id, account), balance);917 }918919 for (i, token) in data.into_iter().enumerate() {920 let token_id = first_token_id + i as u32 + 1;921922 for (user, amount) in token.users.into_iter() {923 if amount == 0 {924 continue;925 }926927 <PalletEvm<T>>::deposit_log(928 ERC20Events::Transfer {929 from: H160::default(),930 to: *user.as_eth(),931 value: amount.into(),932 }933 .to_log(T::EvmTokenAddressMapping::token_to_address(934 collection.id,935 TokenId(token_id),936 )),937 );938 <PalletCommon<T>>::deposit_event(CommonEvent::ItemCreated(939 collection.id,940 TokenId(token_id),941 user,942 amount,943 ));944 }945 }946 Ok(())947 }948949 pub fn set_allowance_unchecked(950 collection: &RefungibleHandle<T>,951 sender: &T::CrossAccountId,952 spender: &T::CrossAccountId,953 token: TokenId,954 amount: u128,955 ) {956 if amount == 0 {957 <Allowance<T>>::remove((collection.id, token, sender, spender));958 } else {959 <Allowance<T>>::insert((collection.id, token, sender, spender), amount);960 }961962 <PalletEvm<T>>::deposit_log(963 ERC20Events::Approval {964 owner: *sender.as_eth(),965 spender: *spender.as_eth(),966 value: amount.into(),967 }968 .to_log(T::EvmTokenAddressMapping::token_to_address(969 collection.id,970 token,971 )),972 );973 <PalletCommon<T>>::deposit_event(CommonEvent::Approved(974 collection.id,975 token,976 sender.clone(),977 spender.clone(),978 amount,979 ))980 }981982 /// Set allowance for the spender to `transfer` or `burn` sender's token pieces.983 ///984 /// - `amount`: Amount of token pieces the spender is allowed to `transfer` or `burn.985 pub fn set_allowance(986 collection: &RefungibleHandle<T>,987 sender: &T::CrossAccountId,988 spender: &T::CrossAccountId,989 token: TokenId,990 amount: u128,991 ) -> DispatchResult {992 if collection.permissions.access() == AccessMode::AllowList {993 collection.check_allowlist(sender)?;994 collection.check_allowlist(spender)?;995 }996997 <PalletCommon<T>>::ensure_correct_receiver(spender)?;998999 if <Balance<T>>::get((collection.id, token, sender)) < amount {1000 ensure!(1001 collection.ignores_owned_amount(sender) && Self::token_exists(collection, token),1002 <CommonError<T>>::CantApproveMoreThanOwned1003 );1004 }10051006 // =========10071008 Self::set_allowance_unchecked(collection, sender, spender, token, amount);1009 Ok(())1010 }10111012 /// Returns allowance, which should be set after transaction1013 fn check_allowed(1014 collection: &RefungibleHandle<T>,1015 spender: &T::CrossAccountId,1016 from: &T::CrossAccountId,1017 token: TokenId,1018 amount: u128,1019 nesting_budget: &dyn Budget,1020 ) -> Result<Option<u128>, DispatchError> {1021 if spender.conv_eq(from) {1022 return Ok(None);1023 }1024 if collection.permissions.access() == AccessMode::AllowList {1025 // `from`, `to` checked in [`transfer`]1026 collection.check_allowlist(spender)?;1027 }1028 if let Some(source) = T::CrossTokenAddressMapping::address_to_token(from) {1029 // TODO: should collection owner be allowed to perform this transfer?1030 ensure!(1031 <PalletStructure<T>>::check_indirectly_owned(1032 spender.clone(),1033 source.0,1034 source.1,1035 None,1036 nesting_budget1037 )?,1038 <CommonError<T>>::ApprovedValueTooLow,1039 );1040 return Ok(None);1041 }1042 let allowance =1043 <Allowance<T>>::get((collection.id, token, from, &spender)).checked_sub(amount);1044 if allowance.is_none() {1045 ensure!(1046 collection.ignores_allowance(spender),1047 <CommonError<T>>::ApprovedValueTooLow1048 );1049 }1050 Ok(allowance)1051 }10521053 /// Transfer RFT token pieces from one account to another.1054 ///1055 /// Same as the [`transfer`] but spender doesn't needs to be an owner of the token pieces.1056 /// The owner should set allowance for the spender to transfer pieces.1057 ///1058 /// [`transfer`]: struct.Pallet.html#method.transfer1059 pub fn transfer_from(1060 collection: &RefungibleHandle<T>,1061 spender: &T::CrossAccountId,1062 from: &T::CrossAccountId,1063 to: &T::CrossAccountId,1064 token: TokenId,1065 amount: u128,1066 nesting_budget: &dyn Budget,1067 ) -> DispatchResult {1068 let allowance =1069 Self::check_allowed(collection, spender, from, token, amount, nesting_budget)?;10701071 // =========10721073 Self::transfer(collection, from, to, token, amount, nesting_budget)?;1074 if let Some(allowance) = allowance {1075 Self::set_allowance_unchecked(collection, from, spender, token, allowance);1076 }1077 Ok(())1078 }10791080 /// Burn RFT token pieces from the account.1081 ///1082 /// Same as the [`burn`] but spender doesn't need to be an owner of the token pieces. The owner should1083 /// set allowance for the spender to burn pieces1084 ///1085 /// [`burn`]: struct.Pallet.html#method.burn1086 pub fn burn_from(1087 collection: &RefungibleHandle<T>,1088 spender: &T::CrossAccountId,1089 from: &T::CrossAccountId,1090 token: TokenId,1091 amount: u128,1092 nesting_budget: &dyn Budget,1093 ) -> DispatchResult {1094 let allowance =1095 Self::check_allowed(collection, spender, from, token, amount, nesting_budget)?;10961097 // =========10981099 Self::burn(collection, from, token, amount)?;1100 if let Some(allowance) = allowance {1101 Self::set_allowance_unchecked(collection, from, spender, token, allowance);1102 }1103 Ok(())1104 }11051106 /// Create RFT token.1107 ///1108 /// The sender should be the owner/admin of the collection or collection should be configured1109 /// to allow public minting.1110 ///1111 /// - `data`: Contains list of users who will become the owners of the token pieces and amount1112 /// of token pieces they will receive.1113 pub fn create_item(1114 collection: &RefungibleHandle<T>,1115 sender: &T::CrossAccountId,1116 data: CreateRefungibleExData<T::CrossAccountId>,1117 nesting_budget: &dyn Budget,1118 ) -> DispatchResult {1119 Self::create_multiple_items(collection, sender, vec![data], nesting_budget)1120 }11211122 /// Repartition RFT token.1123 ///1124 /// `repartition` will set token balance of the sender and total amount of token pieces.1125 /// Sender should own all of the token pieces. `repartition' could be done even if some1126 /// token pieces were burned before.1127 ///1128 /// - `amount`: Total amount of token pieces that the token will have after `repartition`.1129 pub fn repartition(1130 collection: &RefungibleHandle<T>,1131 owner: &T::CrossAccountId,1132 token: TokenId,1133 amount: u128,1134 ) -> DispatchResult {1135 ensure!(1136 amount <= MAX_REFUNGIBLE_PIECES,1137 <Error<T>>::WrongRefungiblePieces1138 );1139 ensure!(amount > 0, <CommonError<T>>::TokenValueTooLow);1140 // Ensure user owns all pieces1141 let total_pieces = Self::total_pieces(collection.id, token).unwrap_or(u128::MAX);1142 let balance = <Balance<T>>::get((collection.id, token, owner));1143 ensure!(1144 total_pieces == balance,1145 <Error<T>>::RepartitionWhileNotOwningAllPieces1146 );11471148 <Balance<T>>::insert((collection.id, token, owner), amount);1149 <TotalSupply<T>>::insert((collection.id, token), amount);1150 Ok(())1151 }11521153 fn token_owner(collection_id: CollectionId, token_id: TokenId) -> Option<T::CrossAccountId> {1154 let mut owner = None;1155 let mut count = 0;1156 for key in Balance::<T>::iter_key_prefix((collection_id, token_id)) {1157 count += 1;1158 if count > 1 {1159 return None;1160 }1161 owner = Some(key);1162 }1163 owner1164 }11651166 fn total_pieces(collection_id: CollectionId, token_id: TokenId) -> Option<u128> {1167 <TotalSupply<T>>::try_get((collection_id, token_id)).ok()1168 }11691170 pub fn set_collection_properties(1171 collection: &RefungibleHandle<T>,1172 sender: &T::CrossAccountId,1173 properties: Vec<Property>,1174 ) -> DispatchResult {1175 <PalletCommon<T>>::set_collection_properties(collection, sender, properties)1176 }11771178 pub fn delete_collection_properties(1179 collection: &RefungibleHandle<T>,1180 sender: &T::CrossAccountId,1181 property_keys: Vec<PropertyKey>,1182 ) -> DispatchResult {1183 <PalletCommon<T>>::delete_collection_properties(collection, sender, property_keys)1184 }11851186 pub fn set_token_property_permissions(1187 collection: &RefungibleHandle<T>,1188 sender: &T::CrossAccountId,1189 property_permissions: Vec<PropertyKeyPermission>,1190 ) -> DispatchResult {1191 <PalletCommon<T>>::set_token_property_permissions(collection, sender, property_permissions)1192 }1193}1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.2// This file is part of Unique Network.34// Unique Network is free software: you can redistribute it and/or modify5// it under the terms of the GNU General Public License as published by6// the Free Software Foundation, either version 3 of the License, or7// (at your option) any later version.89// Unique Network is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12// GNU General Public License for more details.1314// You should have received a copy of the GNU General Public License15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.1617//! # Refungible Pallet18//!19//! The Refungible pallet provides functionality for handling refungible collections and tokens.20//!21//! - [`Config`]22//! - [`RefungibleHandle`]23//! - [`Pallet`]24//! - [`CommonWeights`]25//!26//! ## Overview27//!28//! The Refungible pallet provides functions for:29//!30//! - RFT collection creation and removal31//! - Minting and burning of RFT tokens32//! - Partition and repartition of RFT tokens33//! - Retrieving number of pieces of RFT token34//! - Retrieving account balances35//! - Transfering RFT token pieces36//! - Burning RFT token pieces37//! - Setting and checking allowance for RFT tokens38//!39//! ### Terminology40//!41//! - **RFT token:** Non fungible token that was partitioned to pieces. If an account owns all42//! of the RFT token pieces than it owns the RFT token and can repartition it.43//!44//! - **RFT Collection:** A collection of RFT tokens. All RFT tokens are part of a collection.45//! Each collection has its own settings and set of permissions.46//!47//! - **RFT token piece:** A fungible part of an RFT token.48//!49//! - **Balance:** RFT token pieces owned by an account50//!51//! - **Allowance:** Maximum number of RFT token pieces that one account is allowed to52//! transfer from the balance of another account53//!54//! - **Burning:** The process of “deleting” a token from a collection or removing token pieces from55//! an account balance.56//!57//! ### Implementations58//!59//! The Refungible pallet provides implementations for the following traits. If these traits provide60//! the functionality that you need, then you can avoid coupling with the Refungible pallet.61//!62//! - [`CommonWeightInfo`](pallet_common::CommonWeightInfo): Functions for retrieval of transaction weight63//! - [`CommonCollectionOperations`](pallet_common::CommonCollectionOperations): Functions for dealing64//! with collections65//! - [`RefungibleExtensions`](pallet_common::RefungibleExtensions): Functions specific for refungible66//! collection67//!68//! ## Interface69//!70//! ### Dispatchable Functions71//!72//! - `init_collection` - Create RFT collection. RFT collection can be configured to allow or deny access for73//! some accounts.74//! - `destroy_collection` - Destroy exising RFT collection. There should be no tokens in the collection.75//! - `burn` - Burn some amount of RFT token pieces owned by account. Burns the RFT token if no pieces left.76//! - `transfer` - Transfer some amount of RFT token pieces. Transfers should be enabled for RFT collection.77//! Nests the RFT token if RFT token pieces are sent to another token.78//! - `create_item` - Mint RFT token in collection. Sender should have permission to mint tokens.79//! - `set_allowance` - Set allowance for another account to transfer balance from sender's account.80//! - `repartition` - Repartition token to selected number of pieces. Sender should own all existing pieces.81//!82//! ## Assumptions83//!84//! * Total number of pieces for one token shouldn't exceed `up_data_structs::MAX_REFUNGIBLE_PIECES`.85//! * Total number of tokens of all types shouldn't be greater than `up_data_structs::MAX_TOKEN_PREFIX_LENGTH`.86//! * Sender should be in collection's allow list to perform operations on tokens.8788#![cfg_attr(not(feature = "std"), no_std)]8990use crate::erc_token::ERC20Events;9192use codec::{Encode, Decode, MaxEncodedLen};93use core::ops::Deref;94use evm_coder::ToLog;95use frame_support::{BoundedVec, ensure, fail, storage::with_transaction, transactional};96use pallet_evm::{account::CrossAccountId, Pallet as PalletEvm};97use pallet_evm_coder_substrate::WithRecorder;98use pallet_common::{99 CommonCollectionOperations, Error as CommonError, Event as CommonEvent, Pallet as PalletCommon,100};101use pallet_structure::Pallet as PalletStructure;102use scale_info::TypeInfo;103use sp_core::H160;104use sp_runtime::{ArithmeticError, DispatchError, DispatchResult, TransactionOutcome};105use sp_std::{vec::Vec, vec, collections::btree_map::BTreeMap};106use up_data_structs::{107 AccessMode, budget::Budget, CollectionId, CreateCollectionData, CreateRefungibleExData,108 CustomDataLimit, mapping::TokenAddressMapping, MAX_REFUNGIBLE_PIECES, TokenId, Property,109 PropertyKey, PropertyKeyPermission, PropertyPermission, PropertyScope, PropertyValue,110 TrySetProperty,111};112113pub use pallet::*;114#[cfg(feature = "runtime-benchmarks")]115pub mod benchmarking;116pub mod common;117pub mod erc;118pub mod erc_token;119pub mod weights;120pub(crate) type SelfWeightOf<T> = <T as Config>::WeightInfo;121122#[struct_versioning::versioned(version = 2, upper)]123#[derive(Encode, Decode, Default, TypeInfo, MaxEncodedLen)]124pub struct ItemData {125 pub const_data: BoundedVec<u8, CustomDataLimit>,126127 #[version(..2)]128 pub variable_data: BoundedVec<u8, CustomDataLimit>,129}130131#[frame_support::pallet]132pub mod pallet {133 use super::*;134 use frame_support::{135 Blake2_128, Blake2_128Concat, Twox64Concat, pallet_prelude::*, storage::Key,136 traits::StorageVersion,137 };138 use frame_system::pallet_prelude::*;139 use up_data_structs::{CollectionId, TokenId};140 use super::weights::WeightInfo;141142 #[pallet::error]143 pub enum Error<T> {144 /// Not Refungible item data used to mint in Refungible collection.145 NotRefungibleDataUsedToMintFungibleCollectionToken,146 /// Maximum refungibility exceeded147 WrongRefungiblePieces,148 /// Refungible token can't be repartitioned by user who isn't owns all pieces149 RepartitionWhileNotOwningAllPieces,150 /// Refungible token can't nest other tokens151 RefungibleDisallowsNesting,152 /// Setting item properties is not allowed153 SettingPropertiesNotAllowed,154 }155156 #[pallet::config]157 pub trait Config:158 frame_system::Config + pallet_common::Config + pallet_structure::Config159 {160 type WeightInfo: WeightInfo;161 }162163 const STORAGE_VERSION: StorageVersion = StorageVersion::new(1);164165 #[pallet::pallet]166 #[pallet::storage_version(STORAGE_VERSION)]167 #[pallet::generate_store(pub(super) trait Store)]168 pub struct Pallet<T>(_);169170 /// Amount of tokens minted for collection171 #[pallet::storage]172 pub type TokensMinted<T: Config> =173 StorageMap<Hasher = Twox64Concat, Key = CollectionId, Value = u32, QueryKind = ValueQuery>;174175 /// Amount of burnt tokens for collection176 #[pallet::storage]177 pub type TokensBurnt<T: Config> =178 StorageMap<Hasher = Twox64Concat, Key = CollectionId, Value = u32, QueryKind = ValueQuery>;179180 /// Custom data serialized to bytes for token181 #[pallet::storage]182 pub type TokenData<T: Config> = StorageNMap<183 Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),184 Value = ItemData,185 QueryKind = ValueQuery,186 >;187188 #[pallet::storage]189 #[pallet::getter(fn token_properties)]190 pub type TokenProperties<T: Config> = StorageNMap<191 Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),192 Value = up_data_structs::Properties,193 QueryKind = ValueQuery,194 OnEmpty = up_data_structs::TokenProperties,195 >;196197 /// Total amount of pieces for token198 #[pallet::storage]199 pub type TotalSupply<T: Config> = StorageNMap<200 Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),201 Value = u128,202 QueryKind = ValueQuery,203 >;204205 /// Used to enumerate tokens owned by account206 #[pallet::storage]207 pub type Owned<T: Config> = StorageNMap<208 Key = (209 Key<Twox64Concat, CollectionId>,210 Key<Blake2_128Concat, T::CrossAccountId>,211 Key<Twox64Concat, TokenId>,212 ),213 Value = bool,214 QueryKind = ValueQuery,215 >;216217 /// Amount of tokens owned by account218 #[pallet::storage]219 pub type AccountBalance<T: Config> = StorageNMap<220 Key = (221 Key<Twox64Concat, CollectionId>,222 // Owner223 Key<Blake2_128Concat, T::CrossAccountId>,224 ),225 Value = u32,226 QueryKind = ValueQuery,227 >;228229 /// Amount of token pieces owned by account230 #[pallet::storage]231 pub type Balance<T: Config> = StorageNMap<232 Key = (233 Key<Twox64Concat, CollectionId>,234 Key<Twox64Concat, TokenId>,235 // Owner236 Key<Blake2_128Concat, T::CrossAccountId>,237 ),238 Value = u128,239 QueryKind = ValueQuery,240 >;241242 /// Allowance set by an owner for a spender for a token243 #[pallet::storage]244 pub type Allowance<T: Config> = StorageNMap<245 Key = (246 Key<Twox64Concat, CollectionId>,247 Key<Twox64Concat, TokenId>,248 // Owner249 Key<Blake2_128, T::CrossAccountId>,250 // Spender251 Key<Blake2_128Concat, T::CrossAccountId>,252 ),253 Value = u128,254 QueryKind = ValueQuery,255 >;256257 #[pallet::hooks]258 impl<T: Config> Hooks<BlockNumberFor<T>> for Pallet<T> {259 fn on_runtime_upgrade() -> Weight {260 if StorageVersion::get::<Pallet<T>>() < StorageVersion::new(1) {261 <TokenData<T>>::translate_values::<ItemDataVersion1, _>(|v| {262 Some(<ItemDataVersion2>::from(v))263 })264 }265266 0267 }268 }269}270271pub struct RefungibleHandle<T: Config>(pallet_common::CollectionHandle<T>);272impl<T: Config> RefungibleHandle<T> {273 pub fn cast(inner: pallet_common::CollectionHandle<T>) -> Self {274 Self(inner)275 }276 pub fn into_inner(self) -> pallet_common::CollectionHandle<T> {277 self.0278 }279 pub fn common_mut(&mut self) -> &mut pallet_common::CollectionHandle<T> {280 &mut self.0281 }282}283284impl<T: Config> Deref for RefungibleHandle<T> {285 type Target = pallet_common::CollectionHandle<T>;286287 fn deref(&self) -> &Self::Target {288 &self.0289 }290}291292impl<T: Config> WithRecorder<T> for RefungibleHandle<T> {293 fn recorder(&self) -> &pallet_evm_coder_substrate::SubstrateRecorder<T> {294 self.0.recorder()295 }296 fn into_recorder(self) -> pallet_evm_coder_substrate::SubstrateRecorder<T> {297 self.0.into_recorder()298 }299}300301impl<T: Config> Pallet<T> {302 /// Get number of RFT tokens in collection303 pub fn total_supply(collection: &RefungibleHandle<T>) -> u32 {304 <TokensMinted<T>>::get(collection.id) - <TokensBurnt<T>>::get(collection.id)305 }306307 /// Check that RFT token exists308 ///309 /// - `token`: Token ID.310 pub fn token_exists(collection: &RefungibleHandle<T>, token: TokenId) -> bool {311 <TotalSupply<T>>::contains_key((collection.id, token))312 }313314 pub fn set_scoped_token_property(315 collection_id: CollectionId,316 token_id: TokenId,317 scope: PropertyScope,318 property: Property,319 ) -> DispatchResult {320 TokenProperties::<T>::try_mutate((collection_id, token_id), |properties| {321 properties.try_scoped_set(scope, property.key, property.value)322 })323 .map_err(<CommonError<T>>::from)?;324325 Ok(())326 }327328 pub fn set_scoped_token_properties(329 collection_id: CollectionId,330 token_id: TokenId,331 scope: PropertyScope,332 properties: impl Iterator<Item = Property>,333 ) -> DispatchResult {334 TokenProperties::<T>::try_mutate((collection_id, token_id), |stored_properties| {335 stored_properties.try_scoped_set_from_iter(scope, properties)336 })337 .map_err(<CommonError<T>>::from)?;338339 Ok(())340 }341}342343// unchecked calls skips any permission checks344impl<T: Config> Pallet<T> {345 /// Create RFT collection346 ///347 /// `init_collection` will take non-refundable deposit for collection creation.348 ///349 /// - `data`: Contains settings for collection limits and permissions.350 pub fn init_collection(351 owner: T::CrossAccountId,352 data: CreateCollectionData<T::AccountId>,353 ) -> Result<CollectionId, DispatchError> {354 <PalletCommon<T>>::init_collection(owner, data, false)355 }356357 /// Destroy RFT collection358 ///359 /// `destroy_collection` will throw error if collection contains any tokens.360 /// Only owner can destroy collection.361 pub fn destroy_collection(362 collection: RefungibleHandle<T>,363 sender: &T::CrossAccountId,364 ) -> DispatchResult {365 let id = collection.id;366367 if Self::collection_has_tokens(id) {368 return Err(<CommonError<T>>::CantDestroyNotEmptyCollection.into());369 }370371 // =========372373 PalletCommon::destroy_collection(collection.0, sender)?;374375 <TokensMinted<T>>::remove(id);376 <TokensBurnt<T>>::remove(id);377 <TokenData<T>>::remove_prefix((id,), None);378 <TotalSupply<T>>::remove_prefix((id,), None);379 <Balance<T>>::remove_prefix((id,), None);380 <Allowance<T>>::remove_prefix((id,), None);381 <Owned<T>>::remove_prefix((id,), None);382 <AccountBalance<T>>::remove_prefix((id,), None);383 Ok(())384 }385386 fn collection_has_tokens(collection_id: CollectionId) -> bool {387 <TokenData<T>>::iter_prefix((collection_id,))388 .next()389 .is_some()390 }391392 pub fn burn_token_unchecked(393 collection: &RefungibleHandle<T>,394 token_id: TokenId,395 ) -> DispatchResult {396 let burnt = <TokensBurnt<T>>::get(collection.id)397 .checked_add(1)398 .ok_or(ArithmeticError::Overflow)?;399400 <TokensBurnt<T>>::insert(collection.id, burnt);401 <TokenData<T>>::remove((collection.id, token_id));402 <TokenProperties<T>>::remove((collection.id, token_id));403 <TotalSupply<T>>::remove((collection.id, token_id));404 <Balance<T>>::remove_prefix((collection.id, token_id), None);405 <Allowance<T>>::remove_prefix((collection.id, token_id), None);406 // TODO: ERC721 transfer event407 Ok(())408 }409410 /// Burn RFT token pieces411 ///412 /// `burn` will decrease total amount of token pieces and amount owned by sender.413 /// `burn` can be called even if there are multiple owners of the RFT token.414 /// If sender wouldn't have any pieces left after `burn` than she will stop being415 /// one of the owners of the token. If there is no account that owns any pieces of416 /// the token than token will be burned too.417 ///418 /// - `amount`: Amount of token pieces to burn.419 /// - `token`: Token who's pieces should be burned420 /// - `collection`: Collection that contains the token421 pub fn burn(422 collection: &RefungibleHandle<T>,423 owner: &T::CrossAccountId,424 token: TokenId,425 amount: u128,426 ) -> DispatchResult {427 let total_supply = <TotalSupply<T>>::get((collection.id, token))428 .checked_sub(amount)429 .ok_or(<CommonError<T>>::TokenValueTooLow)?;430431 // This was probally last owner of this token?432 if total_supply == 0 {433 // Ensure user actually owns this amount434 ensure!(435 <Balance<T>>::get((collection.id, token, owner)) == amount,436 <CommonError<T>>::TokenValueTooLow437 );438 let account_balance = <AccountBalance<T>>::get((collection.id, owner))439 .checked_sub(1)440 // Should not occur441 .ok_or(ArithmeticError::Underflow)?;442443 // =========444445 <Owned<T>>::remove((collection.id, owner, token));446 <PalletStructure<T>>::unnest_if_nested(owner, collection.id, token);447 <AccountBalance<T>>::insert((collection.id, owner), account_balance);448 Self::burn_token_unchecked(collection, token)?;449 <PalletCommon<T>>::deposit_event(CommonEvent::ItemDestroyed(450 collection.id,451 token,452 owner.clone(),453 amount,454 ));455 return Ok(());456 }457458 let balance = <Balance<T>>::get((collection.id, token, owner))459 .checked_sub(amount)460 .ok_or(<CommonError<T>>::TokenValueTooLow)?;461 let account_balance = if balance == 0 {462 <AccountBalance<T>>::get((collection.id, owner))463 .checked_sub(1)464 // Should not occur465 .ok_or(ArithmeticError::Underflow)?466 } else {467 0468 };469470 // =========471472 if balance == 0 {473 <Owned<T>>::remove((collection.id, owner, token));474 <PalletStructure<T>>::unnest_if_nested(owner, collection.id, token);475 <Balance<T>>::remove((collection.id, token, owner));476 <AccountBalance<T>>::insert((collection.id, owner), account_balance);477 } else {478 <Balance<T>>::insert((collection.id, token, owner), balance);479 }480 <TotalSupply<T>>::insert((collection.id, token), total_supply);481482 <PalletEvm<T>>::deposit_log(483 ERC20Events::Transfer {484 from: *owner.as_eth(),485 to: H160::default(),486 value: amount.into(),487 }488 .to_log(T::EvmTokenAddressMapping::token_to_address(489 collection.id,490 token,491 )),492 );493 <PalletCommon<T>>::deposit_event(CommonEvent::ItemDestroyed(494 collection.id,495 token,496 owner.clone(),497 amount,498 ));499 Ok(())500 }501502 #[transactional]503 fn modify_token_properties(504 collection: &RefungibleHandle<T>,505 sender: &T::CrossAccountId,506 token_id: TokenId,507 properties: impl Iterator<Item = (PropertyKey, Option<PropertyValue>)>,508 is_token_create: bool,509 nesting_budget: &dyn Budget,510 ) -> DispatchResult {511 let is_collection_admin = || collection.is_owner_or_admin(sender);512 let is_token_owner = || -> Result<bool, DispatchError> {513 let balance = collection.balance(sender.clone(), token_id);514 let total_pieces: u128 =515 Self::total_pieces(collection.id, token_id).unwrap_or(u128::MAX);516 if balance != total_pieces {517 return Ok(false);518 }519520 let is_bundle_owner = <PalletStructure<T>>::check_indirectly_owned(521 sender.clone(),522 collection.id,523 token_id,524 None,525 nesting_budget,526 )?;527528 Ok(is_bundle_owner)529 };530531 for (key, value) in properties {532 let permission = <PalletCommon<T>>::property_permissions(collection.id)533 .get(&key)534 .cloned()535 .unwrap_or_else(PropertyPermission::none);536537 let is_property_exists = TokenProperties::<T>::get((collection.id, token_id))538 .get(&key)539 .is_some();540541 match permission {542 PropertyPermission { mutable: false, .. } if is_property_exists => {543 return Err(<CommonError<T>>::NoPermission.into());544 }545546 PropertyPermission {547 collection_admin,548 token_owner,549 ..550 } => {551 //TODO: investigate threats during public minting.552 let is_token_create =553 is_token_create && (collection_admin || token_owner) && value.is_some();554 if !(is_token_create555 || (collection_admin && is_collection_admin())556 || (token_owner && is_token_owner()?))557 {558 fail!(<CommonError<T>>::NoPermission);559 }560 }561 }562563 match value {564 Some(value) => {565 <TokenProperties<T>>::try_mutate((collection.id, token_id), |properties| {566 properties.try_set(key.clone(), value)567 })568 .map_err(<CommonError<T>>::from)?;569570 <PalletCommon<T>>::deposit_event(CommonEvent::TokenPropertySet(571 collection.id,572 token_id,573 key,574 ));575 }576 None => {577 <TokenProperties<T>>::try_mutate((collection.id, token_id), |properties| {578 properties.remove(&key)579 })580 .map_err(<CommonError<T>>::from)?;581582 <PalletCommon<T>>::deposit_event(CommonEvent::TokenPropertyDeleted(583 collection.id,584 token_id,585 key,586 ));587 }588 }589 }590591 Ok(())592 }593594 pub fn set_token_properties(595 collection: &RefungibleHandle<T>,596 sender: &T::CrossAccountId,597 token_id: TokenId,598 properties: impl Iterator<Item = Property>,599 is_token_create: bool,600 nesting_budget: &dyn Budget,601 ) -> DispatchResult {602 Self::modify_token_properties(603 collection,604 sender,605 token_id,606 properties.map(|p| (p.key, Some(p.value))),607 is_token_create,608 nesting_budget,609 )610 }611612 pub fn set_token_property(613 collection: &RefungibleHandle<T>,614 sender: &T::CrossAccountId,615 token_id: TokenId,616 property: Property,617 nesting_budget: &dyn Budget,618 ) -> DispatchResult {619 let is_token_create = false;620621 Self::set_token_properties(622 collection,623 sender,624 token_id,625 [property].into_iter(),626 is_token_create,627 nesting_budget,628 )629 }630631 pub fn delete_token_properties(632 collection: &RefungibleHandle<T>,633 sender: &T::CrossAccountId,634 token_id: TokenId,635 property_keys: impl Iterator<Item = PropertyKey>,636 nesting_budget: &dyn Budget,637 ) -> DispatchResult {638 let is_token_create = false;639640 Self::modify_token_properties(641 collection,642 sender,643 token_id,644 property_keys.into_iter().map(|key| (key, None)),645 is_token_create,646 nesting_budget,647 )648 }649650 pub fn delete_token_property(651 collection: &RefungibleHandle<T>,652 sender: &T::CrossAccountId,653 token_id: TokenId,654 property_key: PropertyKey,655 nesting_budget: &dyn Budget,656 ) -> DispatchResult {657 Self::delete_token_properties(658 collection,659 sender,660 token_id,661 [property_key].into_iter(),662 nesting_budget,663 )664 }665666 /// Transfer RFT token pieces from one account to another.667 ///668 /// If the sender is no longer owns any pieces after the `transfer` than she stops being an owner of the token.669 ///670 /// - `from`: Owner of token pieces to transfer.671 /// - `to`: Recepient of transfered token pieces.672 /// - `amount`: Amount of token pieces to transfer.673 /// - `token`: Token whos pieces should be transfered674 /// - `collection`: Collection that contains the token675 pub fn transfer(676 collection: &RefungibleHandle<T>,677 from: &T::CrossAccountId,678 to: &T::CrossAccountId,679 token: TokenId,680 amount: u128,681 nesting_budget: &dyn Budget,682 ) -> DispatchResult {683 ensure!(684 collection.limits.transfers_enabled(),685 <CommonError<T>>::TransferNotAllowed686 );687688 if collection.permissions.access() == AccessMode::AllowList {689 collection.check_allowlist(from)?;690 collection.check_allowlist(to)?;691 }692 <PalletCommon<T>>::ensure_correct_receiver(to)?;693694 let balance_from = <Balance<T>>::get((collection.id, token, from))695 .checked_sub(amount)696 .ok_or(<CommonError<T>>::TokenValueTooLow)?;697 let mut create_target = false;698 let from_to_differ = from != to;699 let balance_to = if from != to {700 let old_balance = <Balance<T>>::get((collection.id, token, to));701 if old_balance == 0 {702 create_target = true;703 }704 Some(705 old_balance706 .checked_add(amount)707 .ok_or(ArithmeticError::Overflow)?,708 )709 } else {710 None711 };712713 let account_balance_from = if balance_from == 0 {714 Some(715 <AccountBalance<T>>::get((collection.id, from))716 .checked_sub(1)717 // Should not occur718 .ok_or(ArithmeticError::Underflow)?,719 )720 } else {721 None722 };723 // Account data is created in token, AccountBalance should be increased724 // But only if from != to as we shouldn't check overflow in this case725 let account_balance_to = if create_target && from_to_differ {726 let account_balance_to = <AccountBalance<T>>::get((collection.id, to))727 .checked_add(1)728 .ok_or(ArithmeticError::Overflow)?;729 ensure!(730 account_balance_to < collection.limits.account_token_ownership_limit(),731 <CommonError<T>>::AccountTokenLimitExceeded,732 );733734 Some(account_balance_to)735 } else {736 None737 };738739 // =========740741 <PalletStructure<T>>::nest_if_sent_to_token(742 from.clone(),743 to,744 collection.id,745 token,746 nesting_budget,747 )?;748749 if let Some(balance_to) = balance_to {750 // from != to751 if balance_from == 0 {752 <Balance<T>>::remove((collection.id, token, from));753 <PalletStructure<T>>::unnest_if_nested(from, collection.id, token);754 } else {755 <Balance<T>>::insert((collection.id, token, from), balance_from);756 }757 <Balance<T>>::insert((collection.id, token, to), balance_to);758 if let Some(account_balance_from) = account_balance_from {759 <AccountBalance<T>>::insert((collection.id, from), account_balance_from);760 <Owned<T>>::remove((collection.id, from, token));761 }762 if let Some(account_balance_to) = account_balance_to {763 <AccountBalance<T>>::insert((collection.id, to), account_balance_to);764 <Owned<T>>::insert((collection.id, to, token), true);765 }766 }767768 <PalletEvm<T>>::deposit_log(769 ERC20Events::Transfer {770 from: *from.as_eth(),771 to: *to.as_eth(),772 value: amount.into(),773 }774 .to_log(T::EvmTokenAddressMapping::token_to_address(775 collection.id,776 token,777 )),778 );779 <PalletCommon<T>>::deposit_event(CommonEvent::Transfer(780 collection.id,781 token,782 from.clone(),783 to.clone(),784 amount,785 ));786 Ok(())787 }788789 /// Batched operation to create multiple RFT tokens.790 ///791 /// Same as `create_item` but creates multiple tokens.792 ///793 /// - `data`: Same as 'data` in `create_item` but contains data for multiple tokens.794 pub fn create_multiple_items(795 collection: &RefungibleHandle<T>,796 sender: &T::CrossAccountId,797 data: Vec<CreateRefungibleExData<T::CrossAccountId>>,798 nesting_budget: &dyn Budget,799 ) -> DispatchResult {800 if !collection.is_owner_or_admin(sender) {801 ensure!(802 collection.permissions.mint_mode(),803 <CommonError<T>>::PublicMintingNotAllowed804 );805 collection.check_allowlist(sender)?;806807 for item in data.iter() {808 for user in item.users.keys() {809 collection.check_allowlist(user)?;810 }811 }812 }813814 for item in data.iter() {815 for (owner, _) in item.users.iter() {816 <PalletCommon<T>>::ensure_correct_receiver(owner)?;817 }818 }819820 // Total pieces per tokens821 let totals = data822 .iter()823 .map(|data| {824 Ok(data825 .users826 .iter()827 .map(|u| u.1)828 .try_fold(0u128, |acc, v| acc.checked_add(*v))829 .ok_or(ArithmeticError::Overflow)?)830 })831 .collect::<Result<Vec<_>, DispatchError>>()?;832 for total in &totals {833 ensure!(834 *total <= MAX_REFUNGIBLE_PIECES,835 <Error<T>>::WrongRefungiblePieces836 );837 }838839 let first_token_id = <TokensMinted<T>>::get(collection.id);840 let tokens_minted = first_token_id841 .checked_add(data.len() as u32)842 .ok_or(ArithmeticError::Overflow)?;843 ensure!(844 tokens_minted < collection.limits.token_limit(),845 <CommonError<T>>::CollectionTokenLimitExceeded846 );847848 let mut balances = BTreeMap::new();849 for data in &data {850 for owner in data.users.keys() {851 let balance = balances852 .entry(owner)853 .or_insert_with(|| <AccountBalance<T>>::get((collection.id, owner)));854 *balance = balance.checked_add(1).ok_or(ArithmeticError::Overflow)?;855856 ensure!(857 *balance <= collection.limits.account_token_ownership_limit(),858 <CommonError<T>>::AccountTokenLimitExceeded,859 );860 }861 }862863 for (i, token) in data.iter().enumerate() {864 let token_id = TokenId(first_token_id + i as u32 + 1);865 for (to, _) in token.users.iter() {866 <PalletStructure<T>>::check_nesting(867 sender.clone(),868 to,869 collection.id,870 token_id,871 nesting_budget,872 )?;873 }874 }875876 // =========877878 with_transaction(|| {879 for (i, data) in data.iter().enumerate() {880 let token_id = first_token_id + i as u32 + 1;881 <TotalSupply<T>>::insert((collection.id, token_id), totals[i]);882883 <TokenData<T>>::insert(884 (collection.id, token_id),885 ItemData {886 const_data: data.const_data.clone(),887 },888 );889890 for (user, amount) in data.users.iter() {891 if *amount == 0 {892 continue;893 }894 <Balance<T>>::insert((collection.id, token_id, &user), amount);895 <Owned<T>>::insert((collection.id, &user, TokenId(token_id)), true);896 <PalletStructure<T>>::nest_if_sent_to_token_unchecked(897 user,898 collection.id,899 TokenId(token_id),900 );901 }902903 if let Err(e) = Self::set_token_properties(904 collection,905 sender,906 TokenId(token_id),907 data.properties.clone().into_iter(),908 true,909 nesting_budget,910 ) {911 return TransactionOutcome::Rollback(Err(e));912 }913 }914 TransactionOutcome::Commit(Ok(()))915 })?;916917 <TokensMinted<T>>::insert(collection.id, tokens_minted);918919 for (account, balance) in balances {920 <AccountBalance<T>>::insert((collection.id, account), balance);921 }922923 for (i, token) in data.into_iter().enumerate() {924 let token_id = first_token_id + i as u32 + 1;925926 for (user, amount) in token.users.into_iter() {927 if amount == 0 {928 continue;929 }930931 <PalletEvm<T>>::deposit_log(932 ERC20Events::Transfer {933 from: H160::default(),934 to: *user.as_eth(),935 value: amount.into(),936 }937 .to_log(T::EvmTokenAddressMapping::token_to_address(938 collection.id,939 TokenId(token_id),940 )),941 );942 <PalletCommon<T>>::deposit_event(CommonEvent::ItemCreated(943 collection.id,944 TokenId(token_id),945 user,946 amount,947 ));948 }949 }950 Ok(())951 }952953 pub fn set_allowance_unchecked(954 collection: &RefungibleHandle<T>,955 sender: &T::CrossAccountId,956 spender: &T::CrossAccountId,957 token: TokenId,958 amount: u128,959 ) {960 if amount == 0 {961 <Allowance<T>>::remove((collection.id, token, sender, spender));962 } else {963 <Allowance<T>>::insert((collection.id, token, sender, spender), amount);964 }965966 <PalletEvm<T>>::deposit_log(967 ERC20Events::Approval {968 owner: *sender.as_eth(),969 spender: *spender.as_eth(),970 value: amount.into(),971 }972 .to_log(T::EvmTokenAddressMapping::token_to_address(973 collection.id,974 token,975 )),976 );977 <PalletCommon<T>>::deposit_event(CommonEvent::Approved(978 collection.id,979 token,980 sender.clone(),981 spender.clone(),982 amount,983 ))984 }985986 /// Set allowance for the spender to `transfer` or `burn` sender's token pieces.987 ///988 /// - `amount`: Amount of token pieces the spender is allowed to `transfer` or `burn.989 pub fn set_allowance(990 collection: &RefungibleHandle<T>,991 sender: &T::CrossAccountId,992 spender: &T::CrossAccountId,993 token: TokenId,994 amount: u128,995 ) -> DispatchResult {996 if collection.permissions.access() == AccessMode::AllowList {997 collection.check_allowlist(sender)?;998 collection.check_allowlist(spender)?;999 }10001001 <PalletCommon<T>>::ensure_correct_receiver(spender)?;10021003 if <Balance<T>>::get((collection.id, token, sender)) < amount {1004 ensure!(1005 collection.ignores_owned_amount(sender) && Self::token_exists(collection, token),1006 <CommonError<T>>::CantApproveMoreThanOwned1007 );1008 }10091010 // =========10111012 Self::set_allowance_unchecked(collection, sender, spender, token, amount);1013 Ok(())1014 }10151016 /// Returns allowance, which should be set after transaction1017 fn check_allowed(1018 collection: &RefungibleHandle<T>,1019 spender: &T::CrossAccountId,1020 from: &T::CrossAccountId,1021 token: TokenId,1022 amount: u128,1023 nesting_budget: &dyn Budget,1024 ) -> Result<Option<u128>, DispatchError> {1025 if spender.conv_eq(from) {1026 return Ok(None);1027 }1028 if collection.permissions.access() == AccessMode::AllowList {1029 // `from`, `to` checked in [`transfer`]1030 collection.check_allowlist(spender)?;1031 }1032 if let Some(source) = T::CrossTokenAddressMapping::address_to_token(from) {1033 // TODO: should collection owner be allowed to perform this transfer?1034 ensure!(1035 <PalletStructure<T>>::check_indirectly_owned(1036 spender.clone(),1037 source.0,1038 source.1,1039 None,1040 nesting_budget1041 )?,1042 <CommonError<T>>::ApprovedValueTooLow,1043 );1044 return Ok(None);1045 }1046 let allowance =1047 <Allowance<T>>::get((collection.id, token, from, &spender)).checked_sub(amount);1048 if allowance.is_none() {1049 ensure!(1050 collection.ignores_allowance(spender),1051 <CommonError<T>>::ApprovedValueTooLow1052 );1053 }1054 Ok(allowance)1055 }10561057 /// Transfer RFT token pieces from one account to another.1058 ///1059 /// Same as the [`transfer`] but spender doesn't needs to be an owner of the token pieces.1060 /// The owner should set allowance for the spender to transfer pieces.1061 ///1062 /// [`transfer`]: struct.Pallet.html#method.transfer1063 pub fn transfer_from(1064 collection: &RefungibleHandle<T>,1065 spender: &T::CrossAccountId,1066 from: &T::CrossAccountId,1067 to: &T::CrossAccountId,1068 token: TokenId,1069 amount: u128,1070 nesting_budget: &dyn Budget,1071 ) -> DispatchResult {1072 let allowance =1073 Self::check_allowed(collection, spender, from, token, amount, nesting_budget)?;10741075 // =========10761077 Self::transfer(collection, from, to, token, amount, nesting_budget)?;1078 if let Some(allowance) = allowance {1079 Self::set_allowance_unchecked(collection, from, spender, token, allowance);1080 }1081 Ok(())1082 }10831084 /// Burn RFT token pieces from the account.1085 ///1086 /// Same as the [`burn`] but spender doesn't need to be an owner of the token pieces. The owner should1087 /// set allowance for the spender to burn pieces1088 ///1089 /// [`burn`]: struct.Pallet.html#method.burn1090 pub fn burn_from(1091 collection: &RefungibleHandle<T>,1092 spender: &T::CrossAccountId,1093 from: &T::CrossAccountId,1094 token: TokenId,1095 amount: u128,1096 nesting_budget: &dyn Budget,1097 ) -> DispatchResult {1098 let allowance =1099 Self::check_allowed(collection, spender, from, token, amount, nesting_budget)?;11001101 // =========11021103 Self::burn(collection, from, token, amount)?;1104 if let Some(allowance) = allowance {1105 Self::set_allowance_unchecked(collection, from, spender, token, allowance);1106 }1107 Ok(())1108 }11091110 /// Create RFT token.1111 ///1112 /// The sender should be the owner/admin of the collection or collection should be configured1113 /// to allow public minting.1114 ///1115 /// - `data`: Contains list of users who will become the owners of the token pieces and amount1116 /// of token pieces they will receive.1117 pub fn create_item(1118 collection: &RefungibleHandle<T>,1119 sender: &T::CrossAccountId,1120 data: CreateRefungibleExData<T::CrossAccountId>,1121 nesting_budget: &dyn Budget,1122 ) -> DispatchResult {1123 Self::create_multiple_items(collection, sender, vec![data], nesting_budget)1124 }11251126 /// Repartition RFT token.1127 ///1128 /// `repartition` will set token balance of the sender and total amount of token pieces.1129 /// Sender should own all of the token pieces. `repartition' could be done even if some1130 /// token pieces were burned before.1131 ///1132 /// - `amount`: Total amount of token pieces that the token will have after `repartition`.1133 pub fn repartition(1134 collection: &RefungibleHandle<T>,1135 owner: &T::CrossAccountId,1136 token: TokenId,1137 amount: u128,1138 ) -> DispatchResult {1139 ensure!(1140 amount <= MAX_REFUNGIBLE_PIECES,1141 <Error<T>>::WrongRefungiblePieces1142 );1143 ensure!(amount > 0, <CommonError<T>>::TokenValueTooLow);1144 // Ensure user owns all pieces1145 let total_pieces = Self::total_pieces(collection.id, token).unwrap_or(u128::MAX);1146 let balance = <Balance<T>>::get((collection.id, token, owner));1147 ensure!(1148 total_pieces == balance,1149 <Error<T>>::RepartitionWhileNotOwningAllPieces1150 );11511152 <Balance<T>>::insert((collection.id, token, owner), amount);1153 <TotalSupply<T>>::insert((collection.id, token), amount);1154 Ok(())1155 }11561157 fn token_owner(collection_id: CollectionId, token_id: TokenId) -> Option<T::CrossAccountId> {1158 let mut owner = None;1159 let mut count = 0;1160 for key in Balance::<T>::iter_key_prefix((collection_id, token_id)) {1161 count += 1;1162 if count > 1 {1163 return None;1164 }1165 owner = Some(key);1166 }1167 owner1168 }11691170 fn total_pieces(collection_id: CollectionId, token_id: TokenId) -> Option<u128> {1171 <TotalSupply<T>>::try_get((collection_id, token_id)).ok()1172 }11731174 pub fn set_collection_properties(1175 collection: &RefungibleHandle<T>,1176 sender: &T::CrossAccountId,1177 properties: Vec<Property>,1178 ) -> DispatchResult {1179 <PalletCommon<T>>::set_collection_properties(collection, sender, properties)1180 }11811182 pub fn delete_collection_properties(1183 collection: &RefungibleHandle<T>,1184 sender: &T::CrossAccountId,1185 property_keys: Vec<PropertyKey>,1186 ) -> DispatchResult {1187 <PalletCommon<T>>::delete_collection_properties(collection, sender, property_keys)1188 }11891190 pub fn set_token_property_permissions(1191 collection: &RefungibleHandle<T>,1192 sender: &T::CrossAccountId,1193 property_permissions: Vec<PropertyKeyPermission>,1194 ) -> DispatchResult {1195 <PalletCommon<T>>::set_token_property_permissions(collection, sender, property_permissions)1196 }1197}