difftreelog
feat(nonfungible) transfer from parent token
in: master
2 files changed
pallets/nonfungible/Cargo.tomldiffbeforeafterboth--- a/pallets/nonfungible/Cargo.toml
+++ b/pallets/nonfungible/Cargo.toml
@@ -18,6 +18,7 @@
sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }
pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.20" }
pallet-common = { default-features = false, path = '../common' }
+pallet-structure = { default-features = false, path = '../structure' }
up-data-structs = { default-features = false, path = '../../primitives/data-structs' }
evm-coder = { default-features = false, path = '../../crates/evm-coder' }
pallet-evm-coder-substrate = { default-features = false, path = '../evm-coder-substrate' }
@@ -36,6 +37,7 @@
"sp-std/std",
"up-data-structs/std",
"pallet-common/std",
+ "pallet-structure/std",
"evm-coder/std",
"ethereum/std",
"pallet-evm-coder-substrate/std",
pallets/nonfungible/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#![cfg_attr(not(feature = "std"), no_std)]1819use erc::ERC721Events;20use frame_support::{BoundedVec, ensure, fail};21use up_data_structs::{22 AccessMode, CollectionId, CustomDataLimit, TokenId, CreateCollectionData, CreateNftExData,23 mapping::TokenAddressMapping, NestingRule,24};25use pallet_evm::account::CrossAccountId;26use pallet_common::{27 Error as CommonError, Pallet as PalletCommon, Event as CommonEvent,28 CollectionHandle, dispatch::CollectionDispatch,29};30use pallet_evm_coder_substrate::{SubstrateRecorder, WithRecorder};31use sp_core::H160;32use sp_runtime::{ArithmeticError, DispatchError, DispatchResult};33use sp_std::{vec::Vec, vec};34use core::ops::Deref;35use sp_std::collections::btree_map::BTreeMap;36use codec::{Encode, Decode, MaxEncodedLen};37use scale_info::TypeInfo;3839pub use pallet::*;40#[cfg(feature = "runtime-benchmarks")]41pub mod benchmarking;42pub mod common;43pub mod erc;44pub mod weights;4546pub type CreateItemData<T> = CreateNftExData<<T as pallet_evm::account::Config>::CrossAccountId>;47pub(crate) type SelfWeightOf<T> = <T as Config>::WeightInfo;4849#[derive(Encode, Decode, TypeInfo, MaxEncodedLen)]50pub struct ItemData<CrossAccountId> {51 pub const_data: BoundedVec<u8, CustomDataLimit>,52 pub variable_data: BoundedVec<u8, CustomDataLimit>,53 pub owner: CrossAccountId,54}5556#[frame_support::pallet]57pub mod pallet {58 use super::*;59 use frame_support::{Blake2_128Concat, Twox64Concat, pallet_prelude::*, storage::Key};60 use up_data_structs::{CollectionId, TokenId};61 use super::weights::WeightInfo;6263 #[pallet::error]64 pub enum Error<T> {65 /// Not Nonfungible item data used to mint in Nonfungible collection.66 NotNonfungibleDataUsedToMintFungibleCollectionToken,67 /// Used amount > 1 with NFT68 NonfungibleItemsHaveNoAmount,69 }7071 #[pallet::config]72 pub trait Config: frame_system::Config + pallet_common::Config {73 type WeightInfo: WeightInfo;74 }7576 #[pallet::pallet]77 #[pallet::generate_store(pub(super) trait Store)]78 pub struct Pallet<T>(_);7980 #[pallet::storage]81 pub type TokensMinted<T: Config> =82 StorageMap<Hasher = Twox64Concat, Key = CollectionId, Value = u32, QueryKind = ValueQuery>;83 #[pallet::storage]84 pub type TokensBurnt<T: Config> =85 StorageMap<Hasher = Twox64Concat, Key = CollectionId, Value = u32, QueryKind = ValueQuery>;8687 #[pallet::storage]88 pub type TokenData<T: Config> = StorageNMap<89 Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),90 Value = ItemData<T::CrossAccountId>,91 QueryKind = OptionQuery,92 >;9394 /// Used to enumerate tokens owned by account95 #[pallet::storage]96 pub type Owned<T: Config> = StorageNMap<97 Key = (98 Key<Twox64Concat, CollectionId>,99 Key<Blake2_128Concat, T::CrossAccountId>,100 Key<Twox64Concat, TokenId>,101 ),102 Value = bool,103 QueryKind = ValueQuery,104 >;105106 #[pallet::storage]107 pub type AccountBalance<T: Config> = StorageNMap<108 Key = (109 Key<Twox64Concat, CollectionId>,110 Key<Blake2_128Concat, T::CrossAccountId>,111 ),112 Value = u32,113 QueryKind = ValueQuery,114 >;115116 #[pallet::storage]117 pub type Allowance<T: Config> = StorageNMap<118 Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),119 Value = T::CrossAccountId,120 QueryKind = OptionQuery,121 >;122}123124pub struct NonfungibleHandle<T: Config>(pallet_common::CollectionHandle<T>);125impl<T: Config> NonfungibleHandle<T> {126 pub fn cast(inner: pallet_common::CollectionHandle<T>) -> Self {127 Self(inner)128 }129 pub fn into_inner(self) -> pallet_common::CollectionHandle<T> {130 self.0131 }132}133impl<T: Config> WithRecorder<T> for NonfungibleHandle<T> {134 fn recorder(&self) -> &SubstrateRecorder<T> {135 self.0.recorder()136 }137 fn into_recorder(self) -> SubstrateRecorder<T> {138 self.0.into_recorder()139 }140}141impl<T: Config> Deref for NonfungibleHandle<T> {142 type Target = pallet_common::CollectionHandle<T>;143144 fn deref(&self) -> &Self::Target {145 &self.0146 }147}148149impl<T: Config> Pallet<T> {150 pub fn total_supply(collection: &NonfungibleHandle<T>) -> u32 {151 <TokensMinted<T>>::get(collection.id) - <TokensBurnt<T>>::get(collection.id)152 }153 pub fn token_exists(collection: &NonfungibleHandle<T>, token: TokenId) -> bool {154 <TokenData<T>>::contains_key((collection.id, token))155 }156}157158// unchecked calls skips any permission checks159impl<T: Config> Pallet<T> {160 pub fn init_collection(161 owner: T::AccountId,162 data: CreateCollectionData<T::AccountId>,163 ) -> Result<CollectionId, DispatchError> {164 <PalletCommon<T>>::init_collection(owner, data)165 }166 pub fn destroy_collection(167 collection: NonfungibleHandle<T>,168 sender: &T::CrossAccountId,169 ) -> DispatchResult {170 let id = collection.id;171172 // =========173174 PalletCommon::destroy_collection(collection.0, sender)?;175176 <TokenData<T>>::remove_prefix((id,), None);177 <Owned<T>>::remove_prefix((id,), None);178 <TokensMinted<T>>::remove(id);179 <TokensBurnt<T>>::remove(id);180 <Allowance<T>>::remove_prefix((id,), None);181 <AccountBalance<T>>::remove_prefix((id,), None);182 Ok(())183 }184185 pub fn burn(186 collection: &NonfungibleHandle<T>,187 sender: &T::CrossAccountId,188 token: TokenId,189 ) -> DispatchResult {190 let token_data =191 <TokenData<T>>::get((collection.id, token)).ok_or(<CommonError<T>>::TokenNotFound)?;192 ensure!(193 &token_data.owner == sender194 || (collection.limits.owner_can_transfer() && collection.is_owner_or_admin(sender)),195 <CommonError<T>>::NoPermission196 );197198 if collection.access == AccessMode::AllowList {199 collection.check_allowlist(sender)?;200 }201202 let burnt = <TokensBurnt<T>>::get(collection.id)203 .checked_add(1)204 .ok_or(ArithmeticError::Overflow)?;205206 let balance = <AccountBalance<T>>::get((collection.id, token_data.owner.clone()))207 .checked_sub(1)208 .ok_or(ArithmeticError::Overflow)?;209210 if balance == 0 {211 <AccountBalance<T>>::remove((collection.id, token_data.owner.clone()));212 } else {213 <AccountBalance<T>>::insert((collection.id, token_data.owner.clone()), balance);214 }215 // =========216217 <Owned<T>>::remove((collection.id, &token_data.owner, token));218 <TokensBurnt<T>>::insert(collection.id, burnt);219 <TokenData<T>>::remove((collection.id, token));220 let old_spender = <Allowance<T>>::take((collection.id, token));221222 if let Some(old_spender) = old_spender {223 <PalletCommon<T>>::deposit_event(CommonEvent::Approved(224 collection.id,225 token,226 sender.clone(),227 old_spender,228 0,229 ));230 }231232 collection.log_mirrored(ERC721Events::Transfer {233 from: *token_data.owner.as_eth(),234 to: H160::default(),235 token_id: token.into(),236 });237 <PalletCommon<T>>::deposit_event(CommonEvent::ItemDestroyed(238 collection.id,239 token,240 token_data.owner,241 1,242 ));243 Ok(())244 }245246 pub fn transfer(247 collection: &NonfungibleHandle<T>,248 from: &T::CrossAccountId,249 to: &T::CrossAccountId,250 token: TokenId,251 ) -> DispatchResult {252 ensure!(253 collection.limits.transfers_enabled(),254 <CommonError<T>>::TransferNotAllowed255 );256257 let token_data =258 <TokenData<T>>::get((collection.id, token)).ok_or(<CommonError<T>>::TokenNotFound)?;259 ensure!(260 &token_data.owner == from261 || (collection.limits.owner_can_transfer() && collection.is_owner_or_admin(from)),262 <CommonError<T>>::NoPermission263 );264265 if collection.access == AccessMode::AllowList {266 collection.check_allowlist(from)?;267 collection.check_allowlist(to)?;268 }269 <PalletCommon<T>>::ensure_correct_receiver(to)?;270271 let balance_from = <AccountBalance<T>>::get((collection.id, from))272 .checked_sub(1)273 .ok_or(<CommonError<T>>::TokenValueTooLow)?;274 let balance_to = if from != to {275 let balance_to = <AccountBalance<T>>::get((collection.id, to))276 .checked_add(1)277 .ok_or(ArithmeticError::Overflow)?;278279 ensure!(280 balance_to < collection.limits.account_token_ownership_limit(),281 <CommonError<T>>::AccountTokenLimitExceeded,282 );283284 Some(balance_to)285 } else {286 None287 };288289 if let Some(target) = T::CrossTokenAddressMapping::address_to_token(to) {290 let handle = <CollectionHandle<T>>::try_get(target.0)?;291 let dispatch = T::CollectionDispatch::dispatch(handle);292 let dispatch = dispatch.as_dyn();293294 // =========295296 dispatch.nest_token(from.clone(), (collection.id, token), target.1)?;297 }298299 <TokenData<T>>::insert(300 (collection.id, token),301 ItemData {302 owner: to.clone(),303 ..token_data304 },305 );306307 if let Some(balance_to) = balance_to {308 // from != to309 if balance_from == 0 {310 <AccountBalance<T>>::remove((collection.id, from));311 } else {312 <AccountBalance<T>>::insert((collection.id, from), balance_from);313 }314 <AccountBalance<T>>::insert((collection.id, to), balance_to);315 <Owned<T>>::remove((collection.id, from, token));316 <Owned<T>>::insert((collection.id, to, token), true);317 }318 Self::set_allowance_unchecked(collection, from, token, None, true);319320 collection.log_mirrored(ERC721Events::Transfer {321 from: *from.as_eth(),322 to: *to.as_eth(),323 token_id: token.into(),324 });325 <PalletCommon<T>>::deposit_event(CommonEvent::Transfer(326 collection.id,327 token,328 from.clone(),329 to.clone(),330 1,331 ));332 Ok(())333 }334335 pub fn create_multiple_items(336 collection: &NonfungibleHandle<T>,337 sender: &T::CrossAccountId,338 data: Vec<CreateItemData<T>>,339 ) -> DispatchResult {340 if !collection.is_owner_or_admin(sender) {341 ensure!(342 collection.mint_mode,343 <CommonError<T>>::PublicMintingNotAllowed344 );345 collection.check_allowlist(sender)?;346347 for item in data.iter() {348 collection.check_allowlist(&item.owner)?;349 }350 }351352 for data in data.iter() {353 <PalletCommon<T>>::ensure_correct_receiver(&data.owner)?;354 }355356 let first_token = <TokensMinted<T>>::get(collection.id);357 let tokens_minted = first_token358 .checked_add(data.len() as u32)359 .ok_or(ArithmeticError::Overflow)?;360 ensure!(361 tokens_minted <= collection.limits.token_limit(),362 <CommonError<T>>::CollectionTokenLimitExceeded363 );364365 let mut balances = BTreeMap::new();366 for data in &data {367 let balance = balances368 .entry(&data.owner)369 .or_insert_with(|| <AccountBalance<T>>::get((collection.id, &data.owner)));370 *balance = balance.checked_add(1).ok_or(ArithmeticError::Overflow)?;371372 ensure!(373 *balance <= collection.limits.account_token_ownership_limit(),374 <CommonError<T>>::AccountTokenLimitExceeded,375 );376 }377378 // =========379380 <TokensMinted<T>>::insert(collection.id, tokens_minted);381 for (account, balance) in balances {382 <AccountBalance<T>>::insert((collection.id, account), balance);383 }384 for (i, data) in data.into_iter().enumerate() {385 let token = first_token + i as u32 + 1;386387 <TokenData<T>>::insert(388 (collection.id, token),389 ItemData {390 const_data: data.const_data,391 variable_data: data.variable_data,392 owner: data.owner.clone(),393 },394 );395 <Owned<T>>::insert((collection.id, &data.owner, token), true);396397 collection.log_mirrored(ERC721Events::Transfer {398 from: H160::default(),399 to: *data.owner.as_eth(),400 token_id: token.into(),401 });402 <PalletCommon<T>>::deposit_event(CommonEvent::ItemCreated(403 collection.id,404 TokenId(token),405 data.owner.clone(),406 1,407 ));408 }409 Ok(())410 }411412 pub fn set_allowance_unchecked(413 collection: &NonfungibleHandle<T>,414 sender: &T::CrossAccountId,415 token: TokenId,416 spender: Option<&T::CrossAccountId>,417 assume_implicit_eth: bool,418 ) {419 if let Some(spender) = spender {420 let old_spender = <Allowance<T>>::get((collection.id, token));421 <Allowance<T>>::insert((collection.id, token), spender);422 // In ERC721 there is only one possible approved user of token, so we set423 // approved user to spender424 collection.log_mirrored(ERC721Events::Approval {425 owner: *sender.as_eth(),426 approved: *spender.as_eth(),427 token_id: token.into(),428 });429 // In Unique chain, any token can have any amount of approved users, so we need to430 // set allowance of old owner to 0, and allowance of new owner to 1431 if old_spender.as_ref() != Some(spender) {432 if let Some(old_owner) = old_spender {433 <PalletCommon<T>>::deposit_event(CommonEvent::Approved(434 collection.id,435 token,436 sender.clone(),437 old_owner,438 0,439 ));440 }441 <PalletCommon<T>>::deposit_event(CommonEvent::Approved(442 collection.id,443 token,444 sender.clone(),445 spender.clone(),446 1,447 ));448 }449 } else {450 let old_spender = <Allowance<T>>::take((collection.id, token));451 if !assume_implicit_eth {452 // In ERC721 there is only one possible approved user of token, so we set453 // approved user to zero address454 collection.log_mirrored(ERC721Events::Approval {455 owner: *sender.as_eth(),456 approved: H160::default(),457 token_id: token.into(),458 });459 }460 // In Unique chain, any token can have any amount of approved users, so we need to461 // set allowance of old owner to 0462 if let Some(old_spender) = old_spender {463 <PalletCommon<T>>::deposit_event(CommonEvent::Approved(464 collection.id,465 token,466 sender.clone(),467 old_spender,468 0,469 ));470 }471 }472 }473474 pub fn set_allowance(475 collection: &NonfungibleHandle<T>,476 sender: &T::CrossAccountId,477 token: TokenId,478 spender: Option<&T::CrossAccountId>,479 ) -> DispatchResult {480 if collection.access == AccessMode::AllowList {481 collection.check_allowlist(sender)?;482 if let Some(spender) = spender {483 collection.check_allowlist(spender)?;484 }485 }486487 if let Some(spender) = spender {488 <PalletCommon<T>>::ensure_correct_receiver(spender)?;489 }490 let token_data =491 <TokenData<T>>::get((collection.id, token)).ok_or(<CommonError<T>>::TokenNotFound)?;492 if &token_data.owner != sender {493 ensure!(494 collection.ignores_owned_amount(sender),495 <CommonError<T>>::CantApproveMoreThanOwned496 );497 }498499 // =========500501 Self::set_allowance_unchecked(collection, sender, token, spender, false);502 Ok(())503 }504505 pub fn transfer_from(506 collection: &NonfungibleHandle<T>,507 spender: &T::CrossAccountId,508 from: &T::CrossAccountId,509 to: &T::CrossAccountId,510 token: TokenId,511 ) -> DispatchResult {512 if spender.conv_eq(from) {513 return Self::transfer(collection, from, to, token);514 }515 if collection.access == AccessMode::AllowList {516 // `from`, `to` checked in [`transfer`]517 collection.check_allowlist(spender)?;518 }519520 if <Allowance<T>>::get((collection.id, token)).as_ref() != Some(spender) {521 ensure!(522 collection.ignores_allowance(spender),523 <CommonError<T>>::ApprovedValueTooLow524 );525 }526527 // =========528529 Self::transfer(collection, from, to, token)?;530 // Allowance is reset in [`transfer`]531 Ok(())532 }533534 pub fn burn_from(535 collection: &NonfungibleHandle<T>,536 spender: &T::CrossAccountId,537 from: &T::CrossAccountId,538 token: TokenId,539 ) -> DispatchResult {540 if spender.conv_eq(from) {541 return Self::burn(collection, from, token);542 }543 if collection.access == AccessMode::AllowList {544 // `from` checked in [`burn`]545 collection.check_allowlist(spender)?;546 }547548 if <Allowance<T>>::get((collection.id, token)).as_ref() != Some(spender) {549 ensure!(550 collection.ignores_allowance(spender),551 <CommonError<T>>::ApprovedValueTooLow552 );553 }554555 // =========556557 Self::burn(collection, from, token)558 }559560 pub fn set_variable_metadata(561 collection: &NonfungibleHandle<T>,562 sender: &T::CrossAccountId,563 token: TokenId,564 data: BoundedVec<u8, CustomDataLimit>,565 ) -> DispatchResult {566 let token_data =567 <TokenData<T>>::get((collection.id, token)).ok_or(<CommonError<T>>::TokenNotFound)?;568 collection.check_can_update_meta(sender, &token_data.owner)?;569570 // =========571572 <TokenData<T>>::insert(573 (collection.id, token),574 ItemData {575 variable_data: data,576 ..token_data577 },578 );579 Ok(())580 }581582 pub fn nest_token(583 handle: &NonfungibleHandle<T>,584 sender: T::CrossAccountId,585 from: CollectionId,586 under: TokenId,587 ) -> DispatchResult {588 fn ensure_sender_allowed<T: Config>(589 collection: CollectionId,590 token: TokenId,591 sender: T::CrossAccountId,592 ) -> DispatchResult {593 ensure!(594 <TokenData<T>>::get((collection, token))595 .ok_or(<CommonError<T>>::TokenNotFound)?596 .owner597 .conv_eq(&sender),598 <CommonError<T>>::OnlyOwnerAllowedToNest,599 );600 Ok(())601 }602 match handle.limits.nesting_rule() {603 NestingRule::Disabled => fail!(<CommonError<T>>::NestingIsDisabled),604 NestingRule::Owner => ensure_sender_allowed::<T>(from, under, sender)?,605 NestingRule::OwnerRestricted(whitelist) => {606 ensure!(607 whitelist.contains(&from),608 <CommonError<T>>::SourceCollectionIsNotAllowedToNest609 );610 ensure_sender_allowed::<T>(from, under, sender)?611 }612 }613 Ok(())614 }615616 /// Delegated to `create_multiple_items`617 pub fn create_item(618 collection: &NonfungibleHandle<T>,619 sender: &T::CrossAccountId,620 data: CreateItemData<T>,621 ) -> DispatchResult {622 Self::create_multiple_items(collection, sender, vec![data])623 }624}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#![cfg_attr(not(feature = "std"), no_std)]1819use erc::ERC721Events;20use frame_support::{BoundedVec, ensure, fail};21use up_data_structs::{22 AccessMode, CollectionId, CustomDataLimit, TokenId, CreateCollectionData, CreateNftExData,23 mapping::TokenAddressMapping, NestingRule,24};25use pallet_evm::account::CrossAccountId;26use pallet_common::{27 Error as CommonError, Pallet as PalletCommon, Event as CommonEvent,28 CollectionHandle, dispatch::CollectionDispatch,29};30use pallet_structure::Pallet as PalletStructure;31use pallet_evm_coder_substrate::{SubstrateRecorder, WithRecorder};32use sp_core::H160;33use sp_runtime::{ArithmeticError, DispatchError, DispatchResult};34use sp_std::{vec::Vec, vec};35use core::ops::Deref;36use sp_std::collections::btree_map::BTreeMap;37use codec::{Encode, Decode, MaxEncodedLen};38use scale_info::TypeInfo;3940pub use pallet::*;41#[cfg(feature = "runtime-benchmarks")]42pub mod benchmarking;43pub mod common;44pub mod erc;45pub mod weights;4647pub type CreateItemData<T> = CreateNftExData<<T as pallet_evm::account::Config>::CrossAccountId>;48pub(crate) type SelfWeightOf<T> = <T as Config>::WeightInfo;4950#[derive(Encode, Decode, TypeInfo, MaxEncodedLen)]51pub struct ItemData<CrossAccountId> {52 pub const_data: BoundedVec<u8, CustomDataLimit>,53 pub variable_data: BoundedVec<u8, CustomDataLimit>,54 pub owner: CrossAccountId,55}5657#[frame_support::pallet]58pub mod pallet {59 use super::*;60 use frame_support::{Blake2_128Concat, Twox64Concat, pallet_prelude::*, storage::Key};61 use up_data_structs::{CollectionId, TokenId};62 use super::weights::WeightInfo;6364 #[pallet::error]65 pub enum Error<T> {66 /// Not Nonfungible item data used to mint in Nonfungible collection.67 NotNonfungibleDataUsedToMintFungibleCollectionToken,68 /// Used amount > 1 with NFT69 NonfungibleItemsHaveNoAmount,70 }7172 #[pallet::config]73 pub trait Config:74 frame_system::Config + pallet_common::Config + pallet_structure::Config75 {76 type WeightInfo: WeightInfo;77 }7879 #[pallet::pallet]80 #[pallet::generate_store(pub(super) trait Store)]81 pub struct Pallet<T>(_);8283 #[pallet::storage]84 pub type TokensMinted<T: Config> =85 StorageMap<Hasher = Twox64Concat, Key = CollectionId, Value = u32, QueryKind = ValueQuery>;86 #[pallet::storage]87 pub type TokensBurnt<T: Config> =88 StorageMap<Hasher = Twox64Concat, Key = CollectionId, Value = u32, QueryKind = ValueQuery>;8990 #[pallet::storage]91 pub type TokenData<T: Config> = StorageNMap<92 Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),93 Value = ItemData<T::CrossAccountId>,94 QueryKind = OptionQuery,95 >;9697 /// Used to enumerate tokens owned by account98 #[pallet::storage]99 pub type Owned<T: Config> = StorageNMap<100 Key = (101 Key<Twox64Concat, CollectionId>,102 Key<Blake2_128Concat, T::CrossAccountId>,103 Key<Twox64Concat, TokenId>,104 ),105 Value = bool,106 QueryKind = ValueQuery,107 >;108109 #[pallet::storage]110 pub type AccountBalance<T: Config> = StorageNMap<111 Key = (112 Key<Twox64Concat, CollectionId>,113 Key<Blake2_128Concat, T::CrossAccountId>,114 ),115 Value = u32,116 QueryKind = ValueQuery,117 >;118119 #[pallet::storage]120 pub type Allowance<T: Config> = StorageNMap<121 Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),122 Value = T::CrossAccountId,123 QueryKind = OptionQuery,124 >;125}126127pub struct NonfungibleHandle<T: Config>(pallet_common::CollectionHandle<T>);128impl<T: Config> NonfungibleHandle<T> {129 pub fn cast(inner: pallet_common::CollectionHandle<T>) -> Self {130 Self(inner)131 }132 pub fn into_inner(self) -> pallet_common::CollectionHandle<T> {133 self.0134 }135}136impl<T: Config> WithRecorder<T> for NonfungibleHandle<T> {137 fn recorder(&self) -> &SubstrateRecorder<T> {138 self.0.recorder()139 }140 fn into_recorder(self) -> SubstrateRecorder<T> {141 self.0.into_recorder()142 }143}144impl<T: Config> Deref for NonfungibleHandle<T> {145 type Target = pallet_common::CollectionHandle<T>;146147 fn deref(&self) -> &Self::Target {148 &self.0149 }150}151152impl<T: Config> Pallet<T> {153 pub fn total_supply(collection: &NonfungibleHandle<T>) -> u32 {154 <TokensMinted<T>>::get(collection.id) - <TokensBurnt<T>>::get(collection.id)155 }156 pub fn token_exists(collection: &NonfungibleHandle<T>, token: TokenId) -> bool {157 <TokenData<T>>::contains_key((collection.id, token))158 }159}160161// unchecked calls skips any permission checks162impl<T: Config> Pallet<T> {163 pub fn init_collection(164 owner: T::AccountId,165 data: CreateCollectionData<T::AccountId>,166 ) -> Result<CollectionId, DispatchError> {167 <PalletCommon<T>>::init_collection(owner, data)168 }169 pub fn destroy_collection(170 collection: NonfungibleHandle<T>,171 sender: &T::CrossAccountId,172 ) -> DispatchResult {173 let id = collection.id;174175 // =========176177 PalletCommon::destroy_collection(collection.0, sender)?;178179 <TokenData<T>>::remove_prefix((id,), None);180 <Owned<T>>::remove_prefix((id,), None);181 <TokensMinted<T>>::remove(id);182 <TokensBurnt<T>>::remove(id);183 <Allowance<T>>::remove_prefix((id,), None);184 <AccountBalance<T>>::remove_prefix((id,), None);185 Ok(())186 }187188 pub fn burn(189 collection: &NonfungibleHandle<T>,190 sender: &T::CrossAccountId,191 token: TokenId,192 ) -> DispatchResult {193 let token_data =194 <TokenData<T>>::get((collection.id, token)).ok_or(<CommonError<T>>::TokenNotFound)?;195 ensure!(196 &token_data.owner == sender197 || (collection.limits.owner_can_transfer() && collection.is_owner_or_admin(sender)),198 <CommonError<T>>::NoPermission199 );200201 if collection.access == AccessMode::AllowList {202 collection.check_allowlist(sender)?;203 }204205 let burnt = <TokensBurnt<T>>::get(collection.id)206 .checked_add(1)207 .ok_or(ArithmeticError::Overflow)?;208209 let balance = <AccountBalance<T>>::get((collection.id, token_data.owner.clone()))210 .checked_sub(1)211 .ok_or(ArithmeticError::Overflow)?;212213 if balance == 0 {214 <AccountBalance<T>>::remove((collection.id, token_data.owner.clone()));215 } else {216 <AccountBalance<T>>::insert((collection.id, token_data.owner.clone()), balance);217 }218 // =========219220 <Owned<T>>::remove((collection.id, &token_data.owner, token));221 <TokensBurnt<T>>::insert(collection.id, burnt);222 <TokenData<T>>::remove((collection.id, token));223 let old_spender = <Allowance<T>>::take((collection.id, token));224225 if let Some(old_spender) = old_spender {226 <PalletCommon<T>>::deposit_event(CommonEvent::Approved(227 collection.id,228 token,229 sender.clone(),230 old_spender,231 0,232 ));233 }234235 collection.log_mirrored(ERC721Events::Transfer {236 from: *token_data.owner.as_eth(),237 to: H160::default(),238 token_id: token.into(),239 });240 <PalletCommon<T>>::deposit_event(CommonEvent::ItemDestroyed(241 collection.id,242 token,243 token_data.owner,244 1,245 ));246 Ok(())247 }248249 pub fn transfer(250 collection: &NonfungibleHandle<T>,251 from: &T::CrossAccountId,252 to: &T::CrossAccountId,253 token: TokenId,254 ) -> DispatchResult {255 ensure!(256 collection.limits.transfers_enabled(),257 <CommonError<T>>::TransferNotAllowed258 );259260 let token_data =261 <TokenData<T>>::get((collection.id, token)).ok_or(<CommonError<T>>::TokenNotFound)?;262 // TODO: require sender to be token, owner, require admins to go through transfer_from263 ensure!(264 &token_data.owner == from265 || (collection.limits.owner_can_transfer() && collection.is_owner_or_admin(from)),266 <CommonError<T>>::NoPermission267 );268269 if collection.access == AccessMode::AllowList {270 collection.check_allowlist(from)?;271 collection.check_allowlist(to)?;272 }273 <PalletCommon<T>>::ensure_correct_receiver(to)?;274275 let balance_from = <AccountBalance<T>>::get((collection.id, from))276 .checked_sub(1)277 .ok_or(<CommonError<T>>::TokenValueTooLow)?;278 let balance_to = if from != to {279 let balance_to = <AccountBalance<T>>::get((collection.id, to))280 .checked_add(1)281 .ok_or(ArithmeticError::Overflow)?;282283 ensure!(284 balance_to < collection.limits.account_token_ownership_limit(),285 <CommonError<T>>::AccountTokenLimitExceeded,286 );287288 Some(balance_to)289 } else {290 None291 };292293 if let Some(target) = T::CrossTokenAddressMapping::address_to_token(to) {294 let handle = <CollectionHandle<T>>::try_get(target.0)?;295 let dispatch = T::CollectionDispatch::dispatch(handle);296 let dispatch = dispatch.as_dyn();297298 // =========299300 dispatch.nest_token(from.clone(), (collection.id, token), target.1)?;301 }302303 <TokenData<T>>::insert(304 (collection.id, token),305 ItemData {306 owner: to.clone(),307 ..token_data308 },309 );310311 if let Some(balance_to) = balance_to {312 // from != to313 if balance_from == 0 {314 <AccountBalance<T>>::remove((collection.id, from));315 } else {316 <AccountBalance<T>>::insert((collection.id, from), balance_from);317 }318 <AccountBalance<T>>::insert((collection.id, to), balance_to);319 <Owned<T>>::remove((collection.id, from, token));320 <Owned<T>>::insert((collection.id, to, token), true);321 }322 Self::set_allowance_unchecked(collection, from, token, None, true);323324 collection.log_mirrored(ERC721Events::Transfer {325 from: *from.as_eth(),326 to: *to.as_eth(),327 token_id: token.into(),328 });329 <PalletCommon<T>>::deposit_event(CommonEvent::Transfer(330 collection.id,331 token,332 from.clone(),333 to.clone(),334 1,335 ));336 Ok(())337 }338339 pub fn create_multiple_items(340 collection: &NonfungibleHandle<T>,341 sender: &T::CrossAccountId,342 data: Vec<CreateItemData<T>>,343 ) -> DispatchResult {344 if !collection.is_owner_or_admin(sender) {345 ensure!(346 collection.mint_mode,347 <CommonError<T>>::PublicMintingNotAllowed348 );349 collection.check_allowlist(sender)?;350351 for item in data.iter() {352 collection.check_allowlist(&item.owner)?;353 }354 }355356 for data in data.iter() {357 <PalletCommon<T>>::ensure_correct_receiver(&data.owner)?;358 }359360 let first_token = <TokensMinted<T>>::get(collection.id);361 let tokens_minted = first_token362 .checked_add(data.len() as u32)363 .ok_or(ArithmeticError::Overflow)?;364 ensure!(365 tokens_minted <= collection.limits.token_limit(),366 <CommonError<T>>::CollectionTokenLimitExceeded367 );368369 let mut balances = BTreeMap::new();370 for data in &data {371 let balance = balances372 .entry(&data.owner)373 .or_insert_with(|| <AccountBalance<T>>::get((collection.id, &data.owner)));374 *balance = balance.checked_add(1).ok_or(ArithmeticError::Overflow)?;375376 ensure!(377 *balance <= collection.limits.account_token_ownership_limit(),378 <CommonError<T>>::AccountTokenLimitExceeded,379 );380 }381382 // =========383384 <TokensMinted<T>>::insert(collection.id, tokens_minted);385 for (account, balance) in balances {386 <AccountBalance<T>>::insert((collection.id, account), balance);387 }388 for (i, data) in data.into_iter().enumerate() {389 let token = first_token + i as u32 + 1;390391 <TokenData<T>>::insert(392 (collection.id, token),393 ItemData {394 const_data: data.const_data,395 variable_data: data.variable_data,396 owner: data.owner.clone(),397 },398 );399 <Owned<T>>::insert((collection.id, &data.owner, token), true);400401 collection.log_mirrored(ERC721Events::Transfer {402 from: H160::default(),403 to: *data.owner.as_eth(),404 token_id: token.into(),405 });406 <PalletCommon<T>>::deposit_event(CommonEvent::ItemCreated(407 collection.id,408 TokenId(token),409 data.owner.clone(),410 1,411 ));412 }413 Ok(())414 }415416 pub fn set_allowance_unchecked(417 collection: &NonfungibleHandle<T>,418 sender: &T::CrossAccountId,419 token: TokenId,420 spender: Option<&T::CrossAccountId>,421 assume_implicit_eth: bool,422 ) {423 if let Some(spender) = spender {424 let old_spender = <Allowance<T>>::get((collection.id, token));425 <Allowance<T>>::insert((collection.id, token), spender);426 // In ERC721 there is only one possible approved user of token, so we set427 // approved user to spender428 collection.log_mirrored(ERC721Events::Approval {429 owner: *sender.as_eth(),430 approved: *spender.as_eth(),431 token_id: token.into(),432 });433 // In Unique chain, any token can have any amount of approved users, so we need to434 // set allowance of old owner to 0, and allowance of new owner to 1435 if old_spender.as_ref() != Some(spender) {436 if let Some(old_owner) = old_spender {437 <PalletCommon<T>>::deposit_event(CommonEvent::Approved(438 collection.id,439 token,440 sender.clone(),441 old_owner,442 0,443 ));444 }445 <PalletCommon<T>>::deposit_event(CommonEvent::Approved(446 collection.id,447 token,448 sender.clone(),449 spender.clone(),450 1,451 ));452 }453 } else {454 let old_spender = <Allowance<T>>::take((collection.id, token));455 if !assume_implicit_eth {456 // In ERC721 there is only one possible approved user of token, so we set457 // approved user to zero address458 collection.log_mirrored(ERC721Events::Approval {459 owner: *sender.as_eth(),460 approved: H160::default(),461 token_id: token.into(),462 });463 }464 // In Unique chain, any token can have any amount of approved users, so we need to465 // set allowance of old owner to 0466 if let Some(old_spender) = old_spender {467 <PalletCommon<T>>::deposit_event(CommonEvent::Approved(468 collection.id,469 token,470 sender.clone(),471 old_spender,472 0,473 ));474 }475 }476 }477478 pub fn set_allowance(479 collection: &NonfungibleHandle<T>,480 sender: &T::CrossAccountId,481 token: TokenId,482 spender: Option<&T::CrossAccountId>,483 ) -> DispatchResult {484 if collection.access == AccessMode::AllowList {485 collection.check_allowlist(sender)?;486 if let Some(spender) = spender {487 collection.check_allowlist(spender)?;488 }489 }490491 if let Some(spender) = spender {492 <PalletCommon<T>>::ensure_correct_receiver(spender)?;493 }494 let token_data =495 <TokenData<T>>::get((collection.id, token)).ok_or(<CommonError<T>>::TokenNotFound)?;496 if &token_data.owner != sender {497 ensure!(498 collection.ignores_owned_amount(sender),499 <CommonError<T>>::CantApproveMoreThanOwned500 );501 }502503 // =========504505 Self::set_allowance_unchecked(collection, sender, token, spender, false);506 Ok(())507 }508509 fn check_allowed(510 collection: &NonfungibleHandle<T>,511 spender: &T::CrossAccountId,512 from: &T::CrossAccountId,513 token: TokenId,514 ) -> DispatchResult {515 if spender.conv_eq(from) {516 return Ok(());517 }518 if collection.access == AccessMode::AllowList {519 // `from`, `to` checked in [`transfer`]520 collection.check_allowlist(spender)?;521 }522 if let Some(source) = T::CrossTokenAddressMapping::address_to_token(from) {523 // TODO: should collection owner be allowed to perform this transfer?524 ensure!(525 <PalletStructure<T>>::indirectly_owned(spender.clone(), source.0, source.1, 1)?,526 <CommonError<T>>::ApprovedValueTooLow,527 );528 return Ok(());529 }530 if <Allowance<T>>::get((collection.id, token)).as_ref() == Some(spender) {531 return Ok(());532 }533 ensure!(534 collection.ignores_allowance(spender),535 <CommonError<T>>::ApprovedValueTooLow536 );537 Ok(())538 }539540 pub fn transfer_from(541 collection: &NonfungibleHandle<T>,542 spender: &T::CrossAccountId,543 from: &T::CrossAccountId,544 to: &T::CrossAccountId,545 token: TokenId,546 ) -> DispatchResult {547 Self::check_allowed(collection, spender, from, token)?;548549 // =========550551 // Allowance is reset in [`transfer`]552 Self::transfer(collection, from, to, token)553 }554555 pub fn burn_from(556 collection: &NonfungibleHandle<T>,557 spender: &T::CrossAccountId,558 from: &T::CrossAccountId,559 token: TokenId,560 ) -> DispatchResult {561 Self::check_allowed(collection, spender, from, token)?;562563 // =========564565 Self::burn(collection, from, token)566 }567568 pub fn set_variable_metadata(569 collection: &NonfungibleHandle<T>,570 sender: &T::CrossAccountId,571 token: TokenId,572 data: BoundedVec<u8, CustomDataLimit>,573 ) -> DispatchResult {574 let token_data =575 <TokenData<T>>::get((collection.id, token)).ok_or(<CommonError<T>>::TokenNotFound)?;576 collection.check_can_update_meta(sender, &token_data.owner)?;577578 // =========579580 <TokenData<T>>::insert(581 (collection.id, token),582 ItemData {583 variable_data: data,584 ..token_data585 },586 );587 Ok(())588 }589590 pub fn nest_token(591 handle: &NonfungibleHandle<T>,592 sender: T::CrossAccountId,593 from: CollectionId,594 under: TokenId,595 ) -> DispatchResult {596 fn ensure_sender_allowed<T: Config>(597 collection: CollectionId,598 token: TokenId,599 sender: T::CrossAccountId,600 ) -> DispatchResult {601 ensure!(602 <TokenData<T>>::get((collection, token))603 .ok_or(<CommonError<T>>::TokenNotFound)?604 .owner605 .conv_eq(&sender),606 <CommonError<T>>::OnlyOwnerAllowedToNest,607 );608 Ok(())609 }610 match handle.limits.nesting_rule() {611 NestingRule::Disabled => fail!(<CommonError<T>>::NestingIsDisabled),612 NestingRule::Owner => ensure_sender_allowed::<T>(from, under, sender)?,613 NestingRule::OwnerRestricted(whitelist) => {614 ensure!(615 whitelist.contains(&from),616 <CommonError<T>>::SourceCollectionIsNotAllowedToNest617 );618 ensure_sender_allowed::<T>(from, under, sender)?619 }620 }621 Ok(())622 }623624 /// Delegated to `create_multiple_items`625 pub fn create_item(626 collection: &NonfungibleHandle<T>,627 sender: &T::CrossAccountId,628 data: CreateItemData<T>,629 ) -> DispatchResult {630 Self::create_multiple_items(collection, sender, vec![data])631 }632}