difftreelog
style remove unused
in: master
6 files changed
pallets/common/src/erc.rsdiffbeforeafterboth--- a/pallets/common/src/erc.rs
+++ b/pallets/common/src/erc.rs
@@ -21,7 +21,6 @@
};
pub use pallet_evm::{PrecompileOutput, PrecompileResult, PrecompileHandle, account::CrossAccountId};
use pallet_evm_coder_substrate::dispatch_to_evm;
-use sp_core::{H160, U256};
use sp_std::vec::Vec;
use up_data_structs::{Property, SponsoringRateLimit};
use alloc::format;
pallets/evm-migration/src/lib.rsdiffbeforeafterboth--- a/pallets/evm-migration/src/lib.rs
+++ b/pallets/evm-migration/src/lib.rs
@@ -108,7 +108,7 @@
false
}
- fn call(handle: &mut impl PrecompileHandle) -> Option<pallet_evm::PrecompileResult> {
+ fn call(_handle: &mut impl PrecompileHandle) -> Option<pallet_evm::PrecompileResult> {
None
}
pallets/fungible/src/erc.rsdiffbeforeafterboth--- a/pallets/fungible/src/erc.rs
+++ b/pallets/fungible/src/erc.rs
@@ -19,7 +19,6 @@
use evm_coder::{ToLog, execution::*, generate_stubgen, solidity_interface, types::*, weight};
use up_data_structs::CollectionMode;
use pallet_common::erc::{CommonEvmHandler, PrecompileResult};
-use sp_core::{H160, U256};
use sp_std::vec::Vec;
use pallet_evm::{account::CrossAccountId, PrecompileHandle};
use pallet_evm_coder_substrate::{call, dispatch_to_evm};
pallets/nonfungible/src/erc.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/>.1617extern crate alloc;18use core::{19 char::{REPLACEMENT_CHARACTER, decode_utf16},20 convert::TryInto,21};22use evm_coder::{ToLog, execution::*, generate_stubgen, solidity, solidity_interface, types::*, weight};23use frame_support::BoundedVec;24use up_data_structs::{25 TokenId, PropertyPermission, PropertyKeyPermission, Property, CollectionId, PropertyKey,26 CollectionPropertiesVec,27};28use pallet_evm_coder_substrate::dispatch_to_evm;29use sp_core::{H160, U256};30use sp_std::vec::Vec;31use pallet_common::{32 erc::{CommonEvmHandler, PrecompileResult, CollectionCall, token_uri_key},33 CollectionHandle, CollectionPropertyPermissions,34};35use pallet_evm::{account::CrossAccountId, PrecompileHandle};36use pallet_evm_coder_substrate::call;37use pallet_structure::{SelfWeightOf as StructureWeight, weights::WeightInfo as _};3839use crate::{40 AccountBalance, Config, CreateItemData, NonfungibleHandle, Pallet, TokenData, TokensMinted,41 SelfWeightOf, weights::WeightInfo, TokenProperties,42};4344#[solidity_interface(name = "TokenProperties")]45impl<T: Config> NonfungibleHandle<T> {46 fn set_token_property_permission(47 &mut self,48 caller: caller,49 key: string,50 is_mutable: bool,51 collection_admin: bool,52 token_owner: bool,53 ) -> Result<()> {54 let caller = T::CrossAccountId::from_eth(caller);55 <Pallet<T>>::set_property_permission(56 self,57 &caller,58 PropertyKeyPermission {59 key: <Vec<u8>>::from(key)60 .try_into()61 .map_err(|_| "too long key")?,62 permission: PropertyPermission {63 mutable: is_mutable,64 collection_admin,65 token_owner,66 },67 },68 )69 .map_err(dispatch_to_evm::<T>)70 }7172 fn set_property(73 &mut self,74 caller: caller,75 token_id: uint256,76 key: string,77 value: bytes,78 ) -> Result<()> {79 let caller = T::CrossAccountId::from_eth(caller);80 let token_id: u32 = token_id.try_into().map_err(|_| "token id overflow")?;81 let key = <Vec<u8>>::from(key)82 .try_into()83 .map_err(|_| "key too long")?;84 let value = value.try_into().map_err(|_| "value too long")?;8586 <Pallet<T>>::set_token_property(self, &caller, TokenId(token_id), Property { key, value })87 .map_err(dispatch_to_evm::<T>)88 }8990 fn delete_property(&mut self, token_id: uint256, caller: caller, key: string) -> Result<()> {91 let caller = T::CrossAccountId::from_eth(caller);92 let token_id: u32 = token_id.try_into().map_err(|_| "token id overflow")?;93 let key = <Vec<u8>>::from(key)94 .try_into()95 .map_err(|_| "key too long")?;9697 <Pallet<T>>::delete_token_property(self, &caller, TokenId(token_id), key)98 .map_err(dispatch_to_evm::<T>)99 }100101 /// Throws error if key not found102 fn property(&self, token_id: uint256, key: string) -> Result<bytes> {103 let token_id: u32 = token_id.try_into().map_err(|_| "token id overflow")?;104 let key = <Vec<u8>>::from(key)105 .try_into()106 .map_err(|_| "key too long")?;107108 let props = <TokenProperties<T>>::get((self.id, token_id));109 let prop = props.get(&key).ok_or("key not found")?;110111 Ok(prop.to_vec())112 }113}114115#[derive(ToLog)]116pub enum ERC721Events {117 Transfer {118 #[indexed]119 from: address,120 #[indexed]121 to: address,122 #[indexed]123 token_id: uint256,124 },125 Approval {126 #[indexed]127 owner: address,128 #[indexed]129 approved: address,130 #[indexed]131 token_id: uint256,132 },133 #[allow(dead_code)]134 ApprovalForAll {135 #[indexed]136 owner: address,137 #[indexed]138 operator: address,139 approved: bool,140 },141}142143#[derive(ToLog)]144pub enum ERC721MintableEvents {145 #[allow(dead_code)]146 MintingFinished {},147}148149#[solidity_interface(name = "ERC721Metadata")]150impl<T: Config> NonfungibleHandle<T> {151 fn name(&self) -> Result<string> {152 Ok(decode_utf16(self.name.iter().copied())153 .map(|r| r.unwrap_or(REPLACEMENT_CHARACTER))154 .collect::<string>())155 }156157 fn symbol(&self) -> Result<string> {158 Ok(string::from_utf8_lossy(&self.token_prefix).into())159 }160161 /// Returns token's const_metadata162 #[solidity(rename_selector = "tokenURI")]163 fn token_uri(&self, token_id: uint256) -> Result<string> {164 let key = token_uri_key();165 if !has_token_permission::<T>(self.id, &key) {166 return Err("No tokenURI permission".into());167 }168169 self.consume_store_reads(1)?;170 let token_id: u32 = token_id.try_into().map_err(|_| "token id overflow")?;171172 let properties = <TokenProperties<T>>::try_get((self.id, token_id))173 .map_err(|_| Error::Revert("Token properties not found".into()))?;174 if let Some(property) = properties.get(&key) {175 return Ok(string::from_utf8_lossy(property).into());176 }177178 Err("Property tokenURI not found".into())179 }180}181182#[solidity_interface(name = "ERC721Enumerable")]183impl<T: Config> NonfungibleHandle<T> {184 fn token_by_index(&self, index: uint256) -> Result<uint256> {185 Ok(index)186 }187188 /// Not implemented189 fn token_of_owner_by_index(&self, _owner: address, _index: uint256) -> Result<uint256> {190 // TODO: Not implemetable191 Err("not implemented".into())192 }193194 fn total_supply(&self) -> Result<uint256> {195 self.consume_store_reads(1)?;196 Ok(<Pallet<T>>::total_supply(self).into())197 }198}199200#[solidity_interface(name = "ERC721", events(ERC721Events))]201impl<T: Config> NonfungibleHandle<T> {202 fn balance_of(&self, owner: address) -> Result<uint256> {203 self.consume_store_reads(1)?;204 let owner = T::CrossAccountId::from_eth(owner);205 let balance = <AccountBalance<T>>::get((self.id, owner));206 Ok(balance.into())207 }208 fn owner_of(&self, token_id: uint256) -> Result<address> {209 self.consume_store_reads(1)?;210 let token: TokenId = token_id.try_into()?;211 Ok(*<TokenData<T>>::get((self.id, token))212 .ok_or("token not found")?213 .owner214 .as_eth())215 }216 /// Not implemented217 fn safe_transfer_from_with_data(218 &mut self,219 _from: address,220 _to: address,221 _token_id: uint256,222 _data: bytes,223 _value: value,224 ) -> Result<void> {225 // TODO: Not implemetable226 Err("not implemented".into())227 }228 /// Not implemented229 fn safe_transfer_from(230 &mut self,231 _from: address,232 _to: address,233 _token_id: uint256,234 _value: value,235 ) -> Result<void> {236 // TODO: Not implemetable237 Err("not implemented".into())238 }239240 #[weight(<SelfWeightOf<T>>::transfer_from())]241 fn transfer_from(242 &mut self,243 caller: caller,244 from: address,245 to: address,246 token_id: uint256,247 _value: value,248 ) -> Result<void> {249 let caller = T::CrossAccountId::from_eth(caller);250 let from = T::CrossAccountId::from_eth(from);251 let to = T::CrossAccountId::from_eth(to);252 let token = token_id.try_into()?;253 let budget = self254 .recorder255 .weight_calls_budget(<StructureWeight<T>>::find_parent());256257 <Pallet<T>>::transfer_from(self, &caller, &from, &to, token, &budget)258 .map_err(dispatch_to_evm::<T>)?;259 Ok(())260 }261262 #[weight(<SelfWeightOf<T>>::approve())]263 fn approve(264 &mut self,265 caller: caller,266 approved: address,267 token_id: uint256,268 _value: value,269 ) -> Result<void> {270 let caller = T::CrossAccountId::from_eth(caller);271 let approved = T::CrossAccountId::from_eth(approved);272 let token = token_id.try_into()?;273274 <Pallet<T>>::set_allowance(self, &caller, token, Some(&approved))275 .map_err(dispatch_to_evm::<T>)?;276 Ok(())277 }278279 /// Not implemented280 fn set_approval_for_all(281 &mut self,282 _caller: caller,283 _operator: address,284 _approved: bool,285 ) -> Result<void> {286 // TODO: Not implemetable287 Err("not implemented".into())288 }289290 /// Not implemented291 fn get_approved(&self, _token_id: uint256) -> Result<address> {292 // TODO: Not implemetable293 Err("not implemented".into())294 }295296 /// Not implemented297 fn is_approved_for_all(&self, _owner: address, _operator: address) -> Result<address> {298 // TODO: Not implemetable299 Err("not implemented".into())300 }301}302303#[solidity_interface(name = "ERC721Burnable")]304impl<T: Config> NonfungibleHandle<T> {305 #[weight(<SelfWeightOf<T>>::burn_item())]306 fn burn(&mut self, caller: caller, token_id: uint256) -> Result<void> {307 let caller = T::CrossAccountId::from_eth(caller);308 let token = token_id.try_into()?;309310 <Pallet<T>>::burn(self, &caller, token).map_err(dispatch_to_evm::<T>)?;311 Ok(())312 }313}314315#[solidity_interface(name = "ERC721Mintable", events(ERC721MintableEvents))]316impl<T: Config> NonfungibleHandle<T> {317 fn minting_finished(&self) -> Result<bool> {318 Ok(false)319 }320321 /// `token_id` should be obtained with `next_token_id` method,322 /// unlike standard, you can't specify it manually323 #[weight(<SelfWeightOf<T>>::create_item())]324 fn mint(&mut self, caller: caller, to: address, token_id: uint256) -> Result<bool> {325 let caller = T::CrossAccountId::from_eth(caller);326 let to = T::CrossAccountId::from_eth(to);327 let token_id: u32 = token_id.try_into()?;328 let budget = self329 .recorder330 .weight_calls_budget(<StructureWeight<T>>::find_parent());331332 if <TokensMinted<T>>::get(self.id)333 .checked_add(1)334 .ok_or("item id overflow")?335 != token_id336 {337 return Err("item id should be next".into());338 }339340 <Pallet<T>>::create_item(341 self,342 &caller,343 CreateItemData::<T> {344 properties: BoundedVec::default(),345 owner: to,346 },347 &budget,348 )349 .map_err(dispatch_to_evm::<T>)?;350351 Ok(true)352 }353354 /// `token_id` should be obtained with `next_token_id` method,355 /// unlike standard, you can't specify it manually356 #[solidity(rename_selector = "mintWithTokenURI")]357 #[weight(<SelfWeightOf<T>>::create_item())]358 fn mint_with_token_uri(359 &mut self,360 caller: caller,361 to: address,362 token_id: uint256,363 token_uri: string,364 ) -> Result<bool> {365 let key = token_uri_key();366 let permission = get_token_permission::<T>(self.id, &key)?;367 if !permission.collection_admin {368 return Err("Operation is not allowed".into());369 }370371 let caller = T::CrossAccountId::from_eth(caller);372 let to = T::CrossAccountId::from_eth(to);373 let token_id: u32 = token_id.try_into().map_err(|_| "amount overflow")?;374 let budget = self375 .recorder376 .weight_calls_budget(<StructureWeight<T>>::find_parent());377378 if <TokensMinted<T>>::get(self.id)379 .checked_add(1)380 .ok_or("item id overflow")?381 != token_id382 {383 return Err("item id should be next".into());384 }385386 let mut properties = CollectionPropertiesVec::default();387 properties388 .try_push(Property {389 key,390 value: token_uri391 .into_bytes()392 .try_into()393 .map_err(|_| "token uri is too long")?,394 })395 .map_err(|e| Error::Revert(alloc::format!("Can't add property: {:?}", e)))?;396397 <Pallet<T>>::create_item(398 self,399 &caller,400 CreateItemData::<T> {401 properties,402 owner: to,403 },404 &budget,405 )406 .map_err(dispatch_to_evm::<T>)?;407 Ok(true)408 }409410 /// Not implemented411 fn finish_minting(&mut self, _caller: caller) -> Result<bool> {412 Err("not implementable".into())413 }414}415416fn get_token_permission<T: Config>(417 collection_id: CollectionId,418 key: &PropertyKey,419) -> Result<PropertyPermission> {420 let token_property_permissions = CollectionPropertyPermissions::<T>::try_get(collection_id)421 .map_err(|_| Error::Revert("No permissions for collection".into()))?;422 let a = token_property_permissions423 .get(key)424 .map(|p| p.clone())425 .ok_or_else(|| Error::Revert("No permission".into()))?;426 Ok(a)427}428429fn has_token_permission<T: Config>(collection_id: CollectionId, key: &PropertyKey) -> bool {430 if let Ok(token_property_permissions) =431 CollectionPropertyPermissions::<T>::try_get(collection_id)432 {433 return token_property_permissions.contains_key(key);434 }435436 false437}438439#[solidity_interface(name = "ERC721UniqueExtensions")]440impl<T: Config> NonfungibleHandle<T> {441 #[weight(<SelfWeightOf<T>>::transfer())]442 fn transfer(443 &mut self,444 caller: caller,445 to: address,446 token_id: uint256,447 _value: value,448 ) -> Result<void> {449 let caller = T::CrossAccountId::from_eth(caller);450 let to = T::CrossAccountId::from_eth(to);451 let token = token_id.try_into()?;452 let budget = self453 .recorder454 .weight_calls_budget(<StructureWeight<T>>::find_parent());455456 <Pallet<T>>::transfer(self, &caller, &to, token, &budget).map_err(dispatch_to_evm::<T>)?;457 Ok(())458 }459460 #[weight(<SelfWeightOf<T>>::burn_from())]461 fn burn_from(462 &mut self,463 caller: caller,464 from: address,465 token_id: uint256,466 _value: value,467 ) -> Result<void> {468 let caller = T::CrossAccountId::from_eth(caller);469 let from = T::CrossAccountId::from_eth(from);470 let token = token_id.try_into()?;471 let budget = self472 .recorder473 .weight_calls_budget(<StructureWeight<T>>::find_parent());474475 <Pallet<T>>::burn_from(self, &caller, &from, token, &budget)476 .map_err(dispatch_to_evm::<T>)?;477 Ok(())478 }479480 fn next_token_id(&self) -> Result<uint256> {481 self.consume_store_reads(1)?;482 Ok(<TokensMinted<T>>::get(self.id)483 .checked_add(1)484 .ok_or("item id overflow")?485 .into())486 }487488 #[weight(<SelfWeightOf<T>>::create_multiple_items(token_ids.len() as u32))]489 fn mint_bulk(&mut self, caller: caller, to: address, token_ids: Vec<uint256>) -> Result<bool> {490 let caller = T::CrossAccountId::from_eth(caller);491 let to = T::CrossAccountId::from_eth(to);492 let mut expected_index = <TokensMinted<T>>::get(self.id)493 .checked_add(1)494 .ok_or("item id overflow")?;495 let budget = self496 .recorder497 .weight_calls_budget(<StructureWeight<T>>::find_parent());498499 let total_tokens = token_ids.len();500 for id in token_ids.into_iter() {501 let id: u32 = id.try_into().map_err(|_| "token id overflow")?;502 if id != expected_index {503 return Err("item id should be next".into());504 }505 expected_index = expected_index.checked_add(1).ok_or("item id overflow")?;506 }507 let data = (0..total_tokens)508 .map(|_| CreateItemData::<T> {509 properties: BoundedVec::default(),510 owner: to.clone(),511 })512 .collect();513514 <Pallet<T>>::create_multiple_items(self, &caller, data, &budget)515 .map_err(dispatch_to_evm::<T>)?;516 Ok(true)517 }518519 #[solidity(rename_selector = "mintBulkWithTokenURI")]520 #[weight(<SelfWeightOf<T>>::create_multiple_items(tokens.len() as u32))]521 fn mint_bulk_with_token_uri(522 &mut self,523 caller: caller,524 to: address,525 tokens: Vec<(uint256, string)>,526 ) -> Result<bool> {527 let key = token_uri_key();528 let caller = T::CrossAccountId::from_eth(caller);529 let to = T::CrossAccountId::from_eth(to);530 let mut expected_index = <TokensMinted<T>>::get(self.id)531 .checked_add(1)532 .ok_or("item id overflow")?;533 let budget = self534 .recorder535 .weight_calls_budget(<StructureWeight<T>>::find_parent());536537 let mut data = Vec::with_capacity(tokens.len());538 for (id, token_uri) in tokens {539 let id: u32 = id.try_into().map_err(|_| "token id overflow")?;540 if id != expected_index {541 return Err("item id should be next".into());542 }543 expected_index = expected_index.checked_add(1).ok_or("item id overflow")?;544545 let mut properties = CollectionPropertiesVec::default();546 properties547 .try_push(Property {548 key: key.clone(),549 value: token_uri550 .into_bytes()551 .try_into()552 .map_err(|_| "token uri is too long")?,553 })554 .map_err(|e| Error::Revert(alloc::format!("Can't add property: {:?}", e)))?;555556 data.push(CreateItemData::<T> {557 properties,558 owner: to.clone(),559 });560 }561562 <Pallet<T>>::create_multiple_items(self, &caller, data, &budget)563 .map_err(dispatch_to_evm::<T>)?;564 Ok(true)565 }566}567568#[solidity_interface(569 name = "UniqueNFT",570 is(571 ERC721,572 ERC721Metadata,573 ERC721Enumerable,574 ERC721UniqueExtensions,575 ERC721Mintable,576 ERC721Burnable,577 via("CollectionHandle<T>", common_mut, Collection),578 TokenProperties,579 )580)]581impl<T: Config> NonfungibleHandle<T> {}582583// Not a tests, but code generators584generate_stubgen!(gen_impl, UniqueNFTCall<()>, true);585generate_stubgen!(gen_iface, UniqueNFTCall<()>, false);586587impl<T: Config> CommonEvmHandler for NonfungibleHandle<T> {588 const CODE: &'static [u8] = include_bytes!("./stubs/UniqueNFT.raw");589590 fn call(self, handle: &mut impl PrecompileHandle) -> Option<PrecompileResult> {591 call::<T, UniqueNFTCall<T>, _, _>(handle, self)592 }593}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/>.1617extern crate alloc;18use core::{19 char::{REPLACEMENT_CHARACTER, decode_utf16},20 convert::TryInto,21};22use evm_coder::{ToLog, execution::*, generate_stubgen, solidity, solidity_interface, types::*, weight};23use frame_support::BoundedVec;24use up_data_structs::{25 TokenId, PropertyPermission, PropertyKeyPermission, Property, CollectionId, PropertyKey,26 CollectionPropertiesVec,27};28use pallet_evm_coder_substrate::dispatch_to_evm;29use sp_std::vec::Vec;30use pallet_common::{31 erc::{CommonEvmHandler, PrecompileResult, CollectionCall, token_uri_key},32 CollectionHandle, CollectionPropertyPermissions,33};34use pallet_evm::{account::CrossAccountId, PrecompileHandle};35use pallet_evm_coder_substrate::call;36use pallet_structure::{SelfWeightOf as StructureWeight, weights::WeightInfo as _};3738use crate::{39 AccountBalance, Config, CreateItemData, NonfungibleHandle, Pallet, TokenData, TokensMinted,40 SelfWeightOf, weights::WeightInfo, TokenProperties,41};4243#[solidity_interface(name = "TokenProperties")]44impl<T: Config> NonfungibleHandle<T> {45 fn set_token_property_permission(46 &mut self,47 caller: caller,48 key: string,49 is_mutable: bool,50 collection_admin: bool,51 token_owner: bool,52 ) -> Result<()> {53 let caller = T::CrossAccountId::from_eth(caller);54 <Pallet<T>>::set_property_permission(55 self,56 &caller,57 PropertyKeyPermission {58 key: <Vec<u8>>::from(key)59 .try_into()60 .map_err(|_| "too long key")?,61 permission: PropertyPermission {62 mutable: is_mutable,63 collection_admin,64 token_owner,65 },66 },67 )68 .map_err(dispatch_to_evm::<T>)69 }7071 fn set_property(72 &mut self,73 caller: caller,74 token_id: uint256,75 key: string,76 value: bytes,77 ) -> Result<()> {78 let caller = T::CrossAccountId::from_eth(caller);79 let token_id: u32 = token_id.try_into().map_err(|_| "token id overflow")?;80 let key = <Vec<u8>>::from(key)81 .try_into()82 .map_err(|_| "key too long")?;83 let value = value.try_into().map_err(|_| "value too long")?;8485 <Pallet<T>>::set_token_property(self, &caller, TokenId(token_id), Property { key, value })86 .map_err(dispatch_to_evm::<T>)87 }8889 fn delete_property(&mut self, token_id: uint256, caller: caller, key: string) -> Result<()> {90 let caller = T::CrossAccountId::from_eth(caller);91 let token_id: u32 = token_id.try_into().map_err(|_| "token id overflow")?;92 let key = <Vec<u8>>::from(key)93 .try_into()94 .map_err(|_| "key too long")?;9596 <Pallet<T>>::delete_token_property(self, &caller, TokenId(token_id), key)97 .map_err(dispatch_to_evm::<T>)98 }99100 /// Throws error if key not found101 fn property(&self, token_id: uint256, key: string) -> Result<bytes> {102 let token_id: u32 = token_id.try_into().map_err(|_| "token id overflow")?;103 let key = <Vec<u8>>::from(key)104 .try_into()105 .map_err(|_| "key too long")?;106107 let props = <TokenProperties<T>>::get((self.id, token_id));108 let prop = props.get(&key).ok_or("key not found")?;109110 Ok(prop.to_vec())111 }112}113114#[derive(ToLog)]115pub enum ERC721Events {116 Transfer {117 #[indexed]118 from: address,119 #[indexed]120 to: address,121 #[indexed]122 token_id: uint256,123 },124 Approval {125 #[indexed]126 owner: address,127 #[indexed]128 approved: address,129 #[indexed]130 token_id: uint256,131 },132 #[allow(dead_code)]133 ApprovalForAll {134 #[indexed]135 owner: address,136 #[indexed]137 operator: address,138 approved: bool,139 },140}141142#[derive(ToLog)]143pub enum ERC721MintableEvents {144 #[allow(dead_code)]145 MintingFinished {},146}147148#[solidity_interface(name = "ERC721Metadata")]149impl<T: Config> NonfungibleHandle<T> {150 fn name(&self) -> Result<string> {151 Ok(decode_utf16(self.name.iter().copied())152 .map(|r| r.unwrap_or(REPLACEMENT_CHARACTER))153 .collect::<string>())154 }155156 fn symbol(&self) -> Result<string> {157 Ok(string::from_utf8_lossy(&self.token_prefix).into())158 }159160 /// Returns token's const_metadata161 #[solidity(rename_selector = "tokenURI")]162 fn token_uri(&self, token_id: uint256) -> Result<string> {163 let key = token_uri_key();164 if !has_token_permission::<T>(self.id, &key) {165 return Err("No tokenURI permission".into());166 }167168 self.consume_store_reads(1)?;169 let token_id: u32 = token_id.try_into().map_err(|_| "token id overflow")?;170171 let properties = <TokenProperties<T>>::try_get((self.id, token_id))172 .map_err(|_| Error::Revert("Token properties not found".into()))?;173 if let Some(property) = properties.get(&key) {174 return Ok(string::from_utf8_lossy(property).into());175 }176177 Err("Property tokenURI not found".into())178 }179}180181#[solidity_interface(name = "ERC721Enumerable")]182impl<T: Config> NonfungibleHandle<T> {183 fn token_by_index(&self, index: uint256) -> Result<uint256> {184 Ok(index)185 }186187 /// Not implemented188 fn token_of_owner_by_index(&self, _owner: address, _index: uint256) -> Result<uint256> {189 // TODO: Not implemetable190 Err("not implemented".into())191 }192193 fn total_supply(&self) -> Result<uint256> {194 self.consume_store_reads(1)?;195 Ok(<Pallet<T>>::total_supply(self).into())196 }197}198199#[solidity_interface(name = "ERC721", events(ERC721Events))]200impl<T: Config> NonfungibleHandle<T> {201 fn balance_of(&self, owner: address) -> Result<uint256> {202 self.consume_store_reads(1)?;203 let owner = T::CrossAccountId::from_eth(owner);204 let balance = <AccountBalance<T>>::get((self.id, owner));205 Ok(balance.into())206 }207 fn owner_of(&self, token_id: uint256) -> Result<address> {208 self.consume_store_reads(1)?;209 let token: TokenId = token_id.try_into()?;210 Ok(*<TokenData<T>>::get((self.id, token))211 .ok_or("token not found")?212 .owner213 .as_eth())214 }215 /// Not implemented216 fn safe_transfer_from_with_data(217 &mut self,218 _from: address,219 _to: address,220 _token_id: uint256,221 _data: bytes,222 _value: value,223 ) -> Result<void> {224 // TODO: Not implemetable225 Err("not implemented".into())226 }227 /// Not implemented228 fn safe_transfer_from(229 &mut self,230 _from: address,231 _to: address,232 _token_id: uint256,233 _value: value,234 ) -> Result<void> {235 // TODO: Not implemetable236 Err("not implemented".into())237 }238239 #[weight(<SelfWeightOf<T>>::transfer_from())]240 fn transfer_from(241 &mut self,242 caller: caller,243 from: address,244 to: address,245 token_id: uint256,246 _value: value,247 ) -> Result<void> {248 let caller = T::CrossAccountId::from_eth(caller);249 let from = T::CrossAccountId::from_eth(from);250 let to = T::CrossAccountId::from_eth(to);251 let token = token_id.try_into()?;252 let budget = self253 .recorder254 .weight_calls_budget(<StructureWeight<T>>::find_parent());255256 <Pallet<T>>::transfer_from(self, &caller, &from, &to, token, &budget)257 .map_err(dispatch_to_evm::<T>)?;258 Ok(())259 }260261 #[weight(<SelfWeightOf<T>>::approve())]262 fn approve(263 &mut self,264 caller: caller,265 approved: address,266 token_id: uint256,267 _value: value,268 ) -> Result<void> {269 let caller = T::CrossAccountId::from_eth(caller);270 let approved = T::CrossAccountId::from_eth(approved);271 let token = token_id.try_into()?;272273 <Pallet<T>>::set_allowance(self, &caller, token, Some(&approved))274 .map_err(dispatch_to_evm::<T>)?;275 Ok(())276 }277278 /// Not implemented279 fn set_approval_for_all(280 &mut self,281 _caller: caller,282 _operator: address,283 _approved: bool,284 ) -> Result<void> {285 // TODO: Not implemetable286 Err("not implemented".into())287 }288289 /// Not implemented290 fn get_approved(&self, _token_id: uint256) -> Result<address> {291 // TODO: Not implemetable292 Err("not implemented".into())293 }294295 /// Not implemented296 fn is_approved_for_all(&self, _owner: address, _operator: address) -> Result<address> {297 // TODO: Not implemetable298 Err("not implemented".into())299 }300}301302#[solidity_interface(name = "ERC721Burnable")]303impl<T: Config> NonfungibleHandle<T> {304 #[weight(<SelfWeightOf<T>>::burn_item())]305 fn burn(&mut self, caller: caller, token_id: uint256) -> Result<void> {306 let caller = T::CrossAccountId::from_eth(caller);307 let token = token_id.try_into()?;308309 <Pallet<T>>::burn(self, &caller, token).map_err(dispatch_to_evm::<T>)?;310 Ok(())311 }312}313314#[solidity_interface(name = "ERC721Mintable", events(ERC721MintableEvents))]315impl<T: Config> NonfungibleHandle<T> {316 fn minting_finished(&self) -> Result<bool> {317 Ok(false)318 }319320 /// `token_id` should be obtained with `next_token_id` method,321 /// unlike standard, you can't specify it manually322 #[weight(<SelfWeightOf<T>>::create_item())]323 fn mint(&mut self, caller: caller, to: address, token_id: uint256) -> Result<bool> {324 let caller = T::CrossAccountId::from_eth(caller);325 let to = T::CrossAccountId::from_eth(to);326 let token_id: u32 = token_id.try_into()?;327 let budget = self328 .recorder329 .weight_calls_budget(<StructureWeight<T>>::find_parent());330331 if <TokensMinted<T>>::get(self.id)332 .checked_add(1)333 .ok_or("item id overflow")?334 != token_id335 {336 return Err("item id should be next".into());337 }338339 <Pallet<T>>::create_item(340 self,341 &caller,342 CreateItemData::<T> {343 properties: BoundedVec::default(),344 owner: to,345 },346 &budget,347 )348 .map_err(dispatch_to_evm::<T>)?;349350 Ok(true)351 }352353 /// `token_id` should be obtained with `next_token_id` method,354 /// unlike standard, you can't specify it manually355 #[solidity(rename_selector = "mintWithTokenURI")]356 #[weight(<SelfWeightOf<T>>::create_item())]357 fn mint_with_token_uri(358 &mut self,359 caller: caller,360 to: address,361 token_id: uint256,362 token_uri: string,363 ) -> Result<bool> {364 let key = token_uri_key();365 let permission = get_token_permission::<T>(self.id, &key)?;366 if !permission.collection_admin {367 return Err("Operation is not allowed".into());368 }369370 let caller = T::CrossAccountId::from_eth(caller);371 let to = T::CrossAccountId::from_eth(to);372 let token_id: u32 = token_id.try_into().map_err(|_| "amount overflow")?;373 let budget = self374 .recorder375 .weight_calls_budget(<StructureWeight<T>>::find_parent());376377 if <TokensMinted<T>>::get(self.id)378 .checked_add(1)379 .ok_or("item id overflow")?380 != token_id381 {382 return Err("item id should be next".into());383 }384385 let mut properties = CollectionPropertiesVec::default();386 properties387 .try_push(Property {388 key,389 value: token_uri390 .into_bytes()391 .try_into()392 .map_err(|_| "token uri is too long")?,393 })394 .map_err(|e| Error::Revert(alloc::format!("Can't add property: {:?}", e)))?;395396 <Pallet<T>>::create_item(397 self,398 &caller,399 CreateItemData::<T> {400 properties,401 owner: to,402 },403 &budget,404 )405 .map_err(dispatch_to_evm::<T>)?;406 Ok(true)407 }408409 /// Not implemented410 fn finish_minting(&mut self, _caller: caller) -> Result<bool> {411 Err("not implementable".into())412 }413}414415fn get_token_permission<T: Config>(416 collection_id: CollectionId,417 key: &PropertyKey,418) -> Result<PropertyPermission> {419 let token_property_permissions = CollectionPropertyPermissions::<T>::try_get(collection_id)420 .map_err(|_| Error::Revert("No permissions for collection".into()))?;421 let a = token_property_permissions422 .get(key)423 .map(|p| p.clone())424 .ok_or_else(|| Error::Revert("No permission".into()))?;425 Ok(a)426}427428fn has_token_permission<T: Config>(collection_id: CollectionId, key: &PropertyKey) -> bool {429 if let Ok(token_property_permissions) =430 CollectionPropertyPermissions::<T>::try_get(collection_id)431 {432 return token_property_permissions.contains_key(key);433 }434435 false436}437438#[solidity_interface(name = "ERC721UniqueExtensions")]439impl<T: Config> NonfungibleHandle<T> {440 #[weight(<SelfWeightOf<T>>::transfer())]441 fn transfer(442 &mut self,443 caller: caller,444 to: address,445 token_id: uint256,446 _value: value,447 ) -> Result<void> {448 let caller = T::CrossAccountId::from_eth(caller);449 let to = T::CrossAccountId::from_eth(to);450 let token = token_id.try_into()?;451 let budget = self452 .recorder453 .weight_calls_budget(<StructureWeight<T>>::find_parent());454455 <Pallet<T>>::transfer(self, &caller, &to, token, &budget).map_err(dispatch_to_evm::<T>)?;456 Ok(())457 }458459 #[weight(<SelfWeightOf<T>>::burn_from())]460 fn burn_from(461 &mut self,462 caller: caller,463 from: address,464 token_id: uint256,465 _value: value,466 ) -> Result<void> {467 let caller = T::CrossAccountId::from_eth(caller);468 let from = T::CrossAccountId::from_eth(from);469 let token = token_id.try_into()?;470 let budget = self471 .recorder472 .weight_calls_budget(<StructureWeight<T>>::find_parent());473474 <Pallet<T>>::burn_from(self, &caller, &from, token, &budget)475 .map_err(dispatch_to_evm::<T>)?;476 Ok(())477 }478479 fn next_token_id(&self) -> Result<uint256> {480 self.consume_store_reads(1)?;481 Ok(<TokensMinted<T>>::get(self.id)482 .checked_add(1)483 .ok_or("item id overflow")?484 .into())485 }486487 #[weight(<SelfWeightOf<T>>::create_multiple_items(token_ids.len() as u32))]488 fn mint_bulk(&mut self, caller: caller, to: address, token_ids: Vec<uint256>) -> Result<bool> {489 let caller = T::CrossAccountId::from_eth(caller);490 let to = T::CrossAccountId::from_eth(to);491 let mut expected_index = <TokensMinted<T>>::get(self.id)492 .checked_add(1)493 .ok_or("item id overflow")?;494 let budget = self495 .recorder496 .weight_calls_budget(<StructureWeight<T>>::find_parent());497498 let total_tokens = token_ids.len();499 for id in token_ids.into_iter() {500 let id: u32 = id.try_into().map_err(|_| "token id overflow")?;501 if id != expected_index {502 return Err("item id should be next".into());503 }504 expected_index = expected_index.checked_add(1).ok_or("item id overflow")?;505 }506 let data = (0..total_tokens)507 .map(|_| CreateItemData::<T> {508 properties: BoundedVec::default(),509 owner: to.clone(),510 })511 .collect();512513 <Pallet<T>>::create_multiple_items(self, &caller, data, &budget)514 .map_err(dispatch_to_evm::<T>)?;515 Ok(true)516 }517518 #[solidity(rename_selector = "mintBulkWithTokenURI")]519 #[weight(<SelfWeightOf<T>>::create_multiple_items(tokens.len() as u32))]520 fn mint_bulk_with_token_uri(521 &mut self,522 caller: caller,523 to: address,524 tokens: Vec<(uint256, string)>,525 ) -> Result<bool> {526 let key = token_uri_key();527 let caller = T::CrossAccountId::from_eth(caller);528 let to = T::CrossAccountId::from_eth(to);529 let mut expected_index = <TokensMinted<T>>::get(self.id)530 .checked_add(1)531 .ok_or("item id overflow")?;532 let budget = self533 .recorder534 .weight_calls_budget(<StructureWeight<T>>::find_parent());535536 let mut data = Vec::with_capacity(tokens.len());537 for (id, token_uri) in tokens {538 let id: u32 = id.try_into().map_err(|_| "token id overflow")?;539 if id != expected_index {540 return Err("item id should be next".into());541 }542 expected_index = expected_index.checked_add(1).ok_or("item id overflow")?;543544 let mut properties = CollectionPropertiesVec::default();545 properties546 .try_push(Property {547 key: key.clone(),548 value: token_uri549 .into_bytes()550 .try_into()551 .map_err(|_| "token uri is too long")?,552 })553 .map_err(|e| Error::Revert(alloc::format!("Can't add property: {:?}", e)))?;554555 data.push(CreateItemData::<T> {556 properties,557 owner: to.clone(),558 });559 }560561 <Pallet<T>>::create_multiple_items(self, &caller, data, &budget)562 .map_err(dispatch_to_evm::<T>)?;563 Ok(true)564 }565}566567#[solidity_interface(568 name = "UniqueNFT",569 is(570 ERC721,571 ERC721Metadata,572 ERC721Enumerable,573 ERC721UniqueExtensions,574 ERC721Mintable,575 ERC721Burnable,576 via("CollectionHandle<T>", common_mut, Collection),577 TokenProperties,578 )579)]580impl<T: Config> NonfungibleHandle<T> {}581582// Not a tests, but code generators583generate_stubgen!(gen_impl, UniqueNFTCall<()>, true);584generate_stubgen!(gen_iface, UniqueNFTCall<()>, false);585586impl<T: Config> CommonEvmHandler for NonfungibleHandle<T> {587 const CODE: &'static [u8] = include_bytes!("./stubs/UniqueNFT.raw");588589 fn call(self, handle: &mut impl PrecompileHandle) -> Option<PrecompileResult> {590 call::<T, UniqueNFTCall<T>, _, _>(handle, self)591 }592}pallets/refungible/src/erc.rsdiffbeforeafterboth--- a/pallets/refungible/src/erc.rs
+++ b/pallets/refungible/src/erc.rs
@@ -25,7 +25,7 @@
fn call(
self,
- handle: &mut impl PrecompileHandle,
+ _handle: &mut impl PrecompileHandle,
) -> Option<pallet_common::erc::PrecompileResult> {
// TODO: Implement RFT variant of ERC721
None
@@ -39,7 +39,7 @@
fn call(
self,
- handle: &mut impl PrecompileHandle,
+ _handle: &mut impl PrecompileHandle,
) -> Option<pallet_common::erc::PrecompileResult> {
// TODO: Implement RFT variant of ERC20
None
runtime/common/src/dispatch.rsdiffbeforeafterboth--- a/runtime/common/src/dispatch.rs
+++ b/runtime/common/src/dispatch.rs
@@ -1,6 +1,6 @@
use frame_support::{dispatch::DispatchResult, ensure};
use pallet_evm::{PrecompileHandle, PrecompileResult};
-use sp_core::{H160, U256};
+use sp_core::H160;
use sp_std::{borrow::ToOwned, vec::Vec};
use pallet_common::{
CollectionById, CollectionHandle, CommonCollectionOperations, erc::CommonEvmHandler,