difftreelog
feat nft benchmarking
in: master
8 files changed
Makefilediffbeforeafterboth10bench-evm-migration:10bench-evm-migration:11 make _bench PALLET=evm-migration11 make _bench PALLET=evm-migration1213.PHONY: bench-nft14bench-nft:15 make _bench PALLET=nft121613.PHONY: bench17.PHONY: bench14bench: bench-evm-migration18bench: bench-evm-migration bench-nft1519pallets/nft/src/benchmarking.rsdiffbeforeafterboth1#![cfg(feature = "runtime-benchmarks")]1#![cfg(feature = "runtime-benchmarks")]223use super::*;3use super::*;4use crate::Module as Nft;4use crate::Pallet;56use sp_std::prelude::*;7use frame_system::RawOrigin;5use frame_system::RawOrigin;8use frame_benchmarking::{benchmarks, account, whitelisted_caller}; // , TrackedStorageKey,6use frame_benchmarking::{benchmarks, account};7use nft_data_structs::*;8use core::convert::TryInto;9use sp_runtime::DispatchError;91010const SEED: u32 = 1;11const SEED: u32 = 1;11/*1212fn default_nft_data() -> CreateItemData {13fn create_data(size: usize) -> Vec<u8> {13 CreateItemData::NFT(CreateNftData { const_data: vec![1, 2, 3], variable_data: vec![3, 2, 1] })14 (0..size).map(|v| (v & 0xff) as u8).collect()14}15}1516fn create_u16_data(size: usize) -> Vec<u16> {16fn default_fungible_data () -> CreateItemData {17 (0..size).map(|v| (v & 0xffff) as u16).collect()17 CreateItemData::Fungible(CreateFungibleData { })18}18}191920fn default_nft_data() -> CreateItemData {20fn default_re_fungible_data () -> CreateItemData {21 CreateItemData::NFT(CreateNftData {21 CreateItemData::ReFungible(CreateReFungibleData { const_data: vec![1, 2, 3], variable_data: vec![3, 2, 1] })22 const_data: create_data(CUSTOM_DATA_LIMIT as usize).try_into().unwrap(),22}23 variable_data: create_data(CUSTOM_DATA_LIMIT as usize).try_into().unwrap(),23*/24 })25}2627fn default_fungible_data() -> CreateItemData {28 CreateItemData::Fungible(CreateFungibleData { value: 1000 })29}3031fn default_re_fungible_data() -> CreateItemData {32 CreateItemData::ReFungible(CreateReFungibleData {33 const_data: create_data(CUSTOM_DATA_LIMIT as usize).try_into().unwrap(),34 variable_data: create_data(CUSTOM_DATA_LIMIT as usize).try_into().unwrap(),35 pieces: 1000,36 })37}3839fn create_collection_helper<T: Config>(40 owner: T::AccountId,41 mode: CollectionMode,42) -> Result<CollectionId, DispatchError> {43 T::Currency::deposit_creating(&owner, T::CollectionCreationPrice::get());44 let col_name = create_u16_data(MAX_COLLECTION_NAME_LENGTH)45 .try_into()46 .unwrap();47 let col_desc = create_u16_data(MAX_COLLECTION_DESCRIPTION_LENGTH)48 .try_into()49 .unwrap();50 let token_prefix = create_data(MAX_TOKEN_PREFIX_LENGTH).try_into().unwrap();51 <Pallet<T>>::create_collection(52 RawOrigin::Signed(owner).into(),53 col_name,54 col_desc,55 token_prefix,56 mode,57 )?;58 Ok(CreatedCollectionCount::get())59}60fn create_nft_collection<T: Config>(owner: T::AccountId) -> Result<CollectionId, DispatchError> {61 create_collection_helper::<T>(owner, CollectionMode::NFT)62}63fn create_fungible_collection<T: Config>(64 owner: T::AccountId,65) -> Result<CollectionId, DispatchError> {66 create_collection_helper::<T>(owner, CollectionMode::Fungible(0))67}68fn create_refungible_collection<T: Config>(69 owner: T::AccountId,70) -> Result<CollectionId, DispatchError> {71 create_collection_helper::<T>(owner, CollectionMode::ReFungible)72}247325benchmarks! {74benchmarks! {267527 create_collection {76 create_collection {28 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();77 let col_name: Vec<u16> = create_u16_data(MAX_COLLECTION_NAME_LENGTH);78 let col_desc: Vec<u16> = create_u16_data(MAX_COLLECTION_DESCRIPTION_LENGTH);79 let token_prefix: Vec<u8> = create_data(MAX_TOKEN_PREFIX_LENGTH);80 let mode: CollectionMode = CollectionMode::NFT;81 let caller: T::AccountId = account("caller", 0, SEED);82 T::Currency::deposit_creating(&caller, T::CollectionCreationPrice::get());83 }: _(RawOrigin::Signed(caller.clone()), col_name.clone(), col_desc.clone(), token_prefix.clone(), mode)84 verify {85 assert_eq!(<Pallet<T>>::collection_id(2).unwrap().owner, caller);86 }8788 destroy_collection {89 let caller: T::AccountId = account("caller", 0, SEED);90 let collection = create_nft_collection::<T>(caller.clone())?;91 }: _(RawOrigin::Signed(caller.clone()), collection)9293 add_to_white_list {94 let caller: T::AccountId = account("caller", 0, SEED);95 let whitelist_account: T::AccountId = account("admin", 0, SEED);96 let collection = create_nft_collection::<T>(caller.clone())?;97 }: _(RawOrigin::Signed(caller.clone()), collection, T::CrossAccountId::from_sub(whitelist_account))9899 remove_from_white_list {100 let caller: T::AccountId = account("caller", 0, SEED);101 let whitelist_account: T::AccountId = account("admin", 0, SEED);102 let collection = create_nft_collection::<T>(caller.clone())?;103 <Pallet<T>>::add_to_white_list(RawOrigin::Signed(caller.clone()).into(), collection, T::CrossAccountId::from_sub(whitelist_account.clone()))?;104 }: _(RawOrigin::Signed(caller.clone()), collection, T::CrossAccountId::from_sub(whitelist_account))105106 set_public_access_mode {29 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();107 let caller: T::AccountId = account("caller", 0, SEED);108 let collection = create_nft_collection::<T>(caller.clone())?;109 }: _(RawOrigin::Signed(caller.clone()), collection, AccessMode::WhiteList)110111 set_mint_permission {112 let caller: T::AccountId = account("caller", 0, SEED);113 let collection = create_nft_collection::<T>(caller.clone())?;114 }: _(RawOrigin::Signed(caller.clone()), collection, true)115116 change_collection_owner {117 let caller: T::AccountId = account("caller", 0, SEED);118 let collection = create_nft_collection::<T>(caller.clone())?;119 let new_owner: T::AccountId = account("admin", 0, SEED);120 }: _(RawOrigin::Signed(caller.clone()), collection, new_owner)121122 add_collection_admin {123 let caller: T::AccountId = account("caller", 0, SEED);124 let collection = create_nft_collection::<T>(caller.clone())?;125 let new_admin: T::AccountId = account("admin", 0, SEED);126 }: _(RawOrigin::Signed(caller.clone()), collection, T::CrossAccountId::from_sub(new_admin))127128 remove_collection_admin {129 let caller: T::AccountId = account("caller", 0, SEED);130 let collection = create_nft_collection::<T>(caller.clone())?;131 let new_admin: T::AccountId = account("admin", 0, SEED);132 <Pallet<T>>::add_collection_admin(RawOrigin::Signed(caller.clone()).into(), 2, T::CrossAccountId::from_sub(new_admin.clone()))?;133 }: _(RawOrigin::Signed(caller.clone()), collection, T::CrossAccountId::from_sub(new_admin))134135 set_collection_sponsor {30 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();136 let caller: T::AccountId = account("caller", 0, SEED);137 let collection = create_nft_collection::<T>(caller.clone())?;138 }: _(RawOrigin::Signed(caller.clone()), collection, caller.clone())139140 confirm_sponsorship {141 let caller: T::AccountId = account("caller", 0, SEED);142 let collection = create_nft_collection::<T>(caller.clone())?;143 <Pallet<T>>::set_collection_sponsor(RawOrigin::Signed(caller.clone()).into(), 2, caller.clone())?;144 }: _(RawOrigin::Signed(caller.clone()), collection)145146 remove_collection_sponsor {31 let mode: CollectionMode = CollectionMode::NFT;147 let caller: T::AccountId = account("caller", 0, SEED);148 let collection = create_nft_collection::<T>(caller.clone())?;149 <Pallet<T>>::set_collection_sponsor(RawOrigin::Signed(caller.clone()).into(), 2, caller.clone())?;150 <Pallet<T>>::confirm_sponsorship(RawOrigin::Signed(caller.clone()).into(), 2)?;151 }: _(RawOrigin::Signed(caller.clone()), collection)152153 // nft item154 create_item_nft {155 let b in 0..(CUSTOM_DATA_LIMIT * 2);156157 let caller: T::AccountId = account("caller", 0, SEED);158 let collection = create_nft_collection::<T>(caller.clone())?;159 let data = CreateItemData::NFT(CreateNftData {160 const_data: create_data(b.min(CUSTOM_DATA_LIMIT) as usize).try_into().unwrap(),161 variable_data: create_data(b.saturating_sub(CUSTOM_DATA_LIMIT) as usize).try_into().unwrap(),162 });163 }: create_item(RawOrigin::Signed(caller.clone()), collection, T::CrossAccountId::from_sub(caller.clone()), data)164165 // fungible item166 create_item_fungible {32 let caller: T::AccountId = account("caller", 0, SEED);167 let caller: T::AccountId = account("caller", 0, SEED);168 let collection = create_fungible_collection::<T>(caller.clone())?;169 let data = CreateItemData::Fungible(CreateFungibleData {170 value: 1000,171 });33 }: _(RawOrigin::Signed(caller.clone()), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode)172 }: create_item(RawOrigin::Signed(caller.clone()), collection, T::CrossAccountId::from_sub(caller.clone()), data)34/*17335 verify {174 // refungible item36 assert_eq!(Nft::<T>::collection_id(2).owner, caller);175 create_item_refungible {37 }176 let b in 0..(CUSTOM_DATA_LIMIT * 2);38 destroy_collection {17739 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();178 let caller: T::AccountId = account("caller", 0, SEED);40 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();179 let collection = create_refungible_collection::<T>(caller.clone())?;41 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();180 let data = CreateItemData::ReFungible(CreateReFungibleData {42 let mode: CollectionMode = CollectionMode::NFT;181 const_data: create_data(b.min(CUSTOM_DATA_LIMIT) as usize).try_into().unwrap(),43 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());182 variable_data: create_data(b.saturating_sub(CUSTOM_DATA_LIMIT) as usize).try_into().unwrap(),44 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;183 pieces: 1000,45 }: _(RawOrigin::Signed(caller.clone()), 2)184 });46185 }: create_item(RawOrigin::Signed(caller.clone()), collection, T::CrossAccountId::from_sub(caller.clone()), data)47 add_to_white_list {18648 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();187 burn_item_nft {49 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();188 let caller: T::AccountId = account("caller", 0, SEED);50 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();189 let collection = create_nft_collection::<T>(caller.clone())?;51 let mode: CollectionMode = CollectionMode::NFT;190 let data = default_nft_data();52 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());191 <Pallet<T>>::create_item(RawOrigin::Signed(caller.clone()).into(), collection, T::CrossAccountId::from_sub(caller.clone()), data)?;53 let whitelist_account: T::AccountId = account("admin", 0, SEED);192 }: burn_item(RawOrigin::Signed(caller.clone()), collection, 1, 1)54 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;19355 }: add_to_white_list(RawOrigin::Signed(caller.clone()), 2, whitelist_account)194 transfer_nft {56195 let caller: T::AccountId = account("caller", 0, SEED);57 remove_from_white_list {196 let collection = create_nft_collection::<T>(caller.clone())?;58 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();197 let recipient: T::AccountId = account("recipient", 0, SEED);59 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();198 let data = default_nft_data();60 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();199 <Pallet<T>>::create_item(RawOrigin::Signed(caller.clone()).into(), collection, T::CrossAccountId::from_sub(caller.clone()), data)?;61 let mode: CollectionMode = CollectionMode::NFT;200 }: transfer(RawOrigin::Signed(caller.clone()), T::CrossAccountId::from_sub(recipient.clone()), collection, 1, 1)62 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());20163 let whitelist_account: T::AccountId = account("admin", 0, SEED);202 transfer_fungible {64 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;203 let caller: T::AccountId = account("caller", 0, SEED);65 Nft::<T>::add_to_white_list(RawOrigin::Signed(caller.clone()).into(), 2, whitelist_account.clone())?;204 let collection = create_fungible_collection::<T>(caller.clone())?;66 }: remove_from_white_list(RawOrigin::Signed(caller.clone()), 2, whitelist_account)205 let recipient: T::AccountId = account("recipient", 0, SEED);67206 let data = default_fungible_data();68 set_public_access_mode {207 <Pallet<T>>::create_item(RawOrigin::Signed(caller.clone()).into(), collection, T::CrossAccountId::from_sub(caller.clone()), data)?;69 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();208 }: transfer(RawOrigin::Signed(caller.clone()), T::CrossAccountId::from_sub(recipient.clone()), collection, 1, 1)70 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();20971 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();210 transfer_refungible {72 let mode: CollectionMode = CollectionMode::NFT;211 let caller: T::AccountId = account("caller", 0, SEED);73 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());212 let collection = create_refungible_collection::<T>(caller.clone())?;74 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;213 let recipient: T::AccountId = account("recipient", 0, SEED);75 }: set_public_access_mode(RawOrigin::Signed(caller.clone()), 2, AccessMode::WhiteList)214 let data = default_re_fungible_data();76215 <Pallet<T>>::create_item(RawOrigin::Signed(caller.clone()).into(), collection, T::CrossAccountId::from_sub(caller.clone()), data)?;77 set_mint_permission {216 }: transfer(RawOrigin::Signed(caller.clone()), T::CrossAccountId::from_sub(recipient.clone()), collection, 1, 1)78 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();21779 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();218 approve_nft {80 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();219 let caller: T::AccountId = account("caller", 0, SEED);81 let mode: CollectionMode = CollectionMode::NFT;220 let collection = create_nft_collection::<T>(caller.clone())?;82 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());221 let recipient: T::AccountId = account("recipient", 0, SEED);83 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;222 let data = default_nft_data();84 }: set_mint_permission(RawOrigin::Signed(caller.clone()), 2, true)223 <Pallet<T>>::create_item(RawOrigin::Signed(caller.clone()).into(), 2, T::CrossAccountId::from_sub(caller.clone()), data)?;85224 }: approve(RawOrigin::Signed(caller.clone()), T::CrossAccountId::from_sub(recipient.clone()), collection, 1, 1)86 change_collection_owner {22587 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();226 // Nft88 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();227 transfer_from_nft {89 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();228 let caller: T::AccountId = account("caller", 0, SEED);90 let mode: CollectionMode = CollectionMode::NFT;229 let collection = create_nft_collection::<T>(caller.clone())?;91 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());230 let recipient: T::AccountId = account("recipient", 0, SEED);92 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;231 let data = default_nft_data();93 let new_owner: T::AccountId = account("admin", 0, SEED);232 <Pallet<T>>::create_item(RawOrigin::Signed(caller.clone()).into(), 2, T::CrossAccountId::from_sub(caller.clone()), data)?;94 }: change_collection_owner(RawOrigin::Signed(caller.clone()), 2, new_owner)233 <Pallet<T>>::approve(RawOrigin::Signed(caller.clone()).into(), T::CrossAccountId::from_sub(recipient.clone()), 2, 1, 1)?;95234 }: transfer_from(RawOrigin::Signed(caller.clone()), T::CrossAccountId::from_sub(caller.clone()), T::CrossAccountId::from_sub(recipient.clone()), 2, 1, 1)96 add_collection_admin {23597 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();236 // Fungible98 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();237 transfer_from_fungible {99 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();238 let caller: T::AccountId = account("caller", 0, SEED);100 let mode: CollectionMode = CollectionMode::NFT;239 let collection = create_fungible_collection::<T>(caller.clone())?;101 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());240 let recipient: T::AccountId = account("recipient", 0, SEED);102 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;241 let data = default_fungible_data();103 let new_admin: T::AccountId = account("admin", 0, SEED);242 <Pallet<T>>::create_item(RawOrigin::Signed(caller.clone()).into(), 2, T::CrossAccountId::from_sub(caller.clone()), data)?;104 }: add_collection_admin(RawOrigin::Signed(caller.clone()), 2, new_admin)243 <Pallet<T>>::approve(RawOrigin::Signed(caller.clone()).into(), T::CrossAccountId::from_sub(recipient.clone()), 2, 1, 1)?;105244 }: transfer_from(RawOrigin::Signed(caller.clone()), T::CrossAccountId::from_sub(caller.clone()), T::CrossAccountId::from_sub(recipient.clone()), 2, 1, 1)106 remove_collection_admin {245107 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();246 // ReFungible108 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();247 transfer_from_refungible {109 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();248 let caller: T::AccountId = account("caller", 0, SEED);110 let mode: CollectionMode = CollectionMode::NFT;249 let collection = create_refungible_collection::<T>(caller.clone())?;111 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());250 let recipient: T::AccountId = account("recipient", 0, SEED);112 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;251 let data = default_re_fungible_data();113 let new_admin: T::AccountId = account("admin", 0, SEED);252 <Pallet<T>>::create_item(RawOrigin::Signed(caller.clone()).into(), 2, T::CrossAccountId::from_sub(caller.clone()), data)?;114 Nft::<T>::add_collection_admin(RawOrigin::Signed(caller.clone()).into(), 2, new_admin.clone())?;253 <Pallet<T>>::approve(RawOrigin::Signed(caller.clone()).into(), T::CrossAccountId::from_sub(recipient.clone()), 2, 1, 1)?;115 }: remove_collection_admin(RawOrigin::Signed(caller.clone()), 2, new_admin)254 }: transfer_from(RawOrigin::Signed(caller.clone()), T::CrossAccountId::from_sub(caller.clone()), T::CrossAccountId::from_sub(recipient.clone()), 2, 1, 1)116255117 set_collection_sponsor {256 set_offchain_schema {118 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();257 let b in 0..OFFCHAIN_SCHEMA_LIMIT;119 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();258120 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();259 let caller: T::AccountId = account("caller", 0, SEED);121 let mode: CollectionMode = CollectionMode::NFT;260 let collection = create_nft_collection::<T>(caller.clone())?;122 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());261 let data = create_data(b as usize);123 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;262 }: set_offchain_schema(RawOrigin::Signed(caller.clone()), collection, data)124 }: set_collection_sponsor(RawOrigin::Signed(caller.clone()), 2, caller.clone())263125264 set_const_on_chain_schema {126 confirm_sponsorship {265 let b in 0..CONST_ON_CHAIN_SCHEMA_LIMIT;127 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();266128 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();267 let caller: T::AccountId = account("caller", 0, SEED);129 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();268 let collection = create_nft_collection::<T>(caller.clone())?;130 let mode: CollectionMode = CollectionMode::NFT;269 let data = create_data(b as usize);131 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());270 }: set_const_on_chain_schema(RawOrigin::Signed(caller.clone()), collection, data)132 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;271133 Nft::<T>::set_collection_sponsor(RawOrigin::Signed(caller.clone()).into(), 2, caller.clone())?;272 set_variable_on_chain_schema {134 }: confirm_sponsorship(RawOrigin::Signed(caller.clone()), 2)273 let b in 0..VARIABLE_ON_CHAIN_SCHEMA_LIMIT;135274136 remove_collection_sponsor {275 let caller: T::AccountId = account("caller", 0, SEED);137 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();276 let collection = create_nft_collection::<T>(caller.clone())?;138 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();277 let data = create_data(b as usize);139 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();278 }: set_variable_on_chain_schema(RawOrigin::Signed(caller.clone()), 2, data)140 let mode: CollectionMode = CollectionMode::NFT;279141 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());280 set_variable_meta_data_nft {142 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;281 let b in 0..CUSTOM_DATA_LIMIT;143 Nft::<T>::set_collection_sponsor(RawOrigin::Signed(caller.clone()).into(), 2, caller.clone())?;282144 Nft::<T>::confirm_sponsorship(RawOrigin::Signed(caller.clone()).into(), 2)?;283 let caller: T::AccountId = account("caller", 0, SEED);145 }: remove_collection_sponsor(RawOrigin::Signed(caller.clone()), 2)284 let collection = create_nft_collection::<T>(caller.clone())?;146285 let data = default_nft_data();147 // nft item286 <Pallet<T>>::create_item(RawOrigin::Signed(caller.clone()).into(), 2, T::CrossAccountId::from_sub(caller.clone()), data)?;148 create_item_nft {287 let data = create_data(b as usize);149 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();288 }: set_variable_meta_data(RawOrigin::Signed(caller.clone()), collection, 1, data)150 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();289151 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();290 set_schema_version {152 let mode: CollectionMode = CollectionMode::NFT;291 let caller: T::AccountId = account("caller", 0, SEED);153 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());292 let collection = create_nft_collection::<T>(caller.clone())?;154 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;293 }: set_schema_version(RawOrigin::Signed(caller.clone()), 2, SchemaVersion::Unique)155 let data = default_nft_data();294156295 set_collection_limits{157 }: create_item(RawOrigin::Signed(caller.clone()), 2, caller.clone(), data)296 let caller: T::AccountId = account("caller", 0, SEED);158297 let collection = create_nft_collection::<T>(caller.clone())?;159 #[extra]298160 create_item_nft_large {299 let cl = CollectionLimits {161 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();300 account_token_ownership_limit: 0,162 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();301 sponsored_data_size: 0,163 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();302 token_limit: 1,164 let mode: CollectionMode = CollectionMode::NFT;303 sponsor_transfer_timeout: 0,165 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());304 owner_can_destroy: true,166 let mut nft_data = CreateNftData {305 owner_can_transfer: true,167 const_data: vec![],306 sponsored_data_rate_limit: None,168 variable_data: vec![]307 };169 };308 }: set_collection_limits(RawOrigin::Signed(caller.clone()), 2, cl)170 for i in 0..1998 {171 nft_data.const_data.push(10);172 nft_data.variable_data.push(10);173 }174 let data = CreateItemData::NFT(nft_data);175 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;176177 }: create_item(RawOrigin::Signed(caller.clone()), 2, caller.clone(), data)178179 // fungible item180 create_item_fungible {181 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();182 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();183 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();184 let mode: CollectionMode = CollectionMode::Fungible(3);185 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());186 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;187 let data = default_fungible_data();188189 }: create_item(RawOrigin::Signed(caller.clone()), 2, caller.clone(), data)190191 // refungible item192 create_item_refungible {193 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();194 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();195 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();196 let mode: CollectionMode = CollectionMode::ReFungible(3);197 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());198 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;199 let data = default_re_fungible_data();200201 }: create_item(RawOrigin::Signed(caller.clone()), 2, caller.clone(), data)202203 burn_item {204 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();205 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();206 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();207 let mode: CollectionMode = CollectionMode::NFT;208 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());209 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;210 let data = default_nft_data();211 Nft::<T>::create_item(RawOrigin::Signed(caller.clone()).into(), 2, caller.clone(), data)?;212213 }: burn_item(RawOrigin::Signed(caller.clone()), 2, 1)214215 transfer_nft {216 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();217 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();218 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();219 let mode: CollectionMode = CollectionMode::NFT;220 let recipient: T::AccountId = account("recipient", 0, SEED);221 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());222 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;223 let data = default_nft_data();224 Nft::<T>::create_item(RawOrigin::Signed(caller.clone()).into(), 2, caller.clone(), data)?;225226 }: transfer(RawOrigin::Signed(caller.clone()), recipient.clone(), 2, 1, 1)227228 transfer_fungible {229 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();230 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();231 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();232 let mode: CollectionMode = CollectionMode::Fungible(3);233 let recipient: T::AccountId = account("recipient", 0, SEED);234 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());235 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;236 let data = default_fungible_data();237 Nft::<T>::create_item(RawOrigin::Signed(caller.clone()).into(), 2, caller.clone(), data)?;238239 }: transfer(RawOrigin::Signed(caller.clone()), recipient.clone(), 2, 1, 1)240241 transfer_refungible {242 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();243 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();244 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();245 let mode: CollectionMode = CollectionMode::ReFungible(3);246 let recipient: T::AccountId = account("recipient", 0, SEED);247 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());248 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;249 let data = default_re_fungible_data();250 Nft::<T>::create_item(RawOrigin::Signed(caller.clone()).into(), 2, caller.clone(), data)?;251252 }: transfer(RawOrigin::Signed(caller.clone()), recipient.clone(), 2, 1, 1)253254 approve {255 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();256 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();257 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();258 let mode: CollectionMode = CollectionMode::ReFungible(3);259 let recipient: T::AccountId = account("recipient", 0, SEED);260 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());261 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;262 let data = default_re_fungible_data();263 Nft::<T>::create_item(RawOrigin::Signed(caller.clone()).into(), 2, caller.clone(), data)?;264265 }: approve(RawOrigin::Signed(caller.clone()), recipient.clone(), 2, 1)266267 // Nft268 transfer_from_nft {269 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();270 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();271 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();272 let mode: CollectionMode = CollectionMode::NFT;273 let recipient: T::AccountId = account("recipient", 0, SEED);274 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());275 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;276 let data = default_nft_data();277 Nft::<T>::create_item(RawOrigin::Signed(caller.clone()).into(), 2, caller.clone(), data)?;278 Nft::<T>::approve(RawOrigin::Signed(caller.clone()).into(), recipient.clone(), 2, 1)?;279280 }: transfer_from(RawOrigin::Signed(caller.clone()), caller.clone(), recipient.clone(), 2, 1, 1)281282 // Fungible283 transfer_from_fungible {284 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();285 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();286 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();287 let mode: CollectionMode = CollectionMode::Fungible(3);288 let recipient: T::AccountId = account("recipient", 0, SEED);289 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());290 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;291 let data = default_fungible_data();292 Nft::<T>::create_item(RawOrigin::Signed(caller.clone()).into(), 2, caller.clone(), data)?;293 Nft::<T>::approve(RawOrigin::Signed(caller.clone()).into(), recipient.clone(), 2, 1)?;294295 }: transfer_from(RawOrigin::Signed(caller.clone()), caller.clone(), recipient.clone(), 2, 1, 1)296297 // ReFungible298 transfer_from_refungible {299 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();300 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();301 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();302 let mode: CollectionMode = CollectionMode::ReFungible(3);303 let recipient: T::AccountId = account("recipient", 0, SEED);304 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());305 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;306 let data = default_re_fungible_data();307 Nft::<T>::create_item(RawOrigin::Signed(caller.clone()).into(), 2, caller.clone(), data)?;308 Nft::<T>::approve(RawOrigin::Signed(caller.clone()).into(), recipient.clone(), 2, 1)?;309310 }: transfer_from(RawOrigin::Signed(caller.clone()), caller.clone(), recipient.clone(), 2, 1, 1)311312 enable_contract_sponsoring {313 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());314315 }: enable_contract_sponsoring(RawOrigin::Signed(caller.clone()), caller.clone(), true)316317 set_offchain_schema {318 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();319 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();320 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();321 let mode: CollectionMode = CollectionMode::ReFungible(3);322 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());323 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;324325 }: set_offchain_schema(RawOrigin::Signed(caller.clone()), 2, [1,2,3].to_vec())326327 set_const_on_chain_schema {328 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();329 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();330 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();331 let mode: CollectionMode = CollectionMode::ReFungible(3);332 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());333 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;334 }: set_const_on_chain_schema(RawOrigin::Signed(caller.clone()), 2, [1,2,3].to_vec())335336 set_variable_on_chain_schema {337 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();338 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();339 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();340 let mode: CollectionMode = CollectionMode::ReFungible(3);341 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());342 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;343 }: set_variable_on_chain_schema(RawOrigin::Signed(caller.clone()), 2, [1,2,3].to_vec())344345 set_variable_meta_data {346 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();347 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();348 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();349 let mode: CollectionMode = CollectionMode::NFT;350 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());351 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;352 let data = default_nft_data();353 Nft::<T>::create_item(RawOrigin::Signed(caller.clone()).into(), 2, caller.clone(), data)?;354355 }: set_variable_meta_data(RawOrigin::Signed(caller.clone()), 2, 1, [1, 2, 3].to_vec())356357 set_schema_version {358 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();359 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();360 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();361 let mode: CollectionMode = CollectionMode::NFT;362 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());363 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;364 }: set_schema_version(RawOrigin::Signed(caller.clone()), 2, SchemaVersion::Unique)365366 set_chain_limits {367 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());368 let limits = ChainLimits {369 collection_numbers_limit: 0,370 account_token_ownership_limit: 0,371 collections_admins_limit: 0,372 custom_data_limit: 0,373 nft_sponsor_transfer_timeout: 0,374 fungible_sponsor_transfer_timeout: 0,375 refungible_sponsor_transfer_timeout: 0376 };377 }: set_chain_limits(RawOrigin::Signed(caller.clone()), limits)378379 set_contract_sponsoring_rate_limit {380 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();381 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();382 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();383 let mode: CollectionMode = CollectionMode::NFT;384 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());385 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;386 let block_number: T::BlockNumber = 0.into();387 }: set_contract_sponsoring_rate_limit(RawOrigin::Signed(caller.clone()), caller.clone(), block_number)388389 set_collection_limits{390 let col_name1: Vec<u16> = "Test1".encode_utf16().collect::<Vec<u16>>();391 let col_desc1: Vec<u16> = "TestDescription1".encode_utf16().collect::<Vec<u16>>();392 let token_prefix1: Vec<u8> = b"token_prefix1".to_vec();393 let mode: CollectionMode = CollectionMode::NFT;394 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());395 Nft::<T>::create_collection(RawOrigin::Signed(caller.clone()).into(), col_name1.clone(), col_desc1.clone(), token_prefix1.clone(), mode.clone())?;396397 let cl = CollectionLimits {398 account_token_ownership_limit: 0,399 sponsored_data_size: 0,400 token_limit: 0,401 sponsor_transfer_timeout: 0402 };403404 }: set_collection_limits(RawOrigin::Signed(caller.clone()), 2, cl)405406 add_to_contract_white_list{407 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());408 }: add_to_contract_white_list(RawOrigin::Signed(caller.clone()), caller.clone(), caller.clone())409410 remove_from_contract_white_list{411 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());412 Nft::<T>::add_to_contract_white_list(RawOrigin::Signed(caller.clone()).into(), caller.clone(), caller.clone())?;413 }: remove_from_contract_white_list(RawOrigin::Signed(caller.clone()), caller.clone(), caller.clone())414415 toggle_contract_white_list{416 let caller: T::AccountId = T::AccountId::from(whitelisted_caller());417 }: toggle_contract_white_list(RawOrigin::Signed(caller.clone()), caller.clone(), true)418*/419}309}420310pallets/nft/src/default_weights.rsdiffbeforeafterbothno changes
pallets/nft/src/lib.rsdiffbeforeafterboth40 MAX_DECIMAL_POINTS, MAX_SPONSOR_TIMEOUT, MAX_TOKEN_OWNERSHIP, MAX_REFUNGIBLE_PIECES,40 MAX_DECIMAL_POINTS, MAX_SPONSOR_TIMEOUT, MAX_TOKEN_OWNERSHIP, MAX_REFUNGIBLE_PIECES,41 CUSTOM_DATA_LIMIT, COLLECTION_NUMBER_LIMIT, ACCOUNT_TOKEN_OWNERSHIP_LIMIT,41 CUSTOM_DATA_LIMIT, COLLECTION_NUMBER_LIMIT, ACCOUNT_TOKEN_OWNERSHIP_LIMIT,42 VARIABLE_ON_CHAIN_SCHEMA_LIMIT, CONST_ON_CHAIN_SCHEMA_LIMIT, COLLECTION_ADMINS_LIMIT,42 VARIABLE_ON_CHAIN_SCHEMA_LIMIT, CONST_ON_CHAIN_SCHEMA_LIMIT, COLLECTION_ADMINS_LIMIT,43 OFFCHAIN_SCHEMA_LIMIT, AccessMode, Collection, CreateItemData, CollectionLimits, CollectionId,43 OFFCHAIN_SCHEMA_LIMIT, MAX_TOKEN_PREFIX_LENGTH, MAX_COLLECTION_NAME_LENGTH,44 MAX_COLLECTION_DESCRIPTION_LENGTH, AccessMode, Collection, CreateItemData, CollectionLimits,44 CollectionMode, TokenId, SchemaVersion, SponsorshipState, Ownership, NftItemType,45 CollectionId, CollectionMode, TokenId, SchemaVersion, SponsorshipState, Ownership, NftItemType,45 FungibleItemType, ReFungibleItemType,46 FungibleItemType, ReFungibleItemType,46};47};51#[cfg(test)]52#[cfg(test)]52mod tests;53mod tests;535454mod default_weights;55mod eth;55mod eth;56mod sponsorship;56mod sponsorship;57pub use sponsorship::NftSponsorshipHandler;57pub use sponsorship::NftSponsorshipHandler;64#[cfg(feature = "runtime-benchmarks")]64#[cfg(feature = "runtime-benchmarks")]65mod benchmarking;65mod benchmarking;6667pub trait WeightInfo {66pub mod weights;68 fn create_collection() -> Weight;69 fn destroy_collection() -> Weight;70 fn add_to_white_list() -> Weight;71 fn remove_from_white_list() -> Weight;72 fn set_public_access_mode() -> Weight;73 fn set_mint_permission() -> Weight;74 fn change_collection_owner() -> Weight;75 fn add_collection_admin() -> Weight;76 fn remove_collection_admin() -> Weight;77 fn set_collection_sponsor() -> Weight;78 fn confirm_sponsorship() -> Weight;79 fn remove_collection_sponsor() -> Weight;80 fn create_item(s: usize) -> Weight;67use weights::WeightInfo;81 fn burn_item() -> Weight;82 fn transfer() -> Weight;83 fn approve() -> Weight;84 fn transfer_from() -> Weight;85 fn set_offchain_schema() -> Weight;86 fn set_const_on_chain_schema() -> Weight;87 fn set_variable_on_chain_schema() -> Weight;88 fn set_variable_meta_data() -> Weight;89 fn enable_contract_sponsoring() -> Weight;90 fn set_schema_version() -> Weight;91 fn set_contract_sponsoring_rate_limit() -> Weight;92 fn set_variable_meta_data_sponsoring_rate_limit() -> Weight;93 fn toggle_contract_white_list() -> Weight;94 fn add_to_contract_white_list() -> Weight;95 fn remove_from_contract_white_list() -> Weight;96 fn set_collection_limits() -> Weight;97}986899decl_error! {69decl_error! {100 /// Error for non-fungible-token module.70 /// Error for non-fungible-token module.246 type TreasuryAccountId: Get<Self::AccountId>;216 type TreasuryAccountId: Get<Self::AccountId>;247}217}218219type SelfWeightOf<T> = <T as Config>::WeightInfo;220221trait WeightInfoHelpers: WeightInfo {222 fn transfer() -> Weight {223 Self::transfer_nft()224 .max(Self::transfer_fungible())225 .max(Self::transfer_refungible())226 }227 fn transfer_from() -> Weight {228 Self::transfer_from_nft()229 .max(Self::transfer_from_fungible())230 .max(Self::transfer_from_refungible())231 }232 fn approve() -> Weight {233 // TODO: refungible, fungible234 Self::approve_nft()235 }236 fn set_variable_meta_data(data: u32) -> Weight {237 // TODO: refungible238 Self::set_variable_meta_data_nft(data)239 }240 fn create_item(data: u32) -> Weight {241 Self::create_item_nft(data)242 .max(Self::create_item_fungible())243 .max(Self::create_item_refungible(data))244 }245 fn burn_item() -> Weight {246 // TODO: refungible, fungible247 Self::burn_item_nft()248 }249}250impl<T: WeightInfo> WeightInfoHelpers for T {}248251249// # Used definitions252// # Used definitions250//253//455 ///458 ///456 /// * mode: [CollectionMode] collection type and type dependent data.459 /// * mode: [CollectionMode] collection type and type dependent data.457 // returns collection ID460 // returns collection ID458 #[weight = <T as Config>::WeightInfo::create_collection()]461 #[weight = <SelfWeightOf<T>>::create_collection()]459 #[transactional]462 #[transactional]460 pub fn create_collection(origin,463 pub fn create_collection(origin,461 collection_name: Vec<u16>,464 collection_name: Vec<u16>,492495493 // check params496 // check params494 ensure!(decimal_points <= MAX_DECIMAL_POINTS, Error::<T>::CollectionDecimalPointLimitExceeded);497 ensure!(decimal_points <= MAX_DECIMAL_POINTS, Error::<T>::CollectionDecimalPointLimitExceeded);495 ensure!(collection_name.len() <= 64, Error::<T>::CollectionNameLimitExceeded);498 ensure!(collection_name.len() <= MAX_COLLECTION_NAME_LENGTH, Error::<T>::CollectionNameLimitExceeded);496 ensure!(collection_description.len() <= 256, Error::<T>::CollectionDescriptionLimitExceeded);499 ensure!(collection_description.len() <= MAX_COLLECTION_DESCRIPTION_LENGTH, Error::<T>::CollectionDescriptionLimitExceeded);497 ensure!(token_prefix.len() <= 16, Error::<T>::CollectionTokenPrefixLimitExceeded);500 ensure!(token_prefix.len() <= MAX_TOKEN_PREFIX_LENGTH, Error::<T>::CollectionTokenPrefixLimitExceeded);498501499 // Generate next collection ID502 // Generate next collection ID500 let next_id = created_count503 let next_id = created_count545 /// # Arguments548 /// # Arguments546 ///549 ///547 /// * collection_id: collection to destroy.550 /// * collection_id: collection to destroy.548 #[weight = <T as Config>::WeightInfo::destroy_collection()]551 #[weight = <SelfWeightOf<T>>::destroy_collection()]549 #[transactional]552 #[transactional]550 pub fn destroy_collection(origin, collection_id: CollectionId) -> DispatchResult {553 pub fn destroy_collection(origin, collection_id: CollectionId) -> DispatchResult {551554593 /// * collection_id.596 /// * collection_id.594 ///597 ///595 /// * address.598 /// * address.596 #[weight = <T as Config>::WeightInfo::add_to_white_list()]599 #[weight = <SelfWeightOf<T>>::add_to_white_list()]597 #[transactional]600 #[transactional]598 pub fn add_to_white_list(origin, collection_id: CollectionId, address: T::CrossAccountId) -> DispatchResult{601 pub fn add_to_white_list(origin, collection_id: CollectionId, address: T::CrossAccountId) -> DispatchResult{599602622 /// * collection_id.625 /// * collection_id.623 ///626 ///624 /// * address.627 /// * address.625 #[weight = <T as Config>::WeightInfo::remove_from_white_list()]628 #[weight = <SelfWeightOf<T>>::remove_from_white_list()]626 #[transactional]629 #[transactional]627 pub fn remove_from_white_list(origin, collection_id: CollectionId, address: T::CrossAccountId) -> DispatchResult{630 pub fn remove_from_white_list(origin, collection_id: CollectionId, address: T::CrossAccountId) -> DispatchResult{628631650 /// * collection_id.653 /// * collection_id.651 ///654 ///652 /// * mode: [AccessMode]655 /// * mode: [AccessMode]653 #[weight = <T as Config>::WeightInfo::set_public_access_mode()]656 #[weight = <SelfWeightOf<T>>::set_public_access_mode()]654 #[transactional]657 #[transactional]655 pub fn set_public_access_mode(origin, collection_id: CollectionId, mode: AccessMode) -> DispatchResult658 pub fn set_public_access_mode(origin, collection_id: CollectionId, mode: AccessMode) -> DispatchResult656 {659 {675 /// * collection_id.678 /// * collection_id.676 ///679 ///677 /// * mint_permission: Boolean parameter. If True, allows minting to Anyone with conditions above.680 /// * mint_permission: Boolean parameter. If True, allows minting to Anyone with conditions above.678 #[weight = <T as Config>::WeightInfo::set_mint_permission()]681 #[weight = <SelfWeightOf<T>>::set_mint_permission()]679 #[transactional]682 #[transactional]680 pub fn set_mint_permission(origin, collection_id: CollectionId, mint_permission: bool) -> DispatchResult683 pub fn set_mint_permission(origin, collection_id: CollectionId, mint_permission: bool) -> DispatchResult681 {684 {698 /// * collection_id.701 /// * collection_id.699 ///702 ///700 /// * new_owner.703 /// * new_owner.701 #[weight = <T as Config>::WeightInfo::change_collection_owner()]704 #[weight = <SelfWeightOf<T>>::change_collection_owner()]702 #[transactional]705 #[transactional]703 pub fn change_collection_owner(origin, collection_id: CollectionId, new_owner: T::AccountId) -> DispatchResult {706 pub fn change_collection_owner(origin, collection_id: CollectionId, new_owner: T::AccountId) -> DispatchResult {704707722 /// * collection_id: ID of the Collection to add admin for.725 /// * collection_id: ID of the Collection to add admin for.723 ///726 ///724 /// * new_admin_id: Address of new admin to add.727 /// * new_admin_id: Address of new admin to add.725 #[weight = <T as Config>::WeightInfo::add_collection_admin()]728 #[weight = <SelfWeightOf<T>>::add_collection_admin()]726 #[transactional]729 #[transactional]727 pub fn add_collection_admin(origin, collection_id: CollectionId, new_admin_id: T::CrossAccountId) -> DispatchResult {730 pub fn add_collection_admin(origin, collection_id: CollectionId, new_admin_id: T::CrossAccountId) -> DispatchResult {728 let sender = T::CrossAccountId::from_sub(ensure_signed(origin)?);731 let sender = T::CrossAccountId::from_sub(ensure_signed(origin)?);753 /// * collection_id: ID of the Collection to remove admin for.756 /// * collection_id: ID of the Collection to remove admin for.754 ///757 ///755 /// * account_id: Address of admin to remove.758 /// * account_id: Address of admin to remove.756 #[weight = <T as Config>::WeightInfo::remove_collection_admin()]759 #[weight = <SelfWeightOf<T>>::remove_collection_admin()]757 #[transactional]760 #[transactional]758 pub fn remove_collection_admin(origin, collection_id: CollectionId, account_id: T::CrossAccountId) -> DispatchResult {761 pub fn remove_collection_admin(origin, collection_id: CollectionId, account_id: T::CrossAccountId) -> DispatchResult {759 let sender = T::CrossAccountId::from_sub(ensure_signed(origin)?);762 let sender = T::CrossAccountId::from_sub(ensure_signed(origin)?);777 /// * collection_id.780 /// * collection_id.778 ///781 ///779 /// * new_sponsor.782 /// * new_sponsor.780 #[weight = <T as Config>::WeightInfo::set_collection_sponsor()]783 #[weight = <SelfWeightOf<T>>::set_collection_sponsor()]781 #[transactional]784 #[transactional]782 pub fn set_collection_sponsor(origin, collection_id: CollectionId, new_sponsor: T::AccountId) -> DispatchResult {785 pub fn set_collection_sponsor(origin, collection_id: CollectionId, new_sponsor: T::AccountId) -> DispatchResult {783 let sender = ensure_signed(origin)?;786 let sender = ensure_signed(origin)?;795 /// # Arguments798 /// # Arguments796 ///799 ///797 /// * collection_id.800 /// * collection_id.798 #[weight = <T as Config>::WeightInfo::confirm_sponsorship()]801 #[weight = <SelfWeightOf<T>>::confirm_sponsorship()]799 #[transactional]802 #[transactional]800 pub fn confirm_sponsorship(origin, collection_id: CollectionId) -> DispatchResult {803 pub fn confirm_sponsorship(origin, collection_id: CollectionId) -> DispatchResult {801 let sender = ensure_signed(origin)?;804 let sender = ensure_signed(origin)?;819 /// # Arguments822 /// # Arguments820 ///823 ///821 /// * collection_id.824 /// * collection_id.822 #[weight = <T as Config>::WeightInfo::remove_collection_sponsor()]825 #[weight = <SelfWeightOf<T>>::remove_collection_sponsor()]823 #[transactional]826 #[transactional]824 pub fn remove_collection_sponsor(origin, collection_id: CollectionId) -> DispatchResult {827 pub fn remove_collection_sponsor(origin, collection_id: CollectionId) -> DispatchResult {825 let sender = ensure_signed(origin)?;828 let sender = ensure_signed(origin)?;855 // .saturating_add(RocksDbWeight::get().reads(10 as Weight))858 // .saturating_add(RocksDbWeight::get().reads(10 as Weight))856 // .saturating_add(RocksDbWeight::get().writes(8 as Weight))]859 // .saturating_add(RocksDbWeight::get().writes(8 as Weight))]857860858 #[weight = <T as Config>::WeightInfo::create_item(data.data_size())]861 #[weight = <SelfWeightOf<T>>::create_item(data.data_size() as u32)]859 #[transactional]862 #[transactional]860 pub fn create_item(origin, collection_id: CollectionId, owner: T::CrossAccountId, data: CreateItemData) -> DispatchResult {863 pub fn create_item(origin, collection_id: CollectionId, owner: T::CrossAccountId, data: CreateItemData) -> DispatchResult {861 let sender = T::CrossAccountId::from_sub(ensure_signed(origin)?);864 let sender = T::CrossAccountId::from_sub(ensure_signed(origin)?);884 /// * itemsData: Array items properties. Each property is an array of bytes itself, see [create_item].887 /// * itemsData: Array items properties. Each property is an array of bytes itself, see [create_item].885 ///888 ///886 /// * owner: Address, initial owner of the NFT.889 /// * owner: Address, initial owner of the NFT.887 #[weight = <T as Config>::WeightInfo::create_item(items_data.iter()890 #[weight = <SelfWeightOf<T>>::create_item(items_data.iter()888 .map(|data| { data.data_size() })891 .map(|data| { data.data_size() as u32 })889 .sum())]892 .sum())]890 #[transactional]893 #[transactional]891 pub fn create_multiple_items(origin, collection_id: CollectionId, owner: T::CrossAccountId, items_data: Vec<CreateItemData>) -> DispatchResult {894 pub fn create_multiple_items(origin, collection_id: CollectionId, owner: T::CrossAccountId, items_data: Vec<CreateItemData>) -> DispatchResult {912 /// * collection_id: ID of the collection.915 /// * collection_id: ID of the collection.913 ///916 ///914 /// * value: New flag value.917 /// * value: New flag value.915 #[weight = <T as Config>::WeightInfo::burn_item()]918 #[weight = <SelfWeightOf<T>>::burn_item()]916 #[transactional]919 #[transactional]917 pub fn set_transfers_enabled_flag(origin, collection_id: CollectionId, value: bool) -> DispatchResult {920 pub fn set_transfers_enabled_flag(origin, collection_id: CollectionId, value: bool) -> DispatchResult {918921938 /// * collection_id: ID of the collection.941 /// * collection_id: ID of the collection.939 ///942 ///940 /// * item_id: ID of NFT to burn.943 /// * item_id: ID of NFT to burn.941 #[weight = <T as Config>::WeightInfo::burn_item()]944 #[weight = <SelfWeightOf<T>>::burn_item()]942 #[transactional]945 #[transactional]943 pub fn burn_item(origin, collection_id: CollectionId, item_id: TokenId, value: u128) -> DispatchResult {946 pub fn burn_item(origin, collection_id: CollectionId, item_id: TokenId, value: u128) -> DispatchResult {944947973 /// * Non-Fungible Mode: Ignored976 /// * Non-Fungible Mode: Ignored974 /// * Fungible Mode: Must specify transferred amount977 /// * Fungible Mode: Must specify transferred amount975 /// * Re-Fungible Mode: Must specify transferred portion (between 0 and 1)978 /// * Re-Fungible Mode: Must specify transferred portion (between 0 and 1)976 #[weight = <T as Config>::WeightInfo::transfer()]979 #[weight = <SelfWeightOf<T>>::transfer()]977 #[transactional]980 #[transactional]978 pub fn transfer(origin, recipient: T::CrossAccountId, collection_id: CollectionId, item_id: TokenId, value: u128) -> DispatchResult {981 pub fn transfer(origin, recipient: T::CrossAccountId, collection_id: CollectionId, item_id: TokenId, value: u128) -> DispatchResult {979 let sender = T::CrossAccountId::from_sub(ensure_signed(origin)?);982 let sender = T::CrossAccountId::from_sub(ensure_signed(origin)?);999 /// * collection_id.1002 /// * collection_id.1000 ///1003 ///1001 /// * item_id: ID of the item.1004 /// * item_id: ID of the item.1002 #[weight = <T as Config>::WeightInfo::approve()]1005 #[weight = <SelfWeightOf<T>>::approve()]1003 #[transactional]1006 #[transactional]1004 pub fn approve(origin, spender: T::CrossAccountId, collection_id: CollectionId, item_id: TokenId, amount: u128) -> DispatchResult {1007 pub fn approve(origin, spender: T::CrossAccountId, collection_id: CollectionId, item_id: TokenId, amount: u128) -> DispatchResult {1005 let sender = T::CrossAccountId::from_sub(ensure_signed(origin)?);1008 let sender = T::CrossAccountId::from_sub(ensure_signed(origin)?);1029 /// * item_id: ID of the item.1032 /// * item_id: ID of the item.1030 ///1033 ///1031 /// * value: Amount to transfer.1034 /// * value: Amount to transfer.1032 #[weight = <T as Config>::WeightInfo::transfer_from()]1035 #[weight = <SelfWeightOf<T>>::transfer_from()]1033 #[transactional]1036 #[transactional]1034 pub fn transfer_from(origin, from: T::CrossAccountId, recipient: T::CrossAccountId, collection_id: CollectionId, item_id: TokenId, value: u128 ) -> DispatchResult {1037 pub fn transfer_from(origin, from: T::CrossAccountId, recipient: T::CrossAccountId, collection_id: CollectionId, item_id: TokenId, value: u128 ) -> DispatchResult {1035 let sender = T::CrossAccountId::from_sub(ensure_signed(origin)?);1038 let sender = T::CrossAccountId::from_sub(ensure_signed(origin)?);1064 /// * collection_id.1067 /// * collection_id.1065 ///1068 ///1066 /// * schema: String representing the offchain data schema.1069 /// * schema: String representing the offchain data schema.1067 #[weight = <T as Config>::WeightInfo::set_variable_meta_data()]1070 #[weight = <SelfWeightOf<T>>::set_variable_meta_data(data.len() as u32)]1068 #[transactional]1071 #[transactional]1069 pub fn set_variable_meta_data (1072 pub fn set_variable_meta_data (1070 origin,1073 origin,1095 /// * collection_id.1098 /// * collection_id.1096 ///1099 ///1097 /// * schema: SchemaVersion: enum1100 /// * schema: SchemaVersion: enum1098 #[weight = <T as Config>::WeightInfo::set_schema_version()]1101 #[weight = <SelfWeightOf<T>>::set_schema_version()]1099 #[transactional]1102 #[transactional]1100 pub fn set_schema_version(1103 pub fn set_schema_version(1101 origin,1104 origin,1121 /// * collection_id.1124 /// * collection_id.1122 ///1125 ///1123 /// * schema: String representing the offchain data schema.1126 /// * schema: String representing the offchain data schema.1124 #[weight = <T as Config>::WeightInfo::set_offchain_schema()]1127 #[weight = <SelfWeightOf<T>>::set_offchain_schema(schema.len() as u32)]1125 #[transactional]1128 #[transactional]1126 pub fn set_offchain_schema(1129 pub fn set_offchain_schema(1127 origin,1130 origin,1151 /// * collection_id.1154 /// * collection_id.1152 ///1155 ///1153 /// * schema: String representing the const on-chain data schema.1156 /// * schema: String representing the const on-chain data schema.1154 #[weight = <T as Config>::WeightInfo::set_const_on_chain_schema()]1157 #[weight = <SelfWeightOf<T>>::set_const_on_chain_schema(schema.len() as u32)]1155 #[transactional]1158 #[transactional]1156 pub fn set_const_on_chain_schema (1159 pub fn set_const_on_chain_schema (1157 origin,1160 origin,1181 /// * collection_id.1184 /// * collection_id.1182 ///1185 ///1183 /// * schema: String representing the variable on-chain data schema.1186 /// * schema: String representing the variable on-chain data schema.1184 #[weight = <T as Config>::WeightInfo::set_const_on_chain_schema()]1187 #[weight = <SelfWeightOf<T>>::set_const_on_chain_schema(schema.len() as u32)]1185 #[transactional]1188 #[transactional]1186 pub fn set_variable_on_chain_schema (1189 pub fn set_variable_on_chain_schema (1187 origin,1190 origin,1199 target_collection.save()1202 target_collection.save()1200 }1203 }120112041202 #[weight = <T as Config>::WeightInfo::set_collection_limits()]1205 #[weight = <SelfWeightOf<T>>::set_collection_limits()]1203 #[transactional]1206 #[transactional]1204 pub fn set_collection_limits(1207 pub fn set_collection_limits(1205 origin,1208 origin,pallets/nft/src/weights.rsdiffbeforeafterbothno changes
primitives/nft/src/lib.rsdiffbeforeafterboth55pub const VARIABLE_ON_CHAIN_SCHEMA_LIMIT: u32 = 1024;55pub const VARIABLE_ON_CHAIN_SCHEMA_LIMIT: u32 = 1024;56pub const CONST_ON_CHAIN_SCHEMA_LIMIT: u32 = 1024;56pub const CONST_ON_CHAIN_SCHEMA_LIMIT: u32 = 1024;5758pub const MAX_COLLECTION_NAME_LENGTH: usize = 64;59pub const MAX_COLLECTION_DESCRIPTION_LENGTH: usize = 256;60pub const MAX_TOKEN_PREFIX_LENGTH: usize = 16;576158/// How much items can be created per single62/// How much items can be created per single59/// create_many call63/// create_many callruntime/src/lib.rsdiffbeforeafterboth119/// Digest item type.119/// Digest item type.120pub type DigestItem = generic::DigestItem<Hash>;120pub type DigestItem = generic::DigestItem<Hash>;121122mod nft_weights;123121124/// Opaque types. These are used by the CLI to instantiate machinery that don't need to know122/// Opaque types. These are used by the CLI to instantiate machinery that don't need to know125/// the specifics of the runtime. They can then be made to be agnostic over specific formats123/// the specifics of the runtime. They can then be made to be agnostic over specific formats695/// Used for the pallet nft in `./nft.rs`693/// Used for the pallet nft in `./nft.rs`696impl pallet_nft::Config for Runtime {694impl pallet_nft::Config for Runtime {697 type Event = Event;695 type Event = Event;698 type WeightInfo = nft_weights::WeightInfo;696 type WeightInfo = pallet_nft::weights::SubstrateWeight<Self>;699697700 type EvmBackwardsAddressMapping = pallet_nft::MapBackwardsAddressTruncated;698 type EvmBackwardsAddressMapping = pallet_nft::MapBackwardsAddressTruncated;701 type EvmAddressMapping = HashedAddressMapping<Self::Hashing>;699 type EvmAddressMapping = HashedAddressMapping<Self::Hashing>;runtime/src/nft_weights.rsdiffbeforeafterbothno changes