difftreelog
Merge pull request #1000 from UniqueNetwork/fix/minting-prop-weight
in: master
Refactor property writing + dev mode enhancements
42 files changed
.docker/Dockerfile-chain-devdiffbeforeafterboth--- a/.docker/Dockerfile-chain-dev
+++ b/.docker/Dockerfile-chain-dev
@@ -21,7 +21,7 @@
WORKDIR /dev_chain
-RUN cargo build --release
+RUN cargo build --profile integration-tests --features=${NETWORK}-runtime
RUN echo "$NETWORK"
-CMD cargo run --release --features=${NETWORK}-runtime -- --dev -linfo --rpc-cors=all --unsafe-rpc-external
+CMD cargo run --profile integration-tests --features=${NETWORK}-runtime -- --dev -linfo --rpc-cors=all --unsafe-rpc-external
.docker/Dockerfile-uniquediffbeforeafterboth--- a/.docker/Dockerfile-unique
+++ b/.docker/Dockerfile-unique
@@ -47,7 +47,7 @@
--mount=type=cache,target=/unique_parachain/unique-chain/target \
cd unique-chain && \
echo "Using runtime features '$RUNTIME_FEATURES'" && \
- CARGO_INCREMENTAL=0 cargo build --release --features="$RUNTIME_FEATURES" --locked && \
+ CARGO_INCREMENTAL=0 cargo build --profile integration-tests --features="$RUNTIME_FEATURES" --locked && \
mv ./target/release/unique-collator /unique_parachain/unique-chain/ && \
cd target/release/wbuild && find . -name "*.wasm" -exec sh -c 'mkdir -p "../../../wasm/$(dirname {})"; cp {} "../../../wasm/{}"' \;
.docker/docker-compose.gov.j2diffbeforeafterboth--- a/.docker/docker-compose.gov.j2
+++ b/.docker/docker-compose.gov.j2
@@ -21,4 +21,4 @@
options:
max-size: "1m"
max-file: "3"
- command: cargo run --release --features={{ NETWORK }}-runtime,gov-test-timings -- --dev -linfo --rpc-cors=all --unsafe-rpc-external
+ command: cargo run --profile integration-tests --features={{ NETWORK }}-runtime,gov-test-timings -- --dev -linfo --rpc-cors=all --unsafe-rpc-external
Cargo.tomldiffbeforeafterboth--- a/Cargo.toml
+++ b/Cargo.toml
@@ -24,6 +24,10 @@
lto = true
opt-level = 3
+[profile.integration-tests]
+inherits = "release"
+debug-assertions = true
+
[workspace.dependencies]
# Unique
app-promotion-rpc = { path = "primitives/app_promotion_rpc", default-features = false }
Makefilediffbeforeafterboth--- a/Makefile
+++ b/Makefile
@@ -90,7 +90,7 @@
.PHONY: _bench
_bench:
- cargo run --release --features runtime-benchmarks,$(RUNTIME) -- \
+ cargo run --profile production --features runtime-benchmarks,$(RUNTIME) -- \
benchmark pallet --pallet pallet-$(if $(PALLET),$(PALLET),$(error Must set PALLET)) \
--wasm-execution compiled --extrinsic '*' \
$(if $(TEMPLATE),$(TEMPLATE),--template=.maintain/frame-weight-template.hbs) --steps=50 --repeat=80 --heap-pages=4096 \
node/cli/src/cli.rsdiffbeforeafterboth--- a/node/cli/src/cli.rs
+++ b/node/cli/src/cli.rs
@@ -80,10 +80,20 @@
/// an empty block will be sealed automatically
/// after the `--idle-autoseal-interval` milliseconds.
///
- /// The default interval is 500 milliseconds
+ /// The default interval is 500 milliseconds.
#[structopt(default_value = "500", long)]
pub idle_autoseal_interval: u64,
+ /// Disable auto-sealing blocks on new transactions in the `--dev` mode.
+ #[structopt(long)]
+ pub disable_autoseal_on_tx: bool,
+
+ /// Finalization delay (in seconds) of auto-sealed blocks in the `--dev` mode.
+ ///
+ /// Disabled by default.
+ #[structopt(long)]
+ pub autoseal_finalization_delay: Option<u64>,
+
/// Disable automatic hardware benchmarks.
///
/// By default these benchmarks are automatically ran at startup and measure
node/cli/src/command.rsdiffbeforeafterboth--- a/node/cli/src/command.rs
+++ b/node/cli/src/command.rs
@@ -62,7 +62,6 @@
use sc_service::config::{BasePath, PrometheusConfig};
use sp_core::hexdisplay::HexDisplay;
use sp_runtime::traits::{AccountIdConversion, Block as BlockT};
-use std::{time::Duration};
use up_common::types::opaque::{Block, RuntimeId};
@@ -480,15 +479,13 @@
if is_dev_service {
info!("Running Dev service");
-
- let autoseal_interval = Duration::from_millis(cli.idle_autoseal_interval);
let mut config = config;
config.state_pruning = Some(sc_service::PruningMode::ArchiveAll);
return start_node_using_chain_runtime! {
- start_dev_node(config, autoseal_interval).map_err(Into::into)
+ start_dev_node(config, cli.idle_autoseal_interval, cli.autoseal_finalization_delay, cli.disable_autoseal_on_tx).map_err(Into::into)
};
};
node/cli/src/service.rsdiffbeforeafterboth--- a/node/cli/src/service.rs
+++ b/node/cli/src/service.rs
@@ -169,9 +169,9 @@
}
impl AutosealInterval {
- pub fn new(config: &Configuration, interval: Duration) -> Self {
+ pub fn new(config: &Configuration, interval: u64) -> Self {
let _tokio_runtime = config.tokio_handle.enter();
- let interval = tokio::time::interval(interval);
+ let interval = tokio::time::interval(Duration::from_millis(interval));
Self { interval }
}
@@ -885,7 +885,9 @@
/// the parachain inherent
pub fn start_dev_node<Runtime, RuntimeApi, ExecutorDispatch>(
config: Configuration,
- autoseal_interval: Duration,
+ autoseal_interval: u64,
+ autoseal_finalize_delay: Option<u64>,
+ disable_autoseal_on_tx: bool,
) -> sc_service::error::Result<TaskManager>
where
Runtime: RuntimeInstance + Send + Sync + 'static,
@@ -912,7 +914,10 @@
+ sp_consensus_aura::AuraApi<Block, AuraId>,
ExecutorDispatch: NativeExecutionDispatch + 'static,
{
- use sc_consensus_manual_seal::{run_manual_seal, EngineCommand, ManualSealParams};
+ use sc_consensus_manual_seal::{
+ run_manual_seal, run_delayed_finalize, EngineCommand, ManualSealParams,
+ DelayedFinalizeParams,
+ };
use fc_consensus::FrontierBlockImport;
let sc_service::PartialComponents {
@@ -980,20 +985,22 @@
.pool()
.validated_pool()
.import_notification_stream()
+ .filter(move |_| futures::future::ready(!disable_autoseal_on_tx))
.map(|_| EngineCommand::SealNewBlock {
create_empty: true,
- finalize: false, // todo:collator finalize true
+ finalize: false,
parent_hash: None,
sender: None,
}),
);
let autoseal_interval = Box::pin(AutosealInterval::new(&config, autoseal_interval));
+
let idle_commands_stream: Box<
dyn Stream<Item = EngineCommand<Hash>> + Send + Sync + Unpin,
> = Box::new(autoseal_interval.map(|_| EngineCommand::SealNewBlock {
create_empty: true,
- finalize: false, // todo:collator finalize true
+ finalize: false,
parent_hash: None,
sender: None,
}));
@@ -1003,6 +1010,20 @@
let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client)?;
let client_set_aside_for_cidp = client.clone();
+ if let Some(delay_sec) = autoseal_finalize_delay {
+ let spawn_handle = task_manager.spawn_handle();
+
+ task_manager.spawn_essential_handle().spawn_blocking(
+ "finalization_task",
+ Some("block-authoring"),
+ run_delayed_finalize(DelayedFinalizeParams {
+ client: client.clone(),
+ delay_sec,
+ spawn_handle,
+ }),
+ );
+ }
+
task_manager.spawn_essential_handle().spawn_blocking(
"authorship_task",
Some("block-authoring"),
pallets/app-promotion/src/weights.rsdiffbeforeafterboth--- a/pallets/app-promotion/src/weights.rs
+++ b/pallets/app-promotion/src/weights.rs
@@ -3,13 +3,13 @@
//! Autogenerated weights for pallet_app_promotion
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2023-04-20, STEPS: `50`, REPEAT: `80`, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-09-26, STEPS: `50`, REPEAT: `400`, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! WORST CASE MAP SIZE: `1000000`
//! HOSTNAME: `bench-host`, CPU: `Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz`
//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
// Executed Command:
-// target/release/unique-collator
+// target/production/unique-collator
// benchmark
// pallet
// --pallet
@@ -20,7 +20,7 @@
// *
// --template=.maintain/frame-weight-template.hbs
// --steps=50
-// --repeat=80
+// --repeat=400
// --heap-pages=4096
// --output=./pallets/app-promotion/src/weights.rs
@@ -48,25 +48,29 @@
/// Weights for pallet_app_promotion using the Substrate node and recommended hardware.
pub struct SubstrateWeight<T>(PhantomData<T>);
impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
+ /// Storage: Maintenance Enabled (r:1 w:0)
+ /// Proof: Maintenance Enabled (max_values: Some(1), max_size: Some(1), added: 496, mode: MaxEncodedLen)
/// Storage: AppPromotion PendingUnstake (r:1 w:1)
/// Proof: AppPromotion PendingUnstake (max_values: None, max_size: Some(157), added: 2632, mode: MaxEncodedLen)
- /// Storage: Balances Locks (r:3 w:3)
- /// Proof: Balances Locks (max_values: None, max_size: Some(1299), added: 3774, mode: MaxEncodedLen)
+ /// Storage: Balances Freezes (r:3 w:3)
+ /// Proof: Balances Freezes (max_values: None, max_size: Some(369), added: 2844, mode: MaxEncodedLen)
/// Storage: System Account (r:3 w:3)
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
+ /// Storage: Balances Locks (r:3 w:0)
+ /// Proof: Balances Locks (max_values: None, max_size: Some(1299), added: 3774, mode: MaxEncodedLen)
/// The range of component `b` is `[0, 3]`.
fn on_initialize(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `180 + b * (277 ±0)`
- // Estimated: `5602 + b * (6377 ±0)`
- // Minimum execution time: 3_724_000 picoseconds.
- Weight::from_parts(4_538_653, 5602)
- // Standard Error: 14_774
- .saturating_add(Weight::from_parts(10_368_686, 0).saturating_mul(b.into()))
- .saturating_add(T::DbWeight::get().reads(1_u64))
- .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(b.into())))
+ // Measured: `222 + b * (285 ±0)`
+ // Estimated: `3622 + b * (3774 ±0)`
+ // Minimum execution time: 4_107_000 picoseconds.
+ Weight::from_parts(4_751_973, 3622)
+ // Standard Error: 4_668
+ .saturating_add(Weight::from_parts(10_570_330, 0).saturating_mul(b.into()))
+ .saturating_add(T::DbWeight::get().reads(2_u64))
+ .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(b.into())))
.saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(b.into())))
- .saturating_add(Weight::from_parts(0, 6377).saturating_mul(b.into()))
+ .saturating_add(Weight::from_parts(0, 3774).saturating_mul(b.into()))
}
/// Storage: AppPromotion Admin (r:0 w:1)
/// Proof: AppPromotion Admin (max_values: Some(1), max_size: Some(32), added: 527, mode: MaxEncodedLen)
@@ -74,8 +78,8 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 5_426_000 picoseconds.
- Weight::from_parts(6_149_000, 0)
+ // Minimum execution time: 3_459_000 picoseconds.
+ Weight::from_parts(3_627_000, 0)
.saturating_add(T::DbWeight::get().writes(1_u64))
}
/// Storage: AppPromotion Admin (r:1 w:0)
@@ -90,24 +94,26 @@
/// Proof: AppPromotion Staked (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
/// Storage: System Account (r:101 w:101)
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
- /// Storage: Balances Locks (r:100 w:100)
+ /// Storage: Balances Freezes (r:100 w:100)
+ /// Proof: Balances Freezes (max_values: None, max_size: Some(369), added: 2844, mode: MaxEncodedLen)
+ /// Storage: Balances Locks (r:100 w:0)
/// Proof: Balances Locks (max_values: None, max_size: Some(1299), added: 3774, mode: MaxEncodedLen)
/// Storage: AppPromotion TotalStaked (r:1 w:1)
/// Proof: AppPromotion TotalStaked (max_values: Some(1), max_size: Some(16), added: 511, mode: MaxEncodedLen)
/// The range of component `b` is `[1, 100]`.
fn payout_stakers(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `531 + b * (633 ±0)`
- // Estimated: `16194 + b * (32560 ±0)`
- // Minimum execution time: 84_632_000 picoseconds.
- Weight::from_parts(800_384, 16194)
- // Standard Error: 19_457
- .saturating_add(Weight::from_parts(49_393_958, 0).saturating_mul(b.into()))
+ // Measured: `564 + b * (641 ±0)`
+ // Estimated: `3593 + b * (25550 ±0)`
+ // Minimum execution time: 73_245_000 picoseconds.
+ Weight::from_parts(74_196_000, 3593)
+ // Standard Error: 8_231
+ .saturating_add(Weight::from_parts(49_090_053, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(7_u64))
- .saturating_add(T::DbWeight::get().reads((12_u64).saturating_mul(b.into())))
+ .saturating_add(T::DbWeight::get().reads((13_u64).saturating_mul(b.into())))
.saturating_add(T::DbWeight::get().writes(3_u64))
.saturating_add(T::DbWeight::get().writes((12_u64).saturating_mul(b.into())))
- .saturating_add(Weight::from_parts(0, 32560).saturating_mul(b.into()))
+ .saturating_add(Weight::from_parts(0, 25550).saturating_mul(b.into()))
}
/// Storage: AppPromotion StakesPerAccount (r:1 w:1)
/// Proof: AppPromotion StakesPerAccount (max_values: None, max_size: Some(49), added: 2524, mode: MaxEncodedLen)
@@ -115,7 +121,9 @@
/// Proof: Configuration AppPromomotionConfigurationOverride (max_values: Some(1), max_size: Some(17), added: 512, mode: MaxEncodedLen)
/// Storage: System Account (r:1 w:1)
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
- /// Storage: Balances Locks (r:1 w:1)
+ /// Storage: Balances Freezes (r:1 w:1)
+ /// Proof: Balances Freezes (max_values: None, max_size: Some(369), added: 2844, mode: MaxEncodedLen)
+ /// Storage: Balances Locks (r:1 w:0)
/// Proof: Balances Locks (max_values: None, max_size: Some(1299), added: 3774, mode: MaxEncodedLen)
/// Storage: ParachainSystem ValidationData (r:1 w:0)
/// Proof Skipped: ParachainSystem ValidationData (max_values: Some(1), max_size: None, mode: Measured)
@@ -125,11 +133,11 @@
/// Proof: AppPromotion TotalStaked (max_values: Some(1), max_size: Some(16), added: 511, mode: MaxEncodedLen)
fn stake() -> Weight {
// Proof Size summary in bytes:
- // Measured: `356`
- // Estimated: `20260`
- // Minimum execution time: 24_750_000 picoseconds.
- Weight::from_parts(25_157_000, 20260)
- .saturating_add(T::DbWeight::get().reads(7_u64))
+ // Measured: `389`
+ // Estimated: `4764`
+ // Minimum execution time: 21_088_000 picoseconds.
+ Weight::from_parts(21_639_000, 4764)
+ .saturating_add(T::DbWeight::get().reads(8_u64))
.saturating_add(T::DbWeight::get().writes(5_u64))
}
/// Storage: Configuration AppPromomotionConfigurationOverride (r:1 w:0)
@@ -144,10 +152,10 @@
/// Proof: AppPromotion StakesPerAccount (max_values: None, max_size: Some(49), added: 2524, mode: MaxEncodedLen)
fn unstake_all() -> Weight {
// Proof Size summary in bytes:
- // Measured: `796`
- // Estimated: `35720`
- // Minimum execution time: 53_670_000 picoseconds.
- Weight::from_parts(54_376_000, 35720)
+ // Measured: `829`
+ // Estimated: `29095`
+ // Minimum execution time: 42_086_000 picoseconds.
+ Weight::from_parts(43_149_000, 29095)
.saturating_add(T::DbWeight::get().reads(14_u64))
.saturating_add(T::DbWeight::get().writes(13_u64))
}
@@ -163,10 +171,10 @@
/// Proof: AppPromotion StakesPerAccount (max_values: None, max_size: Some(49), added: 2524, mode: MaxEncodedLen)
fn unstake_partial() -> Weight {
// Proof Size summary in bytes:
- // Measured: `796`
- // Estimated: `39234`
- // Minimum execution time: 58_317_000 picoseconds.
- Weight::from_parts(59_059_000, 39234)
+ // Measured: `829`
+ // Estimated: `29095`
+ // Minimum execution time: 46_458_000 picoseconds.
+ Weight::from_parts(47_333_000, 29095)
.saturating_add(T::DbWeight::get().reads(15_u64))
.saturating_add(T::DbWeight::get().writes(13_u64))
}
@@ -176,10 +184,10 @@
/// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)
fn sponsor_collection() -> Weight {
// Proof Size summary in bytes:
- // Measured: `1027`
- // Estimated: `5842`
- // Minimum execution time: 18_117_000 picoseconds.
- Weight::from_parts(18_634_000, 5842)
+ // Measured: `1060`
+ // Estimated: `4325`
+ // Minimum execution time: 12_827_000 picoseconds.
+ Weight::from_parts(13_610_000, 4325)
.saturating_add(T::DbWeight::get().reads(2_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -189,10 +197,10 @@
/// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)
fn stop_sponsoring_collection() -> Weight {
// Proof Size summary in bytes:
- // Measured: `1059`
- // Estimated: `5842`
- // Minimum execution time: 16_999_000 picoseconds.
- Weight::from_parts(17_417_000, 5842)
+ // Measured: `1092`
+ // Estimated: `4325`
+ // Minimum execution time: 11_899_000 picoseconds.
+ Weight::from_parts(12_303_000, 4325)
.saturating_add(T::DbWeight::get().reads(2_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -204,8 +212,8 @@
// Proof Size summary in bytes:
// Measured: `198`
// Estimated: `1517`
- // Minimum execution time: 14_438_000 picoseconds.
- Weight::from_parts(14_931_000, 1517)
+ // Minimum execution time: 10_226_000 picoseconds.
+ Weight::from_parts(10_549_000, 1517)
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -215,10 +223,10 @@
/// Proof: EvmContractHelpers Sponsoring (max_values: None, max_size: Some(62), added: 2537, mode: MaxEncodedLen)
fn stop_sponsoring_contract() -> Weight {
// Proof Size summary in bytes:
- // Measured: `363`
- // Estimated: `5044`
- // Minimum execution time: 14_786_000 picoseconds.
- Weight::from_parts(15_105_000, 5044)
+ // Measured: `396`
+ // Estimated: `3527`
+ // Minimum execution time: 10_528_000 picoseconds.
+ Weight::from_parts(10_842_000, 3527)
.saturating_add(T::DbWeight::get().reads(2_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -226,25 +234,29 @@
// For backwards compatibility and tests
impl WeightInfo for () {
+ /// Storage: Maintenance Enabled (r:1 w:0)
+ /// Proof: Maintenance Enabled (max_values: Some(1), max_size: Some(1), added: 496, mode: MaxEncodedLen)
/// Storage: AppPromotion PendingUnstake (r:1 w:1)
/// Proof: AppPromotion PendingUnstake (max_values: None, max_size: Some(157), added: 2632, mode: MaxEncodedLen)
- /// Storage: Balances Locks (r:3 w:3)
- /// Proof: Balances Locks (max_values: None, max_size: Some(1299), added: 3774, mode: MaxEncodedLen)
+ /// Storage: Balances Freezes (r:3 w:3)
+ /// Proof: Balances Freezes (max_values: None, max_size: Some(369), added: 2844, mode: MaxEncodedLen)
/// Storage: System Account (r:3 w:3)
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
+ /// Storage: Balances Locks (r:3 w:0)
+ /// Proof: Balances Locks (max_values: None, max_size: Some(1299), added: 3774, mode: MaxEncodedLen)
/// The range of component `b` is `[0, 3]`.
fn on_initialize(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `180 + b * (277 ±0)`
- // Estimated: `5602 + b * (6377 ±0)`
- // Minimum execution time: 3_724_000 picoseconds.
- Weight::from_parts(4_538_653, 5602)
- // Standard Error: 14_774
- .saturating_add(Weight::from_parts(10_368_686, 0).saturating_mul(b.into()))
- .saturating_add(RocksDbWeight::get().reads(1_u64))
- .saturating_add(RocksDbWeight::get().reads((2_u64).saturating_mul(b.into())))
+ // Measured: `222 + b * (285 ±0)`
+ // Estimated: `3622 + b * (3774 ±0)`
+ // Minimum execution time: 4_107_000 picoseconds.
+ Weight::from_parts(4_751_973, 3622)
+ // Standard Error: 4_668
+ .saturating_add(Weight::from_parts(10_570_330, 0).saturating_mul(b.into()))
+ .saturating_add(RocksDbWeight::get().reads(2_u64))
+ .saturating_add(RocksDbWeight::get().reads((3_u64).saturating_mul(b.into())))
.saturating_add(RocksDbWeight::get().writes((2_u64).saturating_mul(b.into())))
- .saturating_add(Weight::from_parts(0, 6377).saturating_mul(b.into()))
+ .saturating_add(Weight::from_parts(0, 3774).saturating_mul(b.into()))
}
/// Storage: AppPromotion Admin (r:0 w:1)
/// Proof: AppPromotion Admin (max_values: Some(1), max_size: Some(32), added: 527, mode: MaxEncodedLen)
@@ -252,8 +264,8 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 5_426_000 picoseconds.
- Weight::from_parts(6_149_000, 0)
+ // Minimum execution time: 3_459_000 picoseconds.
+ Weight::from_parts(3_627_000, 0)
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
/// Storage: AppPromotion Admin (r:1 w:0)
@@ -268,24 +280,26 @@
/// Proof: AppPromotion Staked (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
/// Storage: System Account (r:101 w:101)
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
- /// Storage: Balances Locks (r:100 w:100)
+ /// Storage: Balances Freezes (r:100 w:100)
+ /// Proof: Balances Freezes (max_values: None, max_size: Some(369), added: 2844, mode: MaxEncodedLen)
+ /// Storage: Balances Locks (r:100 w:0)
/// Proof: Balances Locks (max_values: None, max_size: Some(1299), added: 3774, mode: MaxEncodedLen)
/// Storage: AppPromotion TotalStaked (r:1 w:1)
/// Proof: AppPromotion TotalStaked (max_values: Some(1), max_size: Some(16), added: 511, mode: MaxEncodedLen)
/// The range of component `b` is `[1, 100]`.
fn payout_stakers(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `531 + b * (633 ±0)`
- // Estimated: `16194 + b * (32560 ±0)`
- // Minimum execution time: 84_632_000 picoseconds.
- Weight::from_parts(800_384, 16194)
- // Standard Error: 19_457
- .saturating_add(Weight::from_parts(49_393_958, 0).saturating_mul(b.into()))
+ // Measured: `564 + b * (641 ±0)`
+ // Estimated: `3593 + b * (25550 ±0)`
+ // Minimum execution time: 73_245_000 picoseconds.
+ Weight::from_parts(74_196_000, 3593)
+ // Standard Error: 8_231
+ .saturating_add(Weight::from_parts(49_090_053, 0).saturating_mul(b.into()))
.saturating_add(RocksDbWeight::get().reads(7_u64))
- .saturating_add(RocksDbWeight::get().reads((12_u64).saturating_mul(b.into())))
+ .saturating_add(RocksDbWeight::get().reads((13_u64).saturating_mul(b.into())))
.saturating_add(RocksDbWeight::get().writes(3_u64))
.saturating_add(RocksDbWeight::get().writes((12_u64).saturating_mul(b.into())))
- .saturating_add(Weight::from_parts(0, 32560).saturating_mul(b.into()))
+ .saturating_add(Weight::from_parts(0, 25550).saturating_mul(b.into()))
}
/// Storage: AppPromotion StakesPerAccount (r:1 w:1)
/// Proof: AppPromotion StakesPerAccount (max_values: None, max_size: Some(49), added: 2524, mode: MaxEncodedLen)
@@ -293,7 +307,9 @@
/// Proof: Configuration AppPromomotionConfigurationOverride (max_values: Some(1), max_size: Some(17), added: 512, mode: MaxEncodedLen)
/// Storage: System Account (r:1 w:1)
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
- /// Storage: Balances Locks (r:1 w:1)
+ /// Storage: Balances Freezes (r:1 w:1)
+ /// Proof: Balances Freezes (max_values: None, max_size: Some(369), added: 2844, mode: MaxEncodedLen)
+ /// Storage: Balances Locks (r:1 w:0)
/// Proof: Balances Locks (max_values: None, max_size: Some(1299), added: 3774, mode: MaxEncodedLen)
/// Storage: ParachainSystem ValidationData (r:1 w:0)
/// Proof Skipped: ParachainSystem ValidationData (max_values: Some(1), max_size: None, mode: Measured)
@@ -303,11 +319,11 @@
/// Proof: AppPromotion TotalStaked (max_values: Some(1), max_size: Some(16), added: 511, mode: MaxEncodedLen)
fn stake() -> Weight {
// Proof Size summary in bytes:
- // Measured: `356`
- // Estimated: `20260`
- // Minimum execution time: 24_750_000 picoseconds.
- Weight::from_parts(25_157_000, 20260)
- .saturating_add(RocksDbWeight::get().reads(7_u64))
+ // Measured: `389`
+ // Estimated: `4764`
+ // Minimum execution time: 21_088_000 picoseconds.
+ Weight::from_parts(21_639_000, 4764)
+ .saturating_add(RocksDbWeight::get().reads(8_u64))
.saturating_add(RocksDbWeight::get().writes(5_u64))
}
/// Storage: Configuration AppPromomotionConfigurationOverride (r:1 w:0)
@@ -322,10 +338,10 @@
/// Proof: AppPromotion StakesPerAccount (max_values: None, max_size: Some(49), added: 2524, mode: MaxEncodedLen)
fn unstake_all() -> Weight {
// Proof Size summary in bytes:
- // Measured: `796`
- // Estimated: `35720`
- // Minimum execution time: 53_670_000 picoseconds.
- Weight::from_parts(54_376_000, 35720)
+ // Measured: `829`
+ // Estimated: `29095`
+ // Minimum execution time: 42_086_000 picoseconds.
+ Weight::from_parts(43_149_000, 29095)
.saturating_add(RocksDbWeight::get().reads(14_u64))
.saturating_add(RocksDbWeight::get().writes(13_u64))
}
@@ -341,10 +357,10 @@
/// Proof: AppPromotion StakesPerAccount (max_values: None, max_size: Some(49), added: 2524, mode: MaxEncodedLen)
fn unstake_partial() -> Weight {
// Proof Size summary in bytes:
- // Measured: `796`
- // Estimated: `39234`
- // Minimum execution time: 58_317_000 picoseconds.
- Weight::from_parts(59_059_000, 39234)
+ // Measured: `829`
+ // Estimated: `29095`
+ // Minimum execution time: 46_458_000 picoseconds.
+ Weight::from_parts(47_333_000, 29095)
.saturating_add(RocksDbWeight::get().reads(15_u64))
.saturating_add(RocksDbWeight::get().writes(13_u64))
}
@@ -354,10 +370,10 @@
/// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)
fn sponsor_collection() -> Weight {
// Proof Size summary in bytes:
- // Measured: `1027`
- // Estimated: `5842`
- // Minimum execution time: 18_117_000 picoseconds.
- Weight::from_parts(18_634_000, 5842)
+ // Measured: `1060`
+ // Estimated: `4325`
+ // Minimum execution time: 12_827_000 picoseconds.
+ Weight::from_parts(13_610_000, 4325)
.saturating_add(RocksDbWeight::get().reads(2_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -367,10 +383,10 @@
/// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)
fn stop_sponsoring_collection() -> Weight {
// Proof Size summary in bytes:
- // Measured: `1059`
- // Estimated: `5842`
- // Minimum execution time: 16_999_000 picoseconds.
- Weight::from_parts(17_417_000, 5842)
+ // Measured: `1092`
+ // Estimated: `4325`
+ // Minimum execution time: 11_899_000 picoseconds.
+ Weight::from_parts(12_303_000, 4325)
.saturating_add(RocksDbWeight::get().reads(2_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -382,8 +398,8 @@
// Proof Size summary in bytes:
// Measured: `198`
// Estimated: `1517`
- // Minimum execution time: 14_438_000 picoseconds.
- Weight::from_parts(14_931_000, 1517)
+ // Minimum execution time: 10_226_000 picoseconds.
+ Weight::from_parts(10_549_000, 1517)
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -393,10 +409,10 @@
/// Proof: EvmContractHelpers Sponsoring (max_values: None, max_size: Some(62), added: 2537, mode: MaxEncodedLen)
fn stop_sponsoring_contract() -> Weight {
// Proof Size summary in bytes:
- // Measured: `363`
- // Estimated: `5044`
- // Minimum execution time: 14_786_000 picoseconds.
- Weight::from_parts(15_105_000, 5044)
+ // Measured: `396`
+ // Estimated: `3527`
+ // Minimum execution time: 10_528_000 picoseconds.
+ Weight::from_parts(10_842_000, 3527)
.saturating_add(RocksDbWeight::get().reads(2_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
pallets/balances-adapter/src/common.rsdiffbeforeafterboth--- a/pallets/balances-adapter/src/common.rs
+++ b/pallets/balances-adapter/src/common.rs
@@ -172,6 +172,18 @@
fail!(<pallet_common::Error<T>>::UnsupportedOperation);
}
+ fn get_token_properties_raw(
+ &self,
+ _token_id: TokenId,
+ ) -> Option<up_data_structs::TokenProperties> {
+ // No token properties are defined on fungibles
+ None
+ }
+
+ fn set_token_properties_raw(&self, _token_id: TokenId, _map: up_data_structs::TokenProperties) {
+ // No token properties are defined on fungibles
+ }
+
fn set_token_property_permissions(
&self,
_sender: &<T>::CrossAccountId,
@@ -277,6 +289,15 @@
Err(up_data_structs::TokenOwnerError::MultipleOwners)
}
+ fn check_token_indirect_owner(
+ &self,
+ _token: TokenId,
+ _maybe_owner: &<T>::CrossAccountId,
+ _nesting_budget: &dyn up_data_structs::budget::Budget,
+ ) -> Result<bool, frame_support::sp_runtime::DispatchError> {
+ Ok(false)
+ }
+
fn token_owners(&self, _token: TokenId) -> Vec<<T>::CrossAccountId> {
vec![]
}
pallets/balances-adapter/src/erc.rsdiffbeforeafterboth--- a/pallets/balances-adapter/src/erc.rs
+++ b/pallets/balances-adapter/src/erc.rs
@@ -25,7 +25,7 @@
}
fn approve(&mut self, _caller: Caller, _spender: Address, _amount: U256) -> Result<bool> {
- Err("Approve not supported".into())
+ Err("approve not supported".into())
}
fn balance_of(&self, owner: Address) -> Result<U256> {
pallets/collator-selection/src/weights.rsdiffbeforeafterboth--- a/pallets/collator-selection/src/weights.rs
+++ b/pallets/collator-selection/src/weights.rs
@@ -3,13 +3,13 @@
//! Autogenerated weights for pallet_collator_selection
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2023-04-20, STEPS: `50`, REPEAT: `80`, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-09-26, STEPS: `50`, REPEAT: `400`, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! WORST CASE MAP SIZE: `1000000`
//! HOSTNAME: `bench-host`, CPU: `Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz`
//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
// Executed Command:
-// target/release/unique-collator
+// target/production/unique-collator
// benchmark
// pallet
// --pallet
@@ -20,7 +20,7 @@
// *
// --template=.maintain/frame-weight-template.hbs
// --steps=50
-// --repeat=80
+// --repeat=400
// --heap-pages=4096
// --output=./pallets/collator-selection/src/weights.rs
@@ -57,11 +57,11 @@
fn add_invulnerable(b: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `403 + b * (45 ±0)`
- // Estimated: `7485 + b * (45 ±0)`
- // Minimum execution time: 14_147_000 picoseconds.
- Weight::from_parts(15_313_627, 7485)
- // Standard Error: 1_744
- .saturating_add(Weight::from_parts(178_890, 0).saturating_mul(b.into()))
+ // Estimated: `3873 + b * (45 ±0)`
+ // Minimum execution time: 10_975_000 picoseconds.
+ Weight::from_parts(11_362_608, 3873)
+ // Standard Error: 411
+ .saturating_add(Weight::from_parts(152_014, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(3_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
.saturating_add(Weight::from_parts(0, 45).saturating_mul(b.into()))
@@ -73,10 +73,10 @@
// Proof Size summary in bytes:
// Measured: `96 + b * (32 ±0)`
// Estimated: `1806`
- // Minimum execution time: 9_426_000 picoseconds.
- Weight::from_parts(9_693_408, 1806)
- // Standard Error: 1_638
- .saturating_add(Weight::from_parts(227_917, 0).saturating_mul(b.into()))
+ // Minimum execution time: 6_369_000 picoseconds.
+ Weight::from_parts(6_604_933, 1806)
+ // Standard Error: 424
+ .saturating_add(Weight::from_parts(145_929, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -86,18 +86,20 @@
/// Proof Skipped: Session NextKeys (max_values: None, max_size: None, mode: Measured)
/// Storage: Configuration CollatorSelectionLicenseBondOverride (r:1 w:0)
/// Proof: Configuration CollatorSelectionLicenseBondOverride (max_values: Some(1), max_size: Some(16), added: 511, mode: MaxEncodedLen)
+ /// Storage: Balances Holds (r:1 w:1)
+ /// Proof: Balances Holds (max_values: None, max_size: Some(369), added: 2844, mode: MaxEncodedLen)
/// The range of component `c` is `[1, 9]`.
fn get_license(c: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `610 + c * (26 ±0)`
- // Estimated: `9099 + c * (28 ±0)`
- // Minimum execution time: 22_741_000 picoseconds.
- Weight::from_parts(24_210_604, 9099)
- // Standard Error: 2_703
- .saturating_add(Weight::from_parts(255_686, 0).saturating_mul(c.into()))
- .saturating_add(T::DbWeight::get().reads(3_u64))
- .saturating_add(T::DbWeight::get().writes(1_u64))
- .saturating_add(Weight::from_parts(0, 28).saturating_mul(c.into()))
+ // Measured: `668 + c * (46 ±0)`
+ // Estimated: `4131 + c * (47 ±0)`
+ // Minimum execution time: 23_857_000 picoseconds.
+ Weight::from_parts(25_984_655, 4131)
+ // Standard Error: 4_364
+ .saturating_add(Weight::from_parts(521_198, 0).saturating_mul(c.into()))
+ .saturating_add(T::DbWeight::get().reads(4_u64))
+ .saturating_add(T::DbWeight::get().writes(2_u64))
+ .saturating_add(Weight::from_parts(0, 47).saturating_mul(c.into()))
}
/// Storage: CollatorSelection LicenseDepositOf (r:1 w:0)
/// Proof: CollatorSelection LicenseDepositOf (max_values: None, max_size: Some(64), added: 2539, mode: MaxEncodedLen)
@@ -114,12 +116,12 @@
/// The range of component `c` is `[1, 7]`.
fn onboard(c: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `445 + c * (54 ±0)`
- // Estimated: `10119`
- // Minimum execution time: 20_397_000 picoseconds.
- Weight::from_parts(21_415_013, 10119)
- // Standard Error: 4_086
- .saturating_add(Weight::from_parts(252_810, 0).saturating_mul(c.into()))
+ // Measured: `414 + c * (54 ±0)`
+ // Estimated: `3529`
+ // Minimum execution time: 14_337_000 picoseconds.
+ Weight::from_parts(14_827_525, 3529)
+ // Standard Error: 1_210
+ .saturating_add(Weight::from_parts(298_748, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(5_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
}
@@ -127,15 +129,15 @@
/// Proof: CollatorSelection Candidates (max_values: Some(1), max_size: Some(321), added: 816, mode: MaxEncodedLen)
/// Storage: CollatorSelection LastAuthoredBlock (r:0 w:1)
/// Proof: CollatorSelection LastAuthoredBlock (max_values: None, max_size: Some(44), added: 2519, mode: MaxEncodedLen)
- /// The range of component `c` is `[1, 10]`.
+ /// The range of component `c` is `[1, 8]`.
fn offboard(c: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `111 + c * (32 ±0)`
// Estimated: `1806`
- // Minimum execution time: 10_543_000 picoseconds.
- Weight::from_parts(11_227_541, 1806)
- // Standard Error: 1_699
- .saturating_add(Weight::from_parts(181_030, 0).saturating_mul(c.into()))
+ // Minimum execution time: 7_320_000 picoseconds.
+ Weight::from_parts(7_646_004, 1806)
+ // Standard Error: 479
+ .saturating_add(Weight::from_parts(160_089, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
}
@@ -143,37 +145,41 @@
/// Proof: CollatorSelection Candidates (max_values: Some(1), max_size: Some(321), added: 816, mode: MaxEncodedLen)
/// Storage: CollatorSelection LicenseDepositOf (r:1 w:1)
/// Proof: CollatorSelection LicenseDepositOf (max_values: None, max_size: Some(64), added: 2539, mode: MaxEncodedLen)
+ /// Storage: Balances Holds (r:1 w:1)
+ /// Proof: Balances Holds (max_values: None, max_size: Some(369), added: 2844, mode: MaxEncodedLen)
/// Storage: CollatorSelection LastAuthoredBlock (r:0 w:1)
/// Proof: CollatorSelection LastAuthoredBlock (max_values: None, max_size: Some(44), added: 2519, mode: MaxEncodedLen)
- /// The range of component `c` is `[1, 10]`.
+ /// The range of component `c` is `[1, 8]`.
fn release_license(c: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `306 + c * (61 ±0)`
- // Estimated: `5335`
- // Minimum execution time: 22_214_000 picoseconds.
- Weight::from_parts(24_373_981, 5335)
- // Standard Error: 8_018
- .saturating_add(Weight::from_parts(405_404, 0).saturating_mul(c.into()))
- .saturating_add(T::DbWeight::get().reads(2_u64))
- .saturating_add(T::DbWeight::get().writes(3_u64))
+ // Measured: `328 + c * (103 ±0)`
+ // Estimated: `3834`
+ // Minimum execution time: 22_821_000 picoseconds.
+ Weight::from_parts(23_668_202, 3834)
+ // Standard Error: 6_654
+ .saturating_add(Weight::from_parts(844_978, 0).saturating_mul(c.into()))
+ .saturating_add(T::DbWeight::get().reads(3_u64))
+ .saturating_add(T::DbWeight::get().writes(4_u64))
}
/// Storage: CollatorSelection Candidates (r:1 w:1)
/// Proof: CollatorSelection Candidates (max_values: Some(1), max_size: Some(321), added: 816, mode: MaxEncodedLen)
/// Storage: CollatorSelection LicenseDepositOf (r:1 w:1)
/// Proof: CollatorSelection LicenseDepositOf (max_values: None, max_size: Some(64), added: 2539, mode: MaxEncodedLen)
+ /// Storage: Balances Holds (r:1 w:1)
+ /// Proof: Balances Holds (max_values: None, max_size: Some(369), added: 2844, mode: MaxEncodedLen)
/// Storage: CollatorSelection LastAuthoredBlock (r:0 w:1)
/// Proof: CollatorSelection LastAuthoredBlock (max_values: None, max_size: Some(44), added: 2519, mode: MaxEncodedLen)
- /// The range of component `c` is `[1, 10]`.
+ /// The range of component `c` is `[1, 8]`.
fn force_release_license(c: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `306 + c * (61 ±0)`
- // Estimated: `5335`
- // Minimum execution time: 22_159_000 picoseconds.
- Weight::from_parts(24_200_796, 5335)
- // Standard Error: 8_328
- .saturating_add(Weight::from_parts(312_138, 0).saturating_mul(c.into()))
- .saturating_add(T::DbWeight::get().reads(2_u64))
- .saturating_add(T::DbWeight::get().writes(3_u64))
+ // Measured: `328 + c * (103 ±0)`
+ // Estimated: `3834`
+ // Minimum execution time: 22_462_000 picoseconds.
+ Weight::from_parts(23_215_875, 3834)
+ // Standard Error: 6_450
+ .saturating_add(Weight::from_parts(830_887, 0).saturating_mul(c.into()))
+ .saturating_add(T::DbWeight::get().reads(3_u64))
+ .saturating_add(T::DbWeight::get().writes(4_u64))
}
/// Storage: System Account (r:2 w:2)
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
@@ -184,9 +190,9 @@
fn note_author() -> Weight {
// Proof Size summary in bytes:
// Measured: `155`
- // Estimated: `7729`
- // Minimum execution time: 16_520_000 picoseconds.
- Weight::from_parts(16_933_000, 7729)
+ // Estimated: `6196`
+ // Minimum execution time: 17_624_000 picoseconds.
+ Weight::from_parts(18_025_000, 6196)
.saturating_add(T::DbWeight::get().reads(3_u64))
.saturating_add(T::DbWeight::get().writes(4_u64))
}
@@ -194,32 +200,34 @@
/// Proof: CollatorSelection Candidates (max_values: Some(1), max_size: Some(321), added: 816, mode: MaxEncodedLen)
/// Storage: Configuration CollatorSelectionKickThresholdOverride (r:1 w:0)
/// Proof: Configuration CollatorSelectionKickThresholdOverride (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
- /// Storage: CollatorSelection LastAuthoredBlock (r:10 w:0)
+ /// Storage: CollatorSelection LastAuthoredBlock (r:8 w:0)
/// Proof: CollatorSelection LastAuthoredBlock (max_values: None, max_size: Some(44), added: 2519, mode: MaxEncodedLen)
/// Storage: CollatorSelection Invulnerables (r:1 w:0)
/// Proof: CollatorSelection Invulnerables (max_values: Some(1), max_size: Some(321), added: 816, mode: MaxEncodedLen)
/// Storage: System BlockWeight (r:1 w:1)
/// Proof: System BlockWeight (max_values: Some(1), max_size: Some(48), added: 543, mode: MaxEncodedLen)
- /// Storage: CollatorSelection LicenseDepositOf (r:9 w:9)
+ /// Storage: CollatorSelection LicenseDepositOf (r:7 w:7)
/// Proof: CollatorSelection LicenseDepositOf (max_values: None, max_size: Some(64), added: 2539, mode: MaxEncodedLen)
- /// Storage: System Account (r:10 w:10)
+ /// Storage: Balances Holds (r:7 w:7)
+ /// Proof: Balances Holds (max_values: None, max_size: Some(369), added: 2844, mode: MaxEncodedLen)
+ /// Storage: System Account (r:8 w:8)
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
- /// The range of component `r` is `[1, 10]`.
- /// The range of component `c` is `[1, 10]`.
+ /// The range of component `r` is `[1, 8]`.
+ /// The range of component `c` is `[1, 8]`.
fn new_session(r: u32, c: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `562 + r * (190 ±0) + c * (83 ±0)`
- // Estimated: `91818518943723 + c * (2519 ±0) + r * (5142 ±1)`
- // Minimum execution time: 16_153_000 picoseconds.
- Weight::from_parts(16_601_000, 91818518943723)
- // Standard Error: 119_095
- .saturating_add(Weight::from_parts(10_660_813, 0).saturating_mul(c.into()))
+ // Measured: `725 + c * (84 ±0) + r * (254 ±0)`
+ // Estimated: `6196 + c * (2519 ±0) + r * (2844 ±0)`
+ // Minimum execution time: 11_318_000 picoseconds.
+ Weight::from_parts(11_615_000, 6196)
+ // Standard Error: 69_557
+ .saturating_add(Weight::from_parts(13_016_275, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(5_u64))
.saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(c.into())))
.saturating_add(T::DbWeight::get().writes(1_u64))
.saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(c.into())))
.saturating_add(Weight::from_parts(0, 2519).saturating_mul(c.into()))
- .saturating_add(Weight::from_parts(0, 5142).saturating_mul(r.into()))
+ .saturating_add(Weight::from_parts(0, 2844).saturating_mul(r.into()))
}
}
@@ -235,11 +243,11 @@
fn add_invulnerable(b: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `403 + b * (45 ±0)`
- // Estimated: `7485 + b * (45 ±0)`
- // Minimum execution time: 14_147_000 picoseconds.
- Weight::from_parts(15_313_627, 7485)
- // Standard Error: 1_744
- .saturating_add(Weight::from_parts(178_890, 0).saturating_mul(b.into()))
+ // Estimated: `3873 + b * (45 ±0)`
+ // Minimum execution time: 10_975_000 picoseconds.
+ Weight::from_parts(11_362_608, 3873)
+ // Standard Error: 411
+ .saturating_add(Weight::from_parts(152_014, 0).saturating_mul(b.into()))
.saturating_add(RocksDbWeight::get().reads(3_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
.saturating_add(Weight::from_parts(0, 45).saturating_mul(b.into()))
@@ -251,10 +259,10 @@
// Proof Size summary in bytes:
// Measured: `96 + b * (32 ±0)`
// Estimated: `1806`
- // Minimum execution time: 9_426_000 picoseconds.
- Weight::from_parts(9_693_408, 1806)
- // Standard Error: 1_638
- .saturating_add(Weight::from_parts(227_917, 0).saturating_mul(b.into()))
+ // Minimum execution time: 6_369_000 picoseconds.
+ Weight::from_parts(6_604_933, 1806)
+ // Standard Error: 424
+ .saturating_add(Weight::from_parts(145_929, 0).saturating_mul(b.into()))
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -264,18 +272,20 @@
/// Proof Skipped: Session NextKeys (max_values: None, max_size: None, mode: Measured)
/// Storage: Configuration CollatorSelectionLicenseBondOverride (r:1 w:0)
/// Proof: Configuration CollatorSelectionLicenseBondOverride (max_values: Some(1), max_size: Some(16), added: 511, mode: MaxEncodedLen)
+ /// Storage: Balances Holds (r:1 w:1)
+ /// Proof: Balances Holds (max_values: None, max_size: Some(369), added: 2844, mode: MaxEncodedLen)
/// The range of component `c` is `[1, 9]`.
fn get_license(c: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `610 + c * (26 ±0)`
- // Estimated: `9099 + c * (28 ±0)`
- // Minimum execution time: 22_741_000 picoseconds.
- Weight::from_parts(24_210_604, 9099)
- // Standard Error: 2_703
- .saturating_add(Weight::from_parts(255_686, 0).saturating_mul(c.into()))
- .saturating_add(RocksDbWeight::get().reads(3_u64))
- .saturating_add(RocksDbWeight::get().writes(1_u64))
- .saturating_add(Weight::from_parts(0, 28).saturating_mul(c.into()))
+ // Measured: `668 + c * (46 ±0)`
+ // Estimated: `4131 + c * (47 ±0)`
+ // Minimum execution time: 23_857_000 picoseconds.
+ Weight::from_parts(25_984_655, 4131)
+ // Standard Error: 4_364
+ .saturating_add(Weight::from_parts(521_198, 0).saturating_mul(c.into()))
+ .saturating_add(RocksDbWeight::get().reads(4_u64))
+ .saturating_add(RocksDbWeight::get().writes(2_u64))
+ .saturating_add(Weight::from_parts(0, 47).saturating_mul(c.into()))
}
/// Storage: CollatorSelection LicenseDepositOf (r:1 w:0)
/// Proof: CollatorSelection LicenseDepositOf (max_values: None, max_size: Some(64), added: 2539, mode: MaxEncodedLen)
@@ -292,12 +302,12 @@
/// The range of component `c` is `[1, 7]`.
fn onboard(c: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `445 + c * (54 ±0)`
- // Estimated: `10119`
- // Minimum execution time: 20_397_000 picoseconds.
- Weight::from_parts(21_415_013, 10119)
- // Standard Error: 4_086
- .saturating_add(Weight::from_parts(252_810, 0).saturating_mul(c.into()))
+ // Measured: `414 + c * (54 ±0)`
+ // Estimated: `3529`
+ // Minimum execution time: 14_337_000 picoseconds.
+ Weight::from_parts(14_827_525, 3529)
+ // Standard Error: 1_210
+ .saturating_add(Weight::from_parts(298_748, 0).saturating_mul(c.into()))
.saturating_add(RocksDbWeight::get().reads(5_u64))
.saturating_add(RocksDbWeight::get().writes(2_u64))
}
@@ -305,15 +315,15 @@
/// Proof: CollatorSelection Candidates (max_values: Some(1), max_size: Some(321), added: 816, mode: MaxEncodedLen)
/// Storage: CollatorSelection LastAuthoredBlock (r:0 w:1)
/// Proof: CollatorSelection LastAuthoredBlock (max_values: None, max_size: Some(44), added: 2519, mode: MaxEncodedLen)
- /// The range of component `c` is `[1, 10]`.
+ /// The range of component `c` is `[1, 8]`.
fn offboard(c: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `111 + c * (32 ±0)`
// Estimated: `1806`
- // Minimum execution time: 10_543_000 picoseconds.
- Weight::from_parts(11_227_541, 1806)
- // Standard Error: 1_699
- .saturating_add(Weight::from_parts(181_030, 0).saturating_mul(c.into()))
+ // Minimum execution time: 7_320_000 picoseconds.
+ Weight::from_parts(7_646_004, 1806)
+ // Standard Error: 479
+ .saturating_add(Weight::from_parts(160_089, 0).saturating_mul(c.into()))
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(2_u64))
}
@@ -321,37 +331,41 @@
/// Proof: CollatorSelection Candidates (max_values: Some(1), max_size: Some(321), added: 816, mode: MaxEncodedLen)
/// Storage: CollatorSelection LicenseDepositOf (r:1 w:1)
/// Proof: CollatorSelection LicenseDepositOf (max_values: None, max_size: Some(64), added: 2539, mode: MaxEncodedLen)
+ /// Storage: Balances Holds (r:1 w:1)
+ /// Proof: Balances Holds (max_values: None, max_size: Some(369), added: 2844, mode: MaxEncodedLen)
/// Storage: CollatorSelection LastAuthoredBlock (r:0 w:1)
/// Proof: CollatorSelection LastAuthoredBlock (max_values: None, max_size: Some(44), added: 2519, mode: MaxEncodedLen)
- /// The range of component `c` is `[1, 10]`.
+ /// The range of component `c` is `[1, 8]`.
fn release_license(c: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `306 + c * (61 ±0)`
- // Estimated: `5335`
- // Minimum execution time: 22_214_000 picoseconds.
- Weight::from_parts(24_373_981, 5335)
- // Standard Error: 8_018
- .saturating_add(Weight::from_parts(405_404, 0).saturating_mul(c.into()))
- .saturating_add(RocksDbWeight::get().reads(2_u64))
- .saturating_add(RocksDbWeight::get().writes(3_u64))
+ // Measured: `328 + c * (103 ±0)`
+ // Estimated: `3834`
+ // Minimum execution time: 22_821_000 picoseconds.
+ Weight::from_parts(23_668_202, 3834)
+ // Standard Error: 6_654
+ .saturating_add(Weight::from_parts(844_978, 0).saturating_mul(c.into()))
+ .saturating_add(RocksDbWeight::get().reads(3_u64))
+ .saturating_add(RocksDbWeight::get().writes(4_u64))
}
/// Storage: CollatorSelection Candidates (r:1 w:1)
/// Proof: CollatorSelection Candidates (max_values: Some(1), max_size: Some(321), added: 816, mode: MaxEncodedLen)
/// Storage: CollatorSelection LicenseDepositOf (r:1 w:1)
/// Proof: CollatorSelection LicenseDepositOf (max_values: None, max_size: Some(64), added: 2539, mode: MaxEncodedLen)
+ /// Storage: Balances Holds (r:1 w:1)
+ /// Proof: Balances Holds (max_values: None, max_size: Some(369), added: 2844, mode: MaxEncodedLen)
/// Storage: CollatorSelection LastAuthoredBlock (r:0 w:1)
/// Proof: CollatorSelection LastAuthoredBlock (max_values: None, max_size: Some(44), added: 2519, mode: MaxEncodedLen)
- /// The range of component `c` is `[1, 10]`.
+ /// The range of component `c` is `[1, 8]`.
fn force_release_license(c: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `306 + c * (61 ±0)`
- // Estimated: `5335`
- // Minimum execution time: 22_159_000 picoseconds.
- Weight::from_parts(24_200_796, 5335)
- // Standard Error: 8_328
- .saturating_add(Weight::from_parts(312_138, 0).saturating_mul(c.into()))
- .saturating_add(RocksDbWeight::get().reads(2_u64))
- .saturating_add(RocksDbWeight::get().writes(3_u64))
+ // Measured: `328 + c * (103 ±0)`
+ // Estimated: `3834`
+ // Minimum execution time: 22_462_000 picoseconds.
+ Weight::from_parts(23_215_875, 3834)
+ // Standard Error: 6_450
+ .saturating_add(Weight::from_parts(830_887, 0).saturating_mul(c.into()))
+ .saturating_add(RocksDbWeight::get().reads(3_u64))
+ .saturating_add(RocksDbWeight::get().writes(4_u64))
}
/// Storage: System Account (r:2 w:2)
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
@@ -362,9 +376,9 @@
fn note_author() -> Weight {
// Proof Size summary in bytes:
// Measured: `155`
- // Estimated: `7729`
- // Minimum execution time: 16_520_000 picoseconds.
- Weight::from_parts(16_933_000, 7729)
+ // Estimated: `6196`
+ // Minimum execution time: 17_624_000 picoseconds.
+ Weight::from_parts(18_025_000, 6196)
.saturating_add(RocksDbWeight::get().reads(3_u64))
.saturating_add(RocksDbWeight::get().writes(4_u64))
}
@@ -372,32 +386,34 @@
/// Proof: CollatorSelection Candidates (max_values: Some(1), max_size: Some(321), added: 816, mode: MaxEncodedLen)
/// Storage: Configuration CollatorSelectionKickThresholdOverride (r:1 w:0)
/// Proof: Configuration CollatorSelectionKickThresholdOverride (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
- /// Storage: CollatorSelection LastAuthoredBlock (r:10 w:0)
+ /// Storage: CollatorSelection LastAuthoredBlock (r:8 w:0)
/// Proof: CollatorSelection LastAuthoredBlock (max_values: None, max_size: Some(44), added: 2519, mode: MaxEncodedLen)
/// Storage: CollatorSelection Invulnerables (r:1 w:0)
/// Proof: CollatorSelection Invulnerables (max_values: Some(1), max_size: Some(321), added: 816, mode: MaxEncodedLen)
/// Storage: System BlockWeight (r:1 w:1)
/// Proof: System BlockWeight (max_values: Some(1), max_size: Some(48), added: 543, mode: MaxEncodedLen)
- /// Storage: CollatorSelection LicenseDepositOf (r:9 w:9)
+ /// Storage: CollatorSelection LicenseDepositOf (r:7 w:7)
/// Proof: CollatorSelection LicenseDepositOf (max_values: None, max_size: Some(64), added: 2539, mode: MaxEncodedLen)
- /// Storage: System Account (r:10 w:10)
+ /// Storage: Balances Holds (r:7 w:7)
+ /// Proof: Balances Holds (max_values: None, max_size: Some(369), added: 2844, mode: MaxEncodedLen)
+ /// Storage: System Account (r:8 w:8)
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
- /// The range of component `r` is `[1, 10]`.
- /// The range of component `c` is `[1, 10]`.
+ /// The range of component `r` is `[1, 8]`.
+ /// The range of component `c` is `[1, 8]`.
fn new_session(r: u32, c: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `562 + r * (190 ±0) + c * (83 ±0)`
- // Estimated: `91818518943723 + c * (2519 ±0) + r * (5142 ±1)`
- // Minimum execution time: 16_153_000 picoseconds.
- Weight::from_parts(16_601_000, 91818518943723)
- // Standard Error: 119_095
- .saturating_add(Weight::from_parts(10_660_813, 0).saturating_mul(c.into()))
+ // Measured: `725 + c * (84 ±0) + r * (254 ±0)`
+ // Estimated: `6196 + c * (2519 ±0) + r * (2844 ±0)`
+ // Minimum execution time: 11_318_000 picoseconds.
+ Weight::from_parts(11_615_000, 6196)
+ // Standard Error: 69_557
+ .saturating_add(Weight::from_parts(13_016_275, 0).saturating_mul(c.into()))
.saturating_add(RocksDbWeight::get().reads(5_u64))
.saturating_add(RocksDbWeight::get().reads((2_u64).saturating_mul(c.into())))
.saturating_add(RocksDbWeight::get().writes(1_u64))
.saturating_add(RocksDbWeight::get().writes((2_u64).saturating_mul(c.into())))
.saturating_add(Weight::from_parts(0, 2519).saturating_mul(c.into()))
- .saturating_add(Weight::from_parts(0, 5142).saturating_mul(r.into()))
+ .saturating_add(Weight::from_parts(0, 2844).saturating_mul(r.into()))
}
}
pallets/common/src/benchmarking.rsdiffbeforeafterboth--- a/pallets/common/src/benchmarking.rs
+++ b/pallets/common/src/benchmarking.rs
@@ -22,8 +22,9 @@
use frame_benchmarking::{benchmarks, account};
use up_data_structs::{
CollectionMode, CreateCollectionData, CollectionId, Property, PropertyKey, PropertyValue,
- CollectionPermissions, NestingPermissions, AccessMode, MAX_COLLECTION_NAME_LENGTH,
- MAX_COLLECTION_DESCRIPTION_LENGTH, MAX_TOKEN_PREFIX_LENGTH, MAX_PROPERTIES_PER_ITEM,
+ CollectionPermissions, NestingPermissions, AccessMode, PropertiesPermissionMap,
+ MAX_COLLECTION_NAME_LENGTH, MAX_COLLECTION_DESCRIPTION_LENGTH, MAX_TOKEN_PREFIX_LENGTH,
+ MAX_PROPERTIES_PER_ITEM,
};
use frame_support::{
traits::{Get, fungible::Balanced, Imbalance, tokens::Precision},
@@ -123,6 +124,16 @@
)
}
+pub fn load_is_admin_and_property_permissions<T: Config>(
+ collection: &CollectionHandle<T>,
+ sender: &T::CrossAccountId,
+) -> (bool, PropertiesPermissionMap) {
+ (
+ collection.is_owner_or_admin(sender),
+ <Pallet<T>>::property_permissions(collection.id),
+ )
+}
+
/// Helper macros, which handles all benchmarking preparation in semi-declarative way
///
/// `name` is a substrate account
@@ -215,4 +226,12 @@
assert_eq!(collection_handle.permissions.access(), AccessMode::AllowList);
}: {collection_handle.check_allowlist(&sender)?;}
+
+ init_token_properties_common {
+ bench_init!{
+ owner: sub; collection: collection(owner);
+ sender: sub;
+ sender: cross_from_sub(sender);
+ };
+ }: {load_is_admin_and_property_permissions(&collection, &sender);}
}
pallets/common/src/lib.rsdiffbeforeafterboth--- a/pallets/common/src/lib.rs
+++ b/pallets/common/src/lib.rs
@@ -56,6 +56,7 @@
use core::{
ops::{Deref, DerefMut},
slice::from_ref,
+ marker::PhantomData,
};
use pallet_evm_coder_substrate::{SubstrateRecorder, WithRecorder};
use sp_std::vec::Vec;
@@ -97,6 +98,9 @@
pub mod helpers;
#[allow(missing_docs)]
pub mod weights;
+
+use weights::WeightInfo;
+
/// Weight info.
pub type SelfWeightOf<T> = <T as Config>::WeightInfo;
@@ -863,18 +867,6 @@
),
QueryKind = OptionQuery,
>;
-}
-
-/// Represents the change mode for the token property.
-pub enum SetPropertyMode {
- /// The token already exists.
- ExistingToken,
-
- /// New token.
- NewToken {
- /// The creator of the token is the recipient.
- mint_target_is_sender: bool,
- },
}
/// Value representation with delayed initialization time.
@@ -892,19 +884,33 @@
}
}
- /// Get the value. If it call furst time the value will be initialized.
+ /// Get the value. If it is called the first time, the value will be initialized.
pub fn value(&mut self) -> &T {
- if self.value.is_none() {
- self.value = Some(self.f.take().unwrap()())
- }
+ self.compute_value_if_not_already();
+ self.value.as_ref().unwrap()
+ }
+
+ /// Get the value. If it is called the first time, the value will be initialized.
+ pub fn value_mut(&mut self) -> &mut T {
+ self.compute_value_if_not_already();
+ self.value.as_mut().unwrap()
+ }
- self.value.as_ref().unwrap()
+ fn into_inner(mut self) -> T {
+ self.compute_value_if_not_already();
+ self.value.unwrap()
}
- /// Is value initialized.
+ /// Is value initialized?
pub fn has_value(&self) -> bool {
self.value.is_some()
}
+
+ fn compute_value_if_not_already(&mut self) {
+ if self.value.is_none() {
+ self.value = Some(self.f.take().unwrap()())
+ }
+ }
}
fn check_token_permissions<T, FCA, FTO, FTE>(
@@ -926,10 +932,19 @@
fail!(<Error<T>>::NoPermission);
}
- let token_certainly_exist = is_token_owner.has_value() && (*is_token_owner.value())?;
- if !token_certainly_exist && !is_token_exist.value() {
- fail!(<Error<T>>::TokenNotFound);
+ let token_exist_due_to_owner_check_success =
+ is_token_owner.has_value() && (*is_token_owner.value())?;
+
+ // If the token owner check has occurred and succeeded,
+ // we know the token exists (otherwise, the owner check must fail).
+ if !token_exist_due_to_owner_check_success {
+ // If the token owner check didn't occur,
+ // we must check the token's existence ourselves.
+ if !is_token_exist.value() {
+ fail!(<Error<T>>::TokenNotFound);
+ }
}
+
Ok(())
}
@@ -1308,92 +1323,6 @@
}
<CollectionProperties<T>>::set(collection.id, stored_properties);
-
- Ok(())
- }
-
- /// A batch operation to add, edit or remove properties for a token.
- /// It sets or removes a token's properties according to
- /// `properties_updates` contents:
- /// * sets a property under the <key> with the value provided `(<key>, Some(<value>))`
- /// * removes a property under the <key> if the value is `None` `(<key>, None)`.
- ///
- /// All affected properties should have `mutable` permission
- /// to be **deleted** or to be **set more than once**,
- /// and the sender should have permission to edit those properties.
- ///
- /// This function fires an event for each property change.
- /// In case of an error, all the changes (including the events) will be reverted
- /// since the function is transactional.
- #[allow(clippy::too_many_arguments)]
- pub fn modify_token_properties<FTO, FTE>(
- collection: &CollectionHandle<T>,
- sender: &T::CrossAccountId,
- token_id: TokenId,
- is_token_exist: &mut LazyValue<bool, FTE>,
- properties_updates: impl Iterator<Item = (PropertyKey, Option<PropertyValue>)>,
- mut stored_properties: TokenProperties,
- is_token_owner: &mut LazyValue<Result<bool, DispatchError>, FTO>,
- set_token_properties: impl FnOnce(TokenProperties),
- log: evm_coder::ethereum::Log,
- ) -> DispatchResult
- where
- FTO: FnOnce() -> Result<bool, DispatchError>,
- FTE: FnOnce() -> bool,
- {
- let mut is_collection_admin = LazyValue::new(|| collection.is_owner_or_admin(sender));
- let permissions = Self::property_permissions(collection.id);
-
- let mut changed = false;
- for (key, value) in properties_updates {
- let permission = permissions
- .get(&key)
- .cloned()
- .unwrap_or_else(PropertyPermission::none);
-
- let property_exists = stored_properties.get(&key).is_some();
-
- match permission {
- PropertyPermission { mutable: false, .. } if property_exists => {
- return Err(<Error<T>>::NoPermission.into());
- }
-
- PropertyPermission {
- collection_admin,
- token_owner,
- ..
- } => check_token_permissions::<T, _, FTO, FTE>(
- collection_admin,
- token_owner,
- &mut is_collection_admin,
- is_token_owner,
- is_token_exist,
- )?,
- }
-
- match value {
- Some(value) => {
- stored_properties
- .try_set(key.clone(), value)
- .map_err(<Error<T>>::from)?;
-
- Self::deposit_event(Event::TokenPropertySet(collection.id, token_id, key));
- }
- None => {
- stored_properties.remove(&key).map_err(<Error<T>>::from)?;
-
- Self::deposit_event(Event::TokenPropertyDeleted(collection.id, token_id, key));
- }
- }
-
- changed = true;
- }
-
- if changed {
- <PalletEvm<T>>::deposit_log(log);
- }
-
- set_token_properties(stored_properties);
Ok(())
}
@@ -2166,6 +2095,17 @@
budget: &dyn Budget,
) -> DispatchResultWithPostInfo;
+ /// Get token properties raw map.
+ ///
+ /// * `token_id` - The token which properties are needed.
+ fn get_token_properties_raw(&self, token_id: TokenId) -> Option<TokenProperties>;
+
+ /// Set token properties raw map.
+ ///
+ /// * `token_id` - The token for which the properties are being set.
+ /// * `map` - The raw map containing the token's properties.
+ fn set_token_properties_raw(&self, token_id: TokenId, map: TokenProperties);
+
/// Set token property permissions.
///
/// * `sender` - Must be either the owner of the token or its admin.
@@ -2309,6 +2249,18 @@
/// * `token` - The token for which you need to find out the owner.
fn token_owner(&self, token: TokenId) -> Result<T::CrossAccountId, TokenOwnerError>;
+ /// Checks if the `maybe_owner` is the indirect owner of the `token`.
+ ///
+ /// * `token` - Id token to check.
+ /// * `maybe_owner` - The account to check.
+ /// * `nesting_budget` - A budget that can be spent on nesting tokens.
+ fn check_token_indirect_owner(
+ &self,
+ token: TokenId,
+ maybe_owner: &T::CrossAccountId,
+ nesting_budget: &dyn Budget,
+ ) -> Result<bool, DispatchError>;
+
/// Returns 10 tokens owners in no particular order.
///
/// * `token` - The token for which you need to find out the owners.
@@ -2420,6 +2372,352 @@
}
}
+/// A marker structure that enables the writer implementation
+/// to provide the interface to write properties to **newly created** tokens.
+pub struct NewTokenPropertyWriter;
+
+/// A marker structure that enables the writer implementation
+/// to provide the interface to write properties to **already existing** tokens.
+pub struct ExistingTokenPropertyWriter;
+
+/// The type-safe interface for writing properties (setting or deleting) to tokens.
+/// It has two distinct implementations for newly created tokens and existing ones.
+///
+/// This type utilizes the lazy evaluation to avoid repeating the computation
+/// of several performance-heavy or PoV-heavy tasks,
+/// such as checking the indirect ownership or reading the token property permissions.
+pub struct PropertyWriter<
+ 'a,
+ T,
+ Handle,
+ WriterVariant,
+ FIsAdmin,
+ FPropertyPermissions,
+ FCheckTokenExist,
+ FGetProperties,
+> where
+ T: Config,
+ FIsAdmin: FnOnce() -> bool,
+ FPropertyPermissions: FnOnce() -> PropertiesPermissionMap,
+{
+ collection: &'a Handle,
+ is_collection_admin: LazyValue<bool, FIsAdmin>,
+ property_permissions: LazyValue<PropertiesPermissionMap, FPropertyPermissions>,
+ check_token_exist: FCheckTokenExist,
+ get_properties: FGetProperties,
+ _phantom: PhantomData<(T, WriterVariant)>,
+}
+
+impl<'a, T, Handle, FIsAdmin, FPropertyPermissions, FCheckTokenExist, FGetProperties>
+ PropertyWriter<
+ 'a,
+ T,
+ Handle,
+ NewTokenPropertyWriter,
+ FIsAdmin,
+ FPropertyPermissions,
+ FCheckTokenExist,
+ FGetProperties,
+ > where
+ T: Config,
+ Handle: CommonCollectionOperations<T> + Deref<Target = CollectionHandle<T>>,
+ FIsAdmin: FnOnce() -> bool,
+ FPropertyPermissions: FnOnce() -> PropertiesPermissionMap,
+ FCheckTokenExist: Copy + FnOnce(TokenId) -> bool,
+ FGetProperties: Copy + FnOnce(TokenId) -> TokenProperties,
+{
+ /// A function to write properties to a **newly created** token.
+ pub fn write_token_properties(
+ &mut self,
+ mint_target_is_sender: bool,
+ token_id: TokenId,
+ properties_updates: impl Iterator<Item = Property>,
+ log: evm_coder::ethereum::Log,
+ ) -> DispatchResult {
+ self.internal_write_token_properties(
+ token_id,
+ properties_updates.map(|p| (p.key, Some(p.value))),
+ |_| Ok(mint_target_is_sender),
+ log,
+ )
+ }
+}
+
+impl<'a, T, Handle, FIsAdmin, FPropertyPermissions, FCheckTokenExist, FGetProperties>
+ PropertyWriter<
+ 'a,
+ T,
+ Handle,
+ ExistingTokenPropertyWriter,
+ FIsAdmin,
+ FPropertyPermissions,
+ FCheckTokenExist,
+ FGetProperties,
+ > where
+ T: Config,
+ Handle: CommonCollectionOperations<T> + Deref<Target = CollectionHandle<T>>,
+ FIsAdmin: FnOnce() -> bool,
+ FPropertyPermissions: FnOnce() -> PropertiesPermissionMap,
+ FCheckTokenExist: Copy + FnOnce(TokenId) -> bool,
+ FGetProperties: Copy + FnOnce(TokenId) -> TokenProperties,
+{
+ /// A function to write properties to an **already existing** token.
+ pub fn write_token_properties(
+ &mut self,
+ sender: &T::CrossAccountId,
+ token_id: TokenId,
+ properties_updates: impl Iterator<Item = (PropertyKey, Option<PropertyValue>)>,
+ nesting_budget: &dyn Budget,
+ log: evm_coder::ethereum::Log,
+ ) -> DispatchResult {
+ self.internal_write_token_properties(
+ token_id,
+ properties_updates,
+ |collection| collection.check_token_indirect_owner(token_id, sender, nesting_budget),
+ log,
+ )
+ }
+}
+
+impl<
+ 'a,
+ T,
+ Handle,
+ WriterVariant,
+ FIsAdmin,
+ FPropertyPermissions,
+ FCheckTokenExist,
+ FGetProperties,
+ >
+ PropertyWriter<
+ 'a,
+ T,
+ Handle,
+ WriterVariant,
+ FIsAdmin,
+ FPropertyPermissions,
+ FCheckTokenExist,
+ FGetProperties,
+ > where
+ T: Config,
+ Handle: CommonCollectionOperations<T> + Deref<Target = CollectionHandle<T>>,
+ FIsAdmin: FnOnce() -> bool,
+ FPropertyPermissions: FnOnce() -> PropertiesPermissionMap,
+ FCheckTokenExist: Copy + FnOnce(TokenId) -> bool,
+ FGetProperties: Copy + FnOnce(TokenId) -> TokenProperties,
+{
+ fn internal_write_token_properties<FCheckTokenOwner>(
+ &mut self,
+ token_id: TokenId,
+ properties_updates: impl Iterator<Item = (PropertyKey, Option<PropertyValue>)>,
+ check_token_owner: FCheckTokenOwner,
+ log: evm_coder::ethereum::Log,
+ ) -> DispatchResult
+ where
+ FCheckTokenOwner: FnOnce(&Handle) -> Result<bool, DispatchError>,
+ {
+ let get_properties = self.get_properties;
+ let mut stored_properties = LazyValue::new(move || get_properties(token_id));
+
+ let mut is_token_owner = LazyValue::new(|| check_token_owner(self.collection));
+
+ let check_token_exist = self.check_token_exist;
+ let mut is_token_exist = LazyValue::new(move || check_token_exist(token_id));
+
+ for (key, value) in properties_updates {
+ let permission = self
+ .property_permissions
+ .value()
+ .get(&key)
+ .cloned()
+ .unwrap_or_else(PropertyPermission::none);
+
+ match permission {
+ PropertyPermission { mutable: false, .. }
+ if stored_properties.value().get(&key).is_some() =>
+ {
+ return Err(<Error<T>>::NoPermission.into());
+ }
+
+ PropertyPermission {
+ collection_admin,
+ token_owner,
+ ..
+ } => check_token_permissions::<T, _, _, _>(
+ collection_admin,
+ token_owner,
+ &mut self.is_collection_admin,
+ &mut is_token_owner,
+ &mut is_token_exist,
+ )?,
+ }
+
+ match value {
+ Some(value) => {
+ stored_properties
+ .value_mut()
+ .try_set(key.clone(), value)
+ .map_err(<Error<T>>::from)?;
+
+ <Pallet<T>>::deposit_event(Event::TokenPropertySet(
+ self.collection.id,
+ token_id,
+ key,
+ ));
+ }
+ None => {
+ stored_properties
+ .value_mut()
+ .remove(&key)
+ .map_err(<Error<T>>::from)?;
+
+ <Pallet<T>>::deposit_event(Event::TokenPropertyDeleted(
+ self.collection.id,
+ token_id,
+ key,
+ ));
+ }
+ }
+ }
+
+ let properties_changed = stored_properties.has_value();
+ if properties_changed {
+ <PalletEvm<T>>::deposit_log(log);
+
+ self.collection
+ .set_token_properties_raw(token_id, stored_properties.into_inner());
+ }
+
+ Ok(())
+ }
+}
+
+/// Create a [`PropertyWriter`] for newly created tokens.
+pub fn property_writer_for_new_token<'a, T, Handle>(
+ collection: &'a Handle,
+ sender: &'a T::CrossAccountId,
+) -> PropertyWriter<
+ 'a,
+ T,
+ Handle,
+ NewTokenPropertyWriter,
+ impl FnOnce() -> bool + 'a,
+ impl FnOnce() -> PropertiesPermissionMap + 'a,
+ impl Copy + FnOnce(TokenId) -> bool + 'a,
+ impl Copy + FnOnce(TokenId) -> TokenProperties + 'a,
+>
+where
+ T: Config,
+ Handle: CommonCollectionOperations<T> + Deref<Target = CollectionHandle<T>>,
+{
+ PropertyWriter {
+ collection,
+ is_collection_admin: LazyValue::new(|| collection.is_owner_or_admin(sender)),
+ property_permissions: LazyValue::new(|| <Pallet<T>>::property_permissions(collection.id)),
+ check_token_exist: |token_id| {
+ debug_assert!(collection.token_exists(token_id));
+ true
+ },
+ get_properties: |token_id| {
+ debug_assert!(collection.get_token_properties_raw(token_id).is_none());
+ TokenProperties::new()
+ },
+ _phantom: PhantomData,
+ }
+}
+
+#[cfg(feature = "runtime-benchmarks")]
+/// Create a `PropertyWriter` with preloaded `is_collection_admin` and `property_permissions.
+/// Also:
+/// * it will return `true` for the token ownership check.
+/// * it will return empty stored properties without reading them from the storage.
+pub fn collection_info_loaded_property_writer<T, Handle>(
+ collection: &Handle,
+ is_collection_admin: bool,
+ property_permissions: PropertiesPermissionMap,
+) -> PropertyWriter<
+ T,
+ Handle,
+ NewTokenPropertyWriter,
+ impl FnOnce() -> bool,
+ impl FnOnce() -> PropertiesPermissionMap,
+ impl Copy + FnOnce(TokenId) -> bool,
+ impl Copy + FnOnce(TokenId) -> TokenProperties,
+>
+where
+ T: Config,
+ Handle: CommonCollectionOperations<T> + Deref<Target = CollectionHandle<T>>,
+{
+ PropertyWriter {
+ collection,
+ is_collection_admin: LazyValue::new(move || is_collection_admin),
+ property_permissions: LazyValue::new(move || property_permissions),
+ check_token_exist: |_token_id| true,
+ get_properties: |_token_id| TokenProperties::new(),
+ _phantom: PhantomData,
+ }
+}
+
+/// Create a [`PropertyWriter`] for already existing tokens.
+pub fn property_writer_for_existing_token<'a, T, Handle>(
+ collection: &'a Handle,
+ sender: &'a T::CrossAccountId,
+) -> PropertyWriter<
+ 'a,
+ T,
+ Handle,
+ ExistingTokenPropertyWriter,
+ impl FnOnce() -> bool + 'a,
+ impl FnOnce() -> PropertiesPermissionMap + 'a,
+ impl Copy + FnOnce(TokenId) -> bool + 'a,
+ impl Copy + FnOnce(TokenId) -> TokenProperties + 'a,
+>
+where
+ T: Config,
+ Handle: CommonCollectionOperations<T> + Deref<Target = CollectionHandle<T>>,
+{
+ PropertyWriter {
+ collection,
+ is_collection_admin: LazyValue::new(|| collection.is_owner_or_admin(sender)),
+ property_permissions: LazyValue::new(|| <Pallet<T>>::property_permissions(collection.id)),
+ check_token_exist: |token_id| collection.token_exists(token_id),
+ get_properties: |token_id| {
+ collection
+ .get_token_properties_raw(token_id)
+ .unwrap_or_default()
+ },
+ _phantom: PhantomData,
+ }
+}
+
+/// Computes the weight delta for newly created tokens with properties.
+/// * `properties_nums` - The properties num of each created token.
+/// * `init_token_properties` - The function to obtain the weight from a token's properties num.
+pub fn init_token_properties_delta<T: Config, I: Fn(u32) -> Weight>(
+ properties_nums: impl Iterator<Item = u32>,
+ init_token_properties: I,
+) -> Weight {
+ let mut delta = properties_nums
+ .filter_map(|properties_num| {
+ if properties_num > 0 {
+ Some(init_token_properties(properties_num))
+ } else {
+ None
+ }
+ })
+ .fold(Weight::zero(), |a, b| a.saturating_add(b));
+
+ // If at least once the `init_token_properties` was called,
+ // it means at least one newly created token has properties.
+ // Becuase of that, some common collection data also was loaded and we need to add this weight.
+ // However, these common data was loaded only once which is guaranteed by the `PropertyWriter`.
+ if !delta.is_zero() {
+ delta = delta.saturating_add(<SelfWeightOf<T>>::init_token_properties_common())
+ }
+
+ delta
+}
+
#[cfg(any(feature = "tests", test))]
#[allow(missing_docs)]
pub mod tests {
pallets/common/src/weights.rsdiffbeforeafterboth--- a/pallets/common/src/weights.rs
+++ b/pallets/common/src/weights.rs
@@ -3,13 +3,13 @@
//! Autogenerated weights for pallet_common
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2023-04-20, STEPS: `50`, REPEAT: `80`, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-09-30, STEPS: `50`, REPEAT: `400`, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! WORST CASE MAP SIZE: `1000000`
//! HOSTNAME: `bench-host`, CPU: `Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz`
//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
// Executed Command:
-// target/release/unique-collator
+// target/production/unique-collator
// benchmark
// pallet
// --pallet
@@ -20,7 +20,7 @@
// *
// --template=.maintain/frame-weight-template.hbs
// --steps=50
-// --repeat=80
+// --repeat=400
// --heap-pages=4096
// --output=./pallets/common/src/weights.rs
@@ -36,6 +36,7 @@
fn set_collection_properties(b: u32, ) -> Weight;
fn delete_collection_properties(b: u32, ) -> Weight;
fn check_accesslist() -> Weight;
+ fn init_token_properties_common() -> Weight;
}
/// Weights for pallet_common using the Substrate node and recommended hardware.
@@ -46,12 +47,12 @@
/// The range of component `b` is `[0, 64]`.
fn set_collection_properties(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `265`
+ // Measured: `298`
// Estimated: `44457`
- // Minimum execution time: 6_805_000 picoseconds.
- Weight::from_parts(6_965_000, 44457)
- // Standard Error: 20_175
- .saturating_add(Weight::from_parts(6_191_369, 0).saturating_mul(b.into()))
+ // Minimum execution time: 4_987_000 picoseconds.
+ Weight::from_parts(5_119_000, 44457)
+ // Standard Error: 7_609
+ .saturating_add(Weight::from_parts(5_750_459, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -60,12 +61,12 @@
/// The range of component `b` is `[0, 64]`.
fn delete_collection_properties(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `270 + b * (33030 ±0)`
+ // Measured: `303 + b * (33030 ±0)`
// Estimated: `44457`
- // Minimum execution time: 6_284_000 picoseconds.
- Weight::from_parts(6_416_000, 44457)
- // Standard Error: 81_929
- .saturating_add(Weight::from_parts(23_972_425, 0).saturating_mul(b.into()))
+ // Minimum execution time: 4_923_000 picoseconds.
+ Weight::from_parts(5_074_000, 44457)
+ // Standard Error: 36_651
+ .saturating_add(Weight::from_parts(23_145_677, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -73,12 +74,24 @@
/// Proof: Common Allowlist (max_values: None, max_size: Some(70), added: 2545, mode: MaxEncodedLen)
fn check_accesslist() -> Weight {
// Proof Size summary in bytes:
- // Measured: `340`
+ // Measured: `373`
// Estimated: `3535`
- // Minimum execution time: 5_205_000 picoseconds.
- Weight::from_parts(5_438_000, 3535)
+ // Minimum execution time: 4_271_000 picoseconds.
+ Weight::from_parts(4_461_000, 3535)
.saturating_add(T::DbWeight::get().reads(1_u64))
}
+ /// Storage: Common IsAdmin (r:1 w:0)
+ /// Proof: Common IsAdmin (max_values: None, max_size: Some(70), added: 2545, mode: MaxEncodedLen)
+ /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
+ /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
+ fn init_token_properties_common() -> Weight {
+ // Proof Size summary in bytes:
+ // Measured: `326`
+ // Estimated: `20191`
+ // Minimum execution time: 5_889_000 picoseconds.
+ Weight::from_parts(6_138_000, 20191)
+ .saturating_add(T::DbWeight::get().reads(2_u64))
+ }
}
// For backwards compatibility and tests
@@ -88,12 +101,12 @@
/// The range of component `b` is `[0, 64]`.
fn set_collection_properties(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `265`
+ // Measured: `298`
// Estimated: `44457`
- // Minimum execution time: 6_805_000 picoseconds.
- Weight::from_parts(6_965_000, 44457)
- // Standard Error: 20_175
- .saturating_add(Weight::from_parts(6_191_369, 0).saturating_mul(b.into()))
+ // Minimum execution time: 4_987_000 picoseconds.
+ Weight::from_parts(5_119_000, 44457)
+ // Standard Error: 7_609
+ .saturating_add(Weight::from_parts(5_750_459, 0).saturating_mul(b.into()))
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -102,12 +115,12 @@
/// The range of component `b` is `[0, 64]`.
fn delete_collection_properties(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `270 + b * (33030 ±0)`
+ // Measured: `303 + b * (33030 ±0)`
// Estimated: `44457`
- // Minimum execution time: 6_284_000 picoseconds.
- Weight::from_parts(6_416_000, 44457)
- // Standard Error: 81_929
- .saturating_add(Weight::from_parts(23_972_425, 0).saturating_mul(b.into()))
+ // Minimum execution time: 4_923_000 picoseconds.
+ Weight::from_parts(5_074_000, 44457)
+ // Standard Error: 36_651
+ .saturating_add(Weight::from_parts(23_145_677, 0).saturating_mul(b.into()))
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -115,11 +128,23 @@
/// Proof: Common Allowlist (max_values: None, max_size: Some(70), added: 2545, mode: MaxEncodedLen)
fn check_accesslist() -> Weight {
// Proof Size summary in bytes:
- // Measured: `340`
+ // Measured: `373`
// Estimated: `3535`
- // Minimum execution time: 5_205_000 picoseconds.
- Weight::from_parts(5_438_000, 3535)
+ // Minimum execution time: 4_271_000 picoseconds.
+ Weight::from_parts(4_461_000, 3535)
.saturating_add(RocksDbWeight::get().reads(1_u64))
}
+ /// Storage: Common IsAdmin (r:1 w:0)
+ /// Proof: Common IsAdmin (max_values: None, max_size: Some(70), added: 2545, mode: MaxEncodedLen)
+ /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
+ /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
+ fn init_token_properties_common() -> Weight {
+ // Proof Size summary in bytes:
+ // Measured: `326`
+ // Estimated: `20191`
+ // Minimum execution time: 5_889_000 picoseconds.
+ Weight::from_parts(6_138_000, 20191)
+ .saturating_add(RocksDbWeight::get().reads(2_u64))
+ }
}
pallets/configuration/src/weights.rsdiffbeforeafterboth--- a/pallets/configuration/src/weights.rs
+++ b/pallets/configuration/src/weights.rs
@@ -3,13 +3,13 @@
//! Autogenerated weights for pallet_configuration
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2023-04-20, STEPS: `50`, REPEAT: `80`, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-09-26, STEPS: `50`, REPEAT: `400`, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! WORST CASE MAP SIZE: `1000000`
//! HOSTNAME: `bench-host`, CPU: `Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz`
//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
// Executed Command:
-// target/release/unique-collator
+// target/production/unique-collator
// benchmark
// pallet
// --pallet
@@ -20,7 +20,7 @@
// *
// --template=.maintain/frame-weight-template.hbs
// --steps=50
-// --repeat=80
+// --repeat=400
// --heap-pages=4096
// --output=./pallets/configuration/src/weights.rs
@@ -50,19 +50,23 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 1_725_000 picoseconds.
- Weight::from_parts(1_853_000, 0)
+ // Minimum execution time: 990_000 picoseconds.
+ Weight::from_parts(1_090_000, 0)
.saturating_add(T::DbWeight::get().writes(1_u64))
}
/// Storage: Configuration MinGasPriceOverride (r:0 w:1)
/// Proof: Configuration MinGasPriceOverride (max_values: Some(1), max_size: Some(8), added: 503, mode: MaxEncodedLen)
+ /// Storage: unknown `0xc1fef3b7207c11a52df13c12884e772609bc3a1e532c9cb85d57feed02cbff8e` (r:0 w:1)
+ /// Proof Skipped: unknown `0xc1fef3b7207c11a52df13c12884e772609bc3a1e532c9cb85d57feed02cbff8e` (r:0 w:1)
+ /// Storage: unknown `0xc1fef3b7207c11a52df13c12884e77263864ade243c642793ebcfe9e16f454ca` (r:0 w:1)
+ /// Proof Skipped: unknown `0xc1fef3b7207c11a52df13c12884e77263864ade243c642793ebcfe9e16f454ca` (r:0 w:1)
fn set_min_gas_price_override() -> Weight {
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 1_802_000 picoseconds.
- Weight::from_parts(1_903_000, 0)
- .saturating_add(T::DbWeight::get().writes(1_u64))
+ // Minimum execution time: 1_469_000 picoseconds.
+ Weight::from_parts(1_565_000, 0)
+ .saturating_add(T::DbWeight::get().writes(3_u64))
}
/// Storage: Configuration AppPromomotionConfigurationOverride (r:0 w:1)
/// Proof: Configuration AppPromomotionConfigurationOverride (max_values: Some(1), max_size: Some(17), added: 512, mode: MaxEncodedLen)
@@ -70,8 +74,8 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 2_048_000 picoseconds.
- Weight::from_parts(2_157_000, 0)
+ // Minimum execution time: 1_027_000 picoseconds.
+ Weight::from_parts(1_098_000, 0)
.saturating_add(T::DbWeight::get().writes(1_u64))
}
/// Storage: Configuration CollatorSelectionDesiredCollatorsOverride (r:0 w:1)
@@ -80,8 +84,8 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 7_622_000 picoseconds.
- Weight::from_parts(8_014_000, 0)
+ // Minimum execution time: 4_149_000 picoseconds.
+ Weight::from_parts(4_326_000, 0)
.saturating_add(T::DbWeight::get().writes(1_u64))
}
/// Storage: Configuration CollatorSelectionLicenseBondOverride (r:0 w:1)
@@ -90,8 +94,8 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 4_981_000 picoseconds.
- Weight::from_parts(5_811_000, 0)
+ // Minimum execution time: 2_758_000 picoseconds.
+ Weight::from_parts(2_911_000, 0)
.saturating_add(T::DbWeight::get().writes(1_u64))
}
/// Storage: Configuration CollatorSelectionKickThresholdOverride (r:0 w:1)
@@ -100,8 +104,8 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 4_664_000 picoseconds.
- Weight::from_parts(4_816_000, 0)
+ // Minimum execution time: 2_695_000 picoseconds.
+ Weight::from_parts(2_829_000, 0)
.saturating_add(T::DbWeight::get().writes(1_u64))
}
}
@@ -114,19 +118,23 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 1_725_000 picoseconds.
- Weight::from_parts(1_853_000, 0)
+ // Minimum execution time: 990_000 picoseconds.
+ Weight::from_parts(1_090_000, 0)
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
/// Storage: Configuration MinGasPriceOverride (r:0 w:1)
/// Proof: Configuration MinGasPriceOverride (max_values: Some(1), max_size: Some(8), added: 503, mode: MaxEncodedLen)
+ /// Storage: unknown `0xc1fef3b7207c11a52df13c12884e772609bc3a1e532c9cb85d57feed02cbff8e` (r:0 w:1)
+ /// Proof Skipped: unknown `0xc1fef3b7207c11a52df13c12884e772609bc3a1e532c9cb85d57feed02cbff8e` (r:0 w:1)
+ /// Storage: unknown `0xc1fef3b7207c11a52df13c12884e77263864ade243c642793ebcfe9e16f454ca` (r:0 w:1)
+ /// Proof Skipped: unknown `0xc1fef3b7207c11a52df13c12884e77263864ade243c642793ebcfe9e16f454ca` (r:0 w:1)
fn set_min_gas_price_override() -> Weight {
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 1_802_000 picoseconds.
- Weight::from_parts(1_903_000, 0)
- .saturating_add(RocksDbWeight::get().writes(1_u64))
+ // Minimum execution time: 1_469_000 picoseconds.
+ Weight::from_parts(1_565_000, 0)
+ .saturating_add(RocksDbWeight::get().writes(3_u64))
}
/// Storage: Configuration AppPromomotionConfigurationOverride (r:0 w:1)
/// Proof: Configuration AppPromomotionConfigurationOverride (max_values: Some(1), max_size: Some(17), added: 512, mode: MaxEncodedLen)
@@ -134,8 +142,8 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 2_048_000 picoseconds.
- Weight::from_parts(2_157_000, 0)
+ // Minimum execution time: 1_027_000 picoseconds.
+ Weight::from_parts(1_098_000, 0)
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
/// Storage: Configuration CollatorSelectionDesiredCollatorsOverride (r:0 w:1)
@@ -144,8 +152,8 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 7_622_000 picoseconds.
- Weight::from_parts(8_014_000, 0)
+ // Minimum execution time: 4_149_000 picoseconds.
+ Weight::from_parts(4_326_000, 0)
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
/// Storage: Configuration CollatorSelectionLicenseBondOverride (r:0 w:1)
@@ -154,8 +162,8 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 4_981_000 picoseconds.
- Weight::from_parts(5_811_000, 0)
+ // Minimum execution time: 2_758_000 picoseconds.
+ Weight::from_parts(2_911_000, 0)
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
/// Storage: Configuration CollatorSelectionKickThresholdOverride (r:0 w:1)
@@ -164,8 +172,8 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 4_664_000 picoseconds.
- Weight::from_parts(4_816_000, 0)
+ // Minimum execution time: 2_695_000 picoseconds.
+ Weight::from_parts(2_829_000, 0)
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
}
pallets/evm-migration/src/weights.rsdiffbeforeafterboth--- a/pallets/evm-migration/src/weights.rs
+++ b/pallets/evm-migration/src/weights.rs
@@ -3,13 +3,13 @@
//! Autogenerated weights for pallet_evm_migration
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2023-04-20, STEPS: `50`, REPEAT: `80`, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-09-26, STEPS: `50`, REPEAT: `400`, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! WORST CASE MAP SIZE: `1000000`
//! HOSTNAME: `bench-host`, CPU: `Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz`
//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
// Executed Command:
-// target/release/unique-collator
+// target/production/unique-collator
// benchmark
// pallet
// --pallet
@@ -20,7 +20,7 @@
// *
// --template=.maintain/frame-weight-template.hbs
// --steps=50
-// --repeat=80
+// --repeat=400
// --heap-pages=4096
// --output=./pallets/evm-migration/src/weights.rs
@@ -52,9 +52,9 @@
fn begin() -> Weight {
// Proof Size summary in bytes:
// Measured: `94`
- // Estimated: `10646`
- // Minimum execution time: 8_519_000 picoseconds.
- Weight::from_parts(8_729_000, 10646)
+ // Estimated: `3593`
+ // Minimum execution time: 6_131_000 picoseconds.
+ Weight::from_parts(6_351_000, 3593)
.saturating_add(T::DbWeight::get().reads(3_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -66,11 +66,11 @@
fn set_data(b: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `96`
- // Estimated: `3590`
- // Minimum execution time: 6_062_000 picoseconds.
- Weight::from_parts(7_193_727, 3590)
- // Standard Error: 1_844
- .saturating_add(Weight::from_parts(876_826, 0).saturating_mul(b.into()))
+ // Estimated: `3494`
+ // Minimum execution time: 4_522_000 picoseconds.
+ Weight::from_parts(4_569_839, 3494)
+ // Standard Error: 253
+ .saturating_add(Weight::from_parts(743_780, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(b.into())))
}
@@ -79,12 +79,14 @@
/// Storage: EVM AccountCodes (r:0 w:1)
/// Proof Skipped: EVM AccountCodes (max_values: None, max_size: None, mode: Measured)
/// The range of component `b` is `[0, 80]`.
- fn finish(_b: u32, ) -> Weight {
+ fn finish(b: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `96`
- // Estimated: `3590`
- // Minimum execution time: 7_452_000 picoseconds.
- Weight::from_parts(8_531_888, 3590)
+ // Estimated: `3494`
+ // Minimum execution time: 5_329_000 picoseconds.
+ Weight::from_parts(5_677_312, 3494)
+ // Standard Error: 22
+ .saturating_add(Weight::from_parts(1_369, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
}
@@ -93,20 +95,20 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 1_377_000 picoseconds.
- Weight::from_parts(3_388_877, 0)
- // Standard Error: 1_205
- .saturating_add(Weight::from_parts(696_701, 0).saturating_mul(b.into()))
+ // Minimum execution time: 890_000 picoseconds.
+ Weight::from_parts(1_279_871, 0)
+ // Standard Error: 112
+ .saturating_add(Weight::from_parts(408_968, 0).saturating_mul(b.into()))
}
/// The range of component `b` is `[0, 200]`.
fn insert_events(b: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 1_671_000 picoseconds.
- Weight::from_parts(4_402_497, 0)
- // Standard Error: 723
- .saturating_add(Weight::from_parts(1_338_678, 0).saturating_mul(b.into()))
+ // Minimum execution time: 896_000 picoseconds.
+ Weight::from_parts(1_975_680, 0)
+ // Standard Error: 117
+ .saturating_add(Weight::from_parts(1_003_721, 0).saturating_mul(b.into()))
}
}
@@ -121,9 +123,9 @@
fn begin() -> Weight {
// Proof Size summary in bytes:
// Measured: `94`
- // Estimated: `10646`
- // Minimum execution time: 8_519_000 picoseconds.
- Weight::from_parts(8_729_000, 10646)
+ // Estimated: `3593`
+ // Minimum execution time: 6_131_000 picoseconds.
+ Weight::from_parts(6_351_000, 3593)
.saturating_add(RocksDbWeight::get().reads(3_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -135,11 +137,11 @@
fn set_data(b: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `96`
- // Estimated: `3590`
- // Minimum execution time: 6_062_000 picoseconds.
- Weight::from_parts(7_193_727, 3590)
- // Standard Error: 1_844
- .saturating_add(Weight::from_parts(876_826, 0).saturating_mul(b.into()))
+ // Estimated: `3494`
+ // Minimum execution time: 4_522_000 picoseconds.
+ Weight::from_parts(4_569_839, 3494)
+ // Standard Error: 253
+ .saturating_add(Weight::from_parts(743_780, 0).saturating_mul(b.into()))
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(b.into())))
}
@@ -148,12 +150,14 @@
/// Storage: EVM AccountCodes (r:0 w:1)
/// Proof Skipped: EVM AccountCodes (max_values: None, max_size: None, mode: Measured)
/// The range of component `b` is `[0, 80]`.
- fn finish(_b: u32, ) -> Weight {
+ fn finish(b: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `96`
- // Estimated: `3590`
- // Minimum execution time: 7_452_000 picoseconds.
- Weight::from_parts(8_531_888, 3590)
+ // Estimated: `3494`
+ // Minimum execution time: 5_329_000 picoseconds.
+ Weight::from_parts(5_677_312, 3494)
+ // Standard Error: 22
+ .saturating_add(Weight::from_parts(1_369, 0).saturating_mul(b.into()))
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(2_u64))
}
@@ -162,20 +166,20 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 1_377_000 picoseconds.
- Weight::from_parts(3_388_877, 0)
- // Standard Error: 1_205
- .saturating_add(Weight::from_parts(696_701, 0).saturating_mul(b.into()))
+ // Minimum execution time: 890_000 picoseconds.
+ Weight::from_parts(1_279_871, 0)
+ // Standard Error: 112
+ .saturating_add(Weight::from_parts(408_968, 0).saturating_mul(b.into()))
}
/// The range of component `b` is `[0, 200]`.
fn insert_events(b: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 1_671_000 picoseconds.
- Weight::from_parts(4_402_497, 0)
- // Standard Error: 723
- .saturating_add(Weight::from_parts(1_338_678, 0).saturating_mul(b.into()))
+ // Minimum execution time: 896_000 picoseconds.
+ Weight::from_parts(1_975_680, 0)
+ // Standard Error: 117
+ .saturating_add(Weight::from_parts(1_003_721, 0).saturating_mul(b.into()))
}
}
pallets/foreign-assets/src/weights.rsdiffbeforeafterboth--- a/pallets/foreign-assets/src/weights.rs
+++ b/pallets/foreign-assets/src/weights.rs
@@ -3,13 +3,13 @@
//! Autogenerated weights for pallet_foreign_assets
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2023-04-20, STEPS: `50`, REPEAT: `80`, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-09-26, STEPS: `50`, REPEAT: `400`, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! WORST CASE MAP SIZE: `1000000`
//! HOSTNAME: `bench-host`, CPU: `Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz`
//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
// Executed Command:
-// target/release/unique-collator
+// target/production/unique-collator
// benchmark
// pallet
// --pallet
@@ -20,7 +20,7 @@
// *
// --template=.maintain/frame-weight-template.hbs
// --steps=50
-// --repeat=80
+// --repeat=400
// --heap-pages=4096
// --output=./pallets/foreign-assets/src/weights.rs
@@ -56,6 +56,8 @@
/// Proof: ForeignAssets AssetMetadatas (max_values: None, max_size: Some(71), added: 2546, mode: MaxEncodedLen)
/// Storage: ForeignAssets AssetBinding (r:1 w:1)
/// Proof: ForeignAssets AssetBinding (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
+ /// Storage: Common AdminAmount (r:0 w:1)
+ /// Proof: Common AdminAmount (max_values: None, max_size: Some(24), added: 2499, mode: MaxEncodedLen)
/// Storage: Common CollectionPropertyPermissions (r:0 w:1)
/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Common CollectionProperties (r:0 w:1)
@@ -65,11 +67,11 @@
fn register_foreign_asset() -> Weight {
// Proof Size summary in bytes:
// Measured: `286`
- // Estimated: `25838`
- // Minimum execution time: 37_778_000 picoseconds.
- Weight::from_parts(38_334_000, 25838)
+ // Estimated: `6196`
+ // Minimum execution time: 33_294_000 picoseconds.
+ Weight::from_parts(34_011_000, 6196)
.saturating_add(T::DbWeight::get().reads(9_u64))
- .saturating_add(T::DbWeight::get().writes(11_u64))
+ .saturating_add(T::DbWeight::get().writes(12_u64))
}
/// Storage: ForeignAssets ForeignAssetLocations (r:1 w:1)
/// Proof: ForeignAssets ForeignAssetLocations (max_values: None, max_size: Some(614), added: 3089, mode: MaxEncodedLen)
@@ -78,9 +80,9 @@
fn update_foreign_asset() -> Weight {
// Proof Size summary in bytes:
// Measured: `197`
- // Estimated: `7615`
- // Minimum execution time: 13_739_000 picoseconds.
- Weight::from_parts(22_366_000, 7615)
+ // Estimated: `4079`
+ // Minimum execution time: 9_296_000 picoseconds.
+ Weight::from_parts(9_594_000, 4079)
.saturating_add(T::DbWeight::get().reads(2_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
}
@@ -104,6 +106,8 @@
/// Proof: ForeignAssets AssetMetadatas (max_values: None, max_size: Some(71), added: 2546, mode: MaxEncodedLen)
/// Storage: ForeignAssets AssetBinding (r:1 w:1)
/// Proof: ForeignAssets AssetBinding (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
+ /// Storage: Common AdminAmount (r:0 w:1)
+ /// Proof: Common AdminAmount (max_values: None, max_size: Some(24), added: 2499, mode: MaxEncodedLen)
/// Storage: Common CollectionPropertyPermissions (r:0 w:1)
/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Common CollectionProperties (r:0 w:1)
@@ -113,11 +117,11 @@
fn register_foreign_asset() -> Weight {
// Proof Size summary in bytes:
// Measured: `286`
- // Estimated: `25838`
- // Minimum execution time: 37_778_000 picoseconds.
- Weight::from_parts(38_334_000, 25838)
+ // Estimated: `6196`
+ // Minimum execution time: 33_294_000 picoseconds.
+ Weight::from_parts(34_011_000, 6196)
.saturating_add(RocksDbWeight::get().reads(9_u64))
- .saturating_add(RocksDbWeight::get().writes(11_u64))
+ .saturating_add(RocksDbWeight::get().writes(12_u64))
}
/// Storage: ForeignAssets ForeignAssetLocations (r:1 w:1)
/// Proof: ForeignAssets ForeignAssetLocations (max_values: None, max_size: Some(614), added: 3089, mode: MaxEncodedLen)
@@ -126,9 +130,9 @@
fn update_foreign_asset() -> Weight {
// Proof Size summary in bytes:
// Measured: `197`
- // Estimated: `7615`
- // Minimum execution time: 13_739_000 picoseconds.
- Weight::from_parts(22_366_000, 7615)
+ // Estimated: `4079`
+ // Minimum execution time: 9_296_000 picoseconds.
+ Weight::from_parts(9_594_000, 4079)
.saturating_add(RocksDbWeight::get().reads(2_u64))
.saturating_add(RocksDbWeight::get().writes(2_u64))
}
pallets/fungible/src/common.rsdiffbeforeafterboth--- a/pallets/fungible/src/common.rs
+++ b/pallets/fungible/src/common.rs
@@ -25,7 +25,7 @@
weights::WeightInfo as _, SelfWeightOf as PalletCommonWeightOf,
};
use pallet_structure::Error as StructureError;
-use sp_runtime::ArithmeticError;
+use sp_runtime::{ArithmeticError, DispatchError};
use sp_std::{vec::Vec, vec};
use up_data_structs::{Property, PropertyKey, PropertyValue, PropertyKeyPermission};
@@ -364,6 +364,18 @@
fail!(<Error<T>>::SettingPropertiesNotAllowed)
}
+ fn get_token_properties_raw(
+ &self,
+ _token_id: TokenId,
+ ) -> Option<up_data_structs::TokenProperties> {
+ // No token properties are defined on fungibles
+ None
+ }
+
+ fn set_token_properties_raw(&self, _token_id: TokenId, _map: up_data_structs::TokenProperties) {
+ // No token properties are defined on fungibles
+ }
+
fn check_nesting(
&self,
_sender: <T>::CrossAccountId,
@@ -402,6 +414,15 @@
Err(TokenOwnerError::MultipleOwners)
}
+ fn check_token_indirect_owner(
+ &self,
+ _token: TokenId,
+ _maybe_owner: &T::CrossAccountId,
+ _nesting_budget: &dyn Budget,
+ ) -> Result<bool, DispatchError> {
+ Ok(false)
+ }
+
/// Returns 10 tokens owners in no particular order.
fn token_owners(&self, token: TokenId) -> Vec<T::CrossAccountId> {
<Pallet<T>>::token_owners(self.id, token).unwrap_or_default()
pallets/fungible/src/weights.rsdiffbeforeafterboth--- a/pallets/fungible/src/weights.rs
+++ b/pallets/fungible/src/weights.rs
@@ -3,13 +3,13 @@
//! Autogenerated weights for pallet_fungible
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2023-04-20, STEPS: `50`, REPEAT: `80`, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-09-26, STEPS: `50`, REPEAT: `400`, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! WORST CASE MAP SIZE: `1000000`
//! HOSTNAME: `bench-host`, CPU: `Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz`
//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
// Executed Command:
-// target/release/unique-collator
+// target/production/unique-collator
// benchmark
// pallet
// --pallet
@@ -20,7 +20,7 @@
// *
// --template=.maintain/frame-weight-template.hbs
// --steps=50
-// --repeat=80
+// --repeat=400
// --heap-pages=4096
// --output=./pallets/fungible/src/weights.rs
@@ -54,9 +54,9 @@
fn create_item() -> Weight {
// Proof Size summary in bytes:
// Measured: `42`
- // Estimated: `7035`
- // Minimum execution time: 10_168_000 picoseconds.
- Weight::from_parts(10_453_000, 7035)
+ // Estimated: `3542`
+ // Minimum execution time: 7_228_000 picoseconds.
+ Weight::from_parts(7_472_000, 3542)
.saturating_add(T::DbWeight::get().reads(2_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
}
@@ -68,11 +68,11 @@
fn create_multiple_items_ex(b: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `42`
- // Estimated: `4483 + b * (2552 ±0)`
- // Minimum execution time: 3_248_000 picoseconds.
- Weight::from_parts(12_455_981, 4483)
- // Standard Error: 2_698
- .saturating_add(Weight::from_parts(3_426_148, 0).saturating_mul(b.into()))
+ // Estimated: `3493 + b * (2552 ±0)`
+ // Minimum execution time: 2_398_000 picoseconds.
+ Weight::from_parts(4_432_908, 3493)
+ // Standard Error: 263
+ .saturating_add(Weight::from_parts(2_617_422, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(b.into())))
.saturating_add(T::DbWeight::get().writes(1_u64))
@@ -86,9 +86,9 @@
fn burn_item() -> Weight {
// Proof Size summary in bytes:
// Measured: `197`
- // Estimated: `7035`
- // Minimum execution time: 12_717_000 picoseconds.
- Weight::from_parts(13_031_000, 7035)
+ // Estimated: `3542`
+ // Minimum execution time: 9_444_000 picoseconds.
+ Weight::from_parts(9_742_000, 3542)
.saturating_add(T::DbWeight::get().reads(2_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
}
@@ -98,8 +98,8 @@
// Proof Size summary in bytes:
// Measured: `182`
// Estimated: `6094`
- // Minimum execution time: 13_640_000 picoseconds.
- Weight::from_parts(13_935_000, 6094)
+ // Minimum execution time: 9_553_000 picoseconds.
+ Weight::from_parts(9_852_000, 6094)
.saturating_add(T::DbWeight::get().reads(2_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
}
@@ -111,8 +111,8 @@
// Proof Size summary in bytes:
// Measured: `182`
// Estimated: `3542`
- // Minimum execution time: 11_769_000 picoseconds.
- Weight::from_parts(12_072_000, 3542)
+ // Minimum execution time: 8_435_000 picoseconds.
+ Weight::from_parts(8_714_000, 3542)
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -124,8 +124,8 @@
// Proof Size summary in bytes:
// Measured: `170`
// Estimated: `3542`
- // Minimum execution time: 11_603_000 picoseconds.
- Weight::from_parts(12_003_000, 3542)
+ // Minimum execution time: 8_475_000 picoseconds.
+ Weight::from_parts(8_735_000, 3542)
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -135,8 +135,8 @@
// Proof Size summary in bytes:
// Measured: `210`
// Estimated: `3558`
- // Minimum execution time: 5_682_000 picoseconds.
- Weight::from_parts(5_892_000, 3558)
+ // Minimum execution time: 4_426_000 picoseconds.
+ Weight::from_parts(4_604_000, 3558)
.saturating_add(T::DbWeight::get().reads(1_u64))
}
/// Storage: Fungible Allowance (r:0 w:1)
@@ -145,8 +145,8 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 6_415_000 picoseconds.
- Weight::from_parts(6_599_000, 0)
+ // Minimum execution time: 4_130_000 picoseconds.
+ Weight::from_parts(4_275_000, 0)
.saturating_add(T::DbWeight::get().writes(1_u64))
}
/// Storage: Fungible Allowance (r:1 w:1)
@@ -158,9 +158,9 @@
fn burn_from() -> Weight {
// Proof Size summary in bytes:
// Measured: `315`
- // Estimated: `10593`
- // Minimum execution time: 20_257_000 picoseconds.
- Weight::from_parts(20_625_000, 10593)
+ // Estimated: `3558`
+ // Minimum execution time: 14_878_000 picoseconds.
+ Weight::from_parts(15_263_000, 3558)
.saturating_add(T::DbWeight::get().reads(3_u64))
.saturating_add(T::DbWeight::get().writes(3_u64))
}
@@ -175,9 +175,9 @@
fn create_item() -> Weight {
// Proof Size summary in bytes:
// Measured: `42`
- // Estimated: `7035`
- // Minimum execution time: 10_168_000 picoseconds.
- Weight::from_parts(10_453_000, 7035)
+ // Estimated: `3542`
+ // Minimum execution time: 7_228_000 picoseconds.
+ Weight::from_parts(7_472_000, 3542)
.saturating_add(RocksDbWeight::get().reads(2_u64))
.saturating_add(RocksDbWeight::get().writes(2_u64))
}
@@ -189,11 +189,11 @@
fn create_multiple_items_ex(b: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `42`
- // Estimated: `4483 + b * (2552 ±0)`
- // Minimum execution time: 3_248_000 picoseconds.
- Weight::from_parts(12_455_981, 4483)
- // Standard Error: 2_698
- .saturating_add(Weight::from_parts(3_426_148, 0).saturating_mul(b.into()))
+ // Estimated: `3493 + b * (2552 ±0)`
+ // Minimum execution time: 2_398_000 picoseconds.
+ Weight::from_parts(4_432_908, 3493)
+ // Standard Error: 263
+ .saturating_add(Weight::from_parts(2_617_422, 0).saturating_mul(b.into()))
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(b.into())))
.saturating_add(RocksDbWeight::get().writes(1_u64))
@@ -207,9 +207,9 @@
fn burn_item() -> Weight {
// Proof Size summary in bytes:
// Measured: `197`
- // Estimated: `7035`
- // Minimum execution time: 12_717_000 picoseconds.
- Weight::from_parts(13_031_000, 7035)
+ // Estimated: `3542`
+ // Minimum execution time: 9_444_000 picoseconds.
+ Weight::from_parts(9_742_000, 3542)
.saturating_add(RocksDbWeight::get().reads(2_u64))
.saturating_add(RocksDbWeight::get().writes(2_u64))
}
@@ -219,8 +219,8 @@
// Proof Size summary in bytes:
// Measured: `182`
// Estimated: `6094`
- // Minimum execution time: 13_640_000 picoseconds.
- Weight::from_parts(13_935_000, 6094)
+ // Minimum execution time: 9_553_000 picoseconds.
+ Weight::from_parts(9_852_000, 6094)
.saturating_add(RocksDbWeight::get().reads(2_u64))
.saturating_add(RocksDbWeight::get().writes(2_u64))
}
@@ -232,8 +232,8 @@
// Proof Size summary in bytes:
// Measured: `182`
// Estimated: `3542`
- // Minimum execution time: 11_769_000 picoseconds.
- Weight::from_parts(12_072_000, 3542)
+ // Minimum execution time: 8_435_000 picoseconds.
+ Weight::from_parts(8_714_000, 3542)
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -245,8 +245,8 @@
// Proof Size summary in bytes:
// Measured: `170`
// Estimated: `3542`
- // Minimum execution time: 11_603_000 picoseconds.
- Weight::from_parts(12_003_000, 3542)
+ // Minimum execution time: 8_475_000 picoseconds.
+ Weight::from_parts(8_735_000, 3542)
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -256,8 +256,8 @@
// Proof Size summary in bytes:
// Measured: `210`
// Estimated: `3558`
- // Minimum execution time: 5_682_000 picoseconds.
- Weight::from_parts(5_892_000, 3558)
+ // Minimum execution time: 4_426_000 picoseconds.
+ Weight::from_parts(4_604_000, 3558)
.saturating_add(RocksDbWeight::get().reads(1_u64))
}
/// Storage: Fungible Allowance (r:0 w:1)
@@ -266,8 +266,8 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 6_415_000 picoseconds.
- Weight::from_parts(6_599_000, 0)
+ // Minimum execution time: 4_130_000 picoseconds.
+ Weight::from_parts(4_275_000, 0)
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
/// Storage: Fungible Allowance (r:1 w:1)
@@ -279,9 +279,9 @@
fn burn_from() -> Weight {
// Proof Size summary in bytes:
// Measured: `315`
- // Estimated: `10593`
- // Minimum execution time: 20_257_000 picoseconds.
- Weight::from_parts(20_625_000, 10593)
+ // Estimated: `3558`
+ // Minimum execution time: 14_878_000 picoseconds.
+ Weight::from_parts(15_263_000, 3558)
.saturating_add(RocksDbWeight::get().reads(3_u64))
.saturating_add(RocksDbWeight::get().writes(3_u64))
}
pallets/identity/src/weights.rsdiffbeforeafterboth--- a/pallets/identity/src/weights.rs
+++ b/pallets/identity/src/weights.rs
@@ -3,13 +3,13 @@
//! Autogenerated weights for pallet_identity
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2023-04-20, STEPS: `50`, REPEAT: `80`, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-09-27, STEPS: `50`, REPEAT: `400`, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! WORST CASE MAP SIZE: `1000000`
//! HOSTNAME: `bench-host`, CPU: `Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz`
//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
// Executed Command:
-// target/release/unique-collator
+// target/production/unique-collator
// benchmark
// pallet
// --pallet
@@ -20,7 +20,7 @@
// *
// --template=.maintain/frame-weight-template.hbs
// --steps=50
-// --repeat=80
+// --repeat=400
// --heap-pages=4096
// --output=./pallets/identity/src/weights.rs
@@ -64,10 +64,10 @@
// Proof Size summary in bytes:
// Measured: `31 + r * (57 ±0)`
// Estimated: `2626`
- // Minimum execution time: 9_094_000 picoseconds.
- Weight::from_parts(10_431_627, 2626)
- // Standard Error: 1_046
- .saturating_add(Weight::from_parts(99_468, 0).saturating_mul(r.into()))
+ // Minimum execution time: 6_759_000 picoseconds.
+ Weight::from_parts(7_254_560, 2626)
+ // Standard Error: 231
+ .saturating_add(Weight::from_parts(64_513, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -79,12 +79,12 @@
// Proof Size summary in bytes:
// Measured: `441 + r * (5 ±0)`
// Estimated: `11003`
- // Minimum execution time: 18_662_000 picoseconds.
- Weight::from_parts(17_939_760, 11003)
- // Standard Error: 2_371
- .saturating_add(Weight::from_parts(22_184, 0).saturating_mul(r.into()))
- // Standard Error: 462
- .saturating_add(Weight::from_parts(151_368, 0).saturating_mul(x.into()))
+ // Minimum execution time: 14_134_000 picoseconds.
+ Weight::from_parts(12_591_985, 11003)
+ // Standard Error: 562
+ .saturating_add(Weight::from_parts(77_682, 0).saturating_mul(r.into()))
+ // Standard Error: 109
+ .saturating_add(Weight::from_parts(96_303, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -98,11 +98,11 @@
fn set_subs_new(s: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `100`
- // Estimated: `18716 + s * (2589 ±0)`
- // Minimum execution time: 6_921_000 picoseconds.
- Weight::from_parts(16_118_195, 18716)
- // Standard Error: 1_786
- .saturating_add(Weight::from_parts(1_350_155, 0).saturating_mul(s.into()))
+ // Estimated: `11003 + s * (2589 ±0)`
+ // Minimum execution time: 4_763_000 picoseconds.
+ Weight::from_parts(11_344_974, 11003)
+ // Standard Error: 401
+ .saturating_add(Weight::from_parts(1_141_028, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2_u64))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(s.into())))
.saturating_add(T::DbWeight::get().writes(1_u64))
@@ -119,11 +119,11 @@
fn set_subs_old(p: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `193 + p * (32 ±0)`
- // Estimated: `17726`
- // Minimum execution time: 6_858_000 picoseconds.
- Weight::from_parts(16_222_054, 17726)
- // Standard Error: 1_409
- .saturating_add(Weight::from_parts(593_588, 0).saturating_mul(p.into()))
+ // Estimated: `11003`
+ // Minimum execution time: 4_783_000 picoseconds.
+ Weight::from_parts(11_531_027, 11003)
+ // Standard Error: 369
+ .saturating_add(Weight::from_parts(542_102, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(2_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into())))
@@ -140,15 +140,15 @@
fn clear_identity(r: u32, s: u32, x: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `468 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)`
- // Estimated: `17726`
- // Minimum execution time: 27_212_000 picoseconds.
- Weight::from_parts(19_030_840, 17726)
- // Standard Error: 3_118
- .saturating_add(Weight::from_parts(29_836, 0).saturating_mul(r.into()))
- // Standard Error: 608
- .saturating_add(Weight::from_parts(590_661, 0).saturating_mul(s.into()))
- // Standard Error: 608
- .saturating_add(Weight::from_parts(110_108, 0).saturating_mul(x.into()))
+ // Estimated: `11003`
+ // Minimum execution time: 23_175_000 picoseconds.
+ Weight::from_parts(16_503_215, 11003)
+ // Standard Error: 625
+ .saturating_add(Weight::from_parts(1_175, 0).saturating_mul(r.into()))
+ // Standard Error: 122
+ .saturating_add(Weight::from_parts(533_184, 0).saturating_mul(s.into()))
+ // Standard Error: 122
+ .saturating_add(Weight::from_parts(94_600, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(2_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
@@ -162,13 +162,13 @@
fn request_judgement(r: u32, x: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `366 + r * (57 ±0) + x * (66 ±0)`
- // Estimated: `13629`
- // Minimum execution time: 19_771_000 picoseconds.
- Weight::from_parts(18_917_892, 13629)
- // Standard Error: 1_957
- .saturating_add(Weight::from_parts(57_465, 0).saturating_mul(r.into()))
- // Standard Error: 381
- .saturating_add(Weight::from_parts(168_586, 0).saturating_mul(x.into()))
+ // Estimated: `11003`
+ // Minimum execution time: 15_322_000 picoseconds.
+ Weight::from_parts(13_671_670, 11003)
+ // Standard Error: 722
+ .saturating_add(Weight::from_parts(73_665, 0).saturating_mul(r.into()))
+ // Standard Error: 140
+ .saturating_add(Weight::from_parts(124_598, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(2_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -180,12 +180,12 @@
// Proof Size summary in bytes:
// Measured: `397 + x * (66 ±0)`
// Estimated: `11003`
- // Minimum execution time: 17_411_000 picoseconds.
- Weight::from_parts(16_856_331, 11003)
- // Standard Error: 7_002
- .saturating_add(Weight::from_parts(34_389, 0).saturating_mul(r.into()))
- // Standard Error: 1_366
- .saturating_add(Weight::from_parts(165_686, 0).saturating_mul(x.into()))
+ // Minimum execution time: 13_268_000 picoseconds.
+ Weight::from_parts(12_489_352, 11003)
+ // Standard Error: 544
+ .saturating_add(Weight::from_parts(35_424, 0).saturating_mul(r.into()))
+ // Standard Error: 106
+ .saturating_add(Weight::from_parts(123_149, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -196,10 +196,10 @@
// Proof Size summary in bytes:
// Measured: `88 + r * (57 ±0)`
// Estimated: `2626`
- // Minimum execution time: 7_089_000 picoseconds.
- Weight::from_parts(7_750_487, 2626)
- // Standard Error: 1_625
- .saturating_add(Weight::from_parts(101_135, 0).saturating_mul(r.into()))
+ // Minimum execution time: 4_845_000 picoseconds.
+ Weight::from_parts(5_147_478, 2626)
+ // Standard Error: 169
+ .saturating_add(Weight::from_parts(55_561, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -210,10 +210,10 @@
// Proof Size summary in bytes:
// Measured: `88 + r * (57 ±0)`
// Estimated: `2626`
- // Minimum execution time: 6_300_000 picoseconds.
- Weight::from_parts(6_836_140, 2626)
- // Standard Error: 655
- .saturating_add(Weight::from_parts(102_284, 0).saturating_mul(r.into()))
+ // Minimum execution time: 4_191_000 picoseconds.
+ Weight::from_parts(4_478_351, 2626)
+ // Standard Error: 138
+ .saturating_add(Weight::from_parts(53_627, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -224,10 +224,10 @@
// Proof Size summary in bytes:
// Measured: `88 + r * (57 ±0)`
// Estimated: `2626`
- // Minimum execution time: 6_257_000 picoseconds.
- Weight::from_parts(6_917_052, 2626)
- // Standard Error: 2_628
- .saturating_add(Weight::from_parts(71_362, 0).saturating_mul(r.into()))
+ // Minimum execution time: 4_003_000 picoseconds.
+ Weight::from_parts(4_303_365, 2626)
+ // Standard Error: 147
+ .saturating_add(Weight::from_parts(52_472, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -240,13 +240,13 @@
fn provide_judgement(r: u32, x: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `444 + r * (57 ±0) + x * (66 ±0)`
- // Estimated: `13629`
- // Minimum execution time: 16_021_000 picoseconds.
- Weight::from_parts(15_553_670, 13629)
- // Standard Error: 5_797
- .saturating_add(Weight::from_parts(42_423, 0).saturating_mul(r.into()))
- // Standard Error: 1_072
- .saturating_add(Weight::from_parts(252_721, 0).saturating_mul(x.into()))
+ // Estimated: `11003`
+ // Minimum execution time: 11_465_000 picoseconds.
+ Weight::from_parts(10_326_049, 11003)
+ // Standard Error: 660
+ .saturating_add(Weight::from_parts(48_922, 0).saturating_mul(r.into()))
+ // Standard Error: 122
+ .saturating_add(Weight::from_parts(185_374, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(2_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -264,15 +264,15 @@
fn kill_identity(r: u32, s: u32, x: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `665 + r * (12 ±0) + s * (32 ±0) + x * (66 ±0)`
- // Estimated: `23922`
- // Minimum execution time: 40_801_000 picoseconds.
- Weight::from_parts(34_079_397, 23922)
- // Standard Error: 3_750
- .saturating_add(Weight::from_parts(31_496, 0).saturating_mul(r.into()))
- // Standard Error: 732
- .saturating_add(Weight::from_parts(599_691, 0).saturating_mul(s.into()))
- // Standard Error: 732
- .saturating_add(Weight::from_parts(101_683, 0).saturating_mul(x.into()))
+ // Estimated: `11003`
+ // Minimum execution time: 34_933_000 picoseconds.
+ Weight::from_parts(28_994_022, 11003)
+ // Standard Error: 668
+ .saturating_add(Weight::from_parts(21_722, 0).saturating_mul(r.into()))
+ // Standard Error: 130
+ .saturating_add(Weight::from_parts(540_580, 0).saturating_mul(s.into()))
+ // Standard Error: 130
+ .saturating_add(Weight::from_parts(89_348, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(4_u64))
.saturating_add(T::DbWeight::get().writes(4_u64))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
@@ -285,12 +285,12 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 4_412_000 picoseconds.
- Weight::from_parts(4_592_000, 0)
- // Standard Error: 703_509
- .saturating_add(Weight::from_parts(43_647_925, 0).saturating_mul(x.into()))
- // Standard Error: 117_043
- .saturating_add(Weight::from_parts(9_312_431, 0).saturating_mul(n.into()))
+ // Minimum execution time: 2_770_000 picoseconds.
+ Weight::from_parts(2_875_000, 0)
+ // Standard Error: 281_295
+ .saturating_add(Weight::from_parts(37_513_186, 0).saturating_mul(x.into()))
+ // Standard Error: 46_799
+ .saturating_add(Weight::from_parts(7_949_936, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(n.into())))
}
/// Storage: Identity SubsOf (r:600 w:0)
@@ -303,12 +303,12 @@
// Proof Size summary in bytes:
// Measured: `41`
// Estimated: `990 + n * (5733 ±0)`
- // Minimum execution time: 3_824_000 picoseconds.
- Weight::from_parts(3_950_000, 990)
- // Standard Error: 2_864
- .saturating_add(Weight::from_parts(55_678, 0).saturating_mul(x.into()))
- // Standard Error: 476
- .saturating_add(Weight::from_parts(1_138_349, 0).saturating_mul(n.into()))
+ // Minimum execution time: 2_751_000 picoseconds.
+ Weight::from_parts(2_862_000, 990)
+ // Standard Error: 953
+ .saturating_add(Weight::from_parts(28_947, 0).saturating_mul(x.into()))
+ // Standard Error: 158
+ .saturating_add(Weight::from_parts(994_085, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(n.into())))
.saturating_add(Weight::from_parts(0, 5733).saturating_mul(n.into()))
@@ -323,12 +323,12 @@
// Proof Size summary in bytes:
// Measured: `41`
// Estimated: `990 + n * (5733 ±0)`
- // Minimum execution time: 4_196_000 picoseconds.
- Weight::from_parts(4_340_000, 990)
- // Standard Error: 2_081_979
- .saturating_add(Weight::from_parts(130_653_903, 0).saturating_mul(s.into()))
- // Standard Error: 346_381
- .saturating_add(Weight::from_parts(23_046_001, 0).saturating_mul(n.into()))
+ // Minimum execution time: 2_671_000 picoseconds.
+ Weight::from_parts(2_814_000, 990)
+ // Standard Error: 785_159
+ .saturating_add(Weight::from_parts(109_659_566, 0).saturating_mul(s.into()))
+ // Standard Error: 130_628
+ .saturating_add(Weight::from_parts(19_169_269, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(n.into())))
@@ -344,11 +344,11 @@
fn add_sub(s: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `474 + s * (36 ±0)`
- // Estimated: `21305`
- // Minimum execution time: 15_289_000 picoseconds.
- Weight::from_parts(21_319_844, 21305)
- // Standard Error: 893
- .saturating_add(Weight::from_parts(53_159, 0).saturating_mul(s.into()))
+ // Estimated: `11003`
+ // Minimum execution time: 12_571_000 picoseconds.
+ Weight::from_parts(16_366_301, 11003)
+ // Standard Error: 217
+ .saturating_add(Weight::from_parts(42_542, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(3_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
}
@@ -360,11 +360,11 @@
fn rename_sub(s: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `590 + s * (3 ±0)`
- // Estimated: `14582`
- // Minimum execution time: 9_867_000 picoseconds.
- Weight::from_parts(12_546_245, 14582)
- // Standard Error: 509
- .saturating_add(Weight::from_parts(10_078, 0).saturating_mul(s.into()))
+ // Estimated: `11003`
+ // Minimum execution time: 7_278_000 picoseconds.
+ Weight::from_parts(9_227_799, 11003)
+ // Standard Error: 104
+ .saturating_add(Weight::from_parts(14_014, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -378,11 +378,11 @@
fn remove_sub(s: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `637 + s * (35 ±0)`
- // Estimated: `21305`
- // Minimum execution time: 19_299_000 picoseconds.
- Weight::from_parts(24_125_576, 21305)
- // Standard Error: 1_479
- .saturating_add(Weight::from_parts(22_611, 0).saturating_mul(s.into()))
+ // Estimated: `11003`
+ // Minimum execution time: 15_771_000 picoseconds.
+ Weight::from_parts(18_105_475, 11003)
+ // Standard Error: 129
+ .saturating_add(Weight::from_parts(32_074, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(3_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
}
@@ -390,16 +390,18 @@
/// Proof: Identity SuperOf (max_values: None, max_size: Some(114), added: 2589, mode: MaxEncodedLen)
/// Storage: Identity SubsOf (r:1 w:1)
/// Proof: Identity SubsOf (max_values: None, max_size: Some(3258), added: 5733, mode: MaxEncodedLen)
+ /// Storage: System Account (r:1 w:0)
+ /// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
/// The range of component `s` is `[0, 99]`.
fn quit_sub(s: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `563 + s * (37 ±0)`
- // Estimated: `10302`
- // Minimum execution time: 14_183_000 picoseconds.
- Weight::from_parts(17_343_547, 10302)
- // Standard Error: 454
- .saturating_add(Weight::from_parts(45_925, 0).saturating_mul(s.into()))
- .saturating_add(T::DbWeight::get().reads(2_u64))
+ // Measured: `703 + s * (37 ±0)`
+ // Estimated: `6723`
+ // Minimum execution time: 14_093_000 picoseconds.
+ Weight::from_parts(16_125_177, 6723)
+ // Standard Error: 146
+ .saturating_add(Weight::from_parts(39_270, 0).saturating_mul(s.into()))
+ .saturating_add(T::DbWeight::get().reads(3_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
}
}
@@ -413,10 +415,10 @@
// Proof Size summary in bytes:
// Measured: `31 + r * (57 ±0)`
// Estimated: `2626`
- // Minimum execution time: 9_094_000 picoseconds.
- Weight::from_parts(10_431_627, 2626)
- // Standard Error: 1_046
- .saturating_add(Weight::from_parts(99_468, 0).saturating_mul(r.into()))
+ // Minimum execution time: 6_759_000 picoseconds.
+ Weight::from_parts(7_254_560, 2626)
+ // Standard Error: 231
+ .saturating_add(Weight::from_parts(64_513, 0).saturating_mul(r.into()))
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -428,12 +430,12 @@
// Proof Size summary in bytes:
// Measured: `441 + r * (5 ±0)`
// Estimated: `11003`
- // Minimum execution time: 18_662_000 picoseconds.
- Weight::from_parts(17_939_760, 11003)
- // Standard Error: 2_371
- .saturating_add(Weight::from_parts(22_184, 0).saturating_mul(r.into()))
- // Standard Error: 462
- .saturating_add(Weight::from_parts(151_368, 0).saturating_mul(x.into()))
+ // Minimum execution time: 14_134_000 picoseconds.
+ Weight::from_parts(12_591_985, 11003)
+ // Standard Error: 562
+ .saturating_add(Weight::from_parts(77_682, 0).saturating_mul(r.into()))
+ // Standard Error: 109
+ .saturating_add(Weight::from_parts(96_303, 0).saturating_mul(x.into()))
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -447,11 +449,11 @@
fn set_subs_new(s: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `100`
- // Estimated: `18716 + s * (2589 ±0)`
- // Minimum execution time: 6_921_000 picoseconds.
- Weight::from_parts(16_118_195, 18716)
- // Standard Error: 1_786
- .saturating_add(Weight::from_parts(1_350_155, 0).saturating_mul(s.into()))
+ // Estimated: `11003 + s * (2589 ±0)`
+ // Minimum execution time: 4_763_000 picoseconds.
+ Weight::from_parts(11_344_974, 11003)
+ // Standard Error: 401
+ .saturating_add(Weight::from_parts(1_141_028, 0).saturating_mul(s.into()))
.saturating_add(RocksDbWeight::get().reads(2_u64))
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(s.into())))
.saturating_add(RocksDbWeight::get().writes(1_u64))
@@ -468,11 +470,11 @@
fn set_subs_old(p: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `193 + p * (32 ±0)`
- // Estimated: `17726`
- // Minimum execution time: 6_858_000 picoseconds.
- Weight::from_parts(16_222_054, 17726)
- // Standard Error: 1_409
- .saturating_add(Weight::from_parts(593_588, 0).saturating_mul(p.into()))
+ // Estimated: `11003`
+ // Minimum execution time: 4_783_000 picoseconds.
+ Weight::from_parts(11_531_027, 11003)
+ // Standard Error: 369
+ .saturating_add(Weight::from_parts(542_102, 0).saturating_mul(p.into()))
.saturating_add(RocksDbWeight::get().reads(2_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(p.into())))
@@ -489,15 +491,15 @@
fn clear_identity(r: u32, s: u32, x: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `468 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)`
- // Estimated: `17726`
- // Minimum execution time: 27_212_000 picoseconds.
- Weight::from_parts(19_030_840, 17726)
- // Standard Error: 3_118
- .saturating_add(Weight::from_parts(29_836, 0).saturating_mul(r.into()))
- // Standard Error: 608
- .saturating_add(Weight::from_parts(590_661, 0).saturating_mul(s.into()))
- // Standard Error: 608
- .saturating_add(Weight::from_parts(110_108, 0).saturating_mul(x.into()))
+ // Estimated: `11003`
+ // Minimum execution time: 23_175_000 picoseconds.
+ Weight::from_parts(16_503_215, 11003)
+ // Standard Error: 625
+ .saturating_add(Weight::from_parts(1_175, 0).saturating_mul(r.into()))
+ // Standard Error: 122
+ .saturating_add(Weight::from_parts(533_184, 0).saturating_mul(s.into()))
+ // Standard Error: 122
+ .saturating_add(Weight::from_parts(94_600, 0).saturating_mul(x.into()))
.saturating_add(RocksDbWeight::get().reads(2_u64))
.saturating_add(RocksDbWeight::get().writes(2_u64))
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(s.into())))
@@ -511,13 +513,13 @@
fn request_judgement(r: u32, x: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `366 + r * (57 ±0) + x * (66 ±0)`
- // Estimated: `13629`
- // Minimum execution time: 19_771_000 picoseconds.
- Weight::from_parts(18_917_892, 13629)
- // Standard Error: 1_957
- .saturating_add(Weight::from_parts(57_465, 0).saturating_mul(r.into()))
- // Standard Error: 381
- .saturating_add(Weight::from_parts(168_586, 0).saturating_mul(x.into()))
+ // Estimated: `11003`
+ // Minimum execution time: 15_322_000 picoseconds.
+ Weight::from_parts(13_671_670, 11003)
+ // Standard Error: 722
+ .saturating_add(Weight::from_parts(73_665, 0).saturating_mul(r.into()))
+ // Standard Error: 140
+ .saturating_add(Weight::from_parts(124_598, 0).saturating_mul(x.into()))
.saturating_add(RocksDbWeight::get().reads(2_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -529,12 +531,12 @@
// Proof Size summary in bytes:
// Measured: `397 + x * (66 ±0)`
// Estimated: `11003`
- // Minimum execution time: 17_411_000 picoseconds.
- Weight::from_parts(16_856_331, 11003)
- // Standard Error: 7_002
- .saturating_add(Weight::from_parts(34_389, 0).saturating_mul(r.into()))
- // Standard Error: 1_366
- .saturating_add(Weight::from_parts(165_686, 0).saturating_mul(x.into()))
+ // Minimum execution time: 13_268_000 picoseconds.
+ Weight::from_parts(12_489_352, 11003)
+ // Standard Error: 544
+ .saturating_add(Weight::from_parts(35_424, 0).saturating_mul(r.into()))
+ // Standard Error: 106
+ .saturating_add(Weight::from_parts(123_149, 0).saturating_mul(x.into()))
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -545,10 +547,10 @@
// Proof Size summary in bytes:
// Measured: `88 + r * (57 ±0)`
// Estimated: `2626`
- // Minimum execution time: 7_089_000 picoseconds.
- Weight::from_parts(7_750_487, 2626)
- // Standard Error: 1_625
- .saturating_add(Weight::from_parts(101_135, 0).saturating_mul(r.into()))
+ // Minimum execution time: 4_845_000 picoseconds.
+ Weight::from_parts(5_147_478, 2626)
+ // Standard Error: 169
+ .saturating_add(Weight::from_parts(55_561, 0).saturating_mul(r.into()))
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -559,10 +561,10 @@
// Proof Size summary in bytes:
// Measured: `88 + r * (57 ±0)`
// Estimated: `2626`
- // Minimum execution time: 6_300_000 picoseconds.
- Weight::from_parts(6_836_140, 2626)
- // Standard Error: 655
- .saturating_add(Weight::from_parts(102_284, 0).saturating_mul(r.into()))
+ // Minimum execution time: 4_191_000 picoseconds.
+ Weight::from_parts(4_478_351, 2626)
+ // Standard Error: 138
+ .saturating_add(Weight::from_parts(53_627, 0).saturating_mul(r.into()))
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -573,10 +575,10 @@
// Proof Size summary in bytes:
// Measured: `88 + r * (57 ±0)`
// Estimated: `2626`
- // Minimum execution time: 6_257_000 picoseconds.
- Weight::from_parts(6_917_052, 2626)
- // Standard Error: 2_628
- .saturating_add(Weight::from_parts(71_362, 0).saturating_mul(r.into()))
+ // Minimum execution time: 4_003_000 picoseconds.
+ Weight::from_parts(4_303_365, 2626)
+ // Standard Error: 147
+ .saturating_add(Weight::from_parts(52_472, 0).saturating_mul(r.into()))
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -589,13 +591,13 @@
fn provide_judgement(r: u32, x: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `444 + r * (57 ±0) + x * (66 ±0)`
- // Estimated: `13629`
- // Minimum execution time: 16_021_000 picoseconds.
- Weight::from_parts(15_553_670, 13629)
- // Standard Error: 5_797
- .saturating_add(Weight::from_parts(42_423, 0).saturating_mul(r.into()))
- // Standard Error: 1_072
- .saturating_add(Weight::from_parts(252_721, 0).saturating_mul(x.into()))
+ // Estimated: `11003`
+ // Minimum execution time: 11_465_000 picoseconds.
+ Weight::from_parts(10_326_049, 11003)
+ // Standard Error: 660
+ .saturating_add(Weight::from_parts(48_922, 0).saturating_mul(r.into()))
+ // Standard Error: 122
+ .saturating_add(Weight::from_parts(185_374, 0).saturating_mul(x.into()))
.saturating_add(RocksDbWeight::get().reads(2_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -613,15 +615,15 @@
fn kill_identity(r: u32, s: u32, x: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `665 + r * (12 ±0) + s * (32 ±0) + x * (66 ±0)`
- // Estimated: `23922`
- // Minimum execution time: 40_801_000 picoseconds.
- Weight::from_parts(34_079_397, 23922)
- // Standard Error: 3_750
- .saturating_add(Weight::from_parts(31_496, 0).saturating_mul(r.into()))
- // Standard Error: 732
- .saturating_add(Weight::from_parts(599_691, 0).saturating_mul(s.into()))
- // Standard Error: 732
- .saturating_add(Weight::from_parts(101_683, 0).saturating_mul(x.into()))
+ // Estimated: `11003`
+ // Minimum execution time: 34_933_000 picoseconds.
+ Weight::from_parts(28_994_022, 11003)
+ // Standard Error: 668
+ .saturating_add(Weight::from_parts(21_722, 0).saturating_mul(r.into()))
+ // Standard Error: 130
+ .saturating_add(Weight::from_parts(540_580, 0).saturating_mul(s.into()))
+ // Standard Error: 130
+ .saturating_add(Weight::from_parts(89_348, 0).saturating_mul(x.into()))
.saturating_add(RocksDbWeight::get().reads(4_u64))
.saturating_add(RocksDbWeight::get().writes(4_u64))
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(s.into())))
@@ -634,12 +636,12 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 4_412_000 picoseconds.
- Weight::from_parts(4_592_000, 0)
- // Standard Error: 703_509
- .saturating_add(Weight::from_parts(43_647_925, 0).saturating_mul(x.into()))
- // Standard Error: 117_043
- .saturating_add(Weight::from_parts(9_312_431, 0).saturating_mul(n.into()))
+ // Minimum execution time: 2_770_000 picoseconds.
+ Weight::from_parts(2_875_000, 0)
+ // Standard Error: 281_295
+ .saturating_add(Weight::from_parts(37_513_186, 0).saturating_mul(x.into()))
+ // Standard Error: 46_799
+ .saturating_add(Weight::from_parts(7_949_936, 0).saturating_mul(n.into()))
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(n.into())))
}
/// Storage: Identity SubsOf (r:600 w:0)
@@ -652,12 +654,12 @@
// Proof Size summary in bytes:
// Measured: `41`
// Estimated: `990 + n * (5733 ±0)`
- // Minimum execution time: 3_824_000 picoseconds.
- Weight::from_parts(3_950_000, 990)
- // Standard Error: 2_864
- .saturating_add(Weight::from_parts(55_678, 0).saturating_mul(x.into()))
- // Standard Error: 476
- .saturating_add(Weight::from_parts(1_138_349, 0).saturating_mul(n.into()))
+ // Minimum execution time: 2_751_000 picoseconds.
+ Weight::from_parts(2_862_000, 990)
+ // Standard Error: 953
+ .saturating_add(Weight::from_parts(28_947, 0).saturating_mul(x.into()))
+ // Standard Error: 158
+ .saturating_add(Weight::from_parts(994_085, 0).saturating_mul(n.into()))
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(n.into())))
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(n.into())))
.saturating_add(Weight::from_parts(0, 5733).saturating_mul(n.into()))
@@ -672,12 +674,12 @@
// Proof Size summary in bytes:
// Measured: `41`
// Estimated: `990 + n * (5733 ±0)`
- // Minimum execution time: 4_196_000 picoseconds.
- Weight::from_parts(4_340_000, 990)
- // Standard Error: 2_081_979
- .saturating_add(Weight::from_parts(130_653_903, 0).saturating_mul(s.into()))
- // Standard Error: 346_381
- .saturating_add(Weight::from_parts(23_046_001, 0).saturating_mul(n.into()))
+ // Minimum execution time: 2_671_000 picoseconds.
+ Weight::from_parts(2_814_000, 990)
+ // Standard Error: 785_159
+ .saturating_add(Weight::from_parts(109_659_566, 0).saturating_mul(s.into()))
+ // Standard Error: 130_628
+ .saturating_add(Weight::from_parts(19_169_269, 0).saturating_mul(n.into()))
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(n.into())))
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(s.into())))
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(n.into())))
@@ -693,11 +695,11 @@
fn add_sub(s: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `474 + s * (36 ±0)`
- // Estimated: `21305`
- // Minimum execution time: 15_289_000 picoseconds.
- Weight::from_parts(21_319_844, 21305)
- // Standard Error: 893
- .saturating_add(Weight::from_parts(53_159, 0).saturating_mul(s.into()))
+ // Estimated: `11003`
+ // Minimum execution time: 12_571_000 picoseconds.
+ Weight::from_parts(16_366_301, 11003)
+ // Standard Error: 217
+ .saturating_add(Weight::from_parts(42_542, 0).saturating_mul(s.into()))
.saturating_add(RocksDbWeight::get().reads(3_u64))
.saturating_add(RocksDbWeight::get().writes(2_u64))
}
@@ -709,11 +711,11 @@
fn rename_sub(s: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `590 + s * (3 ±0)`
- // Estimated: `14582`
- // Minimum execution time: 9_867_000 picoseconds.
- Weight::from_parts(12_546_245, 14582)
- // Standard Error: 509
- .saturating_add(Weight::from_parts(10_078, 0).saturating_mul(s.into()))
+ // Estimated: `11003`
+ // Minimum execution time: 7_278_000 picoseconds.
+ Weight::from_parts(9_227_799, 11003)
+ // Standard Error: 104
+ .saturating_add(Weight::from_parts(14_014, 0).saturating_mul(s.into()))
.saturating_add(RocksDbWeight::get().reads(2_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -727,11 +729,11 @@
fn remove_sub(s: u32, ) -> Weight {
// Proof Size summary in bytes:
// Measured: `637 + s * (35 ±0)`
- // Estimated: `21305`
- // Minimum execution time: 19_299_000 picoseconds.
- Weight::from_parts(24_125_576, 21305)
- // Standard Error: 1_479
- .saturating_add(Weight::from_parts(22_611, 0).saturating_mul(s.into()))
+ // Estimated: `11003`
+ // Minimum execution time: 15_771_000 picoseconds.
+ Weight::from_parts(18_105_475, 11003)
+ // Standard Error: 129
+ .saturating_add(Weight::from_parts(32_074, 0).saturating_mul(s.into()))
.saturating_add(RocksDbWeight::get().reads(3_u64))
.saturating_add(RocksDbWeight::get().writes(2_u64))
}
@@ -739,16 +741,18 @@
/// Proof: Identity SuperOf (max_values: None, max_size: Some(114), added: 2589, mode: MaxEncodedLen)
/// Storage: Identity SubsOf (r:1 w:1)
/// Proof: Identity SubsOf (max_values: None, max_size: Some(3258), added: 5733, mode: MaxEncodedLen)
+ /// Storage: System Account (r:1 w:0)
+ /// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
/// The range of component `s` is `[0, 99]`.
fn quit_sub(s: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `563 + s * (37 ±0)`
- // Estimated: `10302`
- // Minimum execution time: 14_183_000 picoseconds.
- Weight::from_parts(17_343_547, 10302)
- // Standard Error: 454
- .saturating_add(Weight::from_parts(45_925, 0).saturating_mul(s.into()))
- .saturating_add(RocksDbWeight::get().reads(2_u64))
+ // Measured: `703 + s * (37 ±0)`
+ // Estimated: `6723`
+ // Minimum execution time: 14_093_000 picoseconds.
+ Weight::from_parts(16_125_177, 6723)
+ // Standard Error: 146
+ .saturating_add(Weight::from_parts(39_270, 0).saturating_mul(s.into()))
+ .saturating_add(RocksDbWeight::get().reads(3_u64))
.saturating_add(RocksDbWeight::get().writes(2_u64))
}
}
pallets/maintenance/src/weights.rsdiffbeforeafterboth--- a/pallets/maintenance/src/weights.rs
+++ b/pallets/maintenance/src/weights.rs
@@ -3,13 +3,13 @@
//! Autogenerated weights for pallet_maintenance
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2023-04-20, STEPS: `50`, REPEAT: `80`, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-09-26, STEPS: `50`, REPEAT: `400`, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! WORST CASE MAP SIZE: `1000000`
//! HOSTNAME: `bench-host`, CPU: `Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz`
//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
// Executed Command:
-// target/release/unique-collator
+// target/production/unique-collator
// benchmark
// pallet
// --pallet
@@ -20,7 +20,7 @@
// *
// --template=.maintain/frame-weight-template.hbs
// --steps=50
-// --repeat=80
+// --repeat=400
// --heap-pages=4096
// --output=./pallets/maintenance/src/weights.rs
@@ -47,8 +47,8 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 4_407_000 picoseconds.
- Weight::from_parts(4_556_000, 0)
+ // Minimum execution time: 3_015_000 picoseconds.
+ Weight::from_parts(3_184_000, 0)
.saturating_add(T::DbWeight::get().writes(1_u64))
}
/// Storage: Maintenance Enabled (r:0 w:1)
@@ -57,8 +57,8 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 5_868_000 picoseconds.
- Weight::from_parts(6_100_000, 0)
+ // Minimum execution time: 2_976_000 picoseconds.
+ Weight::from_parts(3_111_000, 0)
.saturating_add(T::DbWeight::get().writes(1_u64))
}
/// Storage: Preimage StatusFor (r:1 w:0)
@@ -68,9 +68,9 @@
fn execute_preimage() -> Weight {
// Proof Size summary in bytes:
// Measured: `209`
- // Estimated: `7230`
- // Minimum execution time: 14_046_000 picoseconds.
- Weight::from_parts(14_419_000, 7230)
+ // Estimated: `3674`
+ // Minimum execution time: 7_359_000 picoseconds.
+ Weight::from_parts(7_613_000, 3674)
.saturating_add(T::DbWeight::get().reads(2_u64))
}
}
@@ -83,8 +83,8 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 4_407_000 picoseconds.
- Weight::from_parts(4_556_000, 0)
+ // Minimum execution time: 3_015_000 picoseconds.
+ Weight::from_parts(3_184_000, 0)
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
/// Storage: Maintenance Enabled (r:0 w:1)
@@ -93,8 +93,8 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 5_868_000 picoseconds.
- Weight::from_parts(6_100_000, 0)
+ // Minimum execution time: 2_976_000 picoseconds.
+ Weight::from_parts(3_111_000, 0)
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
/// Storage: Preimage StatusFor (r:1 w:0)
@@ -104,9 +104,9 @@
fn execute_preimage() -> Weight {
// Proof Size summary in bytes:
// Measured: `209`
- // Estimated: `7230`
- // Minimum execution time: 14_046_000 picoseconds.
- Weight::from_parts(14_419_000, 7230)
+ // Estimated: `3674`
+ // Minimum execution time: 7_359_000 picoseconds.
+ Weight::from_parts(7_613_000, 3674)
.saturating_add(RocksDbWeight::get().reads(2_u64))
}
}
pallets/nonfungible/src/benchmarking.rsdiffbeforeafterboth--- a/pallets/nonfungible/src/benchmarking.rs
+++ b/pallets/nonfungible/src/benchmarking.rs
@@ -20,7 +20,9 @@
use frame_benchmarking::{benchmarks, account};
use pallet_common::{
bench_init,
- benchmarking::{create_collection_raw, property_key, property_value},
+ benchmarking::{
+ create_collection_raw, property_key, property_value, load_is_admin_and_property_permissions,
+ },
CommonCollectionOperations,
};
use sp_std::prelude::*;
@@ -198,8 +200,49 @@
value: property_value(),
}).collect::<Vec<_>>();
let item = create_max_item(&collection, &owner, owner.clone())?;
- }: {<Pallet<T>>::set_token_properties(&collection, &owner, item, props.into_iter(), SetPropertyMode::ExistingToken, &Unlimited)?}
+ }: {<Pallet<T>>::set_token_properties(&collection, &owner, item, props.into_iter(), &Unlimited)?}
+
+ init_token_properties {
+ let b in 0..MAX_PROPERTIES_PER_ITEM;
+ bench_init!{
+ owner: sub; collection: collection(owner);
+ owner: cross_from_sub;
+ };
+ let perms = (0..b).map(|k| PropertyKeyPermission {
+ key: property_key(k as usize),
+ permission: PropertyPermission {
+ mutable: false,
+ collection_admin: true,
+ token_owner: true,
+ },
+ }).collect::<Vec<_>>();
+ <Pallet<T>>::set_token_property_permissions(&collection, &owner, perms)?;
+ let props = (0..b).map(|k| Property {
+ key: property_key(k as usize),
+ value: property_value(),
+ }).collect::<Vec<_>>();
+ let item = create_max_item(&collection, &owner, owner.clone())?;
+
+ let (is_collection_admin, property_permissions) = load_is_admin_and_property_permissions(&collection, &owner);
+ }: {
+ let mut property_writer = pallet_common::collection_info_loaded_property_writer(
+ &collection,
+ is_collection_admin,
+ property_permissions,
+ );
+
+ property_writer.write_token_properties(
+ true,
+ item,
+ props.into_iter(),
+ crate::erc::ERC721TokenEvent::TokenChanged {
+ token_id: item.into(),
+ }
+ .to_log(T::ContractAddress::get()),
+ )?
+ }
+
delete_token_properties {
let b in 0..MAX_PROPERTIES_PER_ITEM;
bench_init!{
@@ -220,7 +263,7 @@
value: property_value(),
}).collect::<Vec<_>>();
let item = create_max_item(&collection, &owner, owner.clone())?;
- <Pallet<T>>::set_token_properties(&collection, &owner, item, props.into_iter(), SetPropertyMode::ExistingToken, &Unlimited)?;
+ <Pallet<T>>::set_token_properties(&collection, &owner, item, props.into_iter(), &Unlimited)?;
let to_delete = (0..b).map(|k| property_key(k as usize)).collect::<Vec<_>>();
}: {<Pallet<T>>::delete_token_properties(&collection, &owner, item, to_delete.into_iter(), &Unlimited)?}
pallets/nonfungible/src/common.rsdiffbeforeafterboth--- a/pallets/nonfungible/src/common.rs
+++ b/pallets/nonfungible/src/common.rs
@@ -23,47 +23,40 @@
};
use pallet_common::{
CommonCollectionOperations, CommonWeightInfo, RefungibleExtensions, with_weight,
- weights::WeightInfo as _, SelfWeightOf as PalletCommonWeightOf,
+ weights::WeightInfo as _, SelfWeightOf as PalletCommonWeightOf, init_token_properties_delta,
};
+use pallet_structure::Pallet as PalletStructure;
use sp_runtime::DispatchError;
use sp_std::{vec::Vec, vec};
use crate::{
AccountBalance, Allowance, Config, CreateItemData, Error, NonfungibleHandle, Owned, Pallet,
- SelfWeightOf, TokenData, weights::WeightInfo, TokensMinted,
+ SelfWeightOf, TokenData, weights::WeightInfo, TokensMinted, TokenProperties,
};
pub struct CommonWeights<T: Config>(PhantomData<T>);
impl<T: Config> CommonWeightInfo<T::CrossAccountId> for CommonWeights<T> {
fn create_multiple_items_ex(data: &CreateItemExData<T::CrossAccountId>) -> Weight {
match data {
- CreateItemExData::NFT(t) => {
- <SelfWeightOf<T>>::create_multiple_items_ex(t.len() as u32)
- + t.iter()
- .filter_map(|t| {
- if t.properties.len() > 0 {
- Some(Self::set_token_properties(t.properties.len() as u32))
- } else {
- None
- }
- })
- .fold(Weight::zero(), |a, b| a.saturating_add(b))
- }
+ CreateItemExData::NFT(t) => <SelfWeightOf<T>>::create_multiple_items_ex(t.len() as u32)
+ .saturating_add(init_token_properties_delta::<T, _>(
+ t.iter().map(|t| t.properties.len() as u32),
+ <SelfWeightOf<T>>::init_token_properties,
+ )),
_ => Weight::zero(),
}
}
fn create_multiple_items(data: &[up_data_structs::CreateItemData]) -> Weight {
- <SelfWeightOf<T>>::create_multiple_items(data.len() as u32)
- + data
- .iter()
- .filter_map(|t| match t {
- up_data_structs::CreateItemData::NFT(n) if n.properties.len() > 0 => {
- Some(Self::set_token_properties(n.properties.len() as u32))
- }
- _ => None,
- })
- .fold(Weight::zero(), |a, b| a.saturating_add(b))
+ <SelfWeightOf<T>>::create_multiple_items(data.len() as u32).saturating_add(
+ init_token_properties_delta::<T, _>(
+ data.iter().map(|t| match t {
+ up_data_structs::CreateItemData::NFT(n) => n.properties.len() as u32,
+ _ => 0,
+ }),
+ <SelfWeightOf<T>>::init_token_properties,
+ ),
+ )
}
fn burn_item() -> Weight {
@@ -245,7 +238,6 @@
&sender,
token_id,
properties.into_iter(),
- pallet_common::SetPropertyMode::ExistingToken,
nesting_budget,
),
weight,
@@ -273,6 +265,17 @@
)
}
+ fn get_token_properties_raw(
+ &self,
+ token_id: TokenId,
+ ) -> Option<up_data_structs::TokenProperties> {
+ <TokenProperties<T>>::get((self.id, token_id))
+ }
+
+ fn set_token_properties_raw(&self, token_id: TokenId, map: up_data_structs::TokenProperties) {
+ <TokenProperties<T>>::insert((self.id, token_id), map)
+ }
+
fn set_token_property_permissions(
&self,
sender: &T::CrossAccountId,
@@ -457,19 +460,36 @@
.ok_or(TokenOwnerError::NotFound)
}
+ fn check_token_indirect_owner(
+ &self,
+ token: TokenId,
+ maybe_owner: &T::CrossAccountId,
+ nesting_budget: &dyn Budget,
+ ) -> Result<bool, DispatchError> {
+ <PalletStructure<T>>::check_indirectly_owned(
+ maybe_owner.clone(),
+ self.id,
+ token,
+ None,
+ nesting_budget,
+ )
+ }
+
/// Returns token owners.
fn token_owners(&self, token: TokenId) -> Vec<T::CrossAccountId> {
self.token_owner(token).map_or_else(|_| vec![], |t| vec![t])
}
fn token_property(&self, token_id: TokenId, key: &PropertyKey) -> Option<PropertyValue> {
- <Pallet<T>>::token_properties((self.id, token_id))
+ <Pallet<T>>::token_properties((self.id, token_id))?
.get(key)
.cloned()
}
fn token_properties(&self, token_id: TokenId, keys: Option<Vec<PropertyKey>>) -> Vec<Property> {
- let properties = <Pallet<T>>::token_properties((self.id, token_id));
+ let Some(properties) = <Pallet<T>>::token_properties((self.id, token_id)) else {
+ return vec![];
+ };
keys.map(|keys| {
keys.into_iter()
pallets/nonfungible/src/erc.rsdiffbeforeafterboth--- a/pallets/nonfungible/src/erc.rs
+++ b/pallets/nonfungible/src/erc.rs
@@ -203,7 +203,6 @@
&caller,
TokenId(token_id),
properties.into_iter(),
- pallet_common::SetPropertyMode::ExistingToken,
&nesting_budget,
)
.map_err(dispatch_to_evm::<T>)
@@ -273,7 +272,8 @@
.try_into()
.map_err(|_| "key too long")?;
- let props = <TokenProperties<T>>::get((self.id, token_id));
+ let props =
+ <TokenProperties<T>>::get((self.id, token_id)).ok_or("token properties not found")?;
let prop = props.get(&key).ok_or("key not found")?;
Ok(prop.to_vec().into())
@@ -367,7 +367,7 @@
.transpose()
.map_err(|e| {
Error::Revert(alloc::format!(
- "Can not convert value \"baseURI\" to string with error \"{e}\""
+ "can not convert value \"baseURI\" to string with error \"{e}\""
))
})?;
@@ -658,7 +658,7 @@
let key = key::url();
let permission = get_token_permission::<T>(self.id, &key)?;
if !permission.collection_admin {
- return Err("Operation is not allowed".into());
+ return Err("operation is not allowed".into());
}
let caller = T::CrossAccountId::from_eth(caller);
@@ -685,7 +685,7 @@
.try_into()
.map_err(|_| "token uri is too long")?,
})
- .map_err(|e| Error::Revert(alloc::format!("Can't add property: {e:?}")))?;
+ .map_err(|e| Error::Revert(alloc::format!("can't add property: {e:?}")))?;
<Pallet<T>>::create_item(
self,
@@ -708,12 +708,12 @@
) -> Result<String> {
collection.consume_store_reads(1)?;
let properties = <TokenProperties<T>>::try_get((collection.id, token_id))
- .map_err(|_| Error::Revert("Token properties not found".into()))?;
+ .map_err(|_| Error::Revert("token properties not found".into()))?;
if let Some(property) = properties.get(key) {
return Ok(String::from_utf8_lossy(property).into());
}
- Err("Property tokenURI not found".into())
+ Err("property tokenURI not found".into())
}
fn get_token_permission<T: Config>(
@@ -721,13 +721,13 @@
key: &PropertyKey,
) -> Result<PropertyPermission> {
let token_property_permissions = CollectionPropertyPermissions::<T>::try_get(collection_id)
- .map_err(|_| Error::Revert("No permissions for collection".into()))?;
+ .map_err(|_| Error::Revert("no permissions for collection".into()))?;
let a = token_property_permissions
.get(key)
.map(Clone::clone)
.ok_or_else(|| {
let key = String::from_utf8(key.clone().into_inner()).unwrap_or_default();
- Error::Revert(alloc::format!("No permission for key {key}"))
+ Error::Revert(alloc::format!("no permission for key {key}"))
})?;
Ok(a)
}
@@ -1058,7 +1058,7 @@
.try_into()
.map_err(|_| "token uri is too long")?,
})
- .map_err(|e| Error::Revert(alloc::format!("Can't add property: {e:?}")))?;
+ .map_err(|e| Error::Revert(alloc::format!("can't add property: {e:?}")))?;
data.push(CreateItemData::<T> {
properties,
pallets/nonfungible/src/lib.rsdiffbeforeafterboth--- a/pallets/nonfungible/src/lib.rs
+++ b/pallets/nonfungible/src/lib.rs
@@ -102,14 +102,14 @@
use up_data_structs::{
AccessMode, CollectionId, CustomDataLimit, TokenId, CreateCollectionData, CreateNftExData,
mapping::TokenAddressMapping, budget::Budget, Property, PropertyKey, PropertyValue,
- PropertyKeyPermission, PropertyScope, TrySetProperty, TokenChild, AuxPropertyValue,
- PropertiesPermissionMap, TokenProperties as TokenPropertiesT,
+ PropertyKeyPermission, PropertyScope, TokenChild, AuxPropertyValue, PropertiesPermissionMap,
+ TokenProperties as TokenPropertiesT,
};
use pallet_evm::{account::CrossAccountId, Pallet as PalletEvm};
use pallet_common::{
Error as CommonError, Pallet as PalletCommon, Event as CommonEvent, CollectionHandle,
eth::collection_id_to_address, SelfWeightOf as PalletCommonWeightOf,
- weights::WeightInfo as CommonWeightInfo, helpers::add_weight_to_post_info, SetPropertyMode,
+ weights::WeightInfo as CommonWeightInfo, helpers::add_weight_to_post_info,
};
use pallet_structure::{Pallet as PalletStructure, Error as StructureError};
use pallet_evm_coder_substrate::{SubstrateRecorder, WithRecorder};
@@ -201,7 +201,7 @@
pub type TokenProperties<T: Config> = StorageNMap<
Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),
Value = TokenPropertiesT,
- QueryKind = ValueQuery,
+ QueryKind = OptionQuery,
>;
/// Custom data of a token that is serialized to bytes,
@@ -340,38 +340,6 @@
/// - `token`: Token ID.
pub fn token_exists(collection: &NonfungibleHandle<T>, token: TokenId) -> bool {
<TokenData<T>>::contains_key((collection.id, token))
- }
-
- /// Set the token property with the scope.
- ///
- /// - `property`: Contains key-value pair.
- pub fn set_scoped_token_property(
- collection_id: CollectionId,
- token_id: TokenId,
- scope: PropertyScope,
- property: Property,
- ) -> DispatchResult {
- TokenProperties::<T>::try_mutate((collection_id, token_id), |properties| {
- properties.try_scoped_set(scope, property.key, property.value)
- })
- .map_err(<CommonError<T>>::from)?;
-
- Ok(())
- }
-
- /// Batch operation to set multiple properties with the same scope.
- pub fn set_scoped_token_properties(
- collection_id: CollectionId,
- token_id: TokenId,
- scope: PropertyScope,
- properties: impl Iterator<Item = Property>,
- ) -> DispatchResult {
- TokenProperties::<T>::try_mutate((collection_id, token_id), |stored_properties| {
- stored_properties.try_scoped_set_from_iter(scope, properties)
- })
- .map_err(<CommonError<T>>::from)?;
-
- Ok(())
}
/// Add or edit auxiliary data for the property.
@@ -598,42 +566,16 @@
sender: &T::CrossAccountId,
token_id: TokenId,
properties_updates: impl Iterator<Item = (PropertyKey, Option<PropertyValue>)>,
- mode: SetPropertyMode,
nesting_budget: &dyn Budget,
) -> DispatchResult {
- let mut is_token_owner = pallet_common::LazyValue::new(|| {
- if let SetPropertyMode::NewToken {
- mint_target_is_sender,
- } = mode
- {
- return Ok(mint_target_is_sender);
- }
-
- let is_owned = <PalletStructure<T>>::check_indirectly_owned(
- sender.clone(),
- collection.id,
- token_id,
- None,
- nesting_budget,
- )?;
-
- Ok(is_owned)
- });
+ let mut property_writer =
+ pallet_common::property_writer_for_existing_token(collection, sender);
- let mut is_token_exist =
- pallet_common::LazyValue::new(|| Self::token_exists(collection, token_id));
-
- let stored_properties = <TokenProperties<T>>::get((collection.id, token_id));
-
- <PalletCommon<T>>::modify_token_properties(
- collection,
+ property_writer.write_token_properties(
sender,
token_id,
- &mut is_token_exist,
properties_updates,
- stored_properties,
- &mut is_token_owner,
- |properties| <TokenProperties<T>>::set((collection.id, token_id), properties),
+ nesting_budget,
erc::ERC721TokenEvent::TokenChanged {
token_id: token_id.into(),
}
@@ -664,7 +606,6 @@
sender: &T::CrossAccountId,
token_id: TokenId,
properties: impl Iterator<Item = Property>,
- mode: SetPropertyMode,
nesting_budget: &dyn Budget,
) -> DispatchResult {
Self::modify_token_properties(
@@ -672,7 +613,6 @@
sender,
token_id,
properties.map(|p| (p.key, Some(p.value))),
- mode,
nesting_budget,
)
}
@@ -694,7 +634,6 @@
sender,
token_id,
[property].into_iter(),
- SetPropertyMode::ExistingToken,
nesting_budget,
)
}
@@ -716,7 +655,6 @@
sender,
token_id,
property_keys.into_iter().map(|key| (key, None)),
- SetPropertyMode::ExistingToken,
nesting_budget,
)
}
@@ -978,6 +916,8 @@
// =========
+ let mut property_writer = pallet_common::property_writer_for_new_token(collection, sender);
+
with_transaction(|| {
for (i, data) in data.iter().enumerate() {
let token = first_token + i as u32 + 1;
@@ -990,21 +930,22 @@
},
);
+ let token = TokenId(token);
+
<PalletStructure<T>>::nest_if_sent_to_token_unchecked(
&data.owner,
collection.id,
- TokenId(token),
+ token,
);
- if let Err(e) = Self::set_token_properties(
- collection,
- sender,
- TokenId(token),
+ if let Err(e) = property_writer.write_token_properties(
+ sender.conv_eq(&data.owner),
+ token,
data.properties.clone().into_iter(),
- SetPropertyMode::NewToken {
- mint_target_is_sender: sender.conv_eq(&data.owner),
- },
- nesting_budget,
+ erc::ERC721TokenEvent::TokenChanged {
+ token_id: token.into(),
+ }
+ .to_log(T::ContractAddress::get()),
) {
return TransactionOutcome::Rollback(Err(e));
}
@@ -1421,7 +1362,9 @@
pub fn repair_item(collection: &NonfungibleHandle<T>, token: TokenId) -> DispatchResult {
<TokenProperties<T>>::mutate((collection.id, token), |properties| {
- properties.recompute_consumed_space();
+ if let Some(properties) = properties {
+ properties.recompute_consumed_space();
+ }
});
Ok(())
pallets/nonfungible/src/weights.rsdiffbeforeafterboth--- a/pallets/nonfungible/src/weights.rs
+++ b/pallets/nonfungible/src/weights.rs
@@ -3,13 +3,13 @@
//! Autogenerated weights for pallet_nonfungible
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2023-04-20, STEPS: `50`, REPEAT: `80`, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-09-30, STEPS: `50`, REPEAT: `400`, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! WORST CASE MAP SIZE: `1000000`
//! HOSTNAME: `bench-host`, CPU: `Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz`
//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
// Executed Command:
-// target/release/unique-collator
+// target/production/unique-collator
// benchmark
// pallet
// --pallet
@@ -20,7 +20,7 @@
// *
// --template=.maintain/frame-weight-template.hbs
// --steps=50
-// --repeat=80
+// --repeat=400
// --heap-pages=4096
// --output=./pallets/nonfungible/src/weights.rs
@@ -46,6 +46,7 @@
fn burn_from() -> Weight;
fn set_token_property_permissions(b: u32, ) -> Weight;
fn set_token_properties(b: u32, ) -> Weight;
+ fn init_token_properties(b: u32, ) -> Weight;
fn delete_token_properties(b: u32, ) -> Weight;
fn token_owner() -> Weight;
fn set_allowance_for_all() -> Weight;
@@ -60,31 +61,23 @@
/// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
/// Storage: Nonfungible AccountBalance (r:1 w:1)
/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
- /// Storage: Nonfungible TokenProperties (r:1 w:1)
- /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Nonfungible TokenData (r:0 w:1)
/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)
/// Storage: Nonfungible Owned (r:0 w:1)
/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
fn create_item() -> Weight {
// Proof Size summary in bytes:
- // Measured: `390`
- // Estimated: `63471`
- // Minimum execution time: 25_892_000 picoseconds.
- Weight::from_parts(26_424_000, 63471)
- .saturating_add(T::DbWeight::get().reads(4_u64))
- .saturating_add(T::DbWeight::get().writes(5_u64))
+ // Measured: `142`
+ // Estimated: `3530`
+ // Minimum execution time: 9_726_000 picoseconds.
+ Weight::from_parts(10_059_000, 3530)
+ .saturating_add(T::DbWeight::get().reads(2_u64))
+ .saturating_add(T::DbWeight::get().writes(4_u64))
}
/// Storage: Nonfungible TokensMinted (r:1 w:1)
/// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
/// Storage: Nonfungible AccountBalance (r:1 w:1)
/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
- /// Storage: Nonfungible TokenProperties (r:200 w:200)
- /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Nonfungible TokenData (r:0 w:200)
/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)
/// Storage: Nonfungible Owned (r:0 w:200)
@@ -92,26 +85,20 @@
/// The range of component `b` is `[0, 200]`.
fn create_multiple_items(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `390`
- // Estimated: `28192 + b * (35279 ±0)`
- // Minimum execution time: 4_612_000 picoseconds.
- Weight::from_parts(6_399_460, 28192)
- // Standard Error: 5_119
- .saturating_add(Weight::from_parts(7_230_389, 0).saturating_mul(b.into()))
- .saturating_add(T::DbWeight::get().reads(3_u64))
- .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(b.into())))
+ // Measured: `142`
+ // Estimated: `3530`
+ // Minimum execution time: 3_270_000 picoseconds.
+ Weight::from_parts(3_693_659, 3530)
+ // Standard Error: 255
+ .saturating_add(Weight::from_parts(3_024_284, 0).saturating_mul(b.into()))
+ .saturating_add(T::DbWeight::get().reads(2_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
- .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(b.into())))
- .saturating_add(Weight::from_parts(0, 35279).saturating_mul(b.into()))
+ .saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(b.into())))
}
/// Storage: Nonfungible TokensMinted (r:1 w:1)
/// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
/// Storage: Nonfungible AccountBalance (r:200 w:200)
/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
- /// Storage: Nonfungible TokenProperties (r:200 w:200)
- /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Nonfungible TokenData (r:0 w:200)
/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)
/// Storage: Nonfungible Owned (r:0 w:200)
@@ -119,17 +106,17 @@
/// The range of component `b` is `[0, 200]`.
fn create_multiple_items_ex(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `390`
- // Estimated: `25652 + b * (37819 ±0)`
- // Minimum execution time: 4_538_000 picoseconds.
- Weight::from_parts(4_686_000, 25652)
- // Standard Error: 3_518
- .saturating_add(Weight::from_parts(8_905_771, 0).saturating_mul(b.into()))
- .saturating_add(T::DbWeight::get().reads(2_u64))
- .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(b.into())))
+ // Measured: `142`
+ // Estimated: `3481 + b * (2540 ±0)`
+ // Minimum execution time: 3_188_000 picoseconds.
+ Weight::from_parts(3_307_000, 3481)
+ // Standard Error: 567
+ .saturating_add(Weight::from_parts(4_320_449, 0).saturating_mul(b.into()))
+ .saturating_add(T::DbWeight::get().reads(1_u64))
+ .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(b.into())))
.saturating_add(T::DbWeight::get().writes(1_u64))
- .saturating_add(T::DbWeight::get().writes((4_u64).saturating_mul(b.into())))
- .saturating_add(Weight::from_parts(0, 37819).saturating_mul(b.into()))
+ .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(b.into())))
+ .saturating_add(Weight::from_parts(0, 2540).saturating_mul(b.into()))
}
/// Storage: Nonfungible TokenData (r:1 w:1)
/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)
@@ -148,9 +135,9 @@
fn burn_item() -> Weight {
// Proof Size summary in bytes:
// Measured: `380`
- // Estimated: `17561`
- // Minimum execution time: 24_230_000 picoseconds.
- Weight::from_parts(24_672_000, 17561)
+ // Estimated: `3530`
+ // Minimum execution time: 18_062_000 picoseconds.
+ Weight::from_parts(18_433_000, 3530)
.saturating_add(T::DbWeight::get().reads(5_u64))
.saturating_add(T::DbWeight::get().writes(5_u64))
}
@@ -171,9 +158,9 @@
fn burn_recursively_self_raw() -> Weight {
// Proof Size summary in bytes:
// Measured: `380`
- // Estimated: `17561`
- // Minimum execution time: 30_521_000 picoseconds.
- Weight::from_parts(31_241_000, 17561)
+ // Estimated: `3530`
+ // Minimum execution time: 22_942_000 picoseconds.
+ Weight::from_parts(23_527_000, 3530)
.saturating_add(T::DbWeight::get().reads(5_u64))
.saturating_add(T::DbWeight::get().writes(5_u64))
}
@@ -196,17 +183,17 @@
/// The range of component `b` is `[0, 200]`.
fn burn_recursively_breadth_plus_self_plus_self_per_each_raw(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `1467 + b * (58 ±0)`
- // Estimated: `24230 + b * (10097 ±0)`
- // Minimum execution time: 31_734_000 picoseconds.
- Weight::from_parts(32_162_000, 24230)
- // Standard Error: 210_514
- .saturating_add(Weight::from_parts(71_382_804, 0).saturating_mul(b.into()))
+ // Measured: `1500 + b * (58 ±0)`
+ // Estimated: `5874 + b * (5032 ±0)`
+ // Minimum execution time: 22_709_000 picoseconds.
+ Weight::from_parts(23_287_000, 5874)
+ // Standard Error: 89_471
+ .saturating_add(Weight::from_parts(63_285_201, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(7_u64))
.saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(b.into())))
.saturating_add(T::DbWeight::get().writes(6_u64))
.saturating_add(T::DbWeight::get().writes((4_u64).saturating_mul(b.into())))
- .saturating_add(Weight::from_parts(0, 10097).saturating_mul(b.into()))
+ .saturating_add(Weight::from_parts(0, 5032).saturating_mul(b.into()))
}
/// Storage: Nonfungible TokenData (r:1 w:1)
/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)
@@ -219,9 +206,9 @@
fn transfer_raw() -> Weight {
// Proof Size summary in bytes:
// Measured: `380`
- // Estimated: `13114`
- // Minimum execution time: 18_305_000 picoseconds.
- Weight::from_parts(18_859_000, 13114)
+ // Estimated: `6070`
+ // Minimum execution time: 13_652_000 picoseconds.
+ Weight::from_parts(13_981_000, 6070)
.saturating_add(T::DbWeight::get().reads(4_u64))
.saturating_add(T::DbWeight::get().writes(5_u64))
}
@@ -232,9 +219,9 @@
fn approve() -> Weight {
// Proof Size summary in bytes:
// Measured: `326`
- // Estimated: `7044`
- // Minimum execution time: 10_977_000 picoseconds.
- Weight::from_parts(11_184_000, 7044)
+ // Estimated: `3522`
+ // Minimum execution time: 7_837_000 picoseconds.
+ Weight::from_parts(8_113_000, 3522)
.saturating_add(T::DbWeight::get().reads(2_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -245,9 +232,9 @@
fn approve_from() -> Weight {
// Proof Size summary in bytes:
// Measured: `313`
- // Estimated: `7044`
- // Minimum execution time: 11_456_000 picoseconds.
- Weight::from_parts(11_731_000, 7044)
+ // Estimated: `3522`
+ // Minimum execution time: 7_769_000 picoseconds.
+ Weight::from_parts(7_979_000, 3522)
.saturating_add(T::DbWeight::get().reads(2_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -257,8 +244,8 @@
// Proof Size summary in bytes:
// Measured: `362`
// Estimated: `3522`
- // Minimum execution time: 5_771_000 picoseconds.
- Weight::from_parts(5_972_000, 3522)
+ // Minimum execution time: 4_194_000 picoseconds.
+ Weight::from_parts(4_353_000, 3522)
.saturating_add(T::DbWeight::get().reads(1_u64))
}
/// Storage: Nonfungible Allowance (r:1 w:1)
@@ -278,9 +265,9 @@
fn burn_from() -> Weight {
// Proof Size summary in bytes:
// Measured: `463`
- // Estimated: `17561`
- // Minimum execution time: 30_633_000 picoseconds.
- Weight::from_parts(31_136_000, 17561)
+ // Estimated: `3530`
+ // Minimum execution time: 21_978_000 picoseconds.
+ Weight::from_parts(22_519_000, 3530)
.saturating_add(T::DbWeight::get().reads(5_u64))
.saturating_add(T::DbWeight::get().writes(6_u64))
}
@@ -289,45 +276,62 @@
/// The range of component `b` is `[0, 64]`.
fn set_token_property_permissions(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `281`
+ // Measured: `314`
// Estimated: `20191`
- // Minimum execution time: 2_300_000 picoseconds.
- Weight::from_parts(2_382_000, 20191)
- // Standard Error: 45_076
- .saturating_add(Weight::from_parts(12_000_777, 0).saturating_mul(b.into()))
+ // Minimum execution time: 1_457_000 picoseconds.
+ Weight::from_parts(1_563_000, 20191)
+ // Standard Error: 14_041
+ .saturating_add(Weight::from_parts(8_452_415, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
+ /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
+ /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Nonfungible TokenProperties (r:1 w:1)
/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
+ /// Storage: Nonfungible TokenData (r:1 w:0)
+ /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)
/// The range of component `b` is `[0, 64]`.
fn set_token_properties(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `584 + b * (261 ±0)`
- // Estimated: `56460`
- // Minimum execution time: 12_422_000 picoseconds.
- Weight::from_parts(5_523_689, 56460)
- // Standard Error: 74_137
- .saturating_add(Weight::from_parts(6_320_501, 0).saturating_mul(b.into()))
- .saturating_add(T::DbWeight::get().reads(2_u64))
+ // Measured: `640 + b * (261 ±0)`
+ // Estimated: `36269`
+ // Minimum execution time: 963_000 picoseconds.
+ Weight::from_parts(1_126_511, 36269)
+ // Standard Error: 9_175
+ .saturating_add(Weight::from_parts(5_096_011, 0).saturating_mul(b.into()))
+ .saturating_add(T::DbWeight::get().reads(3_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
- /// Storage: Nonfungible TokenProperties (r:1 w:1)
+ /// Storage: Nonfungible TokenProperties (r:0 w:1)
/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
+ /// The range of component `b` is `[0, 64]`.
+ fn init_token_properties(b: u32, ) -> Weight {
+ // Proof Size summary in bytes:
+ // Measured: `0`
+ // Estimated: `0`
+ // Minimum execution time: 194_000 picoseconds.
+ Weight::from_parts(222_000, 0)
+ // Standard Error: 7_295
+ .saturating_add(Weight::from_parts(4_499_463, 0).saturating_mul(b.into()))
+ .saturating_add(T::DbWeight::get().writes(1_u64))
+ }
/// Storage: Common CollectionPropertyPermissions (r:1 w:0)
/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
+ /// Storage: Nonfungible TokenData (r:1 w:0)
+ /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)
+ /// Storage: Nonfungible TokenProperties (r:1 w:1)
+ /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
/// The range of component `b` is `[0, 64]`.
fn delete_token_properties(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `589 + b * (33291 ±0)`
- // Estimated: `56460`
- // Minimum execution time: 12_006_000 picoseconds.
- Weight::from_parts(12_216_000, 56460)
- // Standard Error: 83_431
- .saturating_add(Weight::from_parts(24_556_999, 0).saturating_mul(b.into()))
- .saturating_add(T::DbWeight::get().reads(2_u64))
+ // Measured: `699 + b * (33291 ±0)`
+ // Estimated: `36269`
+ // Minimum execution time: 992_000 picoseconds.
+ Weight::from_parts(1_043_000, 36269)
+ // Standard Error: 37_370
+ .saturating_add(Weight::from_parts(23_672_870, 0).saturating_mul(b.into()))
+ .saturating_add(T::DbWeight::get().reads(3_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
/// Storage: Nonfungible TokenData (r:1 w:0)
@@ -336,8 +340,8 @@
// Proof Size summary in bytes:
// Measured: `326`
// Estimated: `3522`
- // Minimum execution time: 4_827_000 picoseconds.
- Weight::from_parts(4_984_000, 3522)
+ // Minimum execution time: 3_743_000 picoseconds.
+ Weight::from_parts(3_908_000, 3522)
.saturating_add(T::DbWeight::get().reads(1_u64))
}
/// Storage: Nonfungible CollectionAllowance (r:0 w:1)
@@ -346,28 +350,28 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 6_151_000 picoseconds.
- Weight::from_parts(6_394_000, 0)
+ // Minimum execution time: 4_106_000 picoseconds.
+ Weight::from_parts(4_293_000, 0)
.saturating_add(T::DbWeight::get().writes(1_u64))
}
/// Storage: Nonfungible CollectionAllowance (r:1 w:0)
/// Proof: Nonfungible CollectionAllowance (max_values: None, max_size: Some(111), added: 2586, mode: MaxEncodedLen)
fn allowance_for_all() -> Weight {
// Proof Size summary in bytes:
- // Measured: `109`
+ // Measured: `142`
// Estimated: `3576`
- // Minimum execution time: 3_791_000 picoseconds.
- Weight::from_parts(3_950_000, 3576)
+ // Minimum execution time: 2_775_000 picoseconds.
+ Weight::from_parts(2_923_000, 3576)
.saturating_add(T::DbWeight::get().reads(1_u64))
}
/// Storage: Nonfungible TokenProperties (r:1 w:1)
/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
fn repair_item() -> Weight {
// Proof Size summary in bytes:
- // Measured: `300`
+ // Measured: `279`
// Estimated: `36269`
- // Minimum execution time: 5_364_000 picoseconds.
- Weight::from_parts(5_539_000, 36269)
+ // Minimum execution time: 3_033_000 picoseconds.
+ Weight::from_parts(3_174_000, 36269)
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -379,31 +383,23 @@
/// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
/// Storage: Nonfungible AccountBalance (r:1 w:1)
/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
- /// Storage: Nonfungible TokenProperties (r:1 w:1)
- /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Nonfungible TokenData (r:0 w:1)
/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)
/// Storage: Nonfungible Owned (r:0 w:1)
/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
fn create_item() -> Weight {
// Proof Size summary in bytes:
- // Measured: `390`
- // Estimated: `63471`
- // Minimum execution time: 25_892_000 picoseconds.
- Weight::from_parts(26_424_000, 63471)
- .saturating_add(RocksDbWeight::get().reads(4_u64))
- .saturating_add(RocksDbWeight::get().writes(5_u64))
+ // Measured: `142`
+ // Estimated: `3530`
+ // Minimum execution time: 9_726_000 picoseconds.
+ Weight::from_parts(10_059_000, 3530)
+ .saturating_add(RocksDbWeight::get().reads(2_u64))
+ .saturating_add(RocksDbWeight::get().writes(4_u64))
}
/// Storage: Nonfungible TokensMinted (r:1 w:1)
/// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
/// Storage: Nonfungible AccountBalance (r:1 w:1)
/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
- /// Storage: Nonfungible TokenProperties (r:200 w:200)
- /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Nonfungible TokenData (r:0 w:200)
/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)
/// Storage: Nonfungible Owned (r:0 w:200)
@@ -411,26 +407,20 @@
/// The range of component `b` is `[0, 200]`.
fn create_multiple_items(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `390`
- // Estimated: `28192 + b * (35279 ±0)`
- // Minimum execution time: 4_612_000 picoseconds.
- Weight::from_parts(6_399_460, 28192)
- // Standard Error: 5_119
- .saturating_add(Weight::from_parts(7_230_389, 0).saturating_mul(b.into()))
- .saturating_add(RocksDbWeight::get().reads(3_u64))
- .saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(b.into())))
+ // Measured: `142`
+ // Estimated: `3530`
+ // Minimum execution time: 3_270_000 picoseconds.
+ Weight::from_parts(3_693_659, 3530)
+ // Standard Error: 255
+ .saturating_add(Weight::from_parts(3_024_284, 0).saturating_mul(b.into()))
+ .saturating_add(RocksDbWeight::get().reads(2_u64))
.saturating_add(RocksDbWeight::get().writes(2_u64))
- .saturating_add(RocksDbWeight::get().writes((3_u64).saturating_mul(b.into())))
- .saturating_add(Weight::from_parts(0, 35279).saturating_mul(b.into()))
+ .saturating_add(RocksDbWeight::get().writes((2_u64).saturating_mul(b.into())))
}
/// Storage: Nonfungible TokensMinted (r:1 w:1)
/// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
/// Storage: Nonfungible AccountBalance (r:200 w:200)
/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
- /// Storage: Nonfungible TokenProperties (r:200 w:200)
- /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Nonfungible TokenData (r:0 w:200)
/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)
/// Storage: Nonfungible Owned (r:0 w:200)
@@ -438,17 +428,17 @@
/// The range of component `b` is `[0, 200]`.
fn create_multiple_items_ex(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `390`
- // Estimated: `25652 + b * (37819 ±0)`
- // Minimum execution time: 4_538_000 picoseconds.
- Weight::from_parts(4_686_000, 25652)
- // Standard Error: 3_518
- .saturating_add(Weight::from_parts(8_905_771, 0).saturating_mul(b.into()))
- .saturating_add(RocksDbWeight::get().reads(2_u64))
- .saturating_add(RocksDbWeight::get().reads((2_u64).saturating_mul(b.into())))
+ // Measured: `142`
+ // Estimated: `3481 + b * (2540 ±0)`
+ // Minimum execution time: 3_188_000 picoseconds.
+ Weight::from_parts(3_307_000, 3481)
+ // Standard Error: 567
+ .saturating_add(Weight::from_parts(4_320_449, 0).saturating_mul(b.into()))
+ .saturating_add(RocksDbWeight::get().reads(1_u64))
+ .saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(b.into())))
.saturating_add(RocksDbWeight::get().writes(1_u64))
- .saturating_add(RocksDbWeight::get().writes((4_u64).saturating_mul(b.into())))
- .saturating_add(Weight::from_parts(0, 37819).saturating_mul(b.into()))
+ .saturating_add(RocksDbWeight::get().writes((3_u64).saturating_mul(b.into())))
+ .saturating_add(Weight::from_parts(0, 2540).saturating_mul(b.into()))
}
/// Storage: Nonfungible TokenData (r:1 w:1)
/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)
@@ -467,9 +457,9 @@
fn burn_item() -> Weight {
// Proof Size summary in bytes:
// Measured: `380`
- // Estimated: `17561`
- // Minimum execution time: 24_230_000 picoseconds.
- Weight::from_parts(24_672_000, 17561)
+ // Estimated: `3530`
+ // Minimum execution time: 18_062_000 picoseconds.
+ Weight::from_parts(18_433_000, 3530)
.saturating_add(RocksDbWeight::get().reads(5_u64))
.saturating_add(RocksDbWeight::get().writes(5_u64))
}
@@ -490,9 +480,9 @@
fn burn_recursively_self_raw() -> Weight {
// Proof Size summary in bytes:
// Measured: `380`
- // Estimated: `17561`
- // Minimum execution time: 30_521_000 picoseconds.
- Weight::from_parts(31_241_000, 17561)
+ // Estimated: `3530`
+ // Minimum execution time: 22_942_000 picoseconds.
+ Weight::from_parts(23_527_000, 3530)
.saturating_add(RocksDbWeight::get().reads(5_u64))
.saturating_add(RocksDbWeight::get().writes(5_u64))
}
@@ -515,17 +505,17 @@
/// The range of component `b` is `[0, 200]`.
fn burn_recursively_breadth_plus_self_plus_self_per_each_raw(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `1467 + b * (58 ±0)`
- // Estimated: `24230 + b * (10097 ±0)`
- // Minimum execution time: 31_734_000 picoseconds.
- Weight::from_parts(32_162_000, 24230)
- // Standard Error: 210_514
- .saturating_add(Weight::from_parts(71_382_804, 0).saturating_mul(b.into()))
+ // Measured: `1500 + b * (58 ±0)`
+ // Estimated: `5874 + b * (5032 ±0)`
+ // Minimum execution time: 22_709_000 picoseconds.
+ Weight::from_parts(23_287_000, 5874)
+ // Standard Error: 89_471
+ .saturating_add(Weight::from_parts(63_285_201, 0).saturating_mul(b.into()))
.saturating_add(RocksDbWeight::get().reads(7_u64))
.saturating_add(RocksDbWeight::get().reads((4_u64).saturating_mul(b.into())))
.saturating_add(RocksDbWeight::get().writes(6_u64))
.saturating_add(RocksDbWeight::get().writes((4_u64).saturating_mul(b.into())))
- .saturating_add(Weight::from_parts(0, 10097).saturating_mul(b.into()))
+ .saturating_add(Weight::from_parts(0, 5032).saturating_mul(b.into()))
}
/// Storage: Nonfungible TokenData (r:1 w:1)
/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)
@@ -538,9 +528,9 @@
fn transfer_raw() -> Weight {
// Proof Size summary in bytes:
// Measured: `380`
- // Estimated: `13114`
- // Minimum execution time: 18_305_000 picoseconds.
- Weight::from_parts(18_859_000, 13114)
+ // Estimated: `6070`
+ // Minimum execution time: 13_652_000 picoseconds.
+ Weight::from_parts(13_981_000, 6070)
.saturating_add(RocksDbWeight::get().reads(4_u64))
.saturating_add(RocksDbWeight::get().writes(5_u64))
}
@@ -551,9 +541,9 @@
fn approve() -> Weight {
// Proof Size summary in bytes:
// Measured: `326`
- // Estimated: `7044`
- // Minimum execution time: 10_977_000 picoseconds.
- Weight::from_parts(11_184_000, 7044)
+ // Estimated: `3522`
+ // Minimum execution time: 7_837_000 picoseconds.
+ Weight::from_parts(8_113_000, 3522)
.saturating_add(RocksDbWeight::get().reads(2_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -564,9 +554,9 @@
fn approve_from() -> Weight {
// Proof Size summary in bytes:
// Measured: `313`
- // Estimated: `7044`
- // Minimum execution time: 11_456_000 picoseconds.
- Weight::from_parts(11_731_000, 7044)
+ // Estimated: `3522`
+ // Minimum execution time: 7_769_000 picoseconds.
+ Weight::from_parts(7_979_000, 3522)
.saturating_add(RocksDbWeight::get().reads(2_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -576,8 +566,8 @@
// Proof Size summary in bytes:
// Measured: `362`
// Estimated: `3522`
- // Minimum execution time: 5_771_000 picoseconds.
- Weight::from_parts(5_972_000, 3522)
+ // Minimum execution time: 4_194_000 picoseconds.
+ Weight::from_parts(4_353_000, 3522)
.saturating_add(RocksDbWeight::get().reads(1_u64))
}
/// Storage: Nonfungible Allowance (r:1 w:1)
@@ -597,9 +587,9 @@
fn burn_from() -> Weight {
// Proof Size summary in bytes:
// Measured: `463`
- // Estimated: `17561`
- // Minimum execution time: 30_633_000 picoseconds.
- Weight::from_parts(31_136_000, 17561)
+ // Estimated: `3530`
+ // Minimum execution time: 21_978_000 picoseconds.
+ Weight::from_parts(22_519_000, 3530)
.saturating_add(RocksDbWeight::get().reads(5_u64))
.saturating_add(RocksDbWeight::get().writes(6_u64))
}
@@ -608,45 +598,62 @@
/// The range of component `b` is `[0, 64]`.
fn set_token_property_permissions(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `281`
+ // Measured: `314`
// Estimated: `20191`
- // Minimum execution time: 2_300_000 picoseconds.
- Weight::from_parts(2_382_000, 20191)
- // Standard Error: 45_076
- .saturating_add(Weight::from_parts(12_000_777, 0).saturating_mul(b.into()))
+ // Minimum execution time: 1_457_000 picoseconds.
+ Weight::from_parts(1_563_000, 20191)
+ // Standard Error: 14_041
+ .saturating_add(Weight::from_parts(8_452_415, 0).saturating_mul(b.into()))
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
- /// Storage: Nonfungible TokenProperties (r:1 w:1)
- /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
/// Storage: Common CollectionPropertyPermissions (r:1 w:0)
/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
+ /// Storage: Nonfungible TokenProperties (r:1 w:1)
+ /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
+ /// Storage: Nonfungible TokenData (r:1 w:0)
+ /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)
/// The range of component `b` is `[0, 64]`.
fn set_token_properties(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `584 + b * (261 ±0)`
- // Estimated: `56460`
- // Minimum execution time: 12_422_000 picoseconds.
- Weight::from_parts(5_523_689, 56460)
- // Standard Error: 74_137
- .saturating_add(Weight::from_parts(6_320_501, 0).saturating_mul(b.into()))
- .saturating_add(RocksDbWeight::get().reads(2_u64))
+ // Measured: `640 + b * (261 ±0)`
+ // Estimated: `36269`
+ // Minimum execution time: 963_000 picoseconds.
+ Weight::from_parts(1_126_511, 36269)
+ // Standard Error: 9_175
+ .saturating_add(Weight::from_parts(5_096_011, 0).saturating_mul(b.into()))
+ .saturating_add(RocksDbWeight::get().reads(3_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
- /// Storage: Nonfungible TokenProperties (r:1 w:1)
+ /// Storage: Nonfungible TokenProperties (r:0 w:1)
/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
+ /// The range of component `b` is `[0, 64]`.
+ fn init_token_properties(b: u32, ) -> Weight {
+ // Proof Size summary in bytes:
+ // Measured: `0`
+ // Estimated: `0`
+ // Minimum execution time: 194_000 picoseconds.
+ Weight::from_parts(222_000, 0)
+ // Standard Error: 7_295
+ .saturating_add(Weight::from_parts(4_499_463, 0).saturating_mul(b.into()))
+ .saturating_add(RocksDbWeight::get().writes(1_u64))
+ }
/// Storage: Common CollectionPropertyPermissions (r:1 w:0)
/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
+ /// Storage: Nonfungible TokenData (r:1 w:0)
+ /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)
+ /// Storage: Nonfungible TokenProperties (r:1 w:1)
+ /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
/// The range of component `b` is `[0, 64]`.
fn delete_token_properties(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `589 + b * (33291 ±0)`
- // Estimated: `56460`
- // Minimum execution time: 12_006_000 picoseconds.
- Weight::from_parts(12_216_000, 56460)
- // Standard Error: 83_431
- .saturating_add(Weight::from_parts(24_556_999, 0).saturating_mul(b.into()))
- .saturating_add(RocksDbWeight::get().reads(2_u64))
+ // Measured: `699 + b * (33291 ±0)`
+ // Estimated: `36269`
+ // Minimum execution time: 992_000 picoseconds.
+ Weight::from_parts(1_043_000, 36269)
+ // Standard Error: 37_370
+ .saturating_add(Weight::from_parts(23_672_870, 0).saturating_mul(b.into()))
+ .saturating_add(RocksDbWeight::get().reads(3_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
/// Storage: Nonfungible TokenData (r:1 w:0)
@@ -655,8 +662,8 @@
// Proof Size summary in bytes:
// Measured: `326`
// Estimated: `3522`
- // Minimum execution time: 4_827_000 picoseconds.
- Weight::from_parts(4_984_000, 3522)
+ // Minimum execution time: 3_743_000 picoseconds.
+ Weight::from_parts(3_908_000, 3522)
.saturating_add(RocksDbWeight::get().reads(1_u64))
}
/// Storage: Nonfungible CollectionAllowance (r:0 w:1)
@@ -665,28 +672,28 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 6_151_000 picoseconds.
- Weight::from_parts(6_394_000, 0)
+ // Minimum execution time: 4_106_000 picoseconds.
+ Weight::from_parts(4_293_000, 0)
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
/// Storage: Nonfungible CollectionAllowance (r:1 w:0)
/// Proof: Nonfungible CollectionAllowance (max_values: None, max_size: Some(111), added: 2586, mode: MaxEncodedLen)
fn allowance_for_all() -> Weight {
// Proof Size summary in bytes:
- // Measured: `109`
+ // Measured: `142`
// Estimated: `3576`
- // Minimum execution time: 3_791_000 picoseconds.
- Weight::from_parts(3_950_000, 3576)
+ // Minimum execution time: 2_775_000 picoseconds.
+ Weight::from_parts(2_923_000, 3576)
.saturating_add(RocksDbWeight::get().reads(1_u64))
}
/// Storage: Nonfungible TokenProperties (r:1 w:1)
/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
fn repair_item() -> Weight {
// Proof Size summary in bytes:
- // Measured: `300`
+ // Measured: `279`
// Estimated: `36269`
- // Minimum execution time: 5_364_000 picoseconds.
- Weight::from_parts(5_539_000, 36269)
+ // Minimum execution time: 3_033_000 picoseconds.
+ Weight::from_parts(3_174_000, 36269)
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
pallets/refungible/src/benchmarking.rsdiffbeforeafterboth--- a/pallets/refungible/src/benchmarking.rs
+++ b/pallets/refungible/src/benchmarking.rs
@@ -22,7 +22,9 @@
use frame_benchmarking::{benchmarks, account};
use pallet_common::{
bench_init,
- benchmarking::{create_collection_raw, property_key, property_value},
+ benchmarking::{
+ create_collection_raw, property_key, property_value, load_is_admin_and_property_permissions,
+ },
};
use sp_std::prelude::*;
use up_data_structs::{
@@ -255,8 +257,49 @@
value: property_value(),
}).collect::<Vec<_>>();
let item = create_max_item(&collection, &owner, [(owner.clone(), 200)])?;
- }: {<Pallet<T>>::set_token_properties(&collection, &owner, item, props.into_iter(), SetPropertyMode::ExistingToken, &Unlimited)?}
+ }: {<Pallet<T>>::set_token_properties(&collection, &owner, item, props.into_iter(), &Unlimited)?}
+
+ init_token_properties {
+ let b in 0..MAX_PROPERTIES_PER_ITEM;
+ bench_init!{
+ owner: sub; collection: collection(owner);
+ owner: cross_from_sub;
+ };
+ let perms = (0..b).map(|k| PropertyKeyPermission {
+ key: property_key(k as usize),
+ permission: PropertyPermission {
+ mutable: false,
+ collection_admin: true,
+ token_owner: true,
+ },
+ }).collect::<Vec<_>>();
+ <Pallet<T>>::set_token_property_permissions(&collection, &owner, perms)?;
+ let props = (0..b).map(|k| Property {
+ key: property_key(k as usize),
+ value: property_value(),
+ }).collect::<Vec<_>>();
+ let item = create_max_item(&collection, &owner, [(owner.clone(), 200)])?;
+
+ let (is_collection_admin, property_permissions) = load_is_admin_and_property_permissions(&collection, &owner);
+ }: {
+ let mut property_writer = pallet_common::collection_info_loaded_property_writer(
+ &collection,
+ is_collection_admin,
+ property_permissions,
+ );
+
+ property_writer.write_token_properties(
+ true,
+ item,
+ props.into_iter(),
+ crate::erc::ERC721TokenEvent::TokenChanged {
+ token_id: item.into(),
+ }
+ .to_log(T::ContractAddress::get()),
+ )?
+ }
+
delete_token_properties {
let b in 0..MAX_PROPERTIES_PER_ITEM;
bench_init!{
@@ -277,7 +320,7 @@
value: property_value(),
}).collect::<Vec<_>>();
let item = create_max_item(&collection, &owner, [(owner.clone(), 200)])?;
- <Pallet<T>>::set_token_properties(&collection, &owner, item, props.into_iter(), SetPropertyMode::ExistingToken, &Unlimited)?;
+ <Pallet<T>>::set_token_properties(&collection, &owner, item, props.into_iter(), &Unlimited)?;
let to_delete = (0..b).map(|k| property_key(k as usize)).collect::<Vec<_>>();
}: {<Pallet<T>>::delete_token_properties(&collection, &owner, item, to_delete.into_iter(), &Unlimited)?}
pallets/refungible/src/common.rsdiffbeforeafterboth--- a/pallets/refungible/src/common.rs
+++ b/pallets/refungible/src/common.rs
@@ -20,20 +20,20 @@
use frame_support::{dispatch::DispatchResultWithPostInfo, ensure, fail, weights::Weight, traits::Get};
use up_data_structs::{
CollectionId, TokenId, CreateItemExData, budget::Budget, Property, PropertyKey, PropertyValue,
- PropertyKeyPermission, CollectionPropertiesVec, CreateRefungibleExMultipleOwners,
- CreateRefungibleExSingleOwner, TokenOwnerError,
+ PropertyKeyPermission, CreateRefungibleExMultipleOwners, CreateRefungibleExSingleOwner,
+ TokenOwnerError,
};
use pallet_common::{
CommonCollectionOperations, CommonWeightInfo, RefungibleExtensions, with_weight,
- weights::WeightInfo as _,
+ weights::WeightInfo as _, init_token_properties_delta,
};
-use pallet_structure::Error as StructureError;
+use pallet_structure::{Pallet as PalletStructure, Error as StructureError};
use sp_runtime::{DispatchError};
use sp_std::{vec::Vec, vec};
use crate::{
AccountBalance, Allowance, Balance, Config, Error, Owned, Pallet, RefungibleHandle,
- SelfWeightOf, weights::WeightInfo, TokensMinted, TotalSupply, CreateItemData,
+ SelfWeightOf, weights::WeightInfo, TokensMinted, TotalSupply, CreateItemData, TokenProperties,
};
macro_rules! max_weight_of {
@@ -43,28 +43,21 @@
.max(<SelfWeightOf<T>>::$method($($args)*))
)*
};
-}
-
-fn properties_weight<T: Config>(properties: &CollectionPropertiesVec) -> Weight {
- if properties.len() > 0 {
- <CommonWeights<T>>::set_token_properties(properties.len() as u32)
- } else {
- Weight::zero()
- }
}
pub struct CommonWeights<T: Config>(PhantomData<T>);
impl<T: Config> CommonWeightInfo<T::CrossAccountId> for CommonWeights<T> {
fn create_multiple_items(data: &[up_data_structs::CreateItemData]) -> Weight {
<SelfWeightOf<T>>::create_multiple_items(data.len() as u32).saturating_add(
- data.iter()
- .map(|data| match data {
+ init_token_properties_delta::<T, _>(
+ data.iter().map(|data| match data {
up_data_structs::CreateItemData::ReFungible(rft_data) => {
- properties_weight::<T>(&rft_data.properties)
+ rft_data.properties.len() as u32
}
- _ => Weight::zero(),
- })
- .fold(Weight::zero(), |a, b| a.saturating_add(b)),
+ _ => 0,
+ }),
+ <SelfWeightOf<T>>::init_token_properties,
+ ),
)
}
@@ -72,15 +65,17 @@
match call {
CreateItemExData::RefungibleMultipleOwners(i) => {
<SelfWeightOf<T>>::create_multiple_items_ex_multiple_owners(i.users.len() as u32)
- .saturating_add(properties_weight::<T>(&i.properties))
+ .saturating_add(init_token_properties_delta::<T, _>(
+ [i.properties.len() as u32].into_iter(),
+ <SelfWeightOf<T>>::init_token_properties,
+ ))
}
CreateItemExData::RefungibleMultipleItems(i) => {
<SelfWeightOf<T>>::create_multiple_items_ex_multiple_items(i.len() as u32)
- .saturating_add(
- i.iter()
- .map(|d| properties_weight::<T>(&d.properties))
- .fold(Weight::zero(), |a, b| a.saturating_add(b)),
- )
+ .saturating_add(init_token_properties_delta::<T, _>(
+ i.iter().map(|d| d.properties.len() as u32),
+ <SelfWeightOf<T>>::init_token_properties,
+ ))
}
_ => Weight::zero(),
}
@@ -399,7 +394,6 @@
&sender,
token_id,
properties.into_iter(),
- pallet_common::SetPropertyMode::ExistingToken,
nesting_budget,
),
weight,
@@ -441,6 +435,17 @@
)
}
+ fn get_token_properties_raw(
+ &self,
+ token_id: TokenId,
+ ) -> Option<up_data_structs::TokenProperties> {
+ <TokenProperties<T>>::get((self.id, token_id))
+ }
+
+ fn set_token_properties_raw(&self, token_id: TokenId, map: up_data_structs::TokenProperties) {
+ <TokenProperties<T>>::insert((self.id, token_id), map)
+ }
+
fn check_nesting(
&self,
_sender: <T>::CrossAccountId,
@@ -479,19 +484,44 @@
<Pallet<T>>::token_owner(self.id, token)
}
+ fn check_token_indirect_owner(
+ &self,
+ token: TokenId,
+ maybe_owner: &T::CrossAccountId,
+ nesting_budget: &dyn Budget,
+ ) -> Result<bool, DispatchError> {
+ let balance = self.balance(maybe_owner.clone(), token);
+ let total_pieces: u128 = <Pallet<T>>::total_pieces(self.id, token).unwrap_or(u128::MAX);
+ if balance != total_pieces {
+ return Ok(false);
+ }
+
+ let is_bundle_owner = <PalletStructure<T>>::check_indirectly_owned(
+ maybe_owner.clone(),
+ self.id,
+ token,
+ None,
+ nesting_budget,
+ )?;
+
+ Ok(is_bundle_owner)
+ }
+
/// Returns 10 token in no particular order.
fn token_owners(&self, token: TokenId) -> Vec<T::CrossAccountId> {
<Pallet<T>>::token_owners(self.id, token).unwrap_or_default()
}
fn token_property(&self, token_id: TokenId, key: &PropertyKey) -> Option<PropertyValue> {
- <Pallet<T>>::token_properties((self.id, token_id))
+ <Pallet<T>>::token_properties((self.id, token_id))?
.get(key)
.cloned()
}
fn token_properties(&self, token_id: TokenId, keys: Option<Vec<PropertyKey>>) -> Vec<Property> {
- let properties = <Pallet<T>>::token_properties((self.id, token_id));
+ let Some(properties) = <Pallet<T>>::token_properties((self.id, token_id)) else {
+ return vec![];
+ };
keys.map(|keys| {
keys.into_iter()
pallets/refungible/src/erc.rsdiffbeforeafterboth--- a/pallets/refungible/src/erc.rs
+++ b/pallets/refungible/src/erc.rs
@@ -214,7 +214,6 @@
&caller,
TokenId(token_id),
properties.into_iter(),
- pallet_common::SetPropertyMode::ExistingToken,
&nesting_budget,
)
.map_err(dispatch_to_evm::<T>)
@@ -284,7 +283,8 @@
.try_into()
.map_err(|_| "key too long")?;
- let props = <TokenProperties<T>>::get((self.id, token_id));
+ let props =
+ <TokenProperties<T>>::get((self.id, token_id)).ok_or("token properties not found")?;
let prop = props.get(&key).ok_or("key not found")?;
Ok(prop.to_vec().into())
@@ -372,7 +372,7 @@
.transpose()
.map_err(|e| {
Error::Revert(alloc::format!(
- "Can not convert value \"baseURI\" to string with error \"{e}\""
+ "can not convert value \"baseURI\" to string with error \"{e}\""
))
})?;
@@ -697,7 +697,7 @@
let key = key::url();
let permission = get_token_permission::<T>(self.id, &key)?;
if !permission.collection_admin {
- return Err("Operation is not allowed".into());
+ return Err("operation is not allowed".into());
}
let caller = T::CrossAccountId::from_eth(caller);
@@ -724,7 +724,7 @@
.try_into()
.map_err(|_| "token uri is too long")?,
})
- .map_err(|e| Error::Revert(alloc::format!("Can't add property: {e:?}")))?;
+ .map_err(|e| Error::Revert(alloc::format!("can't add property: {e:?}")))?;
let users = [(to, 1)]
.into_iter()
@@ -749,12 +749,12 @@
) -> Result<String> {
collection.consume_store_reads(1)?;
let properties = <TokenProperties<T>>::try_get((collection.id, token_id))
- .map_err(|_| Error::Revert("Token properties not found".into()))?;
+ .map_err(|_| Error::Revert("token properties not found".into()))?;
if let Some(property) = properties.get(key) {
return Ok(String::from_utf8_lossy(property).into());
}
- Err("Property tokenURI not found".into())
+ Err("property tokenURI not found".into())
}
fn get_token_permission<T: Config>(
@@ -762,13 +762,13 @@
key: &PropertyKey,
) -> Result<PropertyPermission> {
let token_property_permissions = CollectionPropertyPermissions::<T>::try_get(collection_id)
- .map_err(|_| Error::Revert("No permissions for collection".into()))?;
+ .map_err(|_| Error::Revert("no permissions for collection".into()))?;
let a = token_property_permissions
.get(key)
.map(Clone::clone)
.ok_or_else(|| {
let key = String::from_utf8(key.clone().into_inner()).unwrap_or_default();
- Error::Revert(alloc::format!("No permission for key {key}"))
+ Error::Revert(alloc::format!("no permission for key {key}"))
})?;
Ok(a)
}
@@ -1133,7 +1133,7 @@
.try_into()
.map_err(|_| "token uri is too long")?,
})
- .map_err(|e| Error::Revert(alloc::format!("Can't add property: {e:?}")))?;
+ .map_err(|e| Error::Revert(alloc::format!("can't add property: {e:?}")))?;
let create_item_data = CreateItemData::<T> {
users: users.clone(),
pallets/refungible/src/lib.rsdiffbeforeafterboth--- a/pallets/refungible/src/lib.rs
+++ b/pallets/refungible/src/lib.rs
@@ -96,8 +96,8 @@
use pallet_evm::{account::CrossAccountId, Pallet as PalletEvm};
use pallet_evm_coder_substrate::WithRecorder;
use pallet_common::{
- CommonCollectionOperations, Error as CommonError, eth::collection_id_to_address,
- Event as CommonEvent, Pallet as PalletCommon, SetPropertyMode,
+ Error as CommonError, eth::collection_id_to_address, Event as CommonEvent,
+ Pallet as PalletCommon,
};
use pallet_structure::Pallet as PalletStructure;
use sp_core::{Get, H160};
@@ -106,8 +106,8 @@
use up_data_structs::{
AccessMode, budget::Budget, CollectionId, CreateCollectionData, mapping::TokenAddressMapping,
MAX_REFUNGIBLE_PIECES, Property, PropertyKey, PropertyKeyPermission, PropertyScope,
- PropertyValue, TokenId, TrySetProperty, PropertiesPermissionMap,
- CreateRefungibleExMultipleOwners, TokenOwnerError, TokenProperties as TokenPropertiesT,
+ PropertyValue, TokenId, PropertiesPermissionMap, CreateRefungibleExMultipleOwners,
+ TokenOwnerError, TokenProperties as TokenPropertiesT,
};
pub use pallet::*;
@@ -175,7 +175,7 @@
pub type TokenProperties<T: Config> = StorageNMap<
Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),
Value = TokenPropertiesT,
- QueryKind = ValueQuery,
+ QueryKind = OptionQuery,
>;
/// Total amount of pieces for token
@@ -292,34 +292,6 @@
/// - `token`: Token ID.
pub fn token_exists(collection: &RefungibleHandle<T>, token: TokenId) -> bool {
<TotalSupply<T>>::contains_key((collection.id, token))
- }
-
- pub fn set_scoped_token_property(
- collection_id: CollectionId,
- token_id: TokenId,
- scope: PropertyScope,
- property: Property,
- ) -> DispatchResult {
- TokenProperties::<T>::try_mutate((collection_id, token_id), |properties| {
- properties.try_scoped_set(scope, property.key, property.value)
- })
- .map_err(<CommonError<T>>::from)?;
-
- Ok(())
- }
-
- pub fn set_scoped_token_properties(
- collection_id: CollectionId,
- token_id: TokenId,
- scope: PropertyScope,
- properties: impl Iterator<Item = Property>,
- ) -> DispatchResult {
- TokenProperties::<T>::try_mutate((collection_id, token_id), |stored_properties| {
- stored_properties.try_scoped_set_from_iter(scope, properties)
- })
- .map_err(<CommonError<T>>::from)?;
-
- Ok(())
}
}
@@ -533,50 +505,16 @@
sender: &T::CrossAccountId,
token_id: TokenId,
properties_updates: impl Iterator<Item = (PropertyKey, Option<PropertyValue>)>,
- mode: SetPropertyMode,
nesting_budget: &dyn Budget,
) -> DispatchResult {
- let mut is_token_owner =
- pallet_common::LazyValue::new(|| -> Result<bool, DispatchError> {
- if let SetPropertyMode::NewToken {
- mint_target_is_sender,
- } = mode
- {
- return Ok(mint_target_is_sender);
- }
-
- let balance = collection.balance(sender.clone(), token_id);
- let total_pieces: u128 =
- Self::total_pieces(collection.id, token_id).unwrap_or(u128::MAX);
- if balance != total_pieces {
- return Ok(false);
- }
-
- let is_bundle_owner = <PalletStructure<T>>::check_indirectly_owned(
- sender.clone(),
- collection.id,
- token_id,
- None,
- nesting_budget,
- )?;
-
- Ok(is_bundle_owner)
- });
+ let mut property_writer =
+ pallet_common::property_writer_for_existing_token(collection, sender);
- let mut is_token_exist =
- pallet_common::LazyValue::new(|| Self::token_exists(collection, token_id));
-
- let stored_properties = <TokenProperties<T>>::get((collection.id, token_id));
-
- <PalletCommon<T>>::modify_token_properties(
- collection,
+ property_writer.write_token_properties(
sender,
token_id,
- &mut is_token_exist,
properties_updates,
- stored_properties,
- &mut is_token_owner,
- |properties| <TokenProperties<T>>::set((collection.id, token_id), properties),
+ nesting_budget,
erc::ERC721TokenEvent::TokenChanged {
token_id: token_id.into(),
}
@@ -602,7 +540,6 @@
sender: &T::CrossAccountId,
token_id: TokenId,
properties: impl Iterator<Item = Property>,
- mode: SetPropertyMode,
nesting_budget: &dyn Budget,
) -> DispatchResult {
Self::modify_token_properties(
@@ -610,7 +547,6 @@
sender,
token_id,
properties.map(|p| (p.key, Some(p.value))),
- mode,
nesting_budget,
)
}
@@ -627,7 +563,6 @@
sender,
token_id,
[property].into_iter(),
- SetPropertyMode::ExistingToken,
nesting_budget,
)
}
@@ -644,7 +579,6 @@
sender,
token_id,
property_keys.into_iter().map(|key| (key, None)),
- SetPropertyMode::ExistingToken,
nesting_budget,
)
}
@@ -925,11 +859,15 @@
// =========
+ let mut property_writer = pallet_common::property_writer_for_new_token(collection, sender);
+
with_transaction(|| {
for (i, data) in data.iter().enumerate() {
let token_id = first_token_id + i as u32 + 1;
<TotalSupply<T>>::insert((collection.id, token_id), totals[i]);
+ let token = TokenId(token_id);
+
let mut mint_target_is_sender = true;
for (user, amount) in data.users.iter() {
if *amount == 0 {
@@ -939,23 +877,22 @@
mint_target_is_sender = mint_target_is_sender && sender.conv_eq(user);
<Balance<T>>::insert((collection.id, token_id, &user), amount);
- <Owned<T>>::insert((collection.id, &user, TokenId(token_id)), true);
+ <Owned<T>>::insert((collection.id, &user, token), true);
<PalletStructure<T>>::nest_if_sent_to_token_unchecked(
user,
collection.id,
- TokenId(token_id),
+ token,
);
}
- if let Err(e) = Self::set_token_properties(
- collection,
- sender,
- TokenId(token_id),
+ if let Err(e) = property_writer.write_token_properties(
+ mint_target_is_sender,
+ token,
data.properties.clone().into_iter(),
- SetPropertyMode::NewToken {
- mint_target_is_sender,
- },
- nesting_budget,
+ erc::ERC721TokenEvent::TokenChanged {
+ token_id: token.into(),
+ }
+ .to_log(T::ContractAddress::get()),
) {
return TransactionOutcome::Rollback(Err(e));
}
@@ -1461,7 +1398,9 @@
pub fn repair_item(collection: &RefungibleHandle<T>, token: TokenId) -> DispatchResult {
<TokenProperties<T>>::mutate((collection.id, token), |properties| {
- properties.recompute_consumed_space();
+ if let Some(properties) = properties {
+ properties.recompute_consumed_space();
+ }
});
Ok(())
pallets/refungible/src/weights.rsdiffbeforeafterboth--- a/pallets/refungible/src/weights.rs
+++ b/pallets/refungible/src/weights.rs
@@ -3,13 +3,13 @@
//! Autogenerated weights for pallet_refungible
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2023-04-20, STEPS: `50`, REPEAT: `80`, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-09-30, STEPS: `50`, REPEAT: `400`, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! WORST CASE MAP SIZE: `1000000`
//! HOSTNAME: `bench-host`, CPU: `Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz`
//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
// Executed Command:
-// target/release/unique-collator
+// target/production/unique-collator
// benchmark
// pallet
// --pallet
@@ -20,7 +20,7 @@
// *
// --template=.maintain/frame-weight-template.hbs
// --steps=50
-// --repeat=80
+// --repeat=400
// --heap-pages=4096
// --output=./pallets/refungible/src/weights.rs
@@ -52,6 +52,7 @@
fn burn_from() -> Weight;
fn set_token_property_permissions(b: u32, ) -> Weight;
fn set_token_properties(b: u32, ) -> Weight;
+ fn init_token_properties(b: u32, ) -> Weight;
fn delete_token_properties(b: u32, ) -> Weight;
fn repartition_item() -> Weight;
fn token_owner() -> Weight;
@@ -67,10 +68,6 @@
/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
/// Storage: Refungible AccountBalance (r:1 w:1)
/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
- /// Storage: Refungible TokenProperties (r:1 w:1)
- /// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Refungible Balance (r:0 w:1)
/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
/// Storage: Refungible TotalSupply (r:0 w:1)
@@ -79,21 +76,17 @@
/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
fn create_item() -> Weight {
// Proof Size summary in bytes:
- // Measured: `285`
- // Estimated: `63471`
- // Minimum execution time: 30_759_000 picoseconds.
- Weight::from_parts(31_321_000, 63471)
- .saturating_add(T::DbWeight::get().reads(4_u64))
- .saturating_add(T::DbWeight::get().writes(6_u64))
+ // Measured: `4`
+ // Estimated: `3530`
+ // Minimum execution time: 11_341_000 picoseconds.
+ Weight::from_parts(11_741_000, 3530)
+ .saturating_add(T::DbWeight::get().reads(2_u64))
+ .saturating_add(T::DbWeight::get().writes(5_u64))
}
/// Storage: Refungible TokensMinted (r:1 w:1)
/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
/// Storage: Refungible AccountBalance (r:1 w:1)
/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
- /// Storage: Refungible TokenProperties (r:200 w:200)
- /// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Refungible Balance (r:0 w:200)
/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
/// Storage: Refungible TotalSupply (r:0 w:200)
@@ -103,26 +96,20 @@
/// The range of component `b` is `[0, 200]`.
fn create_multiple_items(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `285`
- // Estimated: `28192 + b * (35279 ±0)`
- // Minimum execution time: 4_024_000 picoseconds.
- Weight::from_parts(4_145_000, 28192)
- // Standard Error: 3_332
- .saturating_add(Weight::from_parts(8_967_757, 0).saturating_mul(b.into()))
- .saturating_add(T::DbWeight::get().reads(3_u64))
- .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(b.into())))
+ // Measured: `4`
+ // Estimated: `3530`
+ // Minimum execution time: 2_665_000 picoseconds.
+ Weight::from_parts(2_791_000, 3530)
+ // Standard Error: 996
+ .saturating_add(Weight::from_parts(4_343_736, 0).saturating_mul(b.into()))
+ .saturating_add(T::DbWeight::get().reads(2_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
- .saturating_add(T::DbWeight::get().writes((4_u64).saturating_mul(b.into())))
- .saturating_add(Weight::from_parts(0, 35279).saturating_mul(b.into()))
+ .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(b.into())))
}
/// Storage: Refungible TokensMinted (r:1 w:1)
/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
/// Storage: Refungible AccountBalance (r:200 w:200)
/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
- /// Storage: Refungible TokenProperties (r:200 w:200)
- /// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Refungible Balance (r:0 w:200)
/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
/// Storage: Refungible TotalSupply (r:0 w:200)
@@ -132,26 +119,22 @@
/// The range of component `b` is `[0, 200]`.
fn create_multiple_items_ex_multiple_items(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `285`
- // Estimated: `25652 + b * (37819 ±0)`
- // Minimum execution time: 3_715_000 picoseconds.
- Weight::from_parts(3_881_000, 25652)
- // Standard Error: 3_275
- .saturating_add(Weight::from_parts(10_525_271, 0).saturating_mul(b.into()))
- .saturating_add(T::DbWeight::get().reads(2_u64))
- .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(b.into())))
+ // Measured: `4`
+ // Estimated: `3481 + b * (2540 ±0)`
+ // Minimum execution time: 2_616_000 picoseconds.
+ Weight::from_parts(2_726_000, 3481)
+ // Standard Error: 665
+ .saturating_add(Weight::from_parts(5_554_066, 0).saturating_mul(b.into()))
+ .saturating_add(T::DbWeight::get().reads(1_u64))
+ .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(b.into())))
.saturating_add(T::DbWeight::get().writes(1_u64))
- .saturating_add(T::DbWeight::get().writes((5_u64).saturating_mul(b.into())))
- .saturating_add(Weight::from_parts(0, 37819).saturating_mul(b.into()))
+ .saturating_add(T::DbWeight::get().writes((4_u64).saturating_mul(b.into())))
+ .saturating_add(Weight::from_parts(0, 2540).saturating_mul(b.into()))
}
/// Storage: Refungible TokensMinted (r:1 w:1)
/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
/// Storage: Refungible AccountBalance (r:200 w:200)
/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
- /// Storage: Refungible TokenProperties (r:1 w:1)
- /// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Refungible Balance (r:0 w:200)
/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
/// Storage: Refungible TotalSupply (r:0 w:1)
@@ -161,15 +144,15 @@
/// The range of component `b` is `[0, 200]`.
fn create_multiple_items_ex_multiple_owners(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `285`
- // Estimated: `60931 + b * (2540 ±0)`
- // Minimum execution time: 13_150_000 picoseconds.
- Weight::from_parts(15_655_930, 60931)
- // Standard Error: 4_170
- .saturating_add(Weight::from_parts(5_673_702, 0).saturating_mul(b.into()))
- .saturating_add(T::DbWeight::get().reads(3_u64))
+ // Measured: `4`
+ // Estimated: `3481 + b * (2540 ±0)`
+ // Minimum execution time: 3_697_000 picoseconds.
+ Weight::from_parts(2_136_481, 3481)
+ // Standard Error: 567
+ .saturating_add(Weight::from_parts(4_390_621, 0).saturating_mul(b.into()))
+ .saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(b.into())))
- .saturating_add(T::DbWeight::get().writes(3_u64))
+ .saturating_add(T::DbWeight::get().writes(2_u64))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(b.into())))
.saturating_add(Weight::from_parts(0, 2540).saturating_mul(b.into()))
}
@@ -183,10 +166,10 @@
/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
fn burn_item_partial() -> Weight {
// Proof Size summary in bytes:
- // Measured: `490`
- // Estimated: `15717`
- // Minimum execution time: 28_992_000 picoseconds.
- Weight::from_parts(29_325_000, 15717)
+ // Measured: `456`
+ // Estimated: `8682`
+ // Minimum execution time: 22_859_000 picoseconds.
+ Weight::from_parts(23_295_000, 8682)
.saturating_add(T::DbWeight::get().reads(5_u64))
.saturating_add(T::DbWeight::get().writes(4_u64))
}
@@ -204,10 +187,10 @@
/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
fn burn_item_fully() -> Weight {
// Proof Size summary in bytes:
- // Measured: `375`
- // Estimated: `14070`
- // Minimum execution time: 27_980_000 picoseconds.
- Weight::from_parts(28_582_000, 14070)
+ // Measured: `341`
+ // Estimated: `3554`
+ // Minimum execution time: 21_477_000 picoseconds.
+ Weight::from_parts(22_037_000, 3554)
.saturating_add(T::DbWeight::get().reads(4_u64))
.saturating_add(T::DbWeight::get().writes(6_u64))
}
@@ -217,10 +200,10 @@
/// Proof: Refungible TotalSupply (max_values: None, max_size: Some(40), added: 2515, mode: MaxEncodedLen)
fn transfer_normal() -> Weight {
// Proof Size summary in bytes:
- // Measured: `398`
- // Estimated: `9623`
- // Minimum execution time: 18_746_000 picoseconds.
- Weight::from_parts(19_096_000, 9623)
+ // Measured: `365`
+ // Estimated: `6118`
+ // Minimum execution time: 13_714_000 picoseconds.
+ Weight::from_parts(14_050_000, 6118)
.saturating_add(T::DbWeight::get().reads(3_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
}
@@ -234,10 +217,10 @@
/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
fn transfer_creating() -> Weight {
// Proof Size summary in bytes:
- // Measured: `375`
- // Estimated: `13153`
- // Minimum execution time: 21_719_000 picoseconds.
- Weight::from_parts(22_219_000, 13153)
+ // Measured: `341`
+ // Estimated: `6118`
+ // Minimum execution time: 15_879_000 picoseconds.
+ Weight::from_parts(16_266_000, 6118)
.saturating_add(T::DbWeight::get().reads(4_u64))
.saturating_add(T::DbWeight::get().writes(4_u64))
}
@@ -251,10 +234,10 @@
/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
fn transfer_removing() -> Weight {
// Proof Size summary in bytes:
- // Measured: `490`
- // Estimated: `13153`
- // Minimum execution time: 24_784_000 picoseconds.
- Weight::from_parts(25_231_000, 13153)
+ // Measured: `456`
+ // Estimated: `6118`
+ // Minimum execution time: 18_186_000 picoseconds.
+ Weight::from_parts(18_682_000, 6118)
.saturating_add(T::DbWeight::get().reads(4_u64))
.saturating_add(T::DbWeight::get().writes(4_u64))
}
@@ -268,10 +251,10 @@
/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
fn transfer_creating_removing() -> Weight {
// Proof Size summary in bytes:
- // Measured: `375`
- // Estimated: `15693`
- // Minimum execution time: 24_865_000 picoseconds.
- Weight::from_parts(25_253_000, 15693)
+ // Measured: `341`
+ // Estimated: `6118`
+ // Minimum execution time: 17_943_000 picoseconds.
+ Weight::from_parts(18_333_000, 6118)
.saturating_add(T::DbWeight::get().reads(5_u64))
.saturating_add(T::DbWeight::get().writes(6_u64))
}
@@ -281,10 +264,10 @@
/// Proof: Refungible Allowance (max_values: None, max_size: Some(105), added: 2580, mode: MaxEncodedLen)
fn approve() -> Weight {
// Proof Size summary in bytes:
- // Measured: `256`
+ // Measured: `223`
// Estimated: `3554`
- // Minimum execution time: 12_318_000 picoseconds.
- Weight::from_parts(12_597_000, 3554)
+ // Minimum execution time: 8_391_000 picoseconds.
+ Weight::from_parts(8_637_000, 3554)
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -294,10 +277,10 @@
/// Proof: Refungible Allowance (max_values: None, max_size: Some(105), added: 2580, mode: MaxEncodedLen)
fn approve_from() -> Weight {
// Proof Size summary in bytes:
- // Measured: `244`
+ // Measured: `211`
// Estimated: `3554`
- // Minimum execution time: 12_276_000 picoseconds.
- Weight::from_parts(12_557_000, 3554)
+ // Minimum execution time: 8_519_000 picoseconds.
+ Weight::from_parts(8_760_000, 3554)
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -309,10 +292,10 @@
/// Proof: Refungible TotalSupply (max_values: None, max_size: Some(40), added: 2515, mode: MaxEncodedLen)
fn transfer_from_normal() -> Weight {
// Proof Size summary in bytes:
- // Measured: `528`
- // Estimated: `13193`
- // Minimum execution time: 26_852_000 picoseconds.
- Weight::from_parts(27_427_000, 13193)
+ // Measured: `495`
+ // Estimated: `6118`
+ // Minimum execution time: 19_554_000 picoseconds.
+ Weight::from_parts(20_031_000, 6118)
.saturating_add(T::DbWeight::get().reads(4_u64))
.saturating_add(T::DbWeight::get().writes(3_u64))
}
@@ -328,10 +311,10 @@
/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
fn transfer_from_creating() -> Weight {
// Proof Size summary in bytes:
- // Measured: `505`
- // Estimated: `16723`
- // Minimum execution time: 29_893_000 picoseconds.
- Weight::from_parts(30_345_000, 16723)
+ // Measured: `471`
+ // Estimated: `6118`
+ // Minimum execution time: 21_338_000 picoseconds.
+ Weight::from_parts(21_803_000, 6118)
.saturating_add(T::DbWeight::get().reads(5_u64))
.saturating_add(T::DbWeight::get().writes(5_u64))
}
@@ -347,10 +330,10 @@
/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
fn transfer_from_removing() -> Weight {
// Proof Size summary in bytes:
- // Measured: `620`
- // Estimated: `16723`
- // Minimum execution time: 32_784_000 picoseconds.
- Weight::from_parts(33_322_000, 16723)
+ // Measured: `586`
+ // Estimated: `6118`
+ // Minimum execution time: 24_179_000 picoseconds.
+ Weight::from_parts(24_647_000, 6118)
.saturating_add(T::DbWeight::get().reads(5_u64))
.saturating_add(T::DbWeight::get().writes(5_u64))
}
@@ -366,10 +349,10 @@
/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
fn transfer_from_creating_removing() -> Weight {
// Proof Size summary in bytes:
- // Measured: `505`
- // Estimated: `19263`
- // Minimum execution time: 32_987_000 picoseconds.
- Weight::from_parts(33_428_000, 19263)
+ // Measured: `471`
+ // Estimated: `6118`
+ // Minimum execution time: 24_008_000 picoseconds.
+ Weight::from_parts(24_545_000, 6118)
.saturating_add(T::DbWeight::get().reads(6_u64))
.saturating_add(T::DbWeight::get().writes(7_u64))
}
@@ -389,10 +372,10 @@
/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
fn burn_from() -> Weight {
// Proof Size summary in bytes:
- // Measured: `505`
- // Estimated: `17640`
- // Minimum execution time: 38_277_000 picoseconds.
- Weight::from_parts(38_983_000, 17640)
+ // Measured: `471`
+ // Estimated: `3570`
+ // Minimum execution time: 27_907_000 picoseconds.
+ Weight::from_parts(28_489_000, 3570)
.saturating_add(T::DbWeight::get().reads(5_u64))
.saturating_add(T::DbWeight::get().writes(7_u64))
}
@@ -401,45 +384,62 @@
/// The range of component `b` is `[0, 64]`.
fn set_token_property_permissions(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `281`
+ // Measured: `314`
// Estimated: `20191`
- // Minimum execution time: 2_254_000 picoseconds.
- Weight::from_parts(2_335_000, 20191)
- // Standard Error: 44_906
- .saturating_add(Weight::from_parts(12_118_499, 0).saturating_mul(b.into()))
+ // Minimum execution time: 1_460_000 picoseconds.
+ Weight::from_parts(1_564_000, 20191)
+ // Standard Error: 14_117
+ .saturating_add(Weight::from_parts(8_196_214, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
+ /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
+ /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Refungible TokenProperties (r:1 w:1)
/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
+ /// Storage: Refungible TotalSupply (r:1 w:0)
+ /// Proof: Refungible TotalSupply (max_values: None, max_size: Some(40), added: 2515, mode: MaxEncodedLen)
/// The range of component `b` is `[0, 64]`.
fn set_token_properties(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `458 + b * (261 ±0)`
- // Estimated: `56460`
- // Minimum execution time: 11_249_000 picoseconds.
- Weight::from_parts(11_420_000, 56460)
- // Standard Error: 72_033
- .saturating_add(Weight::from_parts(7_008_012, 0).saturating_mul(b.into()))
- .saturating_add(T::DbWeight::get().reads(2_u64))
+ // Measured: `502 + b * (261 ±0)`
+ // Estimated: `36269`
+ // Minimum execution time: 1_012_000 picoseconds.
+ Weight::from_parts(1_081_000, 36269)
+ // Standard Error: 6_838
+ .saturating_add(Weight::from_parts(5_801_181, 0).saturating_mul(b.into()))
+ .saturating_add(T::DbWeight::get().reads(3_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
- /// Storage: Refungible TokenProperties (r:1 w:1)
+ /// Storage: Refungible TokenProperties (r:0 w:1)
/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
+ /// The range of component `b` is `[0, 64]`.
+ fn init_token_properties(b: u32, ) -> Weight {
+ // Proof Size summary in bytes:
+ // Measured: `0`
+ // Estimated: `0`
+ // Minimum execution time: 229_000 picoseconds.
+ Weight::from_parts(253_000, 0)
+ // Standard Error: 100_218
+ .saturating_add(Weight::from_parts(12_632_221, 0).saturating_mul(b.into()))
+ .saturating_add(T::DbWeight::get().writes(1_u64))
+ }
/// Storage: Common CollectionPropertyPermissions (r:1 w:0)
/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
+ /// Storage: Refungible TotalSupply (r:1 w:0)
+ /// Proof: Refungible TotalSupply (max_values: None, max_size: Some(40), added: 2515, mode: MaxEncodedLen)
+ /// Storage: Refungible TokenProperties (r:1 w:1)
+ /// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
/// The range of component `b` is `[0, 64]`.
fn delete_token_properties(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `463 + b * (33291 ±0)`
- // Estimated: `56460`
- // Minimum execution time: 11_368_000 picoseconds.
- Weight::from_parts(11_546_000, 56460)
- // Standard Error: 85_444
- .saturating_add(Weight::from_parts(24_644_980, 0).saturating_mul(b.into()))
- .saturating_add(T::DbWeight::get().reads(2_u64))
+ // Measured: `561 + b * (33291 ±0)`
+ // Estimated: `36269`
+ // Minimum execution time: 1_014_000 picoseconds.
+ Weight::from_parts(1_065_000, 36269)
+ // Standard Error: 39_536
+ .saturating_add(Weight::from_parts(24_125_838, 0).saturating_mul(b.into()))
+ .saturating_add(T::DbWeight::get().reads(3_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
/// Storage: Refungible TotalSupply (r:1 w:1)
@@ -448,10 +448,10 @@
/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
fn repartition_item() -> Weight {
// Proof Size summary in bytes:
- // Measured: `321`
- // Estimated: `7059`
- // Minimum execution time: 13_586_000 picoseconds.
- Weight::from_parts(14_489_000, 7059)
+ // Measured: `288`
+ // Estimated: `3554`
+ // Minimum execution time: 10_315_000 picoseconds.
+ Weight::from_parts(10_601_000, 3554)
.saturating_add(T::DbWeight::get().reads(2_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
}
@@ -459,10 +459,10 @@
/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
fn token_owner() -> Weight {
// Proof Size summary in bytes:
- // Measured: `321`
+ // Measured: `288`
// Estimated: `6118`
- // Minimum execution time: 7_049_000 picoseconds.
- Weight::from_parts(7_320_000, 6118)
+ // Minimum execution time: 4_898_000 picoseconds.
+ Weight::from_parts(5_136_000, 6118)
.saturating_add(T::DbWeight::get().reads(2_u64))
}
/// Storage: Refungible CollectionAllowance (r:0 w:1)
@@ -471,8 +471,8 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 6_432_000 picoseconds.
- Weight::from_parts(6_642_000, 0)
+ // Minimum execution time: 4_146_000 picoseconds.
+ Weight::from_parts(4_337_000, 0)
.saturating_add(T::DbWeight::get().writes(1_u64))
}
/// Storage: Refungible CollectionAllowance (r:1 w:0)
@@ -481,18 +481,18 @@
// Proof Size summary in bytes:
// Measured: `4`
// Estimated: `3576`
- // Minimum execution time: 3_030_000 picoseconds.
- Weight::from_parts(3_206_000, 3576)
+ // Minimum execution time: 2_170_000 picoseconds.
+ Weight::from_parts(2_301_000, 3576)
.saturating_add(T::DbWeight::get().reads(1_u64))
}
/// Storage: Refungible TokenProperties (r:1 w:1)
/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
fn repair_item() -> Weight {
// Proof Size summary in bytes:
- // Measured: `174`
+ // Measured: `120`
// Estimated: `36269`
- // Minimum execution time: 4_371_000 picoseconds.
- Weight::from_parts(4_555_000, 36269)
+ // Minimum execution time: 2_098_000 picoseconds.
+ Weight::from_parts(2_251_000, 36269)
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -504,10 +504,6 @@
/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
/// Storage: Refungible AccountBalance (r:1 w:1)
/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
- /// Storage: Refungible TokenProperties (r:1 w:1)
- /// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Refungible Balance (r:0 w:1)
/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
/// Storage: Refungible TotalSupply (r:0 w:1)
@@ -516,21 +512,17 @@
/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
fn create_item() -> Weight {
// Proof Size summary in bytes:
- // Measured: `285`
- // Estimated: `63471`
- // Minimum execution time: 30_759_000 picoseconds.
- Weight::from_parts(31_321_000, 63471)
- .saturating_add(RocksDbWeight::get().reads(4_u64))
- .saturating_add(RocksDbWeight::get().writes(6_u64))
+ // Measured: `4`
+ // Estimated: `3530`
+ // Minimum execution time: 11_341_000 picoseconds.
+ Weight::from_parts(11_741_000, 3530)
+ .saturating_add(RocksDbWeight::get().reads(2_u64))
+ .saturating_add(RocksDbWeight::get().writes(5_u64))
}
/// Storage: Refungible TokensMinted (r:1 w:1)
/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
/// Storage: Refungible AccountBalance (r:1 w:1)
/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
- /// Storage: Refungible TokenProperties (r:200 w:200)
- /// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Refungible Balance (r:0 w:200)
/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
/// Storage: Refungible TotalSupply (r:0 w:200)
@@ -540,26 +532,20 @@
/// The range of component `b` is `[0, 200]`.
fn create_multiple_items(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `285`
- // Estimated: `28192 + b * (35279 ±0)`
- // Minimum execution time: 4_024_000 picoseconds.
- Weight::from_parts(4_145_000, 28192)
- // Standard Error: 3_332
- .saturating_add(Weight::from_parts(8_967_757, 0).saturating_mul(b.into()))
- .saturating_add(RocksDbWeight::get().reads(3_u64))
- .saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(b.into())))
+ // Measured: `4`
+ // Estimated: `3530`
+ // Minimum execution time: 2_665_000 picoseconds.
+ Weight::from_parts(2_791_000, 3530)
+ // Standard Error: 996
+ .saturating_add(Weight::from_parts(4_343_736, 0).saturating_mul(b.into()))
+ .saturating_add(RocksDbWeight::get().reads(2_u64))
.saturating_add(RocksDbWeight::get().writes(2_u64))
- .saturating_add(RocksDbWeight::get().writes((4_u64).saturating_mul(b.into())))
- .saturating_add(Weight::from_parts(0, 35279).saturating_mul(b.into()))
+ .saturating_add(RocksDbWeight::get().writes((3_u64).saturating_mul(b.into())))
}
/// Storage: Refungible TokensMinted (r:1 w:1)
/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
/// Storage: Refungible AccountBalance (r:200 w:200)
/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
- /// Storage: Refungible TokenProperties (r:200 w:200)
- /// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Refungible Balance (r:0 w:200)
/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
/// Storage: Refungible TotalSupply (r:0 w:200)
@@ -569,26 +555,22 @@
/// The range of component `b` is `[0, 200]`.
fn create_multiple_items_ex_multiple_items(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `285`
- // Estimated: `25652 + b * (37819 ±0)`
- // Minimum execution time: 3_715_000 picoseconds.
- Weight::from_parts(3_881_000, 25652)
- // Standard Error: 3_275
- .saturating_add(Weight::from_parts(10_525_271, 0).saturating_mul(b.into()))
- .saturating_add(RocksDbWeight::get().reads(2_u64))
- .saturating_add(RocksDbWeight::get().reads((2_u64).saturating_mul(b.into())))
+ // Measured: `4`
+ // Estimated: `3481 + b * (2540 ±0)`
+ // Minimum execution time: 2_616_000 picoseconds.
+ Weight::from_parts(2_726_000, 3481)
+ // Standard Error: 665
+ .saturating_add(Weight::from_parts(5_554_066, 0).saturating_mul(b.into()))
+ .saturating_add(RocksDbWeight::get().reads(1_u64))
+ .saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(b.into())))
.saturating_add(RocksDbWeight::get().writes(1_u64))
- .saturating_add(RocksDbWeight::get().writes((5_u64).saturating_mul(b.into())))
- .saturating_add(Weight::from_parts(0, 37819).saturating_mul(b.into()))
+ .saturating_add(RocksDbWeight::get().writes((4_u64).saturating_mul(b.into())))
+ .saturating_add(Weight::from_parts(0, 2540).saturating_mul(b.into()))
}
/// Storage: Refungible TokensMinted (r:1 w:1)
/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
/// Storage: Refungible AccountBalance (r:200 w:200)
/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
- /// Storage: Refungible TokenProperties (r:1 w:1)
- /// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Refungible Balance (r:0 w:200)
/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
/// Storage: Refungible TotalSupply (r:0 w:1)
@@ -598,15 +580,15 @@
/// The range of component `b` is `[0, 200]`.
fn create_multiple_items_ex_multiple_owners(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `285`
- // Estimated: `60931 + b * (2540 ±0)`
- // Minimum execution time: 13_150_000 picoseconds.
- Weight::from_parts(15_655_930, 60931)
- // Standard Error: 4_170
- .saturating_add(Weight::from_parts(5_673_702, 0).saturating_mul(b.into()))
- .saturating_add(RocksDbWeight::get().reads(3_u64))
+ // Measured: `4`
+ // Estimated: `3481 + b * (2540 ±0)`
+ // Minimum execution time: 3_697_000 picoseconds.
+ Weight::from_parts(2_136_481, 3481)
+ // Standard Error: 567
+ .saturating_add(Weight::from_parts(4_390_621, 0).saturating_mul(b.into()))
+ .saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(b.into())))
- .saturating_add(RocksDbWeight::get().writes(3_u64))
+ .saturating_add(RocksDbWeight::get().writes(2_u64))
.saturating_add(RocksDbWeight::get().writes((3_u64).saturating_mul(b.into())))
.saturating_add(Weight::from_parts(0, 2540).saturating_mul(b.into()))
}
@@ -620,10 +602,10 @@
/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
fn burn_item_partial() -> Weight {
// Proof Size summary in bytes:
- // Measured: `490`
- // Estimated: `15717`
- // Minimum execution time: 28_992_000 picoseconds.
- Weight::from_parts(29_325_000, 15717)
+ // Measured: `456`
+ // Estimated: `8682`
+ // Minimum execution time: 22_859_000 picoseconds.
+ Weight::from_parts(23_295_000, 8682)
.saturating_add(RocksDbWeight::get().reads(5_u64))
.saturating_add(RocksDbWeight::get().writes(4_u64))
}
@@ -641,10 +623,10 @@
/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
fn burn_item_fully() -> Weight {
// Proof Size summary in bytes:
- // Measured: `375`
- // Estimated: `14070`
- // Minimum execution time: 27_980_000 picoseconds.
- Weight::from_parts(28_582_000, 14070)
+ // Measured: `341`
+ // Estimated: `3554`
+ // Minimum execution time: 21_477_000 picoseconds.
+ Weight::from_parts(22_037_000, 3554)
.saturating_add(RocksDbWeight::get().reads(4_u64))
.saturating_add(RocksDbWeight::get().writes(6_u64))
}
@@ -654,10 +636,10 @@
/// Proof: Refungible TotalSupply (max_values: None, max_size: Some(40), added: 2515, mode: MaxEncodedLen)
fn transfer_normal() -> Weight {
// Proof Size summary in bytes:
- // Measured: `398`
- // Estimated: `9623`
- // Minimum execution time: 18_746_000 picoseconds.
- Weight::from_parts(19_096_000, 9623)
+ // Measured: `365`
+ // Estimated: `6118`
+ // Minimum execution time: 13_714_000 picoseconds.
+ Weight::from_parts(14_050_000, 6118)
.saturating_add(RocksDbWeight::get().reads(3_u64))
.saturating_add(RocksDbWeight::get().writes(2_u64))
}
@@ -671,10 +653,10 @@
/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
fn transfer_creating() -> Weight {
// Proof Size summary in bytes:
- // Measured: `375`
- // Estimated: `13153`
- // Minimum execution time: 21_719_000 picoseconds.
- Weight::from_parts(22_219_000, 13153)
+ // Measured: `341`
+ // Estimated: `6118`
+ // Minimum execution time: 15_879_000 picoseconds.
+ Weight::from_parts(16_266_000, 6118)
.saturating_add(RocksDbWeight::get().reads(4_u64))
.saturating_add(RocksDbWeight::get().writes(4_u64))
}
@@ -688,10 +670,10 @@
/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
fn transfer_removing() -> Weight {
// Proof Size summary in bytes:
- // Measured: `490`
- // Estimated: `13153`
- // Minimum execution time: 24_784_000 picoseconds.
- Weight::from_parts(25_231_000, 13153)
+ // Measured: `456`
+ // Estimated: `6118`
+ // Minimum execution time: 18_186_000 picoseconds.
+ Weight::from_parts(18_682_000, 6118)
.saturating_add(RocksDbWeight::get().reads(4_u64))
.saturating_add(RocksDbWeight::get().writes(4_u64))
}
@@ -705,10 +687,10 @@
/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
fn transfer_creating_removing() -> Weight {
// Proof Size summary in bytes:
- // Measured: `375`
- // Estimated: `15693`
- // Minimum execution time: 24_865_000 picoseconds.
- Weight::from_parts(25_253_000, 15693)
+ // Measured: `341`
+ // Estimated: `6118`
+ // Minimum execution time: 17_943_000 picoseconds.
+ Weight::from_parts(18_333_000, 6118)
.saturating_add(RocksDbWeight::get().reads(5_u64))
.saturating_add(RocksDbWeight::get().writes(6_u64))
}
@@ -718,10 +700,10 @@
/// Proof: Refungible Allowance (max_values: None, max_size: Some(105), added: 2580, mode: MaxEncodedLen)
fn approve() -> Weight {
// Proof Size summary in bytes:
- // Measured: `256`
+ // Measured: `223`
// Estimated: `3554`
- // Minimum execution time: 12_318_000 picoseconds.
- Weight::from_parts(12_597_000, 3554)
+ // Minimum execution time: 8_391_000 picoseconds.
+ Weight::from_parts(8_637_000, 3554)
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -731,10 +713,10 @@
/// Proof: Refungible Allowance (max_values: None, max_size: Some(105), added: 2580, mode: MaxEncodedLen)
fn approve_from() -> Weight {
// Proof Size summary in bytes:
- // Measured: `244`
+ // Measured: `211`
// Estimated: `3554`
- // Minimum execution time: 12_276_000 picoseconds.
- Weight::from_parts(12_557_000, 3554)
+ // Minimum execution time: 8_519_000 picoseconds.
+ Weight::from_parts(8_760_000, 3554)
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -746,10 +728,10 @@
/// Proof: Refungible TotalSupply (max_values: None, max_size: Some(40), added: 2515, mode: MaxEncodedLen)
fn transfer_from_normal() -> Weight {
// Proof Size summary in bytes:
- // Measured: `528`
- // Estimated: `13193`
- // Minimum execution time: 26_852_000 picoseconds.
- Weight::from_parts(27_427_000, 13193)
+ // Measured: `495`
+ // Estimated: `6118`
+ // Minimum execution time: 19_554_000 picoseconds.
+ Weight::from_parts(20_031_000, 6118)
.saturating_add(RocksDbWeight::get().reads(4_u64))
.saturating_add(RocksDbWeight::get().writes(3_u64))
}
@@ -765,10 +747,10 @@
/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
fn transfer_from_creating() -> Weight {
// Proof Size summary in bytes:
- // Measured: `505`
- // Estimated: `16723`
- // Minimum execution time: 29_893_000 picoseconds.
- Weight::from_parts(30_345_000, 16723)
+ // Measured: `471`
+ // Estimated: `6118`
+ // Minimum execution time: 21_338_000 picoseconds.
+ Weight::from_parts(21_803_000, 6118)
.saturating_add(RocksDbWeight::get().reads(5_u64))
.saturating_add(RocksDbWeight::get().writes(5_u64))
}
@@ -784,10 +766,10 @@
/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
fn transfer_from_removing() -> Weight {
// Proof Size summary in bytes:
- // Measured: `620`
- // Estimated: `16723`
- // Minimum execution time: 32_784_000 picoseconds.
- Weight::from_parts(33_322_000, 16723)
+ // Measured: `586`
+ // Estimated: `6118`
+ // Minimum execution time: 24_179_000 picoseconds.
+ Weight::from_parts(24_647_000, 6118)
.saturating_add(RocksDbWeight::get().reads(5_u64))
.saturating_add(RocksDbWeight::get().writes(5_u64))
}
@@ -803,10 +785,10 @@
/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
fn transfer_from_creating_removing() -> Weight {
// Proof Size summary in bytes:
- // Measured: `505`
- // Estimated: `19263`
- // Minimum execution time: 32_987_000 picoseconds.
- Weight::from_parts(33_428_000, 19263)
+ // Measured: `471`
+ // Estimated: `6118`
+ // Minimum execution time: 24_008_000 picoseconds.
+ Weight::from_parts(24_545_000, 6118)
.saturating_add(RocksDbWeight::get().reads(6_u64))
.saturating_add(RocksDbWeight::get().writes(7_u64))
}
@@ -826,10 +808,10 @@
/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
fn burn_from() -> Weight {
// Proof Size summary in bytes:
- // Measured: `505`
- // Estimated: `17640`
- // Minimum execution time: 38_277_000 picoseconds.
- Weight::from_parts(38_983_000, 17640)
+ // Measured: `471`
+ // Estimated: `3570`
+ // Minimum execution time: 27_907_000 picoseconds.
+ Weight::from_parts(28_489_000, 3570)
.saturating_add(RocksDbWeight::get().reads(5_u64))
.saturating_add(RocksDbWeight::get().writes(7_u64))
}
@@ -838,45 +820,62 @@
/// The range of component `b` is `[0, 64]`.
fn set_token_property_permissions(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `281`
+ // Measured: `314`
// Estimated: `20191`
- // Minimum execution time: 2_254_000 picoseconds.
- Weight::from_parts(2_335_000, 20191)
- // Standard Error: 44_906
- .saturating_add(Weight::from_parts(12_118_499, 0).saturating_mul(b.into()))
+ // Minimum execution time: 1_460_000 picoseconds.
+ Weight::from_parts(1_564_000, 20191)
+ // Standard Error: 14_117
+ .saturating_add(Weight::from_parts(8_196_214, 0).saturating_mul(b.into()))
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
- /// Storage: Refungible TokenProperties (r:1 w:1)
- /// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
/// Storage: Common CollectionPropertyPermissions (r:1 w:0)
/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
+ /// Storage: Refungible TokenProperties (r:1 w:1)
+ /// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
+ /// Storage: Refungible TotalSupply (r:1 w:0)
+ /// Proof: Refungible TotalSupply (max_values: None, max_size: Some(40), added: 2515, mode: MaxEncodedLen)
/// The range of component `b` is `[0, 64]`.
fn set_token_properties(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `458 + b * (261 ±0)`
- // Estimated: `56460`
- // Minimum execution time: 11_249_000 picoseconds.
- Weight::from_parts(11_420_000, 56460)
- // Standard Error: 72_033
- .saturating_add(Weight::from_parts(7_008_012, 0).saturating_mul(b.into()))
- .saturating_add(RocksDbWeight::get().reads(2_u64))
+ // Measured: `502 + b * (261 ±0)`
+ // Estimated: `36269`
+ // Minimum execution time: 1_012_000 picoseconds.
+ Weight::from_parts(1_081_000, 36269)
+ // Standard Error: 6_838
+ .saturating_add(Weight::from_parts(5_801_181, 0).saturating_mul(b.into()))
+ .saturating_add(RocksDbWeight::get().reads(3_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
- /// Storage: Refungible TokenProperties (r:1 w:1)
+ /// Storage: Refungible TokenProperties (r:0 w:1)
/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
+ /// The range of component `b` is `[0, 64]`.
+ fn init_token_properties(b: u32, ) -> Weight {
+ // Proof Size summary in bytes:
+ // Measured: `0`
+ // Estimated: `0`
+ // Minimum execution time: 229_000 picoseconds.
+ Weight::from_parts(253_000, 0)
+ // Standard Error: 100_218
+ .saturating_add(Weight::from_parts(12_632_221, 0).saturating_mul(b.into()))
+ .saturating_add(RocksDbWeight::get().writes(1_u64))
+ }
/// Storage: Common CollectionPropertyPermissions (r:1 w:0)
/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
+ /// Storage: Refungible TotalSupply (r:1 w:0)
+ /// Proof: Refungible TotalSupply (max_values: None, max_size: Some(40), added: 2515, mode: MaxEncodedLen)
+ /// Storage: Refungible TokenProperties (r:1 w:1)
+ /// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
/// The range of component `b` is `[0, 64]`.
fn delete_token_properties(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `463 + b * (33291 ±0)`
- // Estimated: `56460`
- // Minimum execution time: 11_368_000 picoseconds.
- Weight::from_parts(11_546_000, 56460)
- // Standard Error: 85_444
- .saturating_add(Weight::from_parts(24_644_980, 0).saturating_mul(b.into()))
- .saturating_add(RocksDbWeight::get().reads(2_u64))
+ // Measured: `561 + b * (33291 ±0)`
+ // Estimated: `36269`
+ // Minimum execution time: 1_014_000 picoseconds.
+ Weight::from_parts(1_065_000, 36269)
+ // Standard Error: 39_536
+ .saturating_add(Weight::from_parts(24_125_838, 0).saturating_mul(b.into()))
+ .saturating_add(RocksDbWeight::get().reads(3_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
/// Storage: Refungible TotalSupply (r:1 w:1)
@@ -885,10 +884,10 @@
/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
fn repartition_item() -> Weight {
// Proof Size summary in bytes:
- // Measured: `321`
- // Estimated: `7059`
- // Minimum execution time: 13_586_000 picoseconds.
- Weight::from_parts(14_489_000, 7059)
+ // Measured: `288`
+ // Estimated: `3554`
+ // Minimum execution time: 10_315_000 picoseconds.
+ Weight::from_parts(10_601_000, 3554)
.saturating_add(RocksDbWeight::get().reads(2_u64))
.saturating_add(RocksDbWeight::get().writes(2_u64))
}
@@ -896,10 +895,10 @@
/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
fn token_owner() -> Weight {
// Proof Size summary in bytes:
- // Measured: `321`
+ // Measured: `288`
// Estimated: `6118`
- // Minimum execution time: 7_049_000 picoseconds.
- Weight::from_parts(7_320_000, 6118)
+ // Minimum execution time: 4_898_000 picoseconds.
+ Weight::from_parts(5_136_000, 6118)
.saturating_add(RocksDbWeight::get().reads(2_u64))
}
/// Storage: Refungible CollectionAllowance (r:0 w:1)
@@ -908,8 +907,8 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 6_432_000 picoseconds.
- Weight::from_parts(6_642_000, 0)
+ // Minimum execution time: 4_146_000 picoseconds.
+ Weight::from_parts(4_337_000, 0)
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
/// Storage: Refungible CollectionAllowance (r:1 w:0)
@@ -918,18 +917,18 @@
// Proof Size summary in bytes:
// Measured: `4`
// Estimated: `3576`
- // Minimum execution time: 3_030_000 picoseconds.
- Weight::from_parts(3_206_000, 3576)
+ // Minimum execution time: 2_170_000 picoseconds.
+ Weight::from_parts(2_301_000, 3576)
.saturating_add(RocksDbWeight::get().reads(1_u64))
}
/// Storage: Refungible TokenProperties (r:1 w:1)
/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
fn repair_item() -> Weight {
// Proof Size summary in bytes:
- // Measured: `174`
+ // Measured: `120`
// Estimated: `36269`
- // Minimum execution time: 4_371_000 picoseconds.
- Weight::from_parts(4_555_000, 36269)
+ // Minimum execution time: 2_098_000 picoseconds.
+ Weight::from_parts(2_251_000, 36269)
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
pallets/structure/src/weights.rsdiffbeforeafterboth--- a/pallets/structure/src/weights.rs
+++ b/pallets/structure/src/weights.rs
@@ -3,13 +3,13 @@
//! Autogenerated weights for pallet_structure
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2023-04-20, STEPS: `50`, REPEAT: `80`, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-09-26, STEPS: `50`, REPEAT: `400`, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! WORST CASE MAP SIZE: `1000000`
//! HOSTNAME: `bench-host`, CPU: `Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz`
//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
// Executed Command:
-// target/release/unique-collator
+// target/production/unique-collator
// benchmark
// pallet
// --pallet
@@ -20,7 +20,7 @@
// *
// --template=.maintain/frame-weight-template.hbs
// --steps=50
-// --repeat=80
+// --repeat=400
// --heap-pages=4096
// --output=./pallets/structure/src/weights.rs
@@ -45,10 +45,10 @@
/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)
fn find_parent() -> Weight {
// Proof Size summary in bytes:
- // Measured: `634`
- // Estimated: `7847`
- // Minimum execution time: 10_781_000 picoseconds.
- Weight::from_parts(11_675_000, 7847)
+ // Measured: `667`
+ // Estimated: `4325`
+ // Minimum execution time: 7_344_000 picoseconds.
+ Weight::from_parts(7_578_000, 4325)
.saturating_add(T::DbWeight::get().reads(2_u64))
}
}
@@ -61,10 +61,10 @@
/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)
fn find_parent() -> Weight {
// Proof Size summary in bytes:
- // Measured: `634`
- // Estimated: `7847`
- // Minimum execution time: 10_781_000 picoseconds.
- Weight::from_parts(11_675_000, 7847)
+ // Measured: `667`
+ // Estimated: `4325`
+ // Minimum execution time: 7_344_000 picoseconds.
+ Weight::from_parts(7_578_000, 4325)
.saturating_add(RocksDbWeight::get().reads(2_u64))
}
}
pallets/unique/src/weights.rsdiffbeforeafterboth--- a/pallets/unique/src/weights.rs
+++ b/pallets/unique/src/weights.rs
@@ -3,13 +3,13 @@
//! Autogenerated weights for pallet_unique
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2023-04-20, STEPS: `50`, REPEAT: `80`, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-09-26, STEPS: `50`, REPEAT: `400`, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! WORST CASE MAP SIZE: `1000000`
//! HOSTNAME: `bench-host`, CPU: `Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz`
//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
// Executed Command:
-// target/release/unique-collator
+// target/production/unique-collator
// benchmark
// pallet
// --pallet
@@ -20,7 +20,7 @@
// *
// --template=.maintain/frame-weight-template.hbs
// --steps=50
-// --repeat=80
+// --repeat=400
// --heap-pages=4096
// --output=./pallets/unique/src/weights.rs
@@ -57,6 +57,8 @@
/// Proof: Common DestroyedCollectionCount (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
/// Storage: System Account (r:2 w:2)
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
+ /// Storage: Common AdminAmount (r:0 w:1)
+ /// Proof: Common AdminAmount (max_values: None, max_size: Some(24), added: 2499, mode: MaxEncodedLen)
/// Storage: Common CollectionPropertyPermissions (r:0 w:1)
/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Common CollectionProperties (r:0 w:1)
@@ -66,11 +68,11 @@
fn create_collection() -> Weight {
// Proof Size summary in bytes:
// Measured: `245`
- // Estimated: `9174`
- // Minimum execution time: 31_198_000 picoseconds.
- Weight::from_parts(32_046_000, 9174)
+ // Estimated: `6196`
+ // Minimum execution time: 26_618_000 picoseconds.
+ Weight::from_parts(27_287_000, 6196)
.saturating_add(T::DbWeight::get().reads(4_u64))
- .saturating_add(T::DbWeight::get().writes(6_u64))
+ .saturating_add(T::DbWeight::get().writes(7_u64))
}
/// Storage: Common CollectionById (r:1 w:1)
/// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)
@@ -88,10 +90,10 @@
/// Proof: Common CollectionProperties (max_values: None, max_size: Some(40992), added: 43467, mode: MaxEncodedLen)
fn destroy_collection() -> Weight {
// Proof Size summary in bytes:
- // Measured: `1086`
- // Estimated: `9336`
- // Minimum execution time: 48_208_000 picoseconds.
- Weight::from_parts(49_031_000, 9336)
+ // Measured: `1200`
+ // Estimated: `4325`
+ // Minimum execution time: 37_428_000 picoseconds.
+ Weight::from_parts(38_258_000, 4325)
.saturating_add(T::DbWeight::get().reads(3_u64))
.saturating_add(T::DbWeight::get().writes(6_u64))
}
@@ -101,10 +103,10 @@
/// Proof: Common Allowlist (max_values: None, max_size: Some(70), added: 2545, mode: MaxEncodedLen)
fn add_to_allow_list() -> Weight {
// Proof Size summary in bytes:
- // Measured: `967`
+ // Measured: `1000`
// Estimated: `4325`
- // Minimum execution time: 14_852_000 picoseconds.
- Weight::from_parts(15_268_000, 4325)
+ // Minimum execution time: 9_968_000 picoseconds.
+ Weight::from_parts(10_388_000, 4325)
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -114,10 +116,10 @@
/// Proof: Common Allowlist (max_values: None, max_size: Some(70), added: 2545, mode: MaxEncodedLen)
fn remove_from_allow_list() -> Weight {
// Proof Size summary in bytes:
- // Measured: `1000`
+ // Measured: `1033`
// Estimated: `4325`
- // Minimum execution time: 14_595_000 picoseconds.
- Weight::from_parts(14_933_000, 4325)
+ // Minimum execution time: 9_600_000 picoseconds.
+ Weight::from_parts(9_974_000, 4325)
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -125,10 +127,10 @@
/// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)
fn change_collection_owner() -> Weight {
// Proof Size summary in bytes:
- // Measured: `967`
+ // Measured: `1000`
// Estimated: `4325`
- // Minimum execution time: 14_132_000 picoseconds.
- Weight::from_parts(14_501_000, 4325)
+ // Minimum execution time: 9_185_000 picoseconds.
+ Weight::from_parts(9_525_000, 4325)
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -140,10 +142,10 @@
/// Proof: Common AdminAmount (max_values: None, max_size: Some(24), added: 2499, mode: MaxEncodedLen)
fn add_collection_admin() -> Weight {
// Proof Size summary in bytes:
- // Measured: `967`
- // Estimated: `11349`
- // Minimum execution time: 17_229_000 picoseconds.
- Weight::from_parts(17_657_000, 11349)
+ // Measured: `1012`
+ // Estimated: `4325`
+ // Minimum execution time: 12_704_000 picoseconds.
+ Weight::from_parts(13_115_000, 4325)
.saturating_add(T::DbWeight::get().reads(3_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
}
@@ -156,9 +158,9 @@
fn remove_collection_admin() -> Weight {
// Proof Size summary in bytes:
// Measured: `1107`
- // Estimated: `11349`
- // Minimum execution time: 19_827_000 picoseconds.
- Weight::from_parts(20_479_000, 11349)
+ // Estimated: `4325`
+ // Minimum execution time: 14_185_000 picoseconds.
+ Weight::from_parts(14_492_000, 4325)
.saturating_add(T::DbWeight::get().reads(3_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
}
@@ -166,10 +168,10 @@
/// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)
fn set_collection_sponsor() -> Weight {
// Proof Size summary in bytes:
- // Measured: `967`
+ // Measured: `1000`
// Estimated: `4325`
- // Minimum execution time: 14_049_000 picoseconds.
- Weight::from_parts(14_420_000, 4325)
+ // Minimum execution time: 9_217_000 picoseconds.
+ Weight::from_parts(9_499_000, 4325)
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -177,10 +179,10 @@
/// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)
fn confirm_sponsorship() -> Weight {
// Proof Size summary in bytes:
- // Measured: `999`
+ // Measured: `1032`
// Estimated: `4325`
- // Minimum execution time: 13_689_000 picoseconds.
- Weight::from_parts(14_044_000, 4325)
+ // Minimum execution time: 8_993_000 picoseconds.
+ Weight::from_parts(9_264_000, 4325)
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -188,10 +190,10 @@
/// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)
fn remove_collection_sponsor() -> Weight {
// Proof Size summary in bytes:
- // Measured: `999`
+ // Measured: `1032`
// Estimated: `4325`
- // Minimum execution time: 13_275_000 picoseconds.
- Weight::from_parts(13_598_000, 4325)
+ // Minimum execution time: 8_804_000 picoseconds.
+ Weight::from_parts(9_302_000, 4325)
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -199,10 +201,10 @@
/// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)
fn set_transfers_enabled_flag() -> Weight {
// Proof Size summary in bytes:
- // Measured: `967`
+ // Measured: `1000`
// Estimated: `4325`
- // Minimum execution time: 9_411_000 picoseconds.
- Weight::from_parts(9_706_000, 4325)
+ // Minimum execution time: 5_985_000 picoseconds.
+ Weight::from_parts(6_155_000, 4325)
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -210,10 +212,10 @@
/// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)
fn set_collection_limits() -> Weight {
// Proof Size summary in bytes:
- // Measured: `967`
+ // Measured: `1000`
// Estimated: `4325`
- // Minimum execution time: 13_864_000 picoseconds.
- Weight::from_parts(14_368_000, 4325)
+ // Minimum execution time: 9_288_000 picoseconds.
+ Weight::from_parts(9_608_000, 4325)
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -221,10 +223,10 @@
/// Proof: Common CollectionProperties (max_values: None, max_size: Some(40992), added: 43467, mode: MaxEncodedLen)
fn force_repair_collection() -> Weight {
// Proof Size summary in bytes:
- // Measured: `265`
+ // Measured: `298`
// Estimated: `44457`
- // Minimum execution time: 7_104_000 picoseconds.
- Weight::from_parts(7_293_000, 44457)
+ // Minimum execution time: 4_904_000 picoseconds.
+ Weight::from_parts(5_142_000, 44457)
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -238,6 +240,8 @@
/// Proof: Common DestroyedCollectionCount (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
/// Storage: System Account (r:2 w:2)
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
+ /// Storage: Common AdminAmount (r:0 w:1)
+ /// Proof: Common AdminAmount (max_values: None, max_size: Some(24), added: 2499, mode: MaxEncodedLen)
/// Storage: Common CollectionPropertyPermissions (r:0 w:1)
/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Common CollectionProperties (r:0 w:1)
@@ -247,11 +251,11 @@
fn create_collection() -> Weight {
// Proof Size summary in bytes:
// Measured: `245`
- // Estimated: `9174`
- // Minimum execution time: 31_198_000 picoseconds.
- Weight::from_parts(32_046_000, 9174)
+ // Estimated: `6196`
+ // Minimum execution time: 26_618_000 picoseconds.
+ Weight::from_parts(27_287_000, 6196)
.saturating_add(RocksDbWeight::get().reads(4_u64))
- .saturating_add(RocksDbWeight::get().writes(6_u64))
+ .saturating_add(RocksDbWeight::get().writes(7_u64))
}
/// Storage: Common CollectionById (r:1 w:1)
/// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)
@@ -269,10 +273,10 @@
/// Proof: Common CollectionProperties (max_values: None, max_size: Some(40992), added: 43467, mode: MaxEncodedLen)
fn destroy_collection() -> Weight {
// Proof Size summary in bytes:
- // Measured: `1086`
- // Estimated: `9336`
- // Minimum execution time: 48_208_000 picoseconds.
- Weight::from_parts(49_031_000, 9336)
+ // Measured: `1200`
+ // Estimated: `4325`
+ // Minimum execution time: 37_428_000 picoseconds.
+ Weight::from_parts(38_258_000, 4325)
.saturating_add(RocksDbWeight::get().reads(3_u64))
.saturating_add(RocksDbWeight::get().writes(6_u64))
}
@@ -282,10 +286,10 @@
/// Proof: Common Allowlist (max_values: None, max_size: Some(70), added: 2545, mode: MaxEncodedLen)
fn add_to_allow_list() -> Weight {
// Proof Size summary in bytes:
- // Measured: `967`
+ // Measured: `1000`
// Estimated: `4325`
- // Minimum execution time: 14_852_000 picoseconds.
- Weight::from_parts(15_268_000, 4325)
+ // Minimum execution time: 9_968_000 picoseconds.
+ Weight::from_parts(10_388_000, 4325)
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -295,10 +299,10 @@
/// Proof: Common Allowlist (max_values: None, max_size: Some(70), added: 2545, mode: MaxEncodedLen)
fn remove_from_allow_list() -> Weight {
// Proof Size summary in bytes:
- // Measured: `1000`
+ // Measured: `1033`
// Estimated: `4325`
- // Minimum execution time: 14_595_000 picoseconds.
- Weight::from_parts(14_933_000, 4325)
+ // Minimum execution time: 9_600_000 picoseconds.
+ Weight::from_parts(9_974_000, 4325)
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -306,10 +310,10 @@
/// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)
fn change_collection_owner() -> Weight {
// Proof Size summary in bytes:
- // Measured: `967`
+ // Measured: `1000`
// Estimated: `4325`
- // Minimum execution time: 14_132_000 picoseconds.
- Weight::from_parts(14_501_000, 4325)
+ // Minimum execution time: 9_185_000 picoseconds.
+ Weight::from_parts(9_525_000, 4325)
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -321,10 +325,10 @@
/// Proof: Common AdminAmount (max_values: None, max_size: Some(24), added: 2499, mode: MaxEncodedLen)
fn add_collection_admin() -> Weight {
// Proof Size summary in bytes:
- // Measured: `967`
- // Estimated: `11349`
- // Minimum execution time: 17_229_000 picoseconds.
- Weight::from_parts(17_657_000, 11349)
+ // Measured: `1012`
+ // Estimated: `4325`
+ // Minimum execution time: 12_704_000 picoseconds.
+ Weight::from_parts(13_115_000, 4325)
.saturating_add(RocksDbWeight::get().reads(3_u64))
.saturating_add(RocksDbWeight::get().writes(2_u64))
}
@@ -337,9 +341,9 @@
fn remove_collection_admin() -> Weight {
// Proof Size summary in bytes:
// Measured: `1107`
- // Estimated: `11349`
- // Minimum execution time: 19_827_000 picoseconds.
- Weight::from_parts(20_479_000, 11349)
+ // Estimated: `4325`
+ // Minimum execution time: 14_185_000 picoseconds.
+ Weight::from_parts(14_492_000, 4325)
.saturating_add(RocksDbWeight::get().reads(3_u64))
.saturating_add(RocksDbWeight::get().writes(2_u64))
}
@@ -347,10 +351,10 @@
/// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)
fn set_collection_sponsor() -> Weight {
// Proof Size summary in bytes:
- // Measured: `967`
+ // Measured: `1000`
// Estimated: `4325`
- // Minimum execution time: 14_049_000 picoseconds.
- Weight::from_parts(14_420_000, 4325)
+ // Minimum execution time: 9_217_000 picoseconds.
+ Weight::from_parts(9_499_000, 4325)
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -358,10 +362,10 @@
/// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)
fn confirm_sponsorship() -> Weight {
// Proof Size summary in bytes:
- // Measured: `999`
+ // Measured: `1032`
// Estimated: `4325`
- // Minimum execution time: 13_689_000 picoseconds.
- Weight::from_parts(14_044_000, 4325)
+ // Minimum execution time: 8_993_000 picoseconds.
+ Weight::from_parts(9_264_000, 4325)
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -369,10 +373,10 @@
/// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)
fn remove_collection_sponsor() -> Weight {
// Proof Size summary in bytes:
- // Measured: `999`
+ // Measured: `1032`
// Estimated: `4325`
- // Minimum execution time: 13_275_000 picoseconds.
- Weight::from_parts(13_598_000, 4325)
+ // Minimum execution time: 8_804_000 picoseconds.
+ Weight::from_parts(9_302_000, 4325)
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -380,10 +384,10 @@
/// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)
fn set_transfers_enabled_flag() -> Weight {
// Proof Size summary in bytes:
- // Measured: `967`
+ // Measured: `1000`
// Estimated: `4325`
- // Minimum execution time: 9_411_000 picoseconds.
- Weight::from_parts(9_706_000, 4325)
+ // Minimum execution time: 5_985_000 picoseconds.
+ Weight::from_parts(6_155_000, 4325)
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -391,10 +395,10 @@
/// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)
fn set_collection_limits() -> Weight {
// Proof Size summary in bytes:
- // Measured: `967`
+ // Measured: `1000`
// Estimated: `4325`
- // Minimum execution time: 13_864_000 picoseconds.
- Weight::from_parts(14_368_000, 4325)
+ // Minimum execution time: 9_288_000 picoseconds.
+ Weight::from_parts(9_608_000, 4325)
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -402,10 +406,10 @@
/// Proof: Common CollectionProperties (max_values: None, max_size: Some(40992), added: 43467, mode: MaxEncodedLen)
fn force_repair_collection() -> Weight {
// Proof Size summary in bytes:
- // Measured: `265`
+ // Measured: `298`
// Estimated: `44457`
- // Minimum execution time: 7_104_000 picoseconds.
- Weight::from_parts(7_293_000, 44457)
+ // Minimum execution time: 4_904_000 picoseconds.
+ Weight::from_parts(5_142_000, 44457)
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
primitives/common/src/constants.rsdiffbeforeafterboth--- a/primitives/common/src/constants.rs
+++ b/primitives/common/src/constants.rs
@@ -52,10 +52,10 @@
pub const SESSION_LENGTH: BlockNumber = HOURS;
// Targeting 0.1 UNQ per transfer
-pub const WEIGHT_TO_FEE_COEFF: u64 = /*<weight2fee>*/76_840_511_488_584_762/*</weight2fee>*/;
+pub const WEIGHT_TO_FEE_COEFF: u64 = /*<weight2fee>*/77_334_604_063_436_322/*</weight2fee>*/;
// Targeting 0.15 UNQ per transfer via ETH
-pub const MIN_GAS_PRICE: u64 = /*<mingasprice>*/1_906_626_161_453/*</mingasprice>*/;
+pub const MIN_GAS_PRICE: u64 = /*<mingasprice>*/1_920_639_188_722/*</mingasprice>*/;
/// We assume that ~10% of the block weight is consumed by `on_initalize` handlers.
/// This is used to limit the maximal weight of a single extrinsic.
runtime/common/runtime_apis.rsdiffbeforeafterboth--- a/runtime/common/runtime_apis.rs
+++ b/runtime/common/runtime_apis.rs
@@ -692,7 +692,7 @@
{
use codec::Decode;
- let uxt_decode = <<Block as BlockT>::Extrinsic as Decode>::decode(&mut &uxt)
+ let uxt_decode = <<Block as BlockT>::Extrinsic as Decode>::decode(&mut &*uxt)
.map_err(|_| DispatchError::Other("failed to decode the extrinsic"));
let uxt = match uxt_decode {
runtime/common/weights/xcm.rsdiffbeforeafterboth--- a/runtime/common/weights/xcm.rs
+++ b/runtime/common/weights/xcm.rs
@@ -3,12 +3,12 @@
//! Autogenerated weights for pallet_xcm
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2023-04-20, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-09-26, STEPS: `50`, REPEAT: 400, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! WORST CASE MAP SIZE: `1000000`
//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
// Executed Command:
-// target/release/unique-collator
+// target/production/unique-collator
// benchmark
// pallet
// --pallet
@@ -19,7 +19,7 @@
// *
// --template=.maintain/external-weight-template.hbs
// --steps=50
-// --repeat=80
+// --repeat=400
// --heap-pages=4096
// --output=./runtime/common/weights/xcm.rs
@@ -47,10 +47,10 @@
/// Proof Skipped: ParachainSystem PendingUpwardMessages (max_values: Some(1), max_size: None, mode: Measured)
fn send() -> Weight {
// Proof Size summary in bytes:
- // Measured: `211`
- // Estimated: `10460`
- // Minimum execution time: 17_089_000 picoseconds.
- Weight::from_parts(17_615_000, 10460)
+ // Measured: `278`
+ // Estimated: `3743`
+ // Minimum execution time: 12_999_000 picoseconds.
+ Weight::from_parts(13_426_000, 3743)
.saturating_add(T::DbWeight::get().reads(5_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
}
@@ -58,28 +58,28 @@
/// Proof: ParachainInfo ParachainId (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
fn teleport_assets() -> Weight {
// Proof Size summary in bytes:
- // Measured: `136`
+ // Measured: `169`
// Estimated: `1489`
- // Minimum execution time: 14_443_000 picoseconds.
- Weight::from_parts(14_895_000, 1489)
+ // Minimum execution time: 10_299_000 picoseconds.
+ Weight::from_parts(10_647_000, 1489)
.saturating_add(T::DbWeight::get().reads(1_u64))
}
/// Storage: ParachainInfo ParachainId (r:1 w:0)
/// Proof: ParachainInfo ParachainId (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
fn reserve_transfer_assets() -> Weight {
// Proof Size summary in bytes:
- // Measured: `136`
+ // Measured: `169`
// Estimated: `1489`
- // Minimum execution time: 14_340_000 picoseconds.
- Weight::from_parts(14_748_000, 1489)
+ // Minimum execution time: 10_094_000 picoseconds.
+ Weight::from_parts(10_464_000, 1489)
.saturating_add(T::DbWeight::get().reads(1_u64))
}
fn execute() -> Weight {
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 5_266_000 picoseconds.
- Weight::from_parts(5_430_000, 0)
+ // Minimum execution time: 3_485_000 picoseconds.
+ Weight::from_parts(3_664_000, 0)
}
/// Storage: PolkadotXcm SupportedVersion (r:0 w:1)
/// Proof Skipped: PolkadotXcm SupportedVersion (max_values: None, max_size: None, mode: Measured)
@@ -87,8 +87,8 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 5_621_000 picoseconds.
- Weight::from_parts(5_888_000, 0)
+ // Minimum execution time: 3_717_000 picoseconds.
+ Weight::from_parts(3_866_000, 0)
.saturating_add(T::DbWeight::get().writes(1_u64))
}
/// Storage: PolkadotXcm SafeXcmVersion (r:0 w:1)
@@ -97,8 +97,8 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 2_087_000 picoseconds.
- Weight::from_parts(2_218_000, 0)
+ // Minimum execution time: 1_328_000 picoseconds.
+ Weight::from_parts(1_400_000, 0)
.saturating_add(T::DbWeight::get().writes(1_u64))
}
/// Storage: PolkadotXcm VersionNotifiers (r:1 w:1)
@@ -119,10 +119,10 @@
/// Proof Skipped: PolkadotXcm Queries (max_values: None, max_size: None, mode: Measured)
fn force_subscribe_version_notify() -> Weight {
// Proof Size summary in bytes:
- // Measured: `211`
- // Estimated: `16043`
- // Minimum execution time: 21_067_000 picoseconds.
- Weight::from_parts(21_466_000, 16043)
+ // Measured: `278`
+ // Estimated: `3743`
+ // Minimum execution time: 16_057_000 picoseconds.
+ Weight::from_parts(16_483_000, 3743)
.saturating_add(T::DbWeight::get().reads(7_u64))
.saturating_add(T::DbWeight::get().writes(5_u64))
}
@@ -142,21 +142,31 @@
/// Proof Skipped: PolkadotXcm Queries (max_values: None, max_size: None, mode: Measured)
fn force_unsubscribe_version_notify() -> Weight {
// Proof Size summary in bytes:
- // Measured: `394`
- // Estimated: `15628`
- // Minimum execution time: 23_986_000 picoseconds.
- Weight::from_parts(25_328_000, 15628)
+ // Measured: `461`
+ // Estimated: `3926`
+ // Minimum execution time: 18_009_000 picoseconds.
+ Weight::from_parts(18_565_000, 3926)
.saturating_add(T::DbWeight::get().reads(6_u64))
.saturating_add(T::DbWeight::get().writes(4_u64))
}
+ /// Storage: PolkadotXcm XcmExecutionSuspended (r:0 w:1)
+ /// Proof Skipped: PolkadotXcm XcmExecutionSuspended (max_values: Some(1), max_size: None, mode: Measured)
+ fn force_suspension() -> Weight {
+ // Proof Size summary in bytes:
+ // Measured: `0`
+ // Estimated: `0`
+ // Minimum execution time: 1_378_000 picoseconds.
+ Weight::from_parts(1_447_000, 0)
+ .saturating_add(T::DbWeight::get().writes(1_u64))
+ }
/// Storage: PolkadotXcm SupportedVersion (r:4 w:2)
/// Proof Skipped: PolkadotXcm SupportedVersion (max_values: None, max_size: None, mode: Measured)
fn migrate_supported_version() -> Weight {
// Proof Size summary in bytes:
- // Measured: `131`
- // Estimated: `11021`
- // Minimum execution time: 15_073_000 picoseconds.
- Weight::from_parts(15_451_000, 11021)
+ // Measured: `196`
+ // Estimated: `11086`
+ // Minimum execution time: 10_770_000 picoseconds.
+ Weight::from_parts(11_090_000, 11086)
.saturating_add(T::DbWeight::get().reads(4_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
}
@@ -164,10 +174,10 @@
/// Proof Skipped: PolkadotXcm VersionNotifiers (max_values: None, max_size: None, mode: Measured)
fn migrate_version_notifiers() -> Weight {
// Proof Size summary in bytes:
- // Measured: `135`
- // Estimated: `11025`
- // Minimum execution time: 14_840_000 picoseconds.
- Weight::from_parts(15_347_000, 11025)
+ // Measured: `200`
+ // Estimated: `11090`
+ // Minimum execution time: 10_760_000 picoseconds.
+ Weight::from_parts(11_091_000, 11090)
.saturating_add(T::DbWeight::get().reads(4_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
}
@@ -175,10 +185,10 @@
/// Proof Skipped: PolkadotXcm VersionNotifyTargets (max_values: None, max_size: None, mode: Measured)
fn already_notified_target() -> Weight {
// Proof Size summary in bytes:
- // Measured: `142`
- // Estimated: `13507`
- // Minimum execution time: 16_215_000 picoseconds.
- Weight::from_parts(16_461_000, 13507)
+ // Measured: `207`
+ // Estimated: `13572`
+ // Minimum execution time: 12_026_000 picoseconds.
+ Weight::from_parts(12_321_000, 13572)
.saturating_add(T::DbWeight::get().reads(5_u64))
}
/// Storage: PolkadotXcm VersionNotifyTargets (r:2 w:1)
@@ -195,10 +205,10 @@
/// Proof Skipped: ParachainSystem PendingUpwardMessages (max_values: Some(1), max_size: None, mode: Measured)
fn notify_current_targets() -> Weight {
// Proof Size summary in bytes:
- // Measured: `278`
- // Estimated: `17013`
- // Minimum execution time: 21_705_000 picoseconds.
- Weight::from_parts(22_313_000, 17013)
+ // Measured: `345`
+ // Estimated: `6285`
+ // Minimum execution time: 15_508_000 picoseconds.
+ Weight::from_parts(15_885_000, 6285)
.saturating_add(T::DbWeight::get().reads(7_u64))
.saturating_add(T::DbWeight::get().writes(3_u64))
}
@@ -206,20 +216,20 @@
/// Proof Skipped: PolkadotXcm VersionNotifyTargets (max_values: None, max_size: None, mode: Measured)
fn notify_target_migration_fail() -> Weight {
// Proof Size summary in bytes:
- // Measured: `172`
- // Estimated: `8587`
- // Minimum execution time: 7_869_000 picoseconds.
- Weight::from_parts(8_052_000, 8587)
+ // Measured: `239`
+ // Estimated: `8654`
+ // Minimum execution time: 5_580_000 picoseconds.
+ Weight::from_parts(5_753_000, 8654)
.saturating_add(T::DbWeight::get().reads(3_u64))
}
/// Storage: PolkadotXcm VersionNotifyTargets (r:4 w:2)
/// Proof Skipped: PolkadotXcm VersionNotifyTargets (max_values: None, max_size: None, mode: Measured)
fn migrate_version_notify_targets() -> Weight {
// Proof Size summary in bytes:
- // Measured: `142`
- // Estimated: `11032`
- // Minimum execution time: 15_340_000 picoseconds.
- Weight::from_parts(15_738_000, 11032)
+ // Measured: `207`
+ // Estimated: `11097`
+ // Minimum execution time: 10_951_000 picoseconds.
+ Weight::from_parts(11_341_000, 11097)
.saturating_add(T::DbWeight::get().reads(4_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
}
@@ -237,16 +247,12 @@
/// Proof Skipped: ParachainSystem PendingUpwardMessages (max_values: Some(1), max_size: None, mode: Measured)
fn migrate_and_notify_old_targets() -> Weight {
// Proof Size summary in bytes:
- // Measured: `284`
- // Estimated: `21999`
- // Minimum execution time: 27_809_000 picoseconds.
- Weight::from_parts(28_290_000, 21999)
+ // Measured: `349`
+ // Estimated: `11239`
+ // Minimum execution time: 19_990_000 picoseconds.
+ Weight::from_parts(20_433_000, 11239)
.saturating_add(T::DbWeight::get().reads(9_u64))
.saturating_add(T::DbWeight::get().writes(4_u64))
- }
-
- fn force_suspension() -> Weight {
- Default::default()
}
}
runtime/tests/src/tests.rsdiffbeforeafterboth1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.2// This file is part of Unique Network.34// Unique Network is free software: you can redistribute it and/or modify5// it under the terms of the GNU General Public License as published by6// the Free Software Foundation, either version 3 of the License, or7// (at your option) any later version.89// Unique Network is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12// GNU General Public License for more details.1314// You should have received a copy of the GNU General Public License15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.1617// Tests to be written here18use crate::{Test, TestCrossAccountId, CollectionCreationPrice, RuntimeOrigin, Unique, new_test_ext};19use up_data_structs::{20 COLLECTION_NUMBER_LIMIT, CollectionId, CreateItemData, CreateFungibleData, CreateNftData,21 CreateReFungibleData, MAX_DECIMAL_POINTS, COLLECTION_ADMINS_LIMIT, TokenId,22 MAX_TOKEN_OWNERSHIP, CreateCollectionData, CollectionMode, AccessMode, CollectionPermissions,23 PropertyKeyPermission, PropertyPermission, Property, CollectionPropertiesVec,24 CollectionPropertiesPermissionsVec,25};26use frame_support::{assert_noop, assert_ok, assert_err};27use sp_std::convert::TryInto;28use pallet_evm::account::CrossAccountId;29use pallet_common::Error as CommonError;30use pallet_unique::Error as UniqueError;3132fn add_balance(user: u64, value: u64) {33 const DONOR_USER: u64 = 999;34 assert_ok!(<pallet_balances::Pallet<Test>>::force_set_balance(35 RuntimeOrigin::root(),36 DONOR_USER,37 value,38 ));39 assert_ok!(<pallet_balances::Pallet<Test>>::force_transfer(40 RuntimeOrigin::root(),41 DONOR_USER,42 user,43 value44 ));45}4647fn default_nft_data() -> CreateNftData {48 CreateNftData {49 properties: vec![Property {50 key: b"test-prop".to_vec().try_into().unwrap(),51 value: b"test-nft-prop".to_vec().try_into().unwrap(),52 }]53 .try_into()54 .unwrap(),55 }56}5758fn default_fungible_data() -> CreateFungibleData {59 CreateFungibleData { value: 5 }60}6162fn default_re_fungible_data() -> CreateReFungibleData {63 CreateReFungibleData {64 pieces: 1023,65 properties: vec![Property {66 key: b"test-prop".to_vec().try_into().unwrap(),67 value: b"test-nft-prop".to_vec().try_into().unwrap(),68 }]69 .try_into()70 .unwrap(),71 }72}7374fn create_test_collection_for_owner(75 mode: &CollectionMode,76 owner: u64,77 id: CollectionId,78) -> CollectionId {79 add_balance(owner, CollectionCreationPrice::get() as u64 + 1);8081 let col_name1: Vec<u16> = "Test1\0".encode_utf16().collect::<Vec<u16>>();82 let col_desc1: Vec<u16> = "TestDescription1\0".encode_utf16().collect::<Vec<u16>>();83 let token_prefix1: Vec<u8> = b"token_prefix1\0".to_vec();84 let token_property_permissions: CollectionPropertiesPermissionsVec =85 vec![PropertyKeyPermission {86 key: b"test-prop".to_vec().try_into().unwrap(),87 permission: PropertyPermission {88 mutable: true,89 collection_admin: false,90 token_owner: true,91 },92 }]93 .try_into()94 .unwrap();95 let properties: CollectionPropertiesVec = vec![Property {96 key: b"test-collection-prop".to_vec().try_into().unwrap(),97 value: b"test-collection-value".to_vec().try_into().unwrap(),98 }]99 .try_into()100 .unwrap();101102 let data = CreateCollectionData {103 name: col_name1.try_into().unwrap(),104 description: col_desc1.try_into().unwrap(),105 token_prefix: token_prefix1.try_into().unwrap(),106 mode: mode.clone(),107 token_property_permissions: token_property_permissions.clone(),108 properties: properties.clone(),109 ..Default::default()110 };111112 let origin1 = RuntimeOrigin::signed(owner);113 assert_ok!(Unique::create_collection_ex(origin1, data));114115 let saved_col_name: Vec<u16> = "Test1\0".encode_utf16().collect::<Vec<u16>>();116 let saved_description: Vec<u16> = "TestDescription1\0".encode_utf16().collect::<Vec<u16>>();117 let saved_prefix: Vec<u8> = b"token_prefix1\0".to_vec();118 assert_eq!(119 <pallet_common::CollectionById<Test>>::get(id)120 .unwrap()121 .owner,122 owner123 );124 assert_eq!(125 <pallet_common::CollectionById<Test>>::get(id).unwrap().name,126 saved_col_name127 );128 assert_eq!(129 <pallet_common::CollectionById<Test>>::get(id).unwrap().mode,130 *mode131 );132 assert_eq!(133 <pallet_common::CollectionById<Test>>::get(id)134 .unwrap()135 .description,136 saved_description137 );138 assert_eq!(139 <pallet_common::CollectionById<Test>>::get(id)140 .unwrap()141 .token_prefix,142 saved_prefix143 );144 assert_eq!(145 get_collection_property_permissions(id).as_slice(),146 token_property_permissions.as_slice()147 );148 assert_eq!(149 get_collection_properties(id).as_slice(),150 properties.as_slice()151 );152 id153}154155fn get_collection_property_permissions(collection_id: CollectionId) -> Vec<PropertyKeyPermission> {156 <pallet_common::Pallet<Test>>::property_permissions(collection_id)157 .into_iter()158 .map(|(key, permission)| PropertyKeyPermission { key, permission })159 .collect()160}161162fn get_collection_properties(collection_id: CollectionId) -> Vec<Property> {163 <pallet_common::Pallet<Test>>::collection_properties(collection_id)164 .into_iter()165 .map(|(key, value)| Property { key, value })166 .collect()167}168169fn get_token_properties(collection_id: CollectionId, token_id: TokenId) -> Vec<Property> {170 <pallet_nonfungible::Pallet<Test>>::token_properties((collection_id, token_id))171 .into_iter()172 .map(|(key, value)| Property { key, value })173 .collect()174}175176fn create_test_collection(mode: &CollectionMode, id: CollectionId) -> CollectionId {177 create_test_collection_for_owner(&mode, 1, id)178}179180fn create_test_item(collection_id: CollectionId, data: &CreateItemData) {181 let origin1 = RuntimeOrigin::signed(1);182 assert_ok!(Unique::create_item(183 origin1,184 collection_id,185 account(1),186 data.clone()187 ));188}189190fn account(sub: u64) -> TestCrossAccountId {191 TestCrossAccountId::from_sub(sub)192}193194// Use cases tests region195// #region196197#[test]198fn check_not_sufficient_founds() {199 new_test_ext().execute_with(|| {200 let acc: u64 = 1;201 <pallet_balances::Pallet<Test>>::force_set_balance(RuntimeOrigin::root(), acc, 0).unwrap();202203 let name: Vec<u16> = "Test1\0".encode_utf16().collect::<Vec<u16>>();204 let description: Vec<u16> = "TestDescription1\0".encode_utf16().collect::<Vec<u16>>();205 let token_prefix: Vec<u8> = b"token_prefix1\0".to_vec();206207 let data = CreateCollectionData {208 name: name.try_into().unwrap(),209 description: description.try_into().unwrap(),210 token_prefix: token_prefix.try_into().unwrap(),211 mode: CollectionMode::NFT,212 ..Default::default()213 };214215 let result = Unique::create_collection_ex(RuntimeOrigin::signed(acc), data);216 assert_err!(result, <CommonError<Test>>::NotSufficientFounds);217 });218}219220#[test]221fn create_fungible_collection_fails_with_large_decimal_numbers() {222 new_test_ext().execute_with(|| {223 let col_name1: Vec<u16> = "Test1\0".encode_utf16().collect::<Vec<u16>>();224 let col_desc1: Vec<u16> = "TestDescription1\0".encode_utf16().collect::<Vec<u16>>();225 let token_prefix1: Vec<u8> = b"token_prefix1\0".to_vec();226227 let data = CreateCollectionData {228 name: col_name1.try_into().unwrap(),229 description: col_desc1.try_into().unwrap(),230 token_prefix: token_prefix1.try_into().unwrap(),231 mode: CollectionMode::Fungible(MAX_DECIMAL_POINTS + 1),232 ..Default::default()233 };234235 let origin1 = RuntimeOrigin::signed(1);236 assert_noop!(237 Unique::create_collection_ex(origin1, data),238 UniqueError::<Test>::CollectionDecimalPointLimitExceeded239 );240 });241}242243#[test]244fn create_nft_item() {245 new_test_ext().execute_with(|| {246 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));247248 let data = default_nft_data();249 create_test_item(collection_id, &data.clone().into());250251 assert_eq!(252 get_token_properties(collection_id, TokenId(1)).as_slice(),253 data.properties.as_slice(),254 );255 });256}257258// Use cases tests region259// #region260#[test]261fn create_nft_multiple_items() {262 new_test_ext().execute_with(|| {263 create_test_collection(&CollectionMode::NFT, CollectionId(1));264265 let origin1 = RuntimeOrigin::signed(1);266267 let items_data = vec![default_nft_data(), default_nft_data(), default_nft_data()];268269 assert_ok!(Unique::create_multiple_items(270 origin1,271 CollectionId(1),272 account(1),273 items_data274 .clone()275 .into_iter()276 .map(|d| { d.into() })277 .collect()278 ));279 for (index, data) in items_data.into_iter().enumerate() {280 assert_eq!(281 get_token_properties(CollectionId(1), TokenId(index as u32 + 1)).as_slice(),282 data.properties.as_slice()283 );284 }285 });286}287288#[test]289fn create_refungible_item() {290 new_test_ext().execute_with(|| {291 let collection_id = create_test_collection(&CollectionMode::ReFungible, CollectionId(1));292293 let data = default_re_fungible_data();294 create_test_item(collection_id, &data.clone().into());295 let balance =296 <pallet_refungible::Balance<Test>>::get((collection_id, TokenId(1), account(1)));297 assert_eq!(balance, 1023);298 });299}300301#[test]302fn create_multiple_refungible_items() {303 new_test_ext().execute_with(|| {304 create_test_collection(&CollectionMode::ReFungible, CollectionId(1));305306 let origin1 = RuntimeOrigin::signed(1);307308 let items_data = vec![309 default_re_fungible_data(),310 default_re_fungible_data(),311 default_re_fungible_data(),312 ];313314 assert_ok!(Unique::create_multiple_items(315 origin1,316 CollectionId(1),317 account(1),318 items_data319 .clone()320 .into_iter()321 .map(|d| { d.into() })322 .collect()323 ));324 for (index, _data) in items_data.into_iter().enumerate() {325 let balance = <pallet_refungible::Balance<Test>>::get((326 CollectionId(1),327 TokenId((index + 1) as u32),328 account(1),329 ));330 assert_eq!(balance, 1023);331 }332 });333}334335#[test]336fn create_fungible_item() {337 new_test_ext().execute_with(|| {338 let collection_id = create_test_collection(&CollectionMode::Fungible(3), CollectionId(1));339340 let data = default_fungible_data();341 create_test_item(collection_id, &data.into());342343 assert_eq!(344 <pallet_fungible::Balance<Test>>::get((collection_id, account(1))),345 5346 );347 });348}349350//#[test]351// fn create_multiple_fungible_items() {352// new_test_ext().execute_with(|| {353// default_limits();354355// create_test_collection(&CollectionMode::Fungible(3), CollectionId(1));356357// let origin1 = RuntimeOrigin::signed(1);358359// let items_data = vec![default_fungible_data(), default_fungible_data(), default_fungible_data()];360361// assert_ok!(Unique::create_multiple_items(362// origin1.clone(),363// 1,364// 1,365// items_data.clone().into_iter().map(|d| { d.into() }).collect()366// ));367368// for (index, _) in items_data.iter().enumerate() {369// assert_eq!(Unique::fungible_item_id(1, (index + 1) as TokenId).value, 5);370// }371// assert_eq!(Unique::balance_count(1, 1), 3000);372// assert_eq!(Unique::address_tokens(1, 1), [1, 2, 3]);373// });374// }375376#[test]377fn transfer_fungible_item() {378 new_test_ext().execute_with(|| {379 let collection_id = create_test_collection(&CollectionMode::Fungible(3), CollectionId(1));380381 let origin1 = RuntimeOrigin::signed(1);382 let origin2 = RuntimeOrigin::signed(2);383384 let data = default_fungible_data();385 create_test_item(collection_id, &data.into());386387 assert_eq!(388 <pallet_fungible::Balance<Test>>::get((CollectionId(1), account(1))),389 5390 );391392 // change owner scenario393 assert_ok!(Unique::transfer(394 origin1,395 account(2),396 CollectionId(1),397 TokenId(0),398 5399 ));400 assert_eq!(401 <pallet_fungible::Balance<Test>>::get((CollectionId(1), account(1))),402 0403 );404405 // split item scenario406 assert_ok!(Unique::transfer(407 origin2.clone(),408 account(3),409 CollectionId(1),410 TokenId(0),411 3412 ));413414 // split item and new owner has account scenario415 assert_ok!(Unique::transfer(416 origin2,417 account(3),418 CollectionId(1),419 TokenId(0),420 1421 ));422 assert_eq!(423 <pallet_fungible::Balance<Test>>::get((CollectionId(1), account(2))),424 1425 );426 assert_eq!(427 <pallet_fungible::Balance<Test>>::get((CollectionId(1), account(3))),428 4429 );430 });431}432433#[test]434fn transfer_refungible_item() {435 new_test_ext().execute_with(|| {436 let collection_id = create_test_collection(&CollectionMode::ReFungible, CollectionId(1));437438 // Create RFT 1 in 1023 pieces for account 1439 let data = default_re_fungible_data();440 create_test_item(collection_id, &data.clone().into());441 assert_eq!(442 <pallet_refungible::AccountBalance<Test>>::get((collection_id, account(1))),443 1444 );445 assert_eq!(446 <pallet_refungible::Balance<Test>>::get((collection_id, TokenId(1), account(1))),447 1023448 );449 assert_eq!(450 <pallet_refungible::Owned<Test>>::get((collection_id, account(1), TokenId(1))),451 true452 );453454 // Account 1 transfers all 1023 pieces of RFT 1 to account 2455 let origin1 = RuntimeOrigin::signed(1);456 let origin2 = RuntimeOrigin::signed(2);457 assert_ok!(Unique::transfer(458 origin1,459 account(2),460 CollectionId(1),461 TokenId(1),462 1023463 ));464 assert_eq!(465 <pallet_refungible::Balance<Test>>::get((collection_id, TokenId(1), account(2))),466 1023467 );468 assert_eq!(469 <pallet_refungible::AccountBalance<Test>>::get((collection_id, account(1))),470 0471 );472 assert_eq!(473 <pallet_refungible::AccountBalance<Test>>::get((collection_id, account(2))),474 1475 );476 assert_eq!(477 <pallet_refungible::Owned<Test>>::get((collection_id, account(1), TokenId(1))),478 false479 );480 assert_eq!(481 <pallet_refungible::Owned<Test>>::get((collection_id, account(2), TokenId(1))),482 true483 );484485 // Account 2 transfers 500 pieces of RFT 1 to account 3486 assert_ok!(Unique::transfer(487 origin2.clone(),488 account(3),489 CollectionId(1),490 TokenId(1),491 500492 ));493 assert_eq!(494 <pallet_refungible::Balance<Test>>::get((collection_id, TokenId(1), account(2))),495 523496 );497 assert_eq!(498 <pallet_refungible::Balance<Test>>::get((collection_id, TokenId(1), account(3))),499 500500 );501 assert_eq!(502 <pallet_refungible::AccountBalance<Test>>::get((collection_id, account(2))),503 1504 );505 assert_eq!(506 <pallet_refungible::AccountBalance<Test>>::get((collection_id, account(3))),507 1508 );509 assert_eq!(510 <pallet_refungible::Owned<Test>>::get((collection_id, account(2), TokenId(1))),511 true512 );513 assert_eq!(514 <pallet_refungible::Owned<Test>>::get((collection_id, account(3), TokenId(1))),515 true516 );517518 // Account 2 transfers 200 more pieces of RFT 1 to account 3 with pre-existing balance519 assert_ok!(Unique::transfer(520 origin2,521 account(3),522 CollectionId(1),523 TokenId(1),524 200525 ));526 assert_eq!(527 <pallet_refungible::Balance<Test>>::get((collection_id, TokenId(1), account(2))),528 323529 );530 assert_eq!(531 <pallet_refungible::Balance<Test>>::get((collection_id, TokenId(1), account(3))),532 700533 );534 assert_eq!(535 <pallet_refungible::AccountBalance<Test>>::get((collection_id, account(2))),536 1537 );538 assert_eq!(539 <pallet_refungible::AccountBalance<Test>>::get((collection_id, account(3))),540 1541 );542 assert_eq!(543 <pallet_refungible::Owned<Test>>::get((collection_id, account(2), TokenId(1))),544 true545 );546 assert_eq!(547 <pallet_refungible::Owned<Test>>::get((collection_id, account(3), TokenId(1))),548 true549 );550 });551}552553#[test]554fn transfer_nft_item() {555 new_test_ext().execute_with(|| {556 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));557558 let data = default_nft_data();559 create_test_item(collection_id, &data.into());560 assert_eq!(561 <pallet_nonfungible::AccountBalance<Test>>::get((collection_id, account(1))),562 1563 );564 assert_eq!(565 <pallet_nonfungible::Owned<Test>>::get((collection_id, account(1), TokenId(1))),566 true567 );568569 let origin1 = RuntimeOrigin::signed(1);570 // default scenario571 assert_ok!(Unique::transfer(572 origin1,573 account(2),574 CollectionId(1),575 TokenId(1),576 1577 ));578 assert_eq!(579 <pallet_nonfungible::AccountBalance<Test>>::get((collection_id, account(1))),580 0581 );582 assert_eq!(583 <pallet_nonfungible::AccountBalance<Test>>::get((collection_id, account(2))),584 1585 );586 assert_eq!(587 <pallet_nonfungible::Owned<Test>>::get((collection_id, account(1), TokenId(1))),588 false589 );590 assert_eq!(591 <pallet_nonfungible::Owned<Test>>::get((collection_id, account(2), TokenId(1))),592 true593 );594 });595}596597#[test]598fn transfer_nft_item_wrong_value() {599 new_test_ext().execute_with(|| {600 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));601602 let data = default_nft_data();603 create_test_item(collection_id, &data.into());604 assert_eq!(605 <pallet_nonfungible::AccountBalance<Test>>::get((collection_id, account(1))),606 1607 );608 assert_eq!(609 <pallet_nonfungible::Owned<Test>>::get((collection_id, account(1), TokenId(1))),610 true611 );612613 let origin1 = RuntimeOrigin::signed(1);614615 assert_noop!(616 Unique::transfer(origin1, account(2), CollectionId(1), TokenId(1), 2)617 .map_err(|e| e.error),618 <pallet_nonfungible::Error::<Test>>::NonfungibleItemsHaveNoAmount619 );620 });621}622623#[test]624fn transfer_nft_item_zero_value() {625 new_test_ext().execute_with(|| {626 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));627628 let data = default_nft_data();629 create_test_item(collection_id, &data.into());630 assert_eq!(631 <pallet_nonfungible::AccountBalance<Test>>::get((collection_id, account(1))),632 1633 );634 assert_eq!(635 <pallet_nonfungible::Owned<Test>>::get((collection_id, account(1), TokenId(1))),636 true637 );638639 let origin1 = RuntimeOrigin::signed(1);640641 // Transferring 0 amount works on NFT...642 assert_ok!(Unique::transfer(643 origin1,644 account(2),645 CollectionId(1),646 TokenId(1),647 0648 ));649 // ... and results in no transfer650 assert_eq!(651 <pallet_nonfungible::AccountBalance<Test>>::get((collection_id, account(1))),652 1653 );654 assert_eq!(655 <pallet_nonfungible::Owned<Test>>::get((collection_id, account(1), TokenId(1))),656 true657 );658 });659}660661#[test]662fn nft_approve_and_transfer_from() {663 new_test_ext().execute_with(|| {664 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));665666 let data = default_nft_data();667 create_test_item(collection_id, &data.into());668669 let origin1 = RuntimeOrigin::signed(1);670 let origin2 = RuntimeOrigin::signed(2);671672 assert_eq!(673 <pallet_nonfungible::AccountBalance<Test>>::get((collection_id, account(1))),674 1675 );676 assert_eq!(677 <pallet_nonfungible::Owned<Test>>::get((collection_id, account(1), TokenId(1))),678 true679 );680681 // neg transfer_from682 assert_noop!(683 Unique::transfer_from(684 origin2.clone(),685 account(1),686 account(2),687 CollectionId(1),688 TokenId(1),689 1690 )691 .map_err(|e| e.error),692 CommonError::<Test>::ApprovedValueTooLow693 );694695 // do approve696 assert_ok!(Unique::approve(697 origin1,698 account(2),699 CollectionId(1),700 TokenId(1),701 1702 ));703 assert_eq!(704 <pallet_nonfungible::Allowance<Test>>::get((CollectionId(1), TokenId(1))).unwrap(),705 account(2)706 );707708 assert_ok!(Unique::transfer_from(709 origin2,710 account(1),711 account(3),712 CollectionId(1),713 TokenId(1),714 1715 ));716 assert!(717 <pallet_nonfungible::Allowance<Test>>::get((CollectionId(1), TokenId(1))).is_none()718 );719 });720}721722#[test]723fn nft_approve_and_transfer_from_allow_list() {724 new_test_ext().execute_with(|| {725 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));726727 let origin1 = RuntimeOrigin::signed(1);728 let origin2 = RuntimeOrigin::signed(2);729730 // Create NFT 1 for account 1731 let data = default_nft_data();732 create_test_item(collection_id, &data.clone().into());733 assert_eq!(734 <pallet_nonfungible::AccountBalance<Test>>::get((collection_id, account(1))),735 1736 );737 assert_eq!(738 <pallet_nonfungible::Owned<Test>>::get((collection_id, account(1), TokenId(1))),739 true740 );741742 // Allow allow-list users to mint and add accounts 1, 2, and 3 to allow-list743 assert_ok!(Unique::set_collection_permissions(744 origin1.clone(),745 CollectionId(1),746 CollectionPermissions {747 mint_mode: Some(true),748 access: Some(AccessMode::AllowList),749 nesting: None,750 }751 ));752 assert_ok!(Unique::add_to_allow_list(753 origin1.clone(),754 CollectionId(1),755 account(1)756 ));757 assert_ok!(Unique::add_to_allow_list(758 origin1.clone(),759 CollectionId(1),760 account(2)761 ));762 assert_ok!(Unique::add_to_allow_list(763 origin1.clone(),764 CollectionId(1),765 account(3)766 ));767768 // Account 1 approves account 2 for NFT 1769 assert_ok!(Unique::approve(770 origin1.clone(),771 account(2),772 CollectionId(1),773 TokenId(1),774 1775 ));776 assert_eq!(777 <pallet_nonfungible::Allowance<Test>>::get((CollectionId(1), TokenId(1))).unwrap(),778 account(2)779 );780781 // Account 2 transfers NFT 1 from account 1 to account 3782 assert_ok!(Unique::transfer_from(783 origin2,784 account(1),785 account(3),786 CollectionId(1),787 TokenId(1),788 1789 ));790 assert!(791 <pallet_nonfungible::Allowance<Test>>::get((CollectionId(1), TokenId(1))).is_none()792 );793 });794}795796#[test]797fn refungible_approve_and_transfer_from() {798 new_test_ext().execute_with(|| {799 let collection_id = create_test_collection(&CollectionMode::ReFungible, CollectionId(1));800801 let origin1 = RuntimeOrigin::signed(1);802 let origin2 = RuntimeOrigin::signed(2);803804 // Create RFT 1 in 1023 pieces for account 1805 let data = default_re_fungible_data();806 create_test_item(collection_id, &data.into());807808 assert_eq!(809 <pallet_refungible::AccountBalance<Test>>::get((collection_id, account(1))),810 1811 );812 assert_eq!(813 <pallet_refungible::Balance<Test>>::get((collection_id, TokenId(1), account(1))),814 1023815 );816 assert_eq!(817 <pallet_refungible::Owned<Test>>::get((collection_id, account(1), TokenId(1))),818 true819 );820821 // Allow public minting, enable allow-list and add accounts 1, 2, 3 to allow-list822 assert_ok!(Unique::set_collection_permissions(823 origin1.clone(),824 CollectionId(1),825 CollectionPermissions {826 mint_mode: Some(true),827 access: Some(AccessMode::AllowList),828 nesting: None,829 }830 ));831 assert_ok!(Unique::add_to_allow_list(832 origin1.clone(),833 CollectionId(1),834 account(1)835 ));836 assert_ok!(Unique::add_to_allow_list(837 origin1.clone(),838 CollectionId(1),839 account(2)840 ));841 assert_ok!(Unique::add_to_allow_list(842 origin1.clone(),843 CollectionId(1),844 account(3)845 ));846847 // Account 1 approves account 2 for 1023 pieces of RFT 1848 assert_ok!(Unique::approve(849 origin1,850 account(2),851 CollectionId(1),852 TokenId(1),853 1023854 ));855 assert_eq!(856 <pallet_refungible::Allowance<Test>>::get((857 CollectionId(1),858 TokenId(1),859 account(1),860 account(2)861 )),862 1023863 );864865 // Account 2 transfers 100 pieces of RFT 1 from account 1 to account 3866 assert_ok!(Unique::transfer_from(867 origin2,868 account(1),869 account(3),870 CollectionId(1),871 TokenId(1),872 100873 ));874 assert_eq!(875 <pallet_refungible::AccountBalance<Test>>::get((collection_id, account(1))),876 1877 );878 assert_eq!(879 <pallet_refungible::AccountBalance<Test>>::get((collection_id, account(3))),880 1881 );882 assert_eq!(883 <pallet_refungible::Balance<Test>>::get((collection_id, TokenId(1), account(1))),884 923885 );886 assert_eq!(887 <pallet_refungible::Balance<Test>>::get((collection_id, TokenId(1), account(3))),888 100889 );890 assert_eq!(891 <pallet_refungible::Owned<Test>>::get((collection_id, account(1), TokenId(1))),892 true893 );894 assert_eq!(895 <pallet_refungible::Owned<Test>>::get((collection_id, account(1), TokenId(1))),896 true897 );898 assert_eq!(899 <pallet_refungible::Allowance<Test>>::get((900 CollectionId(1),901 TokenId(1),902 account(1),903 account(2)904 )),905 923906 );907 });908}909910#[test]911fn fungible_approve_and_transfer_from() {912 new_test_ext().execute_with(|| {913 let collection_id = create_test_collection(&CollectionMode::Fungible(3), CollectionId(1));914915 let data = default_fungible_data();916 create_test_item(collection_id, &data.into());917918 let origin1 = RuntimeOrigin::signed(1);919 let origin2 = RuntimeOrigin::signed(2);920921 assert_ok!(Unique::set_collection_permissions(922 origin1.clone(),923 CollectionId(1),924 CollectionPermissions {925 mint_mode: Some(true),926 access: Some(AccessMode::AllowList),927 nesting: None,928 }929 ));930 assert_ok!(Unique::add_to_allow_list(931 origin1.clone(),932 CollectionId(1),933 account(1)934 ));935 assert_ok!(Unique::add_to_allow_list(936 origin1.clone(),937 CollectionId(1),938 account(2)939 ));940 assert_ok!(Unique::add_to_allow_list(941 origin1.clone(),942 CollectionId(1),943 account(3)944 ));945946 // do approve947 assert_ok!(Unique::approve(948 origin1.clone(),949 account(2),950 CollectionId(1),951 TokenId(0),952 5953 ));954 assert_eq!(955 <pallet_fungible::Allowance<Test>>::get((CollectionId(1), account(1), account(2))),956 5957 );958 assert_ok!(Unique::approve(959 origin1,960 account(3),961 CollectionId(1),962 TokenId(0),963 5964 ));965 assert_eq!(966 <pallet_fungible::Allowance<Test>>::get((CollectionId(1), account(1), account(2))),967 5968 );969 assert_eq!(970 <pallet_fungible::Allowance<Test>>::get((CollectionId(1), account(1), account(3))),971 5972 );973974 assert_ok!(Unique::transfer_from(975 origin2.clone(),976 account(1),977 account(3),978 CollectionId(1),979 TokenId(0),980 4981 ));982983 assert_eq!(984 <pallet_fungible::Allowance<Test>>::get((CollectionId(1), account(1), account(2))),985 1986 );987988 assert_noop!(989 Unique::transfer_from(990 origin2,991 account(1),992 account(3),993 CollectionId(1),994 TokenId(0),995 4996 )997 .map_err(|e| e.error),998 CommonError::<Test>::ApprovedValueTooLow999 );1000 });1001}10021003#[test]1004fn change_collection_owner() {1005 new_test_ext().execute_with(|| {1006 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));10071008 let origin1 = RuntimeOrigin::signed(1);1009 assert_ok!(Unique::change_collection_owner(origin1, collection_id, 2));1010 assert_eq!(1011 <pallet_common::CollectionById<Test>>::get(collection_id)1012 .unwrap()1013 .owner,1014 21015 );1016 });1017}10181019#[test]1020fn destroy_collection() {1021 new_test_ext().execute_with(|| {1022 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));10231024 let origin1 = RuntimeOrigin::signed(1);1025 assert_ok!(Unique::destroy_collection(origin1, collection_id));1026 });1027}10281029#[test]1030fn burn_nft_item() {1031 new_test_ext().execute_with(|| {1032 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));10331034 let origin1 = RuntimeOrigin::signed(1);10351036 let data = default_nft_data();1037 create_test_item(collection_id, &data.into());10381039 // check balance (collection with id = 1, user id = 1)1040 assert_eq!(1041 <pallet_nonfungible::AccountBalance<Test>>::get((collection_id, account(1))),1042 11043 );10441045 // burn item1046 assert_ok!(Unique::burn_item(1047 origin1.clone(),1048 collection_id,1049 TokenId(1),1050 11051 ));1052 assert_eq!(1053 <pallet_nonfungible::AccountBalance<Test>>::get((collection_id, account(1))),1054 01055 );1056 });1057}10581059#[test]1060fn burn_same_nft_item_twice() {1061 new_test_ext().execute_with(|| {1062 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));10631064 let origin1 = RuntimeOrigin::signed(1);10651066 let data = default_nft_data();1067 create_test_item(collection_id, &data.into());10681069 // check balance (collection with id = 1, user id = 1)1070 assert_eq!(1071 <pallet_nonfungible::AccountBalance<Test>>::get((collection_id, account(1))),1072 11073 );10741075 // burn item1076 assert_ok!(Unique::burn_item(1077 origin1.clone(),1078 collection_id,1079 TokenId(1),1080 11081 ));10821083 // burn item again1084 assert_noop!(1085 Unique::burn_item(origin1, collection_id, TokenId(1), 1).map_err(|e| e.error),1086 CommonError::<Test>::TokenNotFound1087 );10881089 assert_eq!(1090 <pallet_nonfungible::AccountBalance<Test>>::get((collection_id, account(1))),1091 01092 );1093 });1094}10951096#[test]1097fn burn_fungible_item() {1098 new_test_ext().execute_with(|| {1099 let collection_id = create_test_collection(&CollectionMode::Fungible(3), CollectionId(1));11001101 let origin1 = RuntimeOrigin::signed(1);1102 assert_ok!(Unique::add_collection_admin(1103 origin1.clone(),1104 collection_id,1105 account(2)1106 ));11071108 let data = default_fungible_data();1109 create_test_item(collection_id, &data.into());11101111 // check balance (collection with id = 1, user id = 1)1112 assert_eq!(1113 <pallet_fungible::Balance<Test>>::get((collection_id, account(1))),1114 51115 );11161117 // burn item1118 assert_ok!(Unique::burn_item(1119 origin1.clone(),1120 CollectionId(1),1121 TokenId(0),1122 51123 ));1124 assert_noop!(1125 Unique::burn_item(origin1, CollectionId(1), TokenId(0), 5).map_err(|e| e.error),1126 CommonError::<Test>::TokenValueTooLow1127 );11281129 assert_eq!(1130 <pallet_fungible::Balance<Test>>::get((collection_id, account(1))),1131 01132 );1133 });1134}11351136#[test]1137fn burn_fungible_item_with_token_id() {1138 new_test_ext().execute_with(|| {1139 let collection_id = create_test_collection(&CollectionMode::Fungible(3), CollectionId(1));11401141 let origin1 = RuntimeOrigin::signed(1);1142 assert_ok!(Unique::add_collection_admin(1143 origin1.clone(),1144 collection_id,1145 account(2)1146 ));11471148 let data = default_fungible_data();1149 create_test_item(collection_id, &data.into());11501151 // check balance (collection with id = 1, user id = 1)1152 assert_eq!(1153 <pallet_fungible::Balance<Test>>::get((collection_id, account(1))),1154 51155 );11561157 // Try to burn item using Token ID1158 assert_noop!(1159 Unique::burn_item(origin1, CollectionId(1), TokenId(1), 5).map_err(|e| e.error),1160 <pallet_fungible::Error::<Test>>::FungibleItemsHaveNoId1161 );1162 });1163}1164#[test]1165fn burn_refungible_item() {1166 new_test_ext().execute_with(|| {1167 let collection_id = create_test_collection(&CollectionMode::ReFungible, CollectionId(1));1168 let origin1 = RuntimeOrigin::signed(1);11691170 assert_ok!(Unique::set_collection_permissions(1171 origin1.clone(),1172 collection_id,1173 CollectionPermissions {1174 mint_mode: Some(true),1175 access: Some(AccessMode::AllowList),1176 nesting: None,1177 }1178 ));1179 assert_ok!(Unique::add_to_allow_list(1180 origin1.clone(),1181 collection_id,1182 account(1)1183 ));11841185 assert_ok!(Unique::add_collection_admin(1186 origin1.clone(),1187 collection_id,1188 account(2)1189 ));11901191 let data = default_re_fungible_data();1192 create_test_item(collection_id, &data.into());11931194 // check balance (collection with id = 1, user id = 2)1195 assert_eq!(1196 <pallet_refungible::AccountBalance<Test>>::get((collection_id, account(1))),1197 11198 );1199 assert_eq!(1200 <pallet_refungible::Balance<Test>>::get((collection_id, TokenId(1), account(1))),1201 10231202 );12031204 // burn item1205 assert_ok!(Unique::burn_item(1206 origin1.clone(),1207 collection_id,1208 TokenId(1),1209 10231210 ));1211 assert_noop!(1212 Unique::burn_item(origin1, collection_id, TokenId(1), 1023).map_err(|e| e.error),1213 CommonError::<Test>::TokenValueTooLow1214 );12151216 assert_eq!(1217 <pallet_refungible::Balance<Test>>::get((collection_id, TokenId(1), account(1))),1218 01219 );1220 });1221}12221223#[test]1224fn add_collection_admin() {1225 new_test_ext().execute_with(|| {1226 let collection1_id =1227 create_test_collection_for_owner(&CollectionMode::NFT, 1, CollectionId(1));1228 let origin1 = RuntimeOrigin::signed(1);12291230 // Add collection admins1231 assert_ok!(Unique::add_collection_admin(1232 origin1.clone(),1233 collection1_id,1234 account(2)1235 ));1236 assert_ok!(Unique::add_collection_admin(1237 origin1,1238 collection1_id,1239 account(3)1240 ));12411242 // Owner is not an admin by default1243 assert_eq!(1244 <pallet_common::IsAdmin<Test>>::get((CollectionId(1), account(1))),1245 false1246 );1247 assert!(<pallet_common::IsAdmin<Test>>::get((1248 CollectionId(1),1249 account(2)1250 )));1251 assert!(<pallet_common::IsAdmin<Test>>::get((1252 CollectionId(1),1253 account(3)1254 )));1255 });1256}12571258#[test]1259fn remove_collection_admin() {1260 new_test_ext().execute_with(|| {1261 let collection1_id =1262 create_test_collection_for_owner(&CollectionMode::NFT, 1, CollectionId(1));1263 let origin1 = RuntimeOrigin::signed(1);12641265 // Add collection admins 2 and 31266 assert_ok!(Unique::add_collection_admin(1267 origin1.clone(),1268 collection1_id,1269 account(2)1270 ));1271 assert_ok!(Unique::add_collection_admin(1272 origin1.clone(),1273 collection1_id,1274 account(3)1275 ));12761277 assert!(<pallet_common::IsAdmin<Test>>::get((1278 CollectionId(1),1279 account(2)1280 )));1281 assert!(<pallet_common::IsAdmin<Test>>::get((1282 CollectionId(1),1283 account(3)1284 )));12851286 // remove admin 31287 assert_ok!(Unique::remove_collection_admin(1288 origin1,1289 CollectionId(1),1290 account(3)1291 ));12921293 // 2 is still admin, 3 is not an admin anymore1294 assert!(<pallet_common::IsAdmin<Test>>::get((1295 CollectionId(1),1296 account(2)1297 )));1298 assert_eq!(1299 <pallet_common::IsAdmin<Test>>::get((CollectionId(1), account(3))),1300 false1301 );1302 });1303}13041305#[test]1306fn balance_of() {1307 new_test_ext().execute_with(|| {1308 let nft_collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));1309 let fungible_collection_id =1310 create_test_collection(&CollectionMode::Fungible(3), CollectionId(2));1311 let re_fungible_collection_id =1312 create_test_collection(&CollectionMode::ReFungible, CollectionId(3));13131314 // check balance before1315 assert_eq!(1316 <pallet_nonfungible::AccountBalance<Test>>::get((nft_collection_id, account(1))),1317 01318 );1319 assert_eq!(1320 <pallet_fungible::Balance<Test>>::get((fungible_collection_id, account(1))),1321 01322 );1323 assert_eq!(1324 <pallet_refungible::AccountBalance<Test>>::get((re_fungible_collection_id, account(1))),1325 01326 );13271328 let nft_data = default_nft_data();1329 create_test_item(nft_collection_id, &nft_data.into());13301331 let fungible_data = default_fungible_data();1332 create_test_item(fungible_collection_id, &fungible_data.into());13331334 let re_fungible_data = default_re_fungible_data();1335 create_test_item(re_fungible_collection_id, &re_fungible_data.into());13361337 // check balance (collection with id = 1, user id = 1)1338 assert_eq!(1339 <pallet_nonfungible::AccountBalance<Test>>::get((nft_collection_id, account(1))),1340 11341 );1342 assert_eq!(1343 <pallet_fungible::Balance<Test>>::get((fungible_collection_id, account(1))),1344 51345 );1346 assert_eq!(1347 <pallet_refungible::AccountBalance<Test>>::get((re_fungible_collection_id, account(1))),1348 11349 );13501351 assert_eq!(1352 <pallet_nonfungible::Owned<Test>>::get((nft_collection_id, account(1), TokenId(1))),1353 true1354 );1355 assert_eq!(1356 <pallet_refungible::Owned<Test>>::get((1357 re_fungible_collection_id,1358 account(1),1359 TokenId(1)1360 )),1361 true1362 );1363 });1364}13651366#[test]1367fn approve() {1368 new_test_ext().execute_with(|| {1369 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));13701371 let data = default_nft_data();1372 create_test_item(collection_id, &data.into());13731374 let origin1 = RuntimeOrigin::signed(1);13751376 // approve1377 assert_ok!(Unique::approve(1378 origin1,1379 account(2),1380 CollectionId(1),1381 TokenId(1),1382 11383 ));1384 assert_eq!(1385 <pallet_nonfungible::Allowance<Test>>::get((CollectionId(1), TokenId(1))).unwrap(),1386 account(2)1387 );1388 });1389}13901391#[test]1392fn transfer_from() {1393 new_test_ext().execute_with(|| {1394 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));1395 let origin1 = RuntimeOrigin::signed(1);1396 let origin2 = RuntimeOrigin::signed(2);13971398 let data = default_nft_data();1399 create_test_item(collection_id, &data.into());14001401 // approve1402 assert_ok!(Unique::approve(1403 origin1.clone(),1404 account(2),1405 CollectionId(1),1406 TokenId(1),1407 11408 ));1409 assert_eq!(1410 <pallet_nonfungible::Allowance<Test>>::get((CollectionId(1), TokenId(1))).unwrap(),1411 account(2)1412 );14131414 assert_ok!(Unique::set_collection_permissions(1415 origin1.clone(),1416 CollectionId(1),1417 CollectionPermissions {1418 mint_mode: Some(true),1419 access: Some(AccessMode::AllowList),1420 nesting: None,1421 }1422 ));1423 assert_ok!(Unique::add_to_allow_list(1424 origin1.clone(),1425 CollectionId(1),1426 account(1)1427 ));1428 assert_ok!(Unique::add_to_allow_list(1429 origin1.clone(),1430 CollectionId(1),1431 account(2)1432 ));1433 assert_ok!(Unique::add_to_allow_list(1434 origin1,1435 CollectionId(1),1436 account(3)1437 ));14381439 assert_ok!(Unique::transfer_from(1440 origin2,1441 account(1),1442 account(2),1443 CollectionId(1),1444 TokenId(1),1445 11446 ));14471448 // after transfer1449 assert_eq!(1450 <pallet_nonfungible::AccountBalance<Test>>::get((CollectionId(1), account(1))),1451 01452 );1453 assert_eq!(1454 <pallet_nonfungible::AccountBalance<Test>>::get((CollectionId(1), account(2))),1455 11456 );1457 });1458}14591460// #endregion14611462// Coverage tests region1463// #region14641465#[test]1466fn owner_can_add_address_to_allow_list() {1467 new_test_ext().execute_with(|| {1468 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));14691470 let origin1 = RuntimeOrigin::signed(1);1471 assert_ok!(Unique::add_to_allow_list(1472 origin1,1473 collection_id,1474 account(2)1475 ));1476 assert!(<pallet_common::Allowlist<Test>>::get((1477 collection_id,1478 account(2)1479 )));1480 });1481}14821483#[test]1484fn admin_can_add_address_to_allow_list() {1485 new_test_ext().execute_with(|| {1486 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));1487 let origin1 = RuntimeOrigin::signed(1);1488 let origin2 = RuntimeOrigin::signed(2);14891490 assert_ok!(Unique::add_collection_admin(1491 origin1,1492 collection_id,1493 account(2)1494 ));1495 assert_ok!(Unique::add_to_allow_list(1496 origin2,1497 collection_id,1498 account(3)1499 ));1500 assert!(<pallet_common::Allowlist<Test>>::get((1501 collection_id,1502 account(3)1503 )));1504 });1505}15061507#[test]1508fn nonprivileged_user_cannot_add_address_to_allow_list() {1509 new_test_ext().execute_with(|| {1510 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));15111512 let origin2 = RuntimeOrigin::signed(2);1513 assert_noop!(1514 Unique::add_to_allow_list(origin2, collection_id, account(3)),1515 CommonError::<Test>::NoPermission1516 );1517 });1518}15191520#[test]1521fn nobody_can_add_address_to_allow_list_of_nonexisting_collection() {1522 new_test_ext().execute_with(|| {1523 let origin1 = RuntimeOrigin::signed(1);15241525 assert_noop!(1526 Unique::add_to_allow_list(origin1, CollectionId(1), account(2)),1527 CommonError::<Test>::CollectionNotFound1528 );1529 });1530}15311532#[test]1533fn nobody_can_add_address_to_allow_list_of_deleted_collection() {1534 new_test_ext().execute_with(|| {1535 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));15361537 let origin1 = RuntimeOrigin::signed(1);1538 assert_ok!(Unique::destroy_collection(origin1.clone(), collection_id));1539 assert_noop!(1540 Unique::add_to_allow_list(origin1, collection_id, account(2)),1541 CommonError::<Test>::CollectionNotFound1542 );1543 });1544}15451546// If address is already added to allow list, nothing happens1547#[test]1548fn address_is_already_added_to_allow_list() {1549 new_test_ext().execute_with(|| {1550 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));1551 let origin1 = RuntimeOrigin::signed(1);15521553 assert_ok!(Unique::add_to_allow_list(1554 origin1.clone(),1555 collection_id,1556 account(2)1557 ));1558 assert_ok!(Unique::add_to_allow_list(1559 origin1,1560 collection_id,1561 account(2)1562 ));1563 assert!(<pallet_common::Allowlist<Test>>::get((1564 collection_id,1565 account(2)1566 )));1567 });1568}15691570#[test]1571fn owner_can_remove_address_from_allow_list() {1572 new_test_ext().execute_with(|| {1573 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));15741575 let origin1 = RuntimeOrigin::signed(1);1576 assert_ok!(Unique::add_to_allow_list(1577 origin1.clone(),1578 collection_id,1579 account(2)1580 ));1581 assert_ok!(Unique::remove_from_allow_list(1582 origin1,1583 collection_id,1584 account(2)1585 ));1586 assert_eq!(1587 <pallet_common::Allowlist<Test>>::get((collection_id, account(2))),1588 false1589 );1590 });1591}15921593#[test]1594fn admin_can_remove_address_from_allow_list() {1595 new_test_ext().execute_with(|| {1596 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));1597 let origin1 = RuntimeOrigin::signed(1);1598 let origin2 = RuntimeOrigin::signed(2);15991600 // Owner adds admin1601 assert_ok!(Unique::add_collection_admin(1602 origin1.clone(),1603 collection_id,1604 account(2)1605 ));16061607 // Owner adds address 3 to allow list1608 assert_ok!(Unique::add_to_allow_list(1609 origin1,1610 collection_id,1611 account(3)1612 ));16131614 // Admin removes address 3 from allow list1615 assert_ok!(Unique::remove_from_allow_list(1616 origin2,1617 collection_id,1618 account(3)1619 ));1620 assert_eq!(1621 <pallet_common::Allowlist<Test>>::get((collection_id, account(3))),1622 false1623 );1624 });1625}16261627#[test]1628fn nonprivileged_user_cannot_remove_address_from_allow_list() {1629 new_test_ext().execute_with(|| {1630 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));1631 let origin1 = RuntimeOrigin::signed(1);1632 let origin2 = RuntimeOrigin::signed(2);16331634 assert_ok!(Unique::add_to_allow_list(1635 origin1,1636 collection_id,1637 account(2)1638 ));1639 assert_noop!(1640 Unique::remove_from_allow_list(origin2, collection_id, account(2)),1641 CommonError::<Test>::NoPermission1642 );1643 assert!(<pallet_common::Allowlist<Test>>::get((1644 collection_id,1645 account(2)1646 )));1647 });1648}16491650#[test]1651fn nobody_can_remove_address_from_allow_list_of_nonexisting_collection() {1652 new_test_ext().execute_with(|| {1653 let origin1 = RuntimeOrigin::signed(1);16541655 assert_noop!(1656 Unique::remove_from_allow_list(origin1, CollectionId(1), account(2)),1657 CommonError::<Test>::CollectionNotFound1658 );1659 });1660}16611662#[test]1663fn nobody_can_remove_address_from_allow_list_of_deleted_collection() {1664 new_test_ext().execute_with(|| {1665 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));1666 let origin1 = RuntimeOrigin::signed(1);1667 let origin2 = RuntimeOrigin::signed(2);16681669 // Add account 2 to allow list1670 assert_ok!(Unique::add_to_allow_list(1671 origin1.clone(),1672 collection_id,1673 account(2)1674 ));16751676 // Account 2 is in collection allow-list1677 assert!(<pallet_common::Allowlist<Test>>::get((1678 collection_id,1679 account(2)1680 )));16811682 // Destroy collection1683 assert_ok!(Unique::destroy_collection(origin1, collection_id));16841685 // Attempt to remove account 2 from collection allow-list => error1686 assert_noop!(1687 Unique::remove_from_allow_list(origin2, collection_id, account(2)),1688 CommonError::<Test>::CollectionNotFound1689 );16901691 // Account 2 is not found in collection allow-list anyway1692 assert_eq!(1693 <pallet_common::Allowlist<Test>>::get((collection_id, account(2))),1694 false1695 );1696 });1697}16981699// If address is already removed from allow list, nothing happens1700#[test]1701fn address_is_already_removed_from_allow_list() {1702 new_test_ext().execute_with(|| {1703 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));1704 let origin1 = RuntimeOrigin::signed(1);17051706 assert_ok!(Unique::add_to_allow_list(1707 origin1.clone(),1708 collection_id,1709 account(2)1710 ));1711 assert_ok!(Unique::remove_from_allow_list(1712 origin1.clone(),1713 collection_id,1714 account(2)1715 ));1716 assert_eq!(1717 <pallet_common::Allowlist<Test>>::get((collection_id, account(2))),1718 false1719 );1720 assert_ok!(Unique::remove_from_allow_list(1721 origin1,1722 collection_id,1723 account(2)1724 ));1725 assert_eq!(1726 <pallet_common::Allowlist<Test>>::get((collection_id, account(2))),1727 false1728 );1729 });1730}17311732// If Public Access mode is set to AllowList, tokens can’t be transferred from a non-allowlisted address with transfer or transferFrom (2 tests)1733#[test]1734fn allow_list_test_1() {1735 new_test_ext().execute_with(|| {1736 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));17371738 let origin1 = RuntimeOrigin::signed(1);1739 assert_ok!(Unique::add_collection_admin(1740 origin1.clone(),1741 collection_id,1742 account(1)1743 ));17441745 let data = default_nft_data();1746 create_test_item(collection_id, &data.into());17471748 assert_ok!(Unique::set_collection_permissions(1749 origin1.clone(),1750 collection_id,1751 CollectionPermissions {1752 mint_mode: None,1753 access: Some(AccessMode::AllowList),1754 nesting: None,1755 }1756 ));1757 assert_ok!(Unique::add_to_allow_list(1758 origin1.clone(),1759 collection_id,1760 account(2)1761 ));17621763 assert_noop!(1764 Unique::transfer(origin1, account(3), CollectionId(1), TokenId(1), 1)1765 .map_err(|e| e.error),1766 CommonError::<Test>::AddressNotInAllowlist1767 );1768 });1769}17701771#[test]1772fn allow_list_test_2() {1773 new_test_ext().execute_with(|| {1774 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));1775 let origin1 = RuntimeOrigin::signed(1);17761777 let data = default_nft_data();1778 create_test_item(collection_id, &data.into());17791780 assert_ok!(Unique::set_collection_permissions(1781 origin1.clone(),1782 collection_id,1783 CollectionPermissions {1784 mint_mode: None,1785 access: Some(AccessMode::AllowList),1786 nesting: None,1787 }1788 ));1789 assert_ok!(Unique::add_to_allow_list(1790 origin1.clone(),1791 collection_id,1792 account(1)1793 ));1794 assert_ok!(Unique::add_to_allow_list(1795 origin1.clone(),1796 collection_id,1797 account(2)1798 ));17991800 // do approve1801 assert_ok!(Unique::approve(1802 origin1.clone(),1803 account(1),1804 collection_id,1805 TokenId(1),1806 11807 ));1808 assert_eq!(1809 <pallet_nonfungible::Allowance<Test>>::get((CollectionId(1), TokenId(1))).unwrap(),1810 account(1)1811 );18121813 assert_ok!(Unique::remove_from_allow_list(1814 origin1.clone(),1815 collection_id,1816 account(1)1817 ));18181819 assert_noop!(1820 Unique::transfer_from(1821 origin1,1822 account(1),1823 account(3),1824 CollectionId(1),1825 TokenId(1),1826 11827 )1828 .map_err(|e| e.error),1829 CommonError::<Test>::AddressNotInAllowlist1830 );1831 });1832}18331834// If Public Access mode is set to AllowList, tokens can’t be transferred to a non-allowlisted address with transfer or transferFrom (2 tests)1835#[test]1836fn allow_list_test_3() {1837 new_test_ext().execute_with(|| {1838 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));18391840 let origin1 = RuntimeOrigin::signed(1);18411842 let data = default_nft_data();1843 create_test_item(collection_id, &data.into());18441845 assert_ok!(Unique::set_collection_permissions(1846 origin1.clone(),1847 collection_id,1848 CollectionPermissions {1849 mint_mode: None,1850 access: Some(AccessMode::AllowList),1851 nesting: None,1852 }1853 ));1854 assert_ok!(Unique::add_to_allow_list(1855 origin1.clone(),1856 collection_id,1857 account(1)1858 ));18591860 assert_noop!(1861 Unique::transfer(origin1, account(3), collection_id, TokenId(1), 1)1862 .map_err(|e| e.error),1863 CommonError::<Test>::AddressNotInAllowlist1864 );1865 });1866}18671868#[test]1869fn allow_list_test_4() {1870 new_test_ext().execute_with(|| {1871 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));18721873 let origin1 = RuntimeOrigin::signed(1);18741875 let data = default_nft_data();1876 create_test_item(collection_id, &data.into());18771878 assert_ok!(Unique::set_collection_permissions(1879 origin1.clone(),1880 collection_id,1881 CollectionPermissions {1882 mint_mode: None,1883 access: Some(AccessMode::AllowList),1884 nesting: None,1885 }1886 ));1887 assert_ok!(Unique::add_to_allow_list(1888 origin1.clone(),1889 collection_id,1890 account(1)1891 ));1892 assert_ok!(Unique::add_to_allow_list(1893 origin1.clone(),1894 collection_id,1895 account(2)1896 ));18971898 // do approve1899 assert_ok!(Unique::approve(1900 origin1.clone(),1901 account(1),1902 collection_id,1903 TokenId(1),1904 11905 ));1906 assert_eq!(1907 <pallet_nonfungible::Allowance<Test>>::get((CollectionId(1), TokenId(1))).unwrap(),1908 account(1)1909 );19101911 assert_ok!(Unique::remove_from_allow_list(1912 origin1.clone(),1913 collection_id,1914 account(2)1915 ));19161917 assert_noop!(1918 Unique::transfer_from(1919 origin1,1920 account(1),1921 account(3),1922 collection_id,1923 TokenId(1),1924 11925 )1926 .map_err(|e| e.error),1927 CommonError::<Test>::AddressNotInAllowlist1928 );1929 });1930}19311932// If Public Access mode is set to AllowList, tokens can’t be destroyed by a non-allowlisted address (even if it owned them before enabling AllowList mode)1933#[test]1934fn allow_list_test_5() {1935 new_test_ext().execute_with(|| {1936 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));19371938 let origin1 = RuntimeOrigin::signed(1);19391940 let data = default_nft_data();1941 create_test_item(collection_id, &data.into());19421943 assert_ok!(Unique::set_collection_permissions(1944 origin1.clone(),1945 collection_id,1946 CollectionPermissions {1947 mint_mode: None,1948 access: Some(AccessMode::AllowList),1949 nesting: None,1950 }1951 ));1952 assert_noop!(1953 Unique::burn_item(origin1.clone(), CollectionId(1), TokenId(1), 1).map_err(|e| e.error),1954 CommonError::<Test>::AddressNotInAllowlist1955 );1956 });1957}19581959// If Public Access mode is set to AllowList, token transfers can’t be Approved by a non-allowlisted address (see Approve method).1960#[test]1961fn allow_list_test_6() {1962 new_test_ext().execute_with(|| {1963 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));19641965 let origin1 = RuntimeOrigin::signed(1);19661967 let data = default_nft_data();1968 create_test_item(collection_id, &data.into());19691970 assert_ok!(Unique::set_collection_permissions(1971 origin1.clone(),1972 collection_id,1973 CollectionPermissions {1974 mint_mode: None,1975 access: Some(AccessMode::AllowList),1976 nesting: None,1977 }1978 ));19791980 // do approve1981 assert_noop!(1982 Unique::approve(origin1, account(1), CollectionId(1), TokenId(1), 1)1983 .map_err(|e| e.error),1984 CommonError::<Test>::AddressNotInAllowlist1985 );1986 });1987}19881989// If Public Access mode is set to AllowList, tokens can be transferred from a allowlisted address with transfer or transferFrom (2 tests) and1990// tokens can be transferred from a allowlisted address with transfer or transferFrom (2 tests)1991#[test]1992fn allow_list_test_7() {1993 new_test_ext().execute_with(|| {1994 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));19951996 let data = default_nft_data();1997 create_test_item(collection_id, &data.into());19981999 let origin1 = RuntimeOrigin::signed(1);20002001 assert_ok!(Unique::set_collection_permissions(2002 origin1.clone(),2003 collection_id,2004 CollectionPermissions {2005 mint_mode: None,2006 access: Some(AccessMode::AllowList),2007 nesting: None,2008 }2009 ));2010 assert_ok!(Unique::add_to_allow_list(2011 origin1.clone(),2012 collection_id,2013 account(1)2014 ));2015 assert_ok!(Unique::add_to_allow_list(2016 origin1.clone(),2017 collection_id,2018 account(2)2019 ));20202021 assert_ok!(Unique::transfer(2022 origin1,2023 account(2),2024 CollectionId(1),2025 TokenId(1),2026 12027 ));2028 });2029}20302031#[test]2032fn allow_list_test_8() {2033 new_test_ext().execute_with(|| {2034 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));20352036 // Create NFT for account 12037 let data = default_nft_data();2038 create_test_item(collection_id, &data.into());20392040 let origin1 = RuntimeOrigin::signed(1);20412042 // Toggle Allow List mode and add accounts 1 and 22043 assert_ok!(Unique::set_collection_permissions(2044 origin1.clone(),2045 collection_id,2046 CollectionPermissions {2047 mint_mode: None,2048 access: Some(AccessMode::AllowList),2049 nesting: None,2050 }2051 ));2052 assert_ok!(Unique::add_to_allow_list(2053 origin1.clone(),2054 collection_id,2055 account(1)2056 ));2057 assert_ok!(Unique::add_to_allow_list(2058 origin1.clone(),2059 collection_id,2060 account(2)2061 ));20622063 // Sself-approve account 1 for NFT 12064 assert_ok!(Unique::approve(2065 origin1.clone(),2066 account(1),2067 CollectionId(1),2068 TokenId(1),2069 12070 ));2071 assert_eq!(2072 <pallet_nonfungible::Allowance<Test>>::get((CollectionId(1), TokenId(1))).unwrap(),2073 account(1)2074 );20752076 // Transfer from 1 to 22077 assert_ok!(Unique::transfer_from(2078 origin1,2079 account(1),2080 account(2),2081 CollectionId(1),2082 TokenId(1),2083 12084 ));2085 });2086}20872088// If Public Access mode is set to AllowList, and Mint Permission is set to false, tokens can be created by owner.2089#[test]2090fn allow_list_test_9() {2091 new_test_ext().execute_with(|| {2092 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));2093 let origin1 = RuntimeOrigin::signed(1);20942095 assert_ok!(Unique::set_collection_permissions(2096 origin1.clone(),2097 collection_id,2098 CollectionPermissions {2099 mint_mode: Some(false),2100 access: Some(AccessMode::AllowList),2101 nesting: None,2102 }2103 ));21042105 let data = default_nft_data();2106 create_test_item(collection_id, &data.into());2107 });2108}21092110// If Public Access mode is set to AllowList, and Mint Permission is set to false, tokens can be created by admin.2111#[test]2112fn allow_list_test_10() {2113 new_test_ext().execute_with(|| {2114 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));21152116 let origin1 = RuntimeOrigin::signed(1);2117 let origin2 = RuntimeOrigin::signed(2);21182119 assert_ok!(Unique::set_collection_permissions(2120 origin1.clone(),2121 collection_id,2122 CollectionPermissions {2123 mint_mode: Some(false),2124 access: Some(AccessMode::AllowList),2125 nesting: None,2126 }2127 ));21282129 assert_ok!(Unique::add_collection_admin(2130 origin1,2131 collection_id,2132 account(2)2133 ));21342135 assert_ok!(Unique::create_item(2136 origin2,2137 collection_id,2138 account(2),2139 default_nft_data().into()2140 ));2141 });2142}21432144// If Public Access mode is set to AllowList, and Mint Permission is set to false, tokens cannot be created by non-privileged and allow listed address.2145#[test]2146fn allow_list_test_11() {2147 new_test_ext().execute_with(|| {2148 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));21492150 let origin1 = RuntimeOrigin::signed(1);2151 let origin2 = RuntimeOrigin::signed(2);21522153 assert_ok!(Unique::set_collection_permissions(2154 origin1.clone(),2155 collection_id,2156 CollectionPermissions {2157 mint_mode: Some(false),2158 access: Some(AccessMode::AllowList),2159 nesting: None,2160 }2161 ));2162 assert_ok!(Unique::add_to_allow_list(2163 origin1,2164 collection_id,2165 account(2)2166 ));21672168 assert_noop!(2169 Unique::create_item(2170 origin2,2171 CollectionId(1),2172 account(2),2173 default_nft_data().into()2174 )2175 .map_err(|e| e.error),2176 CommonError::<Test>::PublicMintingNotAllowed2177 );2178 });2179}21802181// If Public Access mode is set to AllowList, and Mint Permission is set to false, tokens cannot be created by non-privileged and non-allow listed address.2182#[test]2183fn allow_list_test_12() {2184 new_test_ext().execute_with(|| {2185 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));21862187 let origin1 = RuntimeOrigin::signed(1);2188 let origin2 = RuntimeOrigin::signed(2);21892190 assert_ok!(Unique::set_collection_permissions(2191 origin1.clone(),2192 collection_id,2193 CollectionPermissions {2194 mint_mode: Some(false),2195 access: Some(AccessMode::AllowList),2196 nesting: None,2197 }2198 ));21992200 assert_noop!(2201 Unique::create_item(2202 origin2,2203 CollectionId(1),2204 account(2),2205 default_nft_data().into()2206 )2207 .map_err(|e| e.error),2208 CommonError::<Test>::PublicMintingNotAllowed2209 );2210 });2211}22122213// If Public Access mode is set to AllowList, and Mint Permission is set to true, tokens can be created by owner.2214#[test]2215fn allow_list_test_13() {2216 new_test_ext().execute_with(|| {2217 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));22182219 let origin1 = RuntimeOrigin::signed(1);22202221 assert_ok!(Unique::set_collection_permissions(2222 origin1.clone(),2223 collection_id,2224 CollectionPermissions {2225 mint_mode: Some(true),2226 access: Some(AccessMode::AllowList),2227 nesting: None,2228 }2229 ));22302231 let data = default_nft_data();2232 create_test_item(collection_id, &data.into());2233 });2234}22352236// If Public Access mode is set to AllowList, and Mint Permission is set to true, tokens can be created by admin.2237#[test]2238fn allow_list_test_14() {2239 new_test_ext().execute_with(|| {2240 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));22412242 let origin1 = RuntimeOrigin::signed(1);2243 let origin2 = RuntimeOrigin::signed(2);22442245 assert_ok!(Unique::set_collection_permissions(2246 origin1.clone(),2247 collection_id,2248 CollectionPermissions {2249 mint_mode: Some(true),2250 access: Some(AccessMode::AllowList),2251 nesting: None,2252 }2253 ));22542255 assert_ok!(Unique::add_collection_admin(2256 origin1,2257 collection_id,2258 account(2)2259 ));22602261 assert_ok!(Unique::create_item(2262 origin2,2263 collection_id,2264 account(2),2265 default_nft_data().into()2266 ));2267 });2268}22692270// If Public Access mode is set to AllowList, and Mint Permission is set to true, tokens cannot be created by non-privileged and non-allow listed address.2271#[test]2272fn allow_list_test_15() {2273 new_test_ext().execute_with(|| {2274 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));22752276 let origin1 = RuntimeOrigin::signed(1);2277 let origin2 = RuntimeOrigin::signed(2);22782279 assert_ok!(Unique::set_collection_permissions(2280 origin1.clone(),2281 collection_id,2282 CollectionPermissions {2283 mint_mode: Some(true),2284 access: Some(AccessMode::AllowList),2285 nesting: None,2286 }2287 ));22882289 assert_noop!(2290 Unique::create_item(2291 origin2,2292 collection_id,2293 account(2),2294 default_nft_data().into()2295 )2296 .map_err(|e| e.error),2297 CommonError::<Test>::AddressNotInAllowlist2298 );2299 });2300}23012302// If Public Access mode is set to AllowList, and Mint Permission is set to true, tokens can be created by non-privileged and allow listed address.2303#[test]2304fn allow_list_test_16() {2305 new_test_ext().execute_with(|| {2306 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));23072308 let origin1 = RuntimeOrigin::signed(1);2309 let origin2 = RuntimeOrigin::signed(2);23102311 assert_ok!(Unique::set_collection_permissions(2312 origin1.clone(),2313 collection_id,2314 CollectionPermissions {2315 mint_mode: Some(true),2316 access: Some(AccessMode::AllowList),2317 nesting: None,2318 }2319 ));2320 assert_ok!(Unique::add_to_allow_list(2321 origin1,2322 collection_id,2323 account(2)2324 ));23252326 assert_ok!(Unique::create_item(2327 origin2,2328 collection_id,2329 account(2),2330 default_nft_data().into()2331 ));2332 });2333}23342335// Total number of collections. Positive test2336#[test]2337fn total_number_collections_bound() {2338 new_test_ext().execute_with(|| {2339 create_test_collection(&CollectionMode::NFT, CollectionId(1));2340 });2341}23422343#[test]2344fn create_max_collections() {2345 new_test_ext().execute_with(|| {2346 for i in 1..COLLECTION_NUMBER_LIMIT {2347 create_test_collection(&CollectionMode::NFT, CollectionId(i));2348 }2349 });2350}23512352// Total number of collections. Negative test2353#[test]2354fn total_number_collections_bound_neg() {2355 new_test_ext().execute_with(|| {2356 let origin1 = RuntimeOrigin::signed(1);23572358 for i in 1..=COLLECTION_NUMBER_LIMIT {2359 create_test_collection(&CollectionMode::NFT, CollectionId(i));2360 }23612362 let col_name1: Vec<u16> = "Test1\0".encode_utf16().collect::<Vec<u16>>();2363 let col_desc1: Vec<u16> = "TestDescription1\0".encode_utf16().collect::<Vec<u16>>();2364 let token_prefix1: Vec<u8> = b"token_prefix1\0".to_vec();23652366 let data = CreateCollectionData {2367 name: col_name1.try_into().unwrap(),2368 description: col_desc1.try_into().unwrap(),2369 token_prefix: token_prefix1.try_into().unwrap(),2370 mode: CollectionMode::NFT,2371 ..Default::default()2372 };23732374 // 11-th collection in chain. Expects error2375 assert_noop!(2376 Unique::create_collection_ex(origin1, data),2377 CommonError::<Test>::TotalCollectionsLimitExceeded2378 );2379 });2380}23812382// Owned tokens by a single address. Positive test2383#[test]2384fn owned_tokens_bound() {2385 new_test_ext().execute_with(|| {2386 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));23872388 let data = default_nft_data();2389 create_test_item(collection_id, &data.clone().into());2390 create_test_item(collection_id, &data.into());2391 });2392}23932394// Owned tokens by a single address. Negotive test2395#[test]2396fn owned_tokens_bound_neg() {2397 new_test_ext().execute_with(|| {2398 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));23992400 let origin1 = RuntimeOrigin::signed(1);24012402 for _ in 1..=MAX_TOKEN_OWNERSHIP {2403 let data = default_nft_data();2404 create_test_item(collection_id, &data.clone().into());2405 }24062407 let data = default_nft_data();2408 assert_noop!(2409 Unique::create_item(origin1, CollectionId(1), account(1), data.into())2410 .map_err(|e| e.error),2411 CommonError::<Test>::AccountTokenLimitExceeded2412 );2413 });2414}24152416// Number of collection admins. Positive test2417#[test]2418fn collection_admins_bound() {2419 new_test_ext().execute_with(|| {2420 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));24212422 let origin1 = RuntimeOrigin::signed(1);24232424 assert_ok!(Unique::add_collection_admin(2425 origin1.clone(),2426 collection_id,2427 account(2)2428 ));2429 assert_ok!(Unique::add_collection_admin(2430 origin1,2431 collection_id,2432 account(3)2433 ));2434 });2435}24362437// Number of collection admins. Negotive test2438#[test]2439fn collection_admins_bound_neg() {2440 new_test_ext().execute_with(|| {2441 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));24422443 let origin1 = RuntimeOrigin::signed(1);24442445 for i in 0..COLLECTION_ADMINS_LIMIT {2446 assert_ok!(Unique::add_collection_admin(2447 origin1.clone(),2448 collection_id,2449 account((2 + i).into())2450 ));2451 }2452 assert_noop!(2453 Unique::add_collection_admin(2454 origin1,2455 collection_id,2456 account((3 + COLLECTION_ADMINS_LIMIT).into())2457 ),2458 CommonError::<Test>::CollectionAdminCountExceeded2459 );2460 });2461}2462// #endregion24632464#[test]2465fn collection_transfer_flag_works() {2466 new_test_ext().execute_with(|| {2467 let origin1 = RuntimeOrigin::signed(1);24682469 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));2470 assert_ok!(Unique::set_transfers_enabled_flag(2471 origin1,2472 collection_id,2473 true2474 ));24752476 let data = default_nft_data();2477 create_test_item(collection_id, &data.into());2478 assert_eq!(2479 <pallet_nonfungible::AccountBalance<Test>>::get((collection_id, account(1))),2480 12481 );2482 assert_eq!(2483 <pallet_nonfungible::Owned<Test>>::get((collection_id, account(1), TokenId(1))),2484 true2485 );24862487 let origin1 = RuntimeOrigin::signed(1);24882489 // default scenario2490 assert_ok!(Unique::transfer(2491 origin1,2492 account(2),2493 collection_id,2494 TokenId(1),2495 12496 ));2497 assert_eq!(2498 <pallet_nonfungible::Owned<Test>>::get((collection_id, account(1), TokenId(1))),2499 false2500 );2501 assert_eq!(2502 <pallet_nonfungible::Owned<Test>>::get((collection_id, account(2), TokenId(1))),2503 true2504 );2505 assert_eq!(2506 <pallet_nonfungible::AccountBalance<Test>>::get((collection_id, account(1))),2507 02508 );2509 assert_eq!(2510 <pallet_nonfungible::AccountBalance<Test>>::get((collection_id, account(2))),2511 12512 );2513 });2514}25152516#[test]2517fn collection_transfer_flag_works_neg() {2518 new_test_ext().execute_with(|| {2519 let origin1 = RuntimeOrigin::signed(1);25202521 let collection_id = create_test_collection(&CollectionMode::NFT, CollectionId(1));2522 assert_ok!(Unique::set_transfers_enabled_flag(2523 origin1,2524 collection_id,2525 false2526 ));25272528 let data = default_nft_data();2529 create_test_item(collection_id, &data.into());2530 assert_eq!(2531 <pallet_nonfungible::AccountBalance<Test>>::get((collection_id, account(1))),2532 12533 );2534 assert_eq!(2535 <pallet_nonfungible::Owned<Test>>::get((collection_id, account(1), TokenId(1))),2536 true2537 );25382539 let origin1 = RuntimeOrigin::signed(1);25402541 // default scenario2542 assert_noop!(2543 Unique::transfer(origin1, account(2), CollectionId(1), TokenId(1), 1)2544 .map_err(|e| e.error),2545 CommonError::<Test>::TransferNotAllowed2546 );2547 assert_eq!(2548 <pallet_nonfungible::AccountBalance<Test>>::get((collection_id, account(1))),2549 12550 );2551 assert_eq!(2552 <pallet_nonfungible::AccountBalance<Test>>::get((collection_id, account(2))),2553 02554 );2555 assert_eq!(2556 <pallet_nonfungible::Owned<Test>>::get((collection_id, account(1), TokenId(1))),2557 true2558 );2559 assert_eq!(2560 <pallet_nonfungible::Owned<Test>>::get((collection_id, account(2), TokenId(1))),2561 false2562 );2563 });2564}25652566#[test]2567fn collection_sponsoring() {2568 new_test_ext().execute_with(|| {2569 // default_limits();2570 let user1 = 1_u64;2571 let user2 = 777_u64;2572 let origin1 = RuntimeOrigin::signed(user1);2573 let origin2 = RuntimeOrigin::signed(user2);2574 let account2 = account(user2);25752576 let collection_id =2577 create_test_collection_for_owner(&CollectionMode::NFT, user1, CollectionId(1));2578 assert_ok!(Unique::set_collection_sponsor(2579 origin1.clone(),2580 collection_id,2581 user12582 ));2583 assert_ok!(Unique::confirm_sponsorship(origin1.clone(), collection_id));25842585 // Expect error while have no permissions2586 assert!(Unique::create_item(2587 origin2.clone(),2588 collection_id,2589 account2.clone(),2590 default_nft_data().into()2591 )2592 .is_err());25932594 assert_ok!(Unique::set_collection_permissions(2595 origin1.clone(),2596 collection_id,2597 CollectionPermissions {2598 mint_mode: Some(true),2599 access: Some(AccessMode::AllowList),2600 nesting: None,2601 }2602 ));2603 assert_ok!(Unique::add_to_allow_list(2604 origin1.clone(),2605 collection_id,2606 account2.clone()2607 ));26082609 assert_ok!(Unique::create_item(2610 origin2,2611 collection_id,2612 account2,2613 default_nft_data().into()2614 ));2615 });2616}26172618mod check_token_permissions {2619 use super::*;2620 use pallet_common::LazyValue;26212622 fn test<FTE: FnOnce() -> bool>(2623 i: usize,2624 test_case: &pallet_common::tests::TestCase,2625 check_token_existence: &mut LazyValue<bool, FTE>,2626 ) {2627 let collection_admin = test_case.collection_admin;2628 let mut is_collection_admin = LazyValue::new(|| test_case.is_collection_admin);2629 let token_owner = test_case.token_owner;2630 let mut is_token_owner = LazyValue::new(|| Ok(test_case.is_token_owner));2631 let is_no_permission = test_case.no_permission;26322633 let result = pallet_common::tests::check_token_permissions::<Test, _, _, FTE>(2634 collection_admin,2635 token_owner,2636 &mut is_collection_admin,2637 &mut is_token_owner,2638 check_token_existence,2639 );26402641 if is_no_permission {2642 assert!(2643 result.is_err(),2644 "{i}: {test_case:?}, token_exist: {}",2645 check_token_existence.value()2646 );2647 assert_err!(result, pallet_common::Error::<Test>::NoPermission,);2648 } else if check_token_existence.has_value() && !check_token_existence.value() {2649 assert!(2650 result.is_err(),2651 "{i}: {test_case:?}, token_exist: {}",2652 check_token_existence.value()2653 );2654 assert_err!(result, pallet_common::Error::<Test>::TokenNotFound,);2655 }2656 }26572658 #[test]2659 fn no_permission_only() {2660 new_test_ext().execute_with(|| {2661 let mut check_token_existence = LazyValue::new(|| true);2662 for (i, row) in pallet_common::tests::TABLE.iter().enumerate() {2663 test(i, row, &mut check_token_existence);2664 }2665 });2666 }26672668 #[test]2669 fn no_permission_and_token_not_found() {2670 new_test_ext().execute_with(|| {2671 for (i, row) in pallet_common::tests::TABLE.iter().enumerate() {2672 // This is inside the loop to keep track of whether the lambda was called2673 let mut check_token_existence = LazyValue::new(|| false);2674 test(i, row, &mut check_token_existence);2675 }2676 });2677 }2678}tests/package.jsondiffbeforeafterboth--- a/tests/package.json
+++ b/tests/package.json
@@ -48,6 +48,7 @@
"testEthFractionalizer": "yarn _test './**/eth/fractionalizer/**/*.*test.ts'",
"testEthMarketplace": "yarn _test './**/eth/marketplace/**/*.*test.ts'",
"testEthMarket": "yarn _test './**/eth/marketplace-v2/**/*.*test.ts'",
+ "testPerformance": "yarn _test ./**/performance.*test.ts",
"testSub": "yarn _test './**/sub/**/*.*test.ts'",
"testSubNesting": "yarn _test './**/sub/nesting/**/*.*test.ts'",
"testEvent": "yarn _test ./src/check-event/*.*test.ts",
tests/src/migrations/942057-appPromotion/lockedToFreeze.tsdiffbeforeafterboth--- a/tests/src/migrations/942057-appPromotion/lockedToFreeze.ts
+++ b/tests/src/migrations/942057-appPromotion/lockedToFreeze.ts
@@ -4,9 +4,10 @@
import path, {dirname} from 'path';
import {isInteger, parse} from 'lossless-json';
import {fileURLToPath} from 'url';
+import config from '../../config';
-const WS_ENDPOINT = 'ws://localhost:9944';
+const WS_ENDPOINT = config.substrateUrl;
const DONOR_SEED = '//Alice';
const UPDATE_IF_VERSION = 942057;
tests/src/migrations/correctStateAfterMaintenance.tsdiffbeforeafterboth--- a/tests/src/migrations/correctStateAfterMaintenance.ts
+++ b/tests/src/migrations/correctStateAfterMaintenance.ts
@@ -1,8 +1,9 @@
+import config from '../config';
import {usingPlaygrounds} from '../util';
-const WS_ENDPOINT = 'ws://localhost:9944';
+const WS_ENDPOINT = config.substrateUrl;
const DONOR_SEED = '//Alice';
export const main = async(options: { wsEndpoint: string; donorSeed: string } = {
@@ -66,4 +67,4 @@
const chunk = <T>(arr: T[], size: number) =>
Array.from({length: Math.ceil(arr.length / size)}, (_: any, i: number) =>
- arr.slice(i * size, i * size + size));
\ No newline at end of file
+ arr.slice(i * size, i * size + size));
tests/src/performance.seq.test.tsdiffbeforeafterboth--- /dev/null
+++ b/tests/src/performance.seq.test.ts
@@ -0,0 +1,166 @@
+// Copyright 2019-2023 Unique Network (Gibraltar) Ltd.
+// This file is part of Unique Network.
+
+// Unique Network is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+
+// Unique Network is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License
+// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
+
+import {ApiPromise} from '@polkadot/api';
+import {IKeyringPair} from '@polkadot/types/types';
+import {expect, itSub, usingPlaygrounds} from './util';
+import {ICrossAccountId, IProperty} from './util/playgrounds/types';
+import {UniqueHelper} from './util/playgrounds/unique';
+
+describe('Performace tests', () => {
+ let alice: IKeyringPair;
+ const MAX_TOKENS_TO_MINT = 200;
+
+ before(async () => {
+ await usingPlaygrounds(async (helper, privateKey) => {
+ const donor = await privateKey({url: import.meta.url});
+ [alice] = await helper.arrange.createAccounts([100_000n], donor);
+ });
+ });
+
+ itSub('NFT tokens minting', async ({helper}) => {
+ const propertyKey = 'prop-a';
+ const collection = await helper.nft.mintCollection(alice, {
+ name: 'test properties',
+ description: 'test properties collection',
+ tokenPrefix: 'TPC',
+ tokenPropertyPermissions: [
+ {key: propertyKey, permission: {mutable: true, collectionAdmin: true, tokenOwner: true}},
+ ],
+ });
+
+
+ const results = [];
+ const step = 1_000;
+ const sizeOfKey = sizeOfEncodedStr(propertyKey);
+ let currentSize = step;
+ let startCount = 0;
+ let minterFunc = tryMintUnsafeRPC;
+ try {
+ startCount = await tryMintUnsafeRPC(helper, alice, MAX_TOKENS_TO_MINT, collection.collectionId, {Substrate: alice.address});
+ }
+ catch (e) {
+ startCount = await tryMintExplicit(helper, alice, MAX_TOKENS_TO_MINT, collection.collectionId, {Substrate: alice.address});
+ minterFunc = tryMintExplicit;
+ }
+ results.push({propertySize: 0, tokens: startCount});
+
+ while(currentSize <= 32_000) {
+ const property = {key: propertyKey, value: 'A'.repeat(currentSize - sizeOfKey - sizeOfInt(currentSize))};
+ const maxTokens = Math.ceil(results.map(x => x.tokens).reduce((a, b) => a + b) / results.length);
+ const tokens = await minterFunc(helper, alice, maxTokens, collection.collectionId, {Substrate: alice.address}, property);
+ results.push({propertySize: sizeOfProperty(property), tokens});
+ currentSize += step;
+ await helper.wait.newBlocks(2);
+ }
+
+ expect(results).to.be.deep.equal([
+ {propertySize: 0, tokens: 200},
+ {propertySize: 1000, tokens: 149},
+ {propertySize: 2000, tokens: 149},
+ {propertySize: 3000, tokens: 149},
+ {propertySize: 4000, tokens: 149},
+ {propertySize: 5000, tokens: 149},
+ {propertySize: 6000, tokens: 149},
+ {propertySize: 7000, tokens: 149},
+ {propertySize: 8000, tokens: 149},
+ {propertySize: 9000, tokens: 149},
+ {propertySize: 10000, tokens: 149},
+ {propertySize: 11000, tokens: 149},
+ {propertySize: 12000, tokens: 149},
+ {propertySize: 13000, tokens: 149},
+ {propertySize: 14000, tokens: 149},
+ {propertySize: 15000, tokens: 149},
+ {propertySize: 16000, tokens: 149},
+ {propertySize: 17000, tokens: 149},
+ {propertySize: 18000, tokens: 149},
+ {propertySize: 19000, tokens: 149},
+ {propertySize: 20000, tokens: 149},
+ {propertySize: 21000, tokens: 149},
+ {propertySize: 22000, tokens: 149},
+ {propertySize: 23000, tokens: 149},
+ {propertySize: 24000, tokens: 149},
+ {propertySize: 25000, tokens: 149},
+ {propertySize: 26000, tokens: 149},
+ {propertySize: 27000, tokens: 145},
+ {propertySize: 28000, tokens: 140},
+ {propertySize: 29000, tokens: 135},
+ {propertySize: 30000, tokens: 130},
+ {propertySize: 31000, tokens: 126},
+ {propertySize: 32000, tokens: 122},
+ ]);
+ });
+});
+
+
+const dryRun = async (api: ApiPromise, signer: IKeyringPair, tx: any) => {
+ const signed = await tx.signAsync(signer);
+ const dryRun = await api.rpc.system.dryRun(signed.toHex());
+ return dryRun.isOk && dryRun.asOk.isOk;
+};
+
+const getTokens = (tokensCount: number, owner: ICrossAccountId, property?: IProperty) => (new Array(tokensCount)).fill(0).map(() => {
+ const token = {owner} as {owner: ICrossAccountId, properties?: IProperty[]};
+ if(property) token.properties = [property];
+ return token;
+});
+
+const tryMintUnsafeRPC = async (helper: UniqueHelper, signer: IKeyringPair, tokensCount: number, collectionId: number, owner: ICrossAccountId, property?: IProperty): Promise<number> => {
+ if(tokensCount < 10) console.log('try mint', tokensCount, 'tokens');
+ const tokens = getTokens(tokensCount, owner, property);
+ const tx = helper.constructApiCall('api.tx.unique.createMultipleItemsEx', [collectionId, {NFT: tokens}]);
+ if(!(await dryRun(helper.getApi(), signer, tx))) {
+ if(tokensCount < 2) return 0;
+ return await tryMintUnsafeRPC(helper, signer, tokensCount - 1, collectionId, owner, property);
+ }
+ await helper.executeExtrinsic(signer, 'api.tx.unique.createMultipleItemsEx', [collectionId, {NFT: tokens}]);
+ return tokensCount;
+};
+
+const tryMintExplicit = async (helper: UniqueHelper, signer: IKeyringPair, tokensCount: number, collectionId: number, owner: ICrossAccountId, property?: IProperty): Promise<number> => {
+ const tokens = getTokens(tokensCount, owner, property);
+ try {
+ await helper.executeExtrinsic(signer, 'api.tx.unique.createMultipleItemsEx', [collectionId, {NFT: tokens}]);
+ }
+ catch (e) {
+ if(tokensCount < 2) return 0;
+ return await tryMintExplicit(helper, signer, tokensCount - 1, collectionId, owner, property);
+ }
+ return tokensCount;
+};
+
+function sizeOfProperty(prop: IProperty) {
+ return sizeOfEncodedStr(prop.key) + sizeOfEncodedStr(prop.value!);
+}
+
+function sizeOfInt(i: number) {
+ if(i < 0 || i > 0xffffffff) throw new Error('out of range');
+ if(i < 0b11_1111) {
+ return 1;
+ } else if(i < 0b11_1111_1111_1111) {
+ return 2;
+ } else if(i < 0b11_1111_1111_1111_1111_1111_1111_1111) {
+ return 4;
+ } else {
+ return 5;
+ }
+}
+
+const UTF8_ENCODER = new TextEncoder();
+function sizeOfEncodedStr(v: string) {
+ const encoded = UTF8_ENCODER.encode(v);
+ return sizeOfInt(encoded.length) + encoded.length;
+}