difftreelog
feat(rpc) totalSupply
in: master
8 files changed
client/rpc/src/lib.rsdiffbeforeafterboth--- a/client/rpc/src/lib.rs
+++ b/client/rpc/src/lib.rs
@@ -76,6 +76,12 @@
at: Option<BlockHash>,
) -> Result<Vec<u8>>;
+ #[rpc(name = "unique_totalSupply")]
+ fn total_supply(
+ &self,
+ collection: CollectionId,
+ at: Option<BlockHash>,
+ ) -> Result<u32>;
#[rpc(name = "unique_accountBalance")]
fn account_balance(
&self,
@@ -239,6 +245,8 @@
pass_method!(topmost_token_owner(collection: CollectionId, token: TokenId) -> Option<CrossAccountId>);
pass_method!(const_metadata(collection: CollectionId, token: TokenId) -> Vec<u8>);
pass_method!(variable_metadata(collection: CollectionId, token: TokenId) -> Vec<u8>);
+
+ pass_method!(total_supply(collection: CollectionId) -> u32);
pass_method!(account_balance(collection: CollectionId, account: CrossAccountId) -> u32);
pass_method!(balance(collection: CollectionId, account: CrossAccountId, token: TokenId) -> String => |v| v.to_string());
pass_method!(allowance(collection: CollectionId, sender: CrossAccountId, spender: CrossAccountId, token: TokenId) -> String => |v| v.to_string());
pallets/common/src/lib.rsdiffbeforeafterboth--- a/pallets/common/src/lib.rs
+++ b/pallets/common/src/lib.rs
@@ -932,6 +932,8 @@
fn const_metadata(&self, token: TokenId) -> Vec<u8>;
fn variable_metadata(&self, token: TokenId) -> Vec<u8>;
+ /// Amount of unique collection tokens
+ fn total_supply(&self) -> u32;
/// Amount of different tokens account has (Applicable to nonfungible/refungible)
fn account_balance(&self, account: T::CrossAccountId) -> u32;
/// Amount of specific token account have (Applicable to fungible/refungible)
pallets/fungible/src/common.rsdiffbeforeafterboth--- a/pallets/fungible/src/common.rs
+++ b/pallets/fungible/src/common.rs
@@ -244,6 +244,10 @@
fail!(<Error<T>>::FungibleDisallowsNesting)
}
+ fn collection_tokens(&self) -> Vec<TokenId> {
+ vec![TokenId::default()]
+ }
+
fn account_tokens(&self, account: T::CrossAccountId) -> Vec<TokenId> {
if <Balance<T>>::get((self.id, account)) != 0 {
vec![TokenId::default()]
@@ -270,8 +274,8 @@
Vec::new()
}
- fn collection_tokens(&self) -> Vec<TokenId> {
- vec![TokenId::default()]
+ fn total_supply(&self) -> u32 {
+ 1
}
fn account_balance(&self, account: T::CrossAccountId) -> u32 {
pallets/nonfungible/src/common.rsdiffbeforeafterboth--- a/pallets/nonfungible/src/common.rs
+++ b/pallets/nonfungible/src/common.rs
@@ -294,6 +294,10 @@
.into_inner()
}
+ fn total_supply(&self) -> u32 {
+ <Pallet<T>>::total_supply(self)
+ }
+
fn account_balance(&self, account: T::CrossAccountId) -> u32 {
<AccountBalance<T>>::get((self.id, account))
}
pallets/refungible/src/common.rsdiffbeforeafterboth--- a/pallets/refungible/src/common.rs
+++ b/pallets/refungible/src/common.rs
@@ -301,6 +301,10 @@
.into_inner()
}
+ fn total_supply(&self) -> u32 {
+ <Pallet<T>>::total_supply(self)
+ }
+
fn account_balance(&self, account: T::CrossAccountId) -> u32 {
<AccountBalance<T>>::get((self.id, account))
}
primitives/rpc/src/lib.rsdiffbeforeafterboth--- a/primitives/rpc/src/lib.rs
+++ b/primitives/rpc/src/lib.rs
@@ -41,6 +41,7 @@
fn const_metadata(collection: CollectionId, token: TokenId) -> Result<Vec<u8>>;
fn variable_metadata(collection: CollectionId, token: TokenId) -> Result<Vec<u8>>;
+ fn total_supply(collection: CollectionId) -> Result<u32>;
fn account_balance(collection: CollectionId, account: CrossAccountId) -> Result<u32>;
fn balance(collection: CollectionId, account: CrossAccountId, token: TokenId) -> Result<u128>;
fn allowance(
runtime/common/src/runtime_apis.rsdiffbeforeafterboth1#[macro_export]2macro_rules! impl_common_runtime_apis {3 (4 $(5 #![custom_apis]67 $($custom_apis:tt)+8 )?9 ) => {10 impl_runtime_apis! {11 $($($custom_apis)+)?1213 impl up_rpc::UniqueApi<Block, CrossAccountId, AccountId> for Runtime {14 fn account_tokens(collection: CollectionId, account: CrossAccountId) -> Result<Vec<TokenId>, DispatchError> {15 dispatch_unique_runtime!(collection.account_tokens(account))16 }17 fn token_exists(collection: CollectionId, token: TokenId) -> Result<bool, DispatchError> {18 dispatch_unique_runtime!(collection.token_exists(token))19 }2021 fn token_owner(collection: CollectionId, token: TokenId) -> Result<Option<CrossAccountId>, DispatchError> {22 dispatch_unique_runtime!(collection.token_owner(token))23 }24 fn topmost_token_owner(collection: CollectionId, token: TokenId) -> Result<Option<CrossAccountId>, DispatchError> {25 let budget = up_data_structs::budget::Value::new(5);2627 Ok(Some(<pallet_structure::Pallet<Runtime>>::find_topmost_owner(collection, token, &budget)?))28 }29 fn const_metadata(collection: CollectionId, token: TokenId) -> Result<Vec<u8>, DispatchError> {30 dispatch_unique_runtime!(collection.const_metadata(token))31 }32 fn variable_metadata(collection: CollectionId, token: TokenId) -> Result<Vec<u8>, DispatchError> {33 dispatch_unique_runtime!(collection.variable_metadata(token))34 }3536 fn collection_tokens(collection: CollectionId) -> Result<Vec<TokenId>, DispatchError> {37 dispatch_unique_runtime!(collection.collection_tokens())38 }39 fn account_balance(collection: CollectionId, account: CrossAccountId) -> Result<u32, DispatchError> {40 dispatch_unique_runtime!(collection.account_balance(account))41 }42 fn balance(collection: CollectionId, account: CrossAccountId, token: TokenId) -> Result<u128, DispatchError> {43 dispatch_unique_runtime!(collection.balance(account, token))44 }45 fn allowance(46 collection: CollectionId,47 sender: CrossAccountId,48 spender: CrossAccountId,49 token: TokenId,50 ) -> Result<u128, DispatchError> {51 dispatch_unique_runtime!(collection.allowance(sender, spender, token))52 }5354 fn adminlist(collection: CollectionId) -> Result<Vec<CrossAccountId>, DispatchError> {55 Ok(<pallet_common::Pallet<Runtime>>::adminlist(collection))56 }57 fn allowlist(collection: CollectionId) -> Result<Vec<CrossAccountId>, DispatchError> {58 Ok(<pallet_common::Pallet<Runtime>>::allowlist(collection))59 }60 fn allowed(collection: CollectionId, user: CrossAccountId) -> Result<bool, DispatchError> {61 Ok(<pallet_common::Pallet<Runtime>>::allowed(collection, user))62 }63 fn last_token_id(collection: CollectionId) -> Result<TokenId, DispatchError> {64 dispatch_unique_runtime!(collection.last_token_id())65 }66 fn collection_by_id(collection: CollectionId) -> Result<Option<RpcCollection<AccountId>>, DispatchError> {67 Ok(<pallet_common::Pallet<Runtime>>::rpc_collection(collection))68 }69 fn collection_stats() -> Result<CollectionStats, DispatchError> {70 Ok(<pallet_common::Pallet<Runtime>>::collection_stats())71 }72 fn next_sponsored(collection: CollectionId, account: CrossAccountId, token: TokenId) -> Result<Option<u64>, DispatchError> {73 Ok(<pallet_unique::UniqueSponsorshipPredict<Runtime> as74 pallet_unique::SponsorshipPredict<Runtime>>::predict(75 collection,76 account,77 token))78 }7980 fn effective_collection_limits(collection: CollectionId) -> Result<Option<CollectionLimits>, DispatchError> {81 Ok(<pallet_common::Pallet<Runtime>>::effective_collection_limits(collection))82 }83 }8485 impl sp_api::Core<Block> for Runtime {86 fn version() -> RuntimeVersion {87 VERSION88 }8990 fn execute_block(block: Block) {91 Executive::execute_block(block)92 }9394 fn initialize_block(header: &<Block as BlockT>::Header) {95 Executive::initialize_block(header)96 }97 }9899 impl sp_api::Metadata<Block> for Runtime {100 fn metadata() -> OpaqueMetadata {101 OpaqueMetadata::new(Runtime::metadata().into())102 }103 }104105 impl sp_block_builder::BlockBuilder<Block> for Runtime {106 fn apply_extrinsic(extrinsic: <Block as BlockT>::Extrinsic) -> ApplyExtrinsicResult {107 Executive::apply_extrinsic(extrinsic)108 }109110 fn finalize_block() -> <Block as BlockT>::Header {111 Executive::finalize_block()112 }113114 fn inherent_extrinsics(data: sp_inherents::InherentData) -> Vec<<Block as BlockT>::Extrinsic> {115 data.create_extrinsics()116 }117118 fn check_inherents(119 block: Block,120 data: sp_inherents::InherentData,121 ) -> sp_inherents::CheckInherentsResult {122 data.check_extrinsics(&block)123 }124125 // fn random_seed() -> <Block as BlockT>::Hash {126 // RandomnessCollectiveFlip::random_seed().0127 // }128 }129130 impl sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block> for Runtime {131 fn validate_transaction(132 source: TransactionSource,133 tx: <Block as BlockT>::Extrinsic,134 hash: <Block as BlockT>::Hash,135 ) -> TransactionValidity {136 Executive::validate_transaction(source, tx, hash)137 }138 }139140 impl sp_offchain::OffchainWorkerApi<Block> for Runtime {141 fn offchain_worker(header: &<Block as BlockT>::Header) {142 Executive::offchain_worker(header)143 }144 }145146 impl fp_rpc::EthereumRuntimeRPCApi<Block> for Runtime {147 fn chain_id() -> u64 {148 <Runtime as pallet_evm::Config>::ChainId::get()149 }150151 fn account_basic(address: H160) -> EVMAccount {152 EVM::account_basic(&address)153 }154155 fn gas_price() -> U256 {156 <Runtime as pallet_evm::Config>::FeeCalculator::min_gas_price()157 }158159 fn account_code_at(address: H160) -> Vec<u8> {160 EVM::account_codes(address)161 }162163 fn author() -> H160 {164 <pallet_evm::Pallet<Runtime>>::find_author()165 }166167 fn storage_at(address: H160, index: U256) -> H256 {168 let mut tmp = [0u8; 32];169 index.to_big_endian(&mut tmp);170 EVM::account_storages(address, H256::from_slice(&tmp[..]))171 }172173 #[allow(clippy::redundant_closure)]174 fn call(175 from: H160,176 to: H160,177 data: Vec<u8>,178 value: U256,179 gas_limit: U256,180 max_fee_per_gas: Option<U256>,181 max_priority_fee_per_gas: Option<U256>,182 nonce: Option<U256>,183 estimate: bool,184 access_list: Option<Vec<(H160, Vec<H256>)>>,185 ) -> Result<pallet_evm::CallInfo, sp_runtime::DispatchError> {186 let config = if estimate {187 let mut config = <Runtime as pallet_evm::Config>::config().clone();188 config.estimate = true;189 Some(config)190 } else {191 None192 };193194 let is_transactional = false;195 <Runtime as pallet_evm::Config>::Runner::call(196 CrossAccountId::from_eth(from),197 to,198 data,199 value,200 gas_limit.low_u64(),201 max_fee_per_gas,202 max_priority_fee_per_gas,203 nonce,204 access_list.unwrap_or_default(),205 is_transactional,206 config.as_ref().unwrap_or_else(|| <Runtime as pallet_evm::Config>::config()),207 ).map_err(|err| err.into())208 }209210 #[allow(clippy::redundant_closure)]211 fn create(212 from: H160,213 data: Vec<u8>,214 value: U256,215 gas_limit: U256,216 max_fee_per_gas: Option<U256>,217 max_priority_fee_per_gas: Option<U256>,218 nonce: Option<U256>,219 estimate: bool,220 access_list: Option<Vec<(H160, Vec<H256>)>>,221 ) -> Result<pallet_evm::CreateInfo, sp_runtime::DispatchError> {222 let config = if estimate {223 let mut config = <Runtime as pallet_evm::Config>::config().clone();224 config.estimate = true;225 Some(config)226 } else {227 None228 };229230 let is_transactional = false;231 <Runtime as pallet_evm::Config>::Runner::create(232 CrossAccountId::from_eth(from),233 data,234 value,235 gas_limit.low_u64(),236 max_fee_per_gas,237 max_priority_fee_per_gas,238 nonce,239 access_list.unwrap_or_default(),240 is_transactional,241 config.as_ref().unwrap_or_else(|| <Runtime as pallet_evm::Config>::config()),242 ).map_err(|err| err.into())243 }244245 fn current_transaction_statuses() -> Option<Vec<TransactionStatus>> {246 Ethereum::current_transaction_statuses()247 }248249 fn current_block() -> Option<pallet_ethereum::Block> {250 Ethereum::current_block()251 }252253 fn current_receipts() -> Option<Vec<pallet_ethereum::Receipt>> {254 Ethereum::current_receipts()255 }256257 fn current_all() -> (258 Option<pallet_ethereum::Block>,259 Option<Vec<pallet_ethereum::Receipt>>,260 Option<Vec<TransactionStatus>>261 ) {262 (263 Ethereum::current_block(),264 Ethereum::current_receipts(),265 Ethereum::current_transaction_statuses()266 )267 }268269 fn extrinsic_filter(xts: Vec<<Block as sp_api::BlockT>::Extrinsic>) -> Vec<pallet_ethereum::Transaction> {270 xts.into_iter().filter_map(|xt| match xt.0.function {271 Call::Ethereum(pallet_ethereum::Call::transact { transaction }) => Some(transaction),272 _ => None273 }).collect()274 }275276 fn elasticity() -> Option<Permill> {277 None278 }279 }280281 impl fp_rpc::ConvertTransactionRuntimeApi<Block> for Runtime {282 fn convert_transaction(transaction: pallet_ethereum::Transaction) -> <Block as BlockT>::Extrinsic {283 UncheckedExtrinsic::new_unsigned(284 pallet_ethereum::Call::<Runtime>::transact { transaction }.into(),285 )286 }287 }288289 impl sp_session::SessionKeys<Block> for Runtime {290 fn decode_session_keys(291 encoded: Vec<u8>,292 ) -> Option<Vec<(Vec<u8>, KeyTypeId)>> {293 SessionKeys::decode_into_raw_public_keys(&encoded)294 }295296 fn generate_session_keys(seed: Option<Vec<u8>>) -> Vec<u8> {297 SessionKeys::generate(seed)298 }299 }300301 impl sp_consensus_aura::AuraApi<Block, AuraId> for Runtime {302 fn slot_duration() -> sp_consensus_aura::SlotDuration {303 sp_consensus_aura::SlotDuration::from_millis(Aura::slot_duration())304 }305306 fn authorities() -> Vec<AuraId> {307 Aura::authorities().to_vec()308 }309 }310311 impl cumulus_primitives_core::CollectCollationInfo<Block> for Runtime {312 fn collect_collation_info(header: &<Block as BlockT>::Header) -> cumulus_primitives_core::CollationInfo {313 ParachainSystem::collect_collation_info(header)314 }315 }316317 impl frame_system_rpc_runtime_api::AccountNonceApi<Block, AccountId, Index> for Runtime {318 fn account_nonce(account: AccountId) -> Index {319 System::account_nonce(account)320 }321 }322323 impl pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance> for Runtime {324 fn query_info(uxt: <Block as BlockT>::Extrinsic, len: u32) -> RuntimeDispatchInfo<Balance> {325 TransactionPayment::query_info(uxt, len)326 }327 fn query_fee_details(uxt: <Block as BlockT>::Extrinsic, len: u32) -> FeeDetails<Balance> {328 TransactionPayment::query_fee_details(uxt, len)329 }330 }331332 /*333 impl pallet_contracts_rpc_runtime_api::ContractsApi<Block, AccountId, Balance, BlockNumber, Hash>334 for Runtime335 {336 fn call(337 origin: AccountId,338 dest: AccountId,339 value: Balance,340 gas_limit: u64,341 input_data: Vec<u8>,342 ) -> pallet_contracts_primitives::ContractExecResult {343 Contracts::bare_call(origin, dest, value, gas_limit, input_data, false)344 }345346 fn instantiate(347 origin: AccountId,348 endowment: Balance,349 gas_limit: u64,350 code: pallet_contracts_primitives::Code<Hash>,351 data: Vec<u8>,352 salt: Vec<u8>,353 ) -> pallet_contracts_primitives::ContractInstantiateResult<AccountId, BlockNumber>354 {355 Contracts::bare_instantiate(origin, endowment, gas_limit, code, data, salt, true, false)356 }357358 fn get_storage(359 address: AccountId,360 key: [u8; 32],361 ) -> pallet_contracts_primitives::GetStorageResult {362 Contracts::get_storage(address, key)363 }364365 fn rent_projection(366 address: AccountId,367 ) -> pallet_contracts_primitives::RentProjectionResult<BlockNumber> {368 Contracts::rent_projection(address)369 }370 }371 */372373 #[cfg(feature = "runtime-benchmarks")]374 impl frame_benchmarking::Benchmark<Block> for Runtime {375 fn benchmark_metadata(extra: bool) -> (376 Vec<frame_benchmarking::BenchmarkList>,377 Vec<frame_support::traits::StorageInfo>,378 ) {379 use frame_benchmarking::{list_benchmark, Benchmarking, BenchmarkList};380 use frame_support::traits::StorageInfoTrait;381382 let mut list = Vec::<BenchmarkList>::new();383384 list_benchmark!(list, extra, pallet_evm_migration, EvmMigration);385 list_benchmark!(list, extra, pallet_unique, Unique);386 list_benchmark!(list, extra, pallet_structure, Structure);387 list_benchmark!(list, extra, pallet_inflation, Inflation);388 list_benchmark!(list, extra, pallet_fungible, Fungible);389 list_benchmark!(list, extra, pallet_refungible, Refungible);390 list_benchmark!(list, extra, pallet_nonfungible, Nonfungible);391 // list_benchmark!(list, extra, pallet_evm_coder_substrate, EvmCoderSubstrate);392393 let storage_info = AllPalletsReversedWithSystemFirst::storage_info();394395 return (list, storage_info)396 }397398 fn dispatch_benchmark(399 config: frame_benchmarking::BenchmarkConfig400 ) -> Result<Vec<frame_benchmarking::BenchmarkBatch>, sp_runtime::RuntimeString> {401 use frame_benchmarking::{Benchmarking, BenchmarkBatch, add_benchmark, TrackedStorageKey};402403 let allowlist: Vec<TrackedStorageKey> = vec![404 // Block Number405 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef702a5c1b19ab7a04f536c519aca4983ac").to_vec().into(),406 // Total Issuance407 hex_literal::hex!("c2261276cc9d1f8598ea4b6a74b15c2f57c875e4cff74148e4628f264b974c80").to_vec().into(),408 // Execution Phase409 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef7ff553b5a9862a516939d82b3d3d8661a").to_vec().into(),410 // Event Count411 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef70a98fdbe9ce6c55837576c60c7af3850").to_vec().into(),412 // System Events413 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef780d41e5e16056765bc8461851072c9d7").to_vec().into(),414415 // Transactional depth416 hex_literal::hex!("3a7472616e73616374696f6e5f6c6576656c3a").to_vec().into(),417 ];418419 let mut batches = Vec::<BenchmarkBatch>::new();420 let params = (&config, &allowlist);421422 add_benchmark!(params, batches, pallet_evm_migration, EvmMigration);423 add_benchmark!(params, batches, pallet_unique, Unique);424 add_benchmark!(params, batches, pallet_structure, Structure);425 add_benchmark!(params, batches, pallet_inflation, Inflation);426 add_benchmark!(params, batches, pallet_fungible, Fungible);427 add_benchmark!(params, batches, pallet_refungible, Refungible);428 add_benchmark!(params, batches, pallet_nonfungible, Nonfungible);429 // add_benchmark!(params, batches, pallet_evm_coder_substrate, EvmCoderSubstrate);430431 if batches.is_empty() { return Err("Benchmark not found for this pallet.".into()) }432 Ok(batches)433 }434 }435436 #[cfg(feature = "try-runtime")]437 impl frame_try_runtime::TryRuntime<Block> for Runtime {438 fn on_runtime_upgrade() -> (Weight, Weight) {439 log::info!("try-runtime::on_runtime_upgrade unique-chain.");440 let weight = Executive::try_runtime_upgrade().unwrap();441 (weight, RuntimeBlockWeights::get().max_block)442 }443444 fn execute_block_no_check(block: Block) -> Weight {445 Executive::execute_block_no_check(block)446 }447 }448 }449 }450}1#[macro_export]2macro_rules! impl_common_runtime_apis {3 (4 $(5 #![custom_apis]67 $($custom_apis:tt)+8 )?9 ) => {10 impl_runtime_apis! {11 $($($custom_apis)+)?1213 impl up_rpc::UniqueApi<Block, CrossAccountId, AccountId> for Runtime {14 fn account_tokens(collection: CollectionId, account: CrossAccountId) -> Result<Vec<TokenId>, DispatchError> {15 dispatch_unique_runtime!(collection.account_tokens(account))16 }17 fn collection_tokens(collection: CollectionId) -> Result<Vec<TokenId>, DispatchError> {18 dispatch_unique_runtime!(collection.collection_tokens())19 }20 fn token_exists(collection: CollectionId, token: TokenId) -> Result<bool, DispatchError> {21 dispatch_unique_runtime!(collection.token_exists(token))22 }2324 fn token_owner(collection: CollectionId, token: TokenId) -> Result<Option<CrossAccountId>, DispatchError> {25 dispatch_unique_runtime!(collection.token_owner(token))26 }27 fn topmost_token_owner(collection: CollectionId, token: TokenId) -> Result<Option<CrossAccountId>, DispatchError> {28 let budget = up_data_structs::budget::Value::new(5);2930 Ok(Some(<pallet_structure::Pallet<Runtime>>::find_topmost_owner(collection, token, &budget)?))31 }32 fn const_metadata(collection: CollectionId, token: TokenId) -> Result<Vec<u8>, DispatchError> {33 dispatch_unique_runtime!(collection.const_metadata(token))34 }35 fn variable_metadata(collection: CollectionId, token: TokenId) -> Result<Vec<u8>, DispatchError> {36 dispatch_unique_runtime!(collection.variable_metadata(token))37 }3839 fn total_supply(collection: CollectionId) -> Result<u32, DispatchError> {40 dispatch_unique_runtime!(collection.total_supply())41 }42 fn account_balance(collection: CollectionId, account: CrossAccountId) -> Result<u32, DispatchError> {43 dispatch_unique_runtime!(collection.account_balance(account))44 }45 fn balance(collection: CollectionId, account: CrossAccountId, token: TokenId) -> Result<u128, DispatchError> {46 dispatch_unique_runtime!(collection.balance(account, token))47 }48 fn allowance(49 collection: CollectionId,50 sender: CrossAccountId,51 spender: CrossAccountId,52 token: TokenId,53 ) -> Result<u128, DispatchError> {54 dispatch_unique_runtime!(collection.allowance(sender, spender, token))55 }5657 fn adminlist(collection: CollectionId) -> Result<Vec<CrossAccountId>, DispatchError> {58 Ok(<pallet_common::Pallet<Runtime>>::adminlist(collection))59 }60 fn allowlist(collection: CollectionId) -> Result<Vec<CrossAccountId>, DispatchError> {61 Ok(<pallet_common::Pallet<Runtime>>::allowlist(collection))62 }63 fn allowed(collection: CollectionId, user: CrossAccountId) -> Result<bool, DispatchError> {64 Ok(<pallet_common::Pallet<Runtime>>::allowed(collection, user))65 }66 fn last_token_id(collection: CollectionId) -> Result<TokenId, DispatchError> {67 dispatch_unique_runtime!(collection.last_token_id())68 }69 fn collection_by_id(collection: CollectionId) -> Result<Option<RpcCollection<AccountId>>, DispatchError> {70 Ok(<pallet_common::Pallet<Runtime>>::rpc_collection(collection))71 }72 fn collection_stats() -> Result<CollectionStats, DispatchError> {73 Ok(<pallet_common::Pallet<Runtime>>::collection_stats())74 }75 fn next_sponsored(collection: CollectionId, account: CrossAccountId, token: TokenId) -> Result<Option<u64>, DispatchError> {76 Ok(<pallet_unique::UniqueSponsorshipPredict<Runtime> as77 pallet_unique::SponsorshipPredict<Runtime>>::predict(78 collection,79 account,80 token))81 }8283 fn effective_collection_limits(collection: CollectionId) -> Result<Option<CollectionLimits>, DispatchError> {84 Ok(<pallet_common::Pallet<Runtime>>::effective_collection_limits(collection))85 }86 }8788 impl sp_api::Core<Block> for Runtime {89 fn version() -> RuntimeVersion {90 VERSION91 }9293 fn execute_block(block: Block) {94 Executive::execute_block(block)95 }9697 fn initialize_block(header: &<Block as BlockT>::Header) {98 Executive::initialize_block(header)99 }100 }101102 impl sp_api::Metadata<Block> for Runtime {103 fn metadata() -> OpaqueMetadata {104 OpaqueMetadata::new(Runtime::metadata().into())105 }106 }107108 impl sp_block_builder::BlockBuilder<Block> for Runtime {109 fn apply_extrinsic(extrinsic: <Block as BlockT>::Extrinsic) -> ApplyExtrinsicResult {110 Executive::apply_extrinsic(extrinsic)111 }112113 fn finalize_block() -> <Block as BlockT>::Header {114 Executive::finalize_block()115 }116117 fn inherent_extrinsics(data: sp_inherents::InherentData) -> Vec<<Block as BlockT>::Extrinsic> {118 data.create_extrinsics()119 }120121 fn check_inherents(122 block: Block,123 data: sp_inherents::InherentData,124 ) -> sp_inherents::CheckInherentsResult {125 data.check_extrinsics(&block)126 }127128 // fn random_seed() -> <Block as BlockT>::Hash {129 // RandomnessCollectiveFlip::random_seed().0130 // }131 }132133 impl sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block> for Runtime {134 fn validate_transaction(135 source: TransactionSource,136 tx: <Block as BlockT>::Extrinsic,137 hash: <Block as BlockT>::Hash,138 ) -> TransactionValidity {139 Executive::validate_transaction(source, tx, hash)140 }141 }142143 impl sp_offchain::OffchainWorkerApi<Block> for Runtime {144 fn offchain_worker(header: &<Block as BlockT>::Header) {145 Executive::offchain_worker(header)146 }147 }148149 impl fp_rpc::EthereumRuntimeRPCApi<Block> for Runtime {150 fn chain_id() -> u64 {151 <Runtime as pallet_evm::Config>::ChainId::get()152 }153154 fn account_basic(address: H160) -> EVMAccount {155 EVM::account_basic(&address)156 }157158 fn gas_price() -> U256 {159 <Runtime as pallet_evm::Config>::FeeCalculator::min_gas_price()160 }161162 fn account_code_at(address: H160) -> Vec<u8> {163 EVM::account_codes(address)164 }165166 fn author() -> H160 {167 <pallet_evm::Pallet<Runtime>>::find_author()168 }169170 fn storage_at(address: H160, index: U256) -> H256 {171 let mut tmp = [0u8; 32];172 index.to_big_endian(&mut tmp);173 EVM::account_storages(address, H256::from_slice(&tmp[..]))174 }175176 #[allow(clippy::redundant_closure)]177 fn call(178 from: H160,179 to: H160,180 data: Vec<u8>,181 value: U256,182 gas_limit: U256,183 max_fee_per_gas: Option<U256>,184 max_priority_fee_per_gas: Option<U256>,185 nonce: Option<U256>,186 estimate: bool,187 access_list: Option<Vec<(H160, Vec<H256>)>>,188 ) -> Result<pallet_evm::CallInfo, sp_runtime::DispatchError> {189 let config = if estimate {190 let mut config = <Runtime as pallet_evm::Config>::config().clone();191 config.estimate = true;192 Some(config)193 } else {194 None195 };196197 let is_transactional = false;198 <Runtime as pallet_evm::Config>::Runner::call(199 CrossAccountId::from_eth(from),200 to,201 data,202 value,203 gas_limit.low_u64(),204 max_fee_per_gas,205 max_priority_fee_per_gas,206 nonce,207 access_list.unwrap_or_default(),208 is_transactional,209 config.as_ref().unwrap_or_else(|| <Runtime as pallet_evm::Config>::config()),210 ).map_err(|err| err.into())211 }212213 #[allow(clippy::redundant_closure)]214 fn create(215 from: H160,216 data: Vec<u8>,217 value: U256,218 gas_limit: U256,219 max_fee_per_gas: Option<U256>,220 max_priority_fee_per_gas: Option<U256>,221 nonce: Option<U256>,222 estimate: bool,223 access_list: Option<Vec<(H160, Vec<H256>)>>,224 ) -> Result<pallet_evm::CreateInfo, sp_runtime::DispatchError> {225 let config = if estimate {226 let mut config = <Runtime as pallet_evm::Config>::config().clone();227 config.estimate = true;228 Some(config)229 } else {230 None231 };232233 let is_transactional = false;234 <Runtime as pallet_evm::Config>::Runner::create(235 CrossAccountId::from_eth(from),236 data,237 value,238 gas_limit.low_u64(),239 max_fee_per_gas,240 max_priority_fee_per_gas,241 nonce,242 access_list.unwrap_or_default(),243 is_transactional,244 config.as_ref().unwrap_or_else(|| <Runtime as pallet_evm::Config>::config()),245 ).map_err(|err| err.into())246 }247248 fn current_transaction_statuses() -> Option<Vec<TransactionStatus>> {249 Ethereum::current_transaction_statuses()250 }251252 fn current_block() -> Option<pallet_ethereum::Block> {253 Ethereum::current_block()254 }255256 fn current_receipts() -> Option<Vec<pallet_ethereum::Receipt>> {257 Ethereum::current_receipts()258 }259260 fn current_all() -> (261 Option<pallet_ethereum::Block>,262 Option<Vec<pallet_ethereum::Receipt>>,263 Option<Vec<TransactionStatus>>264 ) {265 (266 Ethereum::current_block(),267 Ethereum::current_receipts(),268 Ethereum::current_transaction_statuses()269 )270 }271272 fn extrinsic_filter(xts: Vec<<Block as sp_api::BlockT>::Extrinsic>) -> Vec<pallet_ethereum::Transaction> {273 xts.into_iter().filter_map(|xt| match xt.0.function {274 Call::Ethereum(pallet_ethereum::Call::transact { transaction }) => Some(transaction),275 _ => None276 }).collect()277 }278279 fn elasticity() -> Option<Permill> {280 None281 }282 }283284 impl fp_rpc::ConvertTransactionRuntimeApi<Block> for Runtime {285 fn convert_transaction(transaction: pallet_ethereum::Transaction) -> <Block as BlockT>::Extrinsic {286 UncheckedExtrinsic::new_unsigned(287 pallet_ethereum::Call::<Runtime>::transact { transaction }.into(),288 )289 }290 }291292 impl sp_session::SessionKeys<Block> for Runtime {293 fn decode_session_keys(294 encoded: Vec<u8>,295 ) -> Option<Vec<(Vec<u8>, KeyTypeId)>> {296 SessionKeys::decode_into_raw_public_keys(&encoded)297 }298299 fn generate_session_keys(seed: Option<Vec<u8>>) -> Vec<u8> {300 SessionKeys::generate(seed)301 }302 }303304 impl sp_consensus_aura::AuraApi<Block, AuraId> for Runtime {305 fn slot_duration() -> sp_consensus_aura::SlotDuration {306 sp_consensus_aura::SlotDuration::from_millis(Aura::slot_duration())307 }308309 fn authorities() -> Vec<AuraId> {310 Aura::authorities().to_vec()311 }312 }313314 impl cumulus_primitives_core::CollectCollationInfo<Block> for Runtime {315 fn collect_collation_info(header: &<Block as BlockT>::Header) -> cumulus_primitives_core::CollationInfo {316 ParachainSystem::collect_collation_info(header)317 }318 }319320 impl frame_system_rpc_runtime_api::AccountNonceApi<Block, AccountId, Index> for Runtime {321 fn account_nonce(account: AccountId) -> Index {322 System::account_nonce(account)323 }324 }325326 impl pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance> for Runtime {327 fn query_info(uxt: <Block as BlockT>::Extrinsic, len: u32) -> RuntimeDispatchInfo<Balance> {328 TransactionPayment::query_info(uxt, len)329 }330 fn query_fee_details(uxt: <Block as BlockT>::Extrinsic, len: u32) -> FeeDetails<Balance> {331 TransactionPayment::query_fee_details(uxt, len)332 }333 }334335 /*336 impl pallet_contracts_rpc_runtime_api::ContractsApi<Block, AccountId, Balance, BlockNumber, Hash>337 for Runtime338 {339 fn call(340 origin: AccountId,341 dest: AccountId,342 value: Balance,343 gas_limit: u64,344 input_data: Vec<u8>,345 ) -> pallet_contracts_primitives::ContractExecResult {346 Contracts::bare_call(origin, dest, value, gas_limit, input_data, false)347 }348349 fn instantiate(350 origin: AccountId,351 endowment: Balance,352 gas_limit: u64,353 code: pallet_contracts_primitives::Code<Hash>,354 data: Vec<u8>,355 salt: Vec<u8>,356 ) -> pallet_contracts_primitives::ContractInstantiateResult<AccountId, BlockNumber>357 {358 Contracts::bare_instantiate(origin, endowment, gas_limit, code, data, salt, true, false)359 }360361 fn get_storage(362 address: AccountId,363 key: [u8; 32],364 ) -> pallet_contracts_primitives::GetStorageResult {365 Contracts::get_storage(address, key)366 }367368 fn rent_projection(369 address: AccountId,370 ) -> pallet_contracts_primitives::RentProjectionResult<BlockNumber> {371 Contracts::rent_projection(address)372 }373 }374 */375376 #[cfg(feature = "runtime-benchmarks")]377 impl frame_benchmarking::Benchmark<Block> for Runtime {378 fn benchmark_metadata(extra: bool) -> (379 Vec<frame_benchmarking::BenchmarkList>,380 Vec<frame_support::traits::StorageInfo>,381 ) {382 use frame_benchmarking::{list_benchmark, Benchmarking, BenchmarkList};383 use frame_support::traits::StorageInfoTrait;384385 let mut list = Vec::<BenchmarkList>::new();386387 list_benchmark!(list, extra, pallet_evm_migration, EvmMigration);388 list_benchmark!(list, extra, pallet_unique, Unique);389 list_benchmark!(list, extra, pallet_structure, Structure);390 list_benchmark!(list, extra, pallet_inflation, Inflation);391 list_benchmark!(list, extra, pallet_fungible, Fungible);392 list_benchmark!(list, extra, pallet_refungible, Refungible);393 list_benchmark!(list, extra, pallet_nonfungible, Nonfungible);394 // list_benchmark!(list, extra, pallet_evm_coder_substrate, EvmCoderSubstrate);395396 let storage_info = AllPalletsReversedWithSystemFirst::storage_info();397398 return (list, storage_info)399 }400401 fn dispatch_benchmark(402 config: frame_benchmarking::BenchmarkConfig403 ) -> Result<Vec<frame_benchmarking::BenchmarkBatch>, sp_runtime::RuntimeString> {404 use frame_benchmarking::{Benchmarking, BenchmarkBatch, add_benchmark, TrackedStorageKey};405406 let allowlist: Vec<TrackedStorageKey> = vec![407 // Block Number408 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef702a5c1b19ab7a04f536c519aca4983ac").to_vec().into(),409 // Total Issuance410 hex_literal::hex!("c2261276cc9d1f8598ea4b6a74b15c2f57c875e4cff74148e4628f264b974c80").to_vec().into(),411 // Execution Phase412 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef7ff553b5a9862a516939d82b3d3d8661a").to_vec().into(),413 // Event Count414 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef70a98fdbe9ce6c55837576c60c7af3850").to_vec().into(),415 // System Events416 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef780d41e5e16056765bc8461851072c9d7").to_vec().into(),417418 // Transactional depth419 hex_literal::hex!("3a7472616e73616374696f6e5f6c6576656c3a").to_vec().into(),420 ];421422 let mut batches = Vec::<BenchmarkBatch>::new();423 let params = (&config, &allowlist);424425 add_benchmark!(params, batches, pallet_evm_migration, EvmMigration);426 add_benchmark!(params, batches, pallet_unique, Unique);427 add_benchmark!(params, batches, pallet_structure, Structure);428 add_benchmark!(params, batches, pallet_inflation, Inflation);429 add_benchmark!(params, batches, pallet_fungible, Fungible);430 add_benchmark!(params, batches, pallet_refungible, Refungible);431 add_benchmark!(params, batches, pallet_nonfungible, Nonfungible);432 // add_benchmark!(params, batches, pallet_evm_coder_substrate, EvmCoderSubstrate);433434 if batches.is_empty() { return Err("Benchmark not found for this pallet.".into()) }435 Ok(batches)436 }437 }438439 #[cfg(feature = "try-runtime")]440 impl frame_try_runtime::TryRuntime<Block> for Runtime {441 fn on_runtime_upgrade() -> (Weight, Weight) {442 log::info!("try-runtime::on_runtime_upgrade unique-chain.");443 let weight = Executive::try_runtime_upgrade().unwrap();444 (weight, RuntimeBlockWeights::get().max_block)445 }446447 fn execute_block_no_check(block: Block) -> Weight {448 Executive::execute_block_no_check(block)449 }450 }451 }452 }453}tests/src/interfaces/unique/definitions.tsdiffbeforeafterboth--- a/tests/src/interfaces/unique/definitions.ts
+++ b/tests/src/interfaces/unique/definitions.ts
@@ -45,6 +45,7 @@
collectionTokens: fun('Get tokens contained in collection', [collectionParam], 'Vec<u32>'),
lastTokenId: fun('Get last token id', [collectionParam], 'u32'),
+ totalSupply: fun('Get amount of unique collection tokens', [collectionParam], 'u32'),
accountBalance: fun('Get amount of different user tokens', [collectionParam, crossAccountParam()], 'u32'),
balance: fun('Get amount of specific account token', [collectionParam, crossAccountParam(), tokenParam], 'u128'),
allowance: fun('Get allowed amount', [collectionParam, crossAccountParam('sender'), crossAccountParam('spender'), tokenParam], 'u128'),