difftreelog
CORE-325 cargo fmt
in: master
1 file changed
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::{TokenId, SchemaVersion};25use pallet_evm_coder_substrate::dispatch_to_evm;26use sp_core::{H160, U256};27use sp_std::{vec::Vec, vec};28use pallet_common::{29 account::CrossAccountId,30 erc::{CommonEvmHandler, PrecompileResult},31};32use pallet_evm_coder_substrate::call;3334use crate::{35 AccountBalance, Config, CreateItemData, NonfungibleHandle, Pallet, TokenData, TokensMinted,36 SelfWeightOf, weights::WeightInfo,37};3839fn error_unsupported_shema_version() -> Error {40 alloc::format!("Unsupported shema version! Support only {:?}", SchemaVersion::ImageURL).as_str().into()41}4243#[derive(ToLog)]44pub enum ERC721Events {45 Transfer {46 #[indexed]47 from: address,48 #[indexed]49 to: address,50 #[indexed]51 token_id: uint256,52 },53 Approval {54 #[indexed]55 owner: address,56 #[indexed]57 approved: address,58 #[indexed]59 token_id: uint256,60 },61 #[allow(dead_code)]62 ApprovalForAll {63 #[indexed]64 owner: address,65 #[indexed]66 operator: address,67 approved: bool,68 },69}7071#[derive(ToLog)]72pub enum ERC721MintableEvents {73 #[allow(dead_code)]74 MintingFinished {},75}7677#[solidity_interface(name = "ERC721Metadata")]78impl<T: Config> NonfungibleHandle<T> {79 fn name(&self) -> Result<string> {80 Ok(decode_utf16(self.name.iter().copied())81 .map(|r| r.unwrap_or(REPLACEMENT_CHARACTER))82 .collect::<string>())8384 }85 86 fn symbol(&self) -> Result<string> {87 Ok(string::from_utf8_lossy(&self.token_prefix).into())88 }8990 /// Returns token's const_metadata91 #[solidity(rename_selector = "tokenURI")]92 fn token_uri(&self, token_id: uint256) -> Result<string> {93 if let SchemaVersion::ImageURL = self.schema_version {94 self.consume_store_reads(1)?;95 let token_id: u32 = token_id.try_into().map_err(|_| "token id overflow")?;96 Ok(string::from_utf8_lossy(97 &<TokenData<T>>::get((self.id, token_id))98 .ok_or("token not found")?99 .const_data,100 )101 .into())102 } else {103 Err(error_unsupported_shema_version())104 }105 }106}107108#[solidity_interface(name = "ERC721Enumerable")]109impl<T: Config> NonfungibleHandle<T> {110 fn token_by_index(&self, index: uint256) -> Result<uint256> {111 Ok(index)112 }113114 /// Not implemented115 fn token_of_owner_by_index(&self, _owner: address, _index: uint256) -> Result<uint256> {116 // TODO: Not implemetable117 Err("not implemented".into())118 }119120 fn total_supply(&self) -> Result<uint256> {121 self.consume_store_reads(1)?;122 Ok(<Pallet<T>>::total_supply(self).into())123 }124}125126#[solidity_interface(name = "ERC721", events(ERC721Events))]127impl<T: Config> NonfungibleHandle<T> {128 fn balance_of(&self, owner: address) -> Result<uint256> {129 self.consume_store_reads(1)?;130 let owner = T::CrossAccountId::from_eth(owner);131 let balance = <AccountBalance<T>>::get((self.id, owner));132 Ok(balance.into())133 }134 fn owner_of(&self, token_id: uint256) -> Result<address> {135 self.consume_store_reads(1)?;136 let token: TokenId = token_id.try_into()?;137 Ok(*<TokenData<T>>::get((self.id, token))138 .ok_or("token not found")?139 .owner140 .as_eth())141 }142 /// Not implemented143 fn safe_transfer_from_with_data(144 &mut self,145 _from: address,146 _to: address,147 _token_id: uint256,148 _data: bytes,149 _value: value,150 ) -> Result<void> {151 // TODO: Not implemetable152 Err("not implemented".into())153 }154 /// Not implemented155 fn safe_transfer_from(156 &mut self,157 _from: address,158 _to: address,159 _token_id: uint256,160 _value: value,161 ) -> Result<void> {162 // TODO: Not implemetable163 Err("not implemented".into())164 }165166 #[weight(<SelfWeightOf<T>>::transfer_from())]167 fn transfer_from(168 &mut self,169 caller: caller,170 from: address,171 to: address,172 token_id: uint256,173 _value: value,174 ) -> Result<void> {175 let caller = T::CrossAccountId::from_eth(caller);176 let from = T::CrossAccountId::from_eth(from);177 let to = T::CrossAccountId::from_eth(to);178 let token = token_id.try_into()?;179180 <Pallet<T>>::transfer_from(self, &caller, &from, &to, token)181 .map_err(dispatch_to_evm::<T>)?;182 Ok(())183 }184185 #[weight(<SelfWeightOf<T>>::approve())]186 fn approve(187 &mut self,188 caller: caller,189 approved: address,190 token_id: uint256,191 _value: value,192 ) -> Result<void> {193 let caller = T::CrossAccountId::from_eth(caller);194 let approved = T::CrossAccountId::from_eth(approved);195 let token = token_id.try_into()?;196197 <Pallet<T>>::set_allowance(self, &caller, token, Some(&approved))198 .map_err(dispatch_to_evm::<T>)?;199 Ok(())200 }201202 /// Not implemented203 fn set_approval_for_all(204 &mut self,205 _caller: caller,206 _operator: address,207 _approved: bool,208 ) -> Result<void> {209 // TODO: Not implemetable210 Err("not implemented".into())211 }212213 /// Not implemented214 fn get_approved(&self, _token_id: uint256) -> Result<address> {215 // TODO: Not implemetable216 Err("not implemented".into())217 }218219 /// Not implemented220 fn is_approved_for_all(&self, _owner: address, _operator: address) -> Result<address> {221 // TODO: Not implemetable222 Err("not implemented".into())223 }224}225226#[solidity_interface(name = "ERC721Burnable")]227impl<T: Config> NonfungibleHandle<T> {228 #[weight(<SelfWeightOf<T>>::burn_item())]229 fn burn(&mut self, caller: caller, token_id: uint256) -> Result<void> {230 let caller = T::CrossAccountId::from_eth(caller);231 let token = token_id.try_into()?;232233 <Pallet<T>>::burn(self, &caller, token).map_err(dispatch_to_evm::<T>)?;234 Ok(())235 }236}237238#[solidity_interface(name = "ERC721Mintable", events(ERC721MintableEvents))]239impl<T: Config> NonfungibleHandle<T> {240 fn minting_finished(&self) -> Result<bool> {241 Ok(false)242 }243244 /// `token_id` should be obtained with `next_token_id` method,245 /// unlike standard, you can't specify it manually246 #[weight(<SelfWeightOf<T>>::create_item())]247 fn mint(&mut self, caller: caller, to: address, token_id: uint256) -> Result<bool> {248 let caller = T::CrossAccountId::from_eth(caller);249 let to = T::CrossAccountId::from_eth(to);250 let token_id: u32 = token_id.try_into()?;251 if <TokensMinted<T>>::get(self.id)252 .checked_add(1)253 .ok_or("item id overflow")?254 != token_id255 {256 return Err("item id should be next".into());257 }258259 <Pallet<T>>::create_item(260 self,261 &caller,262 CreateItemData::<T> {263 const_data: BoundedVec::default(),264 variable_data: BoundedVec::default(),265 owner: to,266 },267 )268 .map_err(dispatch_to_evm::<T>)?;269270 Ok(true)271 }272273 /// `token_id` should be obtained with `next_token_id` method,274 /// unlike standard, you can't specify it manually275 #[solidity(rename_selector = "mintWithTokenURI")]276 #[weight(<SelfWeightOf<T>>::create_item())]277 fn mint_with_token_uri(278 &mut self,279 caller: caller,280 to: address,281 token_id: uint256,282 token_uri: string,283 ) -> Result<bool> {284 if let SchemaVersion::ImageURL = self.schema_version {285 let caller = T::CrossAccountId::from_eth(caller);286 let to = T::CrossAccountId::from_eth(to);287 let token_id: u32 = token_id.try_into().map_err(|_| "amount overflow")?;288 if <TokensMinted<T>>::get(self.id)289 .checked_add(1)290 .ok_or("item id overflow")?291 != token_id292 {293 return Err("item id should be next".into());294 }295 296 <Pallet<T>>::create_item(297 self,298 &caller,299 CreateItemData::<T> {300 const_data: Vec::<u8>::from(token_uri)301 .try_into()302 .map_err(|_| "token uri is too long")?,303 variable_data: BoundedVec::default(),304 owner: to,305 },306 )307 .map_err(dispatch_to_evm::<T>)?;308 Ok(true)309 } else {310 Err(error_unsupported_shema_version())311 }312 }313314 /// Not implemented315 fn finish_minting(&mut self, _caller: caller) -> Result<bool> {316 Err("not implementable".into())317 }318}319320#[solidity_interface(name = "ERC721UniqueExtensions")]321impl<T: Config> NonfungibleHandle<T> {322 #[weight(<SelfWeightOf<T>>::transfer())]323 fn transfer(324 &mut self,325 caller: caller,326 to: address,327 token_id: uint256,328 _value: value,329 ) -> Result<void> {330 let caller = T::CrossAccountId::from_eth(caller);331 let to = T::CrossAccountId::from_eth(to);332 let token = token_id.try_into()?;333334 <Pallet<T>>::transfer(self, &caller, &to, token).map_err(dispatch_to_evm::<T>)?;335 Ok(())336 }337338 #[weight(<SelfWeightOf<T>>::burn_from())]339 fn burn_from(340 &mut self,341 caller: caller,342 from: address,343 token_id: uint256,344 _value: value,345 ) -> Result<void> {346 let caller = T::CrossAccountId::from_eth(caller);347 let from = T::CrossAccountId::from_eth(from);348 let token = token_id.try_into()?;349350 <Pallet<T>>::burn_from(self, &caller, &from, token).map_err(dispatch_to_evm::<T>)?;351 Ok(())352 }353354 fn next_token_id(&self) -> Result<uint256> {355 self.consume_store_reads(1)?;356 Ok(<TokensMinted<T>>::get(self.id)357 .checked_add(1)358 .ok_or("item id overflow")?359 .into())360 }361362 #[weight(<SelfWeightOf<T>>::set_variable_metadata(data.len() as u32))]363 fn set_variable_metadata(364 &mut self,365 caller: caller,366 token_id: uint256,367 data: bytes,368 ) -> Result<void> {369 let caller = T::CrossAccountId::from_eth(caller);370 let token = token_id.try_into()?;371372 <Pallet<T>>::set_variable_metadata(373 self,374 &caller,375 token,376 data.try_into()377 .map_err(|_| "metadata size exceeded limit")?,378 )379 .map_err(dispatch_to_evm::<T>)?;380 Ok(())381 }382383 fn get_variable_metadata(&self, token_id: uint256) -> Result<bytes> {384 self.consume_store_reads(1)?;385 let token: TokenId = token_id.try_into()?;386387 Ok(<TokenData<T>>::get((self.id, token))388 .ok_or("token not found")?389 .variable_data390 .into_inner())391 }392393 #[weight(<SelfWeightOf<T>>::create_multiple_items(token_ids.len() as u32))]394 fn mint_bulk(&mut self, caller: caller, to: address, token_ids: Vec<uint256>) -> Result<bool> {395 let caller = T::CrossAccountId::from_eth(caller);396 let to = T::CrossAccountId::from_eth(to);397 let mut expected_index = <TokensMinted<T>>::get(self.id)398 .checked_add(1)399 .ok_or("item id overflow")?;400401 let total_tokens = token_ids.len();402 for id in token_ids.into_iter() {403 let id: u32 = id.try_into().map_err(|_| "token id overflow")?;404 if id != expected_index {405 return Err("item id should be next".into());406 }407 expected_index = expected_index.checked_add(1).ok_or("item id overflow")?;408 }409 let data = (0..total_tokens)410 .map(|_| CreateItemData::<T> {411 const_data: BoundedVec::default(),412 variable_data: BoundedVec::default(),413 owner: to.clone(),414 })415 .collect();416417 <Pallet<T>>::create_multiple_items(self, &caller, data).map_err(dispatch_to_evm::<T>)?;418 Ok(true)419 }420421 #[solidity(rename_selector = "mintBulkWithTokenURI")]422 #[weight(<SelfWeightOf<T>>::create_multiple_items(tokens.len() as u32))]423 fn mint_bulk_with_token_uri(424 &mut self,425 caller: caller,426 to: address,427 tokens: Vec<(uint256, string)>,428 ) -> Result<bool> {429 if let SchemaVersion::ImageURL = self.schema_version {430 let caller = T::CrossAccountId::from_eth(caller);431 let to = T::CrossAccountId::from_eth(to);432 let mut expected_index = <TokensMinted<T>>::get(self.id)433 .checked_add(1)434 .ok_or("item id overflow")?;435 436 let mut data = Vec::with_capacity(tokens.len());437 for (id, token_uri) in tokens {438 let id: u32 = id.try_into().map_err(|_| "token id overflow")?;439 if id != expected_index {440 panic!("item id should be next ({}) but got {}", expected_index, id);441 }442 expected_index = expected_index.checked_add(1).ok_or("item id overflow")?;443 444 data.push(CreateItemData::<T> {445 const_data: Vec::<u8>::from(token_uri)446 .try_into()447 .map_err(|_| "token uri is too long")?,448 variable_data: vec![].try_into().unwrap(),449 owner: to.clone(),450 });451 }452 453 <Pallet<T>>::create_multiple_items(self, &caller, data).map_err(dispatch_to_evm::<T>)?;454 Ok(true)455 } else {456 Err(error_unsupported_shema_version())457 }458 }459}460461#[solidity_interface(462 name = "UniqueNFT",463 is(464 ERC721,465 ERC721Metadata,466 ERC721Enumerable,467 ERC721UniqueExtensions,468 ERC721Mintable,469 ERC721Burnable,470 )471)]472impl<T: Config> NonfungibleHandle<T> {}473474// Not a tests, but code generators475generate_stubgen!(gen_impl, UniqueNFTCall<()>, true);476generate_stubgen!(gen_iface, UniqueNFTCall<()>, false);477478impl<T: Config> CommonEvmHandler for NonfungibleHandle<T> {479 const CODE: &'static [u8] = include_bytes!("./stubs/UniqueNFT.raw");480481 fn call(self, source: &H160, input: &[u8], value: U256) -> Option<PrecompileResult> {482 call::<T, UniqueNFTCall<T>, _>(*source, self, value, input)483 }484}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::{TokenId, SchemaVersion};25use pallet_evm_coder_substrate::dispatch_to_evm;26use sp_core::{H160, U256};27use sp_std::{vec::Vec, vec};28use pallet_common::{29 account::CrossAccountId,30 erc::{CommonEvmHandler, PrecompileResult},31};32use pallet_evm_coder_substrate::call;3334use crate::{35 AccountBalance, Config, CreateItemData, NonfungibleHandle, Pallet, TokenData, TokensMinted,36 SelfWeightOf, weights::WeightInfo,37};3839fn error_unsupported_shema_version() -> Error {40 alloc::format!(41 "Unsupported shema version! Support only {:?}",42 SchemaVersion::ImageURL43 )44 .as_str()45 .into()46}4748#[derive(ToLog)]49pub enum ERC721Events {50 Transfer {51 #[indexed]52 from: address,53 #[indexed]54 to: address,55 #[indexed]56 token_id: uint256,57 },58 Approval {59 #[indexed]60 owner: address,61 #[indexed]62 approved: address,63 #[indexed]64 token_id: uint256,65 },66 #[allow(dead_code)]67 ApprovalForAll {68 #[indexed]69 owner: address,70 #[indexed]71 operator: address,72 approved: bool,73 },74}7576#[derive(ToLog)]77pub enum ERC721MintableEvents {78 #[allow(dead_code)]79 MintingFinished {},80}8182#[solidity_interface(name = "ERC721Metadata")]83impl<T: Config> NonfungibleHandle<T> {84 fn name(&self) -> Result<string> {85 Ok(decode_utf16(self.name.iter().copied())86 .map(|r| r.unwrap_or(REPLACEMENT_CHARACTER))87 .collect::<string>())88 }8990 fn symbol(&self) -> Result<string> {91 Ok(string::from_utf8_lossy(&self.token_prefix).into())92 }9394 /// Returns token's const_metadata95 #[solidity(rename_selector = "tokenURI")]96 fn token_uri(&self, token_id: uint256) -> Result<string> {97 if let SchemaVersion::ImageURL = self.schema_version {98 self.consume_store_reads(1)?;99 let token_id: u32 = token_id.try_into().map_err(|_| "token id overflow")?;100 Ok(string::from_utf8_lossy(101 &<TokenData<T>>::get((self.id, token_id))102 .ok_or("token not found")?103 .const_data,104 )105 .into())106 } else {107 Err(error_unsupported_shema_version())108 }109 }110}111112#[solidity_interface(name = "ERC721Enumerable")]113impl<T: Config> NonfungibleHandle<T> {114 fn token_by_index(&self, index: uint256) -> Result<uint256> {115 Ok(index)116 }117118 /// Not implemented119 fn token_of_owner_by_index(&self, _owner: address, _index: uint256) -> Result<uint256> {120 // TODO: Not implemetable121 Err("not implemented".into())122 }123124 fn total_supply(&self) -> Result<uint256> {125 self.consume_store_reads(1)?;126 Ok(<Pallet<T>>::total_supply(self).into())127 }128}129130#[solidity_interface(name = "ERC721", events(ERC721Events))]131impl<T: Config> NonfungibleHandle<T> {132 fn balance_of(&self, owner: address) -> Result<uint256> {133 self.consume_store_reads(1)?;134 let owner = T::CrossAccountId::from_eth(owner);135 let balance = <AccountBalance<T>>::get((self.id, owner));136 Ok(balance.into())137 }138 fn owner_of(&self, token_id: uint256) -> Result<address> {139 self.consume_store_reads(1)?;140 let token: TokenId = token_id.try_into()?;141 Ok(*<TokenData<T>>::get((self.id, token))142 .ok_or("token not found")?143 .owner144 .as_eth())145 }146 /// Not implemented147 fn safe_transfer_from_with_data(148 &mut self,149 _from: address,150 _to: address,151 _token_id: uint256,152 _data: bytes,153 _value: value,154 ) -> Result<void> {155 // TODO: Not implemetable156 Err("not implemented".into())157 }158 /// Not implemented159 fn safe_transfer_from(160 &mut self,161 _from: address,162 _to: address,163 _token_id: uint256,164 _value: value,165 ) -> Result<void> {166 // TODO: Not implemetable167 Err("not implemented".into())168 }169170 #[weight(<SelfWeightOf<T>>::transfer_from())]171 fn transfer_from(172 &mut self,173 caller: caller,174 from: address,175 to: address,176 token_id: uint256,177 _value: value,178 ) -> Result<void> {179 let caller = T::CrossAccountId::from_eth(caller);180 let from = T::CrossAccountId::from_eth(from);181 let to = T::CrossAccountId::from_eth(to);182 let token = token_id.try_into()?;183184 <Pallet<T>>::transfer_from(self, &caller, &from, &to, token)185 .map_err(dispatch_to_evm::<T>)?;186 Ok(())187 }188189 #[weight(<SelfWeightOf<T>>::approve())]190 fn approve(191 &mut self,192 caller: caller,193 approved: address,194 token_id: uint256,195 _value: value,196 ) -> Result<void> {197 let caller = T::CrossAccountId::from_eth(caller);198 let approved = T::CrossAccountId::from_eth(approved);199 let token = token_id.try_into()?;200201 <Pallet<T>>::set_allowance(self, &caller, token, Some(&approved))202 .map_err(dispatch_to_evm::<T>)?;203 Ok(())204 }205206 /// Not implemented207 fn set_approval_for_all(208 &mut self,209 _caller: caller,210 _operator: address,211 _approved: bool,212 ) -> Result<void> {213 // TODO: Not implemetable214 Err("not implemented".into())215 }216217 /// Not implemented218 fn get_approved(&self, _token_id: uint256) -> Result<address> {219 // TODO: Not implemetable220 Err("not implemented".into())221 }222223 /// Not implemented224 fn is_approved_for_all(&self, _owner: address, _operator: address) -> Result<address> {225 // TODO: Not implemetable226 Err("not implemented".into())227 }228}229230#[solidity_interface(name = "ERC721Burnable")]231impl<T: Config> NonfungibleHandle<T> {232 #[weight(<SelfWeightOf<T>>::burn_item())]233 fn burn(&mut self, caller: caller, token_id: uint256) -> Result<void> {234 let caller = T::CrossAccountId::from_eth(caller);235 let token = token_id.try_into()?;236237 <Pallet<T>>::burn(self, &caller, token).map_err(dispatch_to_evm::<T>)?;238 Ok(())239 }240}241242#[solidity_interface(name = "ERC721Mintable", events(ERC721MintableEvents))]243impl<T: Config> NonfungibleHandle<T> {244 fn minting_finished(&self) -> Result<bool> {245 Ok(false)246 }247248 /// `token_id` should be obtained with `next_token_id` method,249 /// unlike standard, you can't specify it manually250 #[weight(<SelfWeightOf<T>>::create_item())]251 fn mint(&mut self, caller: caller, to: address, token_id: uint256) -> Result<bool> {252 let caller = T::CrossAccountId::from_eth(caller);253 let to = T::CrossAccountId::from_eth(to);254 let token_id: u32 = token_id.try_into()?;255 if <TokensMinted<T>>::get(self.id)256 .checked_add(1)257 .ok_or("item id overflow")?258 != token_id259 {260 return Err("item id should be next".into());261 }262263 <Pallet<T>>::create_item(264 self,265 &caller,266 CreateItemData::<T> {267 const_data: BoundedVec::default(),268 variable_data: BoundedVec::default(),269 owner: to,270 },271 )272 .map_err(dispatch_to_evm::<T>)?;273274 Ok(true)275 }276277 /// `token_id` should be obtained with `next_token_id` method,278 /// unlike standard, you can't specify it manually279 #[solidity(rename_selector = "mintWithTokenURI")]280 #[weight(<SelfWeightOf<T>>::create_item())]281 fn mint_with_token_uri(282 &mut self,283 caller: caller,284 to: address,285 token_id: uint256,286 token_uri: string,287 ) -> Result<bool> {288 if let SchemaVersion::ImageURL = self.schema_version {289 let caller = T::CrossAccountId::from_eth(caller);290 let to = T::CrossAccountId::from_eth(to);291 let token_id: u32 = token_id.try_into().map_err(|_| "amount overflow")?;292 if <TokensMinted<T>>::get(self.id)293 .checked_add(1)294 .ok_or("item id overflow")?295 != token_id296 {297 return Err("item id should be next".into());298 }299300 <Pallet<T>>::create_item(301 self,302 &caller,303 CreateItemData::<T> {304 const_data: Vec::<u8>::from(token_uri)305 .try_into()306 .map_err(|_| "token uri is too long")?,307 variable_data: BoundedVec::default(),308 owner: to,309 },310 )311 .map_err(dispatch_to_evm::<T>)?;312 Ok(true)313 } else {314 Err(error_unsupported_shema_version())315 }316 }317318 /// Not implemented319 fn finish_minting(&mut self, _caller: caller) -> Result<bool> {320 Err("not implementable".into())321 }322}323324#[solidity_interface(name = "ERC721UniqueExtensions")]325impl<T: Config> NonfungibleHandle<T> {326 #[weight(<SelfWeightOf<T>>::transfer())]327 fn transfer(328 &mut self,329 caller: caller,330 to: address,331 token_id: uint256,332 _value: value,333 ) -> Result<void> {334 let caller = T::CrossAccountId::from_eth(caller);335 let to = T::CrossAccountId::from_eth(to);336 let token = token_id.try_into()?;337338 <Pallet<T>>::transfer(self, &caller, &to, token).map_err(dispatch_to_evm::<T>)?;339 Ok(())340 }341342 #[weight(<SelfWeightOf<T>>::burn_from())]343 fn burn_from(344 &mut self,345 caller: caller,346 from: address,347 token_id: uint256,348 _value: value,349 ) -> Result<void> {350 let caller = T::CrossAccountId::from_eth(caller);351 let from = T::CrossAccountId::from_eth(from);352 let token = token_id.try_into()?;353354 <Pallet<T>>::burn_from(self, &caller, &from, token).map_err(dispatch_to_evm::<T>)?;355 Ok(())356 }357358 fn next_token_id(&self) -> Result<uint256> {359 self.consume_store_reads(1)?;360 Ok(<TokensMinted<T>>::get(self.id)361 .checked_add(1)362 .ok_or("item id overflow")?363 .into())364 }365366 #[weight(<SelfWeightOf<T>>::set_variable_metadata(data.len() as u32))]367 fn set_variable_metadata(368 &mut self,369 caller: caller,370 token_id: uint256,371 data: bytes,372 ) -> Result<void> {373 let caller = T::CrossAccountId::from_eth(caller);374 let token = token_id.try_into()?;375376 <Pallet<T>>::set_variable_metadata(377 self,378 &caller,379 token,380 data.try_into()381 .map_err(|_| "metadata size exceeded limit")?,382 )383 .map_err(dispatch_to_evm::<T>)?;384 Ok(())385 }386387 fn get_variable_metadata(&self, token_id: uint256) -> Result<bytes> {388 self.consume_store_reads(1)?;389 let token: TokenId = token_id.try_into()?;390391 Ok(<TokenData<T>>::get((self.id, token))392 .ok_or("token not found")?393 .variable_data394 .into_inner())395 }396397 #[weight(<SelfWeightOf<T>>::create_multiple_items(token_ids.len() as u32))]398 fn mint_bulk(&mut self, caller: caller, to: address, token_ids: Vec<uint256>) -> Result<bool> {399 let caller = T::CrossAccountId::from_eth(caller);400 let to = T::CrossAccountId::from_eth(to);401 let mut expected_index = <TokensMinted<T>>::get(self.id)402 .checked_add(1)403 .ok_or("item id overflow")?;404405 let total_tokens = token_ids.len();406 for id in token_ids.into_iter() {407 let id: u32 = id.try_into().map_err(|_| "token id overflow")?;408 if id != expected_index {409 return Err("item id should be next".into());410 }411 expected_index = expected_index.checked_add(1).ok_or("item id overflow")?;412 }413 let data = (0..total_tokens)414 .map(|_| CreateItemData::<T> {415 const_data: BoundedVec::default(),416 variable_data: BoundedVec::default(),417 owner: to.clone(),418 })419 .collect();420421 <Pallet<T>>::create_multiple_items(self, &caller, data).map_err(dispatch_to_evm::<T>)?;422 Ok(true)423 }424425 #[solidity(rename_selector = "mintBulkWithTokenURI")]426 #[weight(<SelfWeightOf<T>>::create_multiple_items(tokens.len() as u32))]427 fn mint_bulk_with_token_uri(428 &mut self,429 caller: caller,430 to: address,431 tokens: Vec<(uint256, string)>,432 ) -> Result<bool> {433 if let SchemaVersion::ImageURL = self.schema_version {434 let caller = T::CrossAccountId::from_eth(caller);435 let to = T::CrossAccountId::from_eth(to);436 let mut expected_index = <TokensMinted<T>>::get(self.id)437 .checked_add(1)438 .ok_or("item id overflow")?;439440 let mut data = Vec::with_capacity(tokens.len());441 for (id, token_uri) in tokens {442 let id: u32 = id.try_into().map_err(|_| "token id overflow")?;443 if id != expected_index {444 panic!("item id should be next ({}) but got {}", expected_index, id);445 }446 expected_index = expected_index.checked_add(1).ok_or("item id overflow")?;447448 data.push(CreateItemData::<T> {449 const_data: Vec::<u8>::from(token_uri)450 .try_into()451 .map_err(|_| "token uri is too long")?,452 variable_data: vec![].try_into().unwrap(),453 owner: to.clone(),454 });455 }456457 <Pallet<T>>::create_multiple_items(self, &caller, data)458 .map_err(dispatch_to_evm::<T>)?;459 Ok(true)460 } else {461 Err(error_unsupported_shema_version())462 }463 }464}465466#[solidity_interface(467 name = "UniqueNFT",468 is(469 ERC721,470 ERC721Metadata,471 ERC721Enumerable,472 ERC721UniqueExtensions,473 ERC721Mintable,474 ERC721Burnable,475 )476)]477impl<T: Config> NonfungibleHandle<T> {}478479// Not a tests, but code generators480generate_stubgen!(gen_impl, UniqueNFTCall<()>, true);481generate_stubgen!(gen_iface, UniqueNFTCall<()>, false);482483impl<T: Config> CommonEvmHandler for NonfungibleHandle<T> {484 const CODE: &'static [u8] = include_bytes!("./stubs/UniqueNFT.raw");485486 fn call(self, source: &H160, input: &[u8], value: U256) -> Option<PrecompileResult> {487 call::<T, UniqueNFTCall<T>, _>(*source, self, value, input)488 }489}