git.delta.rocks / unique-network / refs/commits / f779788ead2c

difftreelog

chore fix cargo fmt

Grigoriy Simonov2022-07-22parent: #6024373.patch.diff
in: master

2 files changed

modifiedpallets/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))]
modifiedpallets/refungible/src/lib.rsdiffbeforeafterboth
after · pallets/refungible/src/lib.rs
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}