12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788#![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 145 NotRefungibleDataUsedToMintFungibleCollectionToken,146 147 WrongRefungiblePieces,148 149 RepartitionWhileNotOwningAllPieces,150 151 RefungibleDisallowsNesting,152 153 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 171 #[pallet::storage]172 pub type TokensMinted<T: Config> =173 StorageMap<Hasher = Twox64Concat, Key = CollectionId, Value = u32, QueryKind = ValueQuery>;174175 176 #[pallet::storage]177 pub type TokensBurnt<T: Config> =178 StorageMap<Hasher = Twox64Concat, Key = CollectionId, Value = u32, QueryKind = ValueQuery>;179180 181 #[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 198 #[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 206 #[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 218 #[pallet::storage]219 pub type AccountBalance<T: Config> = StorageNMap<220 Key = (221 Key<Twox64Concat, CollectionId>,222 223 Key<Blake2_128Concat, T::CrossAccountId>,224 ),225 Value = u32,226 QueryKind = ValueQuery,227 >;228229 230 #[pallet::storage]231 pub type Balance<T: Config> = StorageNMap<232 Key = (233 Key<Twox64Concat, CollectionId>,234 Key<Twox64Concat, TokenId>,235 236 Key<Blake2_128Concat, T::CrossAccountId>,237 ),238 Value = u128,239 QueryKind = ValueQuery,240 >;241242 243 #[pallet::storage]244 pub type Allowance<T: Config> = StorageNMap<245 Key = (246 Key<Twox64Concat, CollectionId>,247 Key<Twox64Concat, TokenId>,248 249 Key<Blake2_128, T::CrossAccountId>,250 251 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 303 pub fn total_supply(collection: &RefungibleHandle<T>) -> u32 {304 <TokensMinted<T>>::get(collection.id) - <TokensBurnt<T>>::get(collection.id)305 }306307 308 309 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}342343344impl<T: Config> Pallet<T> {345 346 347 348 349 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 358 359 360 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 407 Ok(())408 }409410 411 412 413 414 415 416 417 418 419 420 421 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 432 if total_supply == 0 {433 434 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 441 .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 465 .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 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 667 668 669 670 671 672 673 674 675 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 718 .ok_or(ArithmeticError::Underflow)?,719 )720 } else {721 None722 };723 724 725 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 751 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 790 791 792 793 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 821 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 987 988 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 1017 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 1030 collection.check_allowlist(spender)?;1031 }1032 if let Some(source) = T::CrossTokenAddressMapping::address_to_token(from) {1033 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 1058 1059 1060 1061 1062 1063 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 1085 1086 1087 1088 1089 1090 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 1111 1112 1113 1114 1115 1116 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 1127 1128 1129 1130 1131 1132 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 1145 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}