From 8527a650d1c6d06638252c2030c7d173dc3b7d47 Mon Sep 17 00:00:00 2001 From: bgallois <benjamin@gallois.cc> Date: Sat, 11 May 2024 16:28:37 +0200 Subject: [PATCH] upgrade subxt --- Cargo.lock | 1891 ++++++++--------- Cargo.toml | 4 +- distance-oracle/src/api.rs | 45 +- docs/api/runtime-calls.md | 2 +- end2end-tests/tests/common/mod.rs | 1 + live-tests/tests/sanity_gdev.rs | 47 +- pallets/oneshot-account/src/mock.rs | 2 + resources/metadata.scale | Bin 147052 -> 148106 bytes runtime/common/src/weights/block_weights.rs | 18 +- .../common/src/weights/extrinsic_weights.rs | 18 +- .../weights/frame_benchmarking_baseline.rs | 30 +- runtime/common/src/weights/frame_system.rs | 52 +- .../src/weights/pallet_authority_members.rs | 22 +- runtime/common/src/weights/pallet_balances.rs | 34 +- .../src/weights/pallet_certification.rs | 36 +- .../common/src/weights/pallet_collective.rs | 126 +- runtime/common/src/weights/pallet_distance.rs | 50 +- .../src/weights/pallet_duniter_account.rs | 6 +- runtime/common/src/weights/pallet_identity.rs | 76 +- .../common/src/weights/pallet_im_online.rs | 10 +- .../common/src/weights/pallet_membership.rs | 14 +- runtime/common/src/weights/pallet_multisig.rs | 66 +- .../src/weights/pallet_oneshot_account.rs | 14 +- runtime/common/src/weights/pallet_preimage.rs | 64 +- .../src/weights/pallet_provide_randomness.rs | 22 +- runtime/common/src/weights/pallet_proxy.rs | 98 +- runtime/common/src/weights/pallet_quota.rs | 30 +- .../common/src/weights/pallet_scheduler.rs | 96 +- runtime/common/src/weights/pallet_session.rs | 10 +- .../src/weights/pallet_smith_members.rs | 22 +- runtime/common/src/weights/pallet_sudo.rs | 18 +- .../common/src/weights/pallet_timestamp.rs | 10 +- runtime/common/src/weights/pallet_treasury.rs | 42 +- .../src/weights/pallet_universal_dividend.rs | 26 +- .../src/weights/pallet_upgrade_origin.rs | 6 +- runtime/common/src/weights/pallet_utility.rs | 34 +- .../common/src/weights/paritydb_weights.rs | 34 +- runtime/g1/src/lib.rs | 1 + runtime/gdev/src/lib.rs | 1 + runtime/gtest/src/lib.rs | 1 + 40 files changed, 1549 insertions(+), 1530 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5f32b8668..aa57843d9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1102,6 +1102,12 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" +[[package]] +name = "bytecount" +version = "0.6.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce" + [[package]] name = "bytemuck" version = "1.15.0" @@ -1462,14 +1468,14 @@ dependencies = [ "scale-info", "serde", "smallvec", - "sp-arithmetic 23.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-arithmetic", "sp-consensus-babe", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-membership", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-weights 27.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-std 14.0.0", + "sp-weights", ] [[package]] @@ -1727,6 +1733,15 @@ dependencies = [ "cfg-if", ] +[[package]] +name = "crossbeam-channel" +version = "0.5.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab3db02a9c5b5121e1e42fbdb1aeb65f5e02624cc58c43f2884c6ccac0b82f95" +dependencies = [ + "crossbeam-utils", +] + [[package]] name = "crossbeam-deque" version = "0.8.5" @@ -1819,6 +1834,76 @@ dependencies = [ "cipher 0.4.4", ] +[[package]] +name = "ctrlc" +version = "3.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "672465ae37dc1bc6380a6547a8883d5dd397b0f1faaad4f265726cc7042a5345" +dependencies = [ + "nix 0.28.0", + "windows-sys 0.52.0", +] + +[[package]] +name = "cucumber" +version = "0.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e5063d8cf24f4998ad01cac265da468a15ca682a8f4f826d50e661964e8d9b8" +dependencies = [ + "anyhow", + "async-trait", + "clap", + "console", + "cucumber-codegen", + "cucumber-expressions", + "derive_more", + "drain_filter_polyfill", + "either", + "futures 0.3.30", + "gherkin", + "globwalk", + "humantime", + "inventory", + "itertools 0.12.1", + "lazy-regex", + "linked-hash-map", + "once_cell", + "pin-project", + "regex", + "sealed", + "smart-default", +] + +[[package]] +name = "cucumber-codegen" +version = "0.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01091e28d1f566c8b31b67948399d2efd6c0a8f6228a9785519ed7b73f7f0aef" +dependencies = [ + "cucumber-expressions", + "inflections", + "itertools 0.12.1", + "proc-macro2", + "quote", + "regex", + "syn 2.0.61", + "synthez", +] + +[[package]] +name = "cucumber-expressions" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d794fed319eea24246fb5f57632f7ae38d61195817b7eb659455aa5bdd7c1810" +dependencies = [ + "derive_more", + "either", + "nom", + "nom_locate", + "regex", + "regex-syntax 0.7.5", +] + [[package]] name = "curve25519-dalek" version = "3.2.0" @@ -2023,10 +2108,10 @@ dependencies = [ "parity-scale-codec", "sc-client-api", "scale-info", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-distance", - "sp-keystore 0.34.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-keystore", + "sp-runtime", "thiserror", ] @@ -2213,9 +2298,9 @@ dependencies = [ "parity-scale-codec", "rayon", "simple_logger", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-distance", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", "subxt", "tokio", ] @@ -2275,6 +2360,12 @@ version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" +[[package]] +name = "drain_filter_polyfill" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "669a445ee724c5c69b1b06fe0b63e70a1c84bc9bb7d9696cd4f4e3ec45050408" + [[package]] name = "dtoa" version = "1.0.9" @@ -2313,7 +2404,7 @@ dependencies = [ "gdev-runtime", "gtest-runtime", "hex", - "jsonrpsee 0.22.5", + "jsonrpsee", "log", "memmap2 0.9.4", "num-format", @@ -2352,25 +2443,49 @@ dependencies = [ "sp-consensus", "sp-consensus-babe", "sp-consensus-grandpa", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-distance", "sp-inherents", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-io", "sp-keyring", - "sp-keystore 0.34.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-keystore", "sp-membership", "sp-offchain", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", "sp-session", - "sp-storage 19.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-storage 19.0.0", "sp-timestamp", "sp-transaction-pool", "sp-transaction-storage-proof", - "sp-trie 29.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-trie", "substrate-build-script-utils", "substrate-frame-rpc-system", ] +[[package]] +name = "duniter-end2end-tests" +version = "1.0.0" +dependencies = [ + "anyhow", + "clap", + "ctrlc", + "cucumber", + "distance-oracle", + "env_logger 0.11.3", + "hex", + "notify", + "notify-debouncer-mini", + "parity-scale-codec", + "portpicker", + "serde_json", + "sp-core", + "sp-core-hashing", + "sp-keyring", + "sp-runtime", + "subxt", + "tokio", +] + [[package]] name = "duniter-live-tests" version = "1.0.0" @@ -2379,8 +2494,8 @@ dependencies = [ "countmap", "hex-literal", "parity-scale-codec", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-runtime", "subxt", "tokio", ] @@ -2564,6 +2679,15 @@ dependencies = [ "syn 2.0.61", ] +[[package]] +name = "env_filter" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea" +dependencies = [ + "log", +] + [[package]] name = "env_logger" version = "0.10.2" @@ -2577,6 +2701,16 @@ dependencies = [ "termcolor", ] +[[package]] +name = "env_logger" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38b35839ba51819680ba087cd351788c9a3c476841207e0b8cee0b04722343b9" +dependencies = [ + "env_filter", + "log", +] + [[package]] name = "environmental" version = "1.1.4" @@ -2744,7 +2878,7 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "84f2e425d9790201ba4af4630191feac6dcc98765b118d4d18e91d23c2353866" dependencies = [ - "env_logger", + "env_logger 0.10.2", "log", ] @@ -2873,13 +3007,13 @@ dependencies = [ "scale-info", "serde", "sp-api", - "sp-application-crypto 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime-interface 24.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-storage 19.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-application-crypto", + "sp-core", + "sp-io", + "sp-runtime", + "sp-runtime-interface 24.0.0", + "sp-std 14.0.0", + "sp-storage 19.0.0", "static_assertions", ] @@ -2917,18 +3051,18 @@ dependencies = [ "serde_json", "sp-api", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-database", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-externalities 0.25.0", "sp-genesis-builder", "sp-inherents", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-keystore 0.34.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-state-machine 0.35.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-storage 19.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-trie 29.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-wasm-interface 20.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-io", + "sp-keystore", + "sp-runtime", + "sp-state-machine", + "sp-storage 19.0.0", + "sp-trie", + "sp-wasm-interface 20.0.0", "thiserror", "thousands", ] @@ -2945,11 +3079,11 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-tracing 16.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 14.0.0", + "sp-tracing 16.0.0", ] [[package]] @@ -2998,20 +3132,20 @@ dependencies = [ "serde_json", "smallvec", "sp-api", - "sp-arithmetic 23.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-arithmetic", + "sp-core", "sp-crypto-hashing-proc-macro", - "sp-debug-derive 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-debug-derive 14.0.0", "sp-genesis-builder", "sp-inherents", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-io", "sp-metadata-ir", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", "sp-staking", - "sp-state-machine 0.35.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-tracing 16.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-weights 27.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-state-machine", + "sp-std 14.0.0", + "sp-tracing 16.0.0", + "sp-weights", "static_assertions", "tt-call", ] @@ -3031,7 +3165,7 @@ dependencies = [ "proc-macro-warning", "proc-macro2", "quote", - "sp-crypto-hashing 0.1.0", + "sp-crypto-hashing", "syn 2.0.61", ] @@ -3069,12 +3203,12 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 14.0.0", "sp-version", - "sp-weights 27.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-weights", ] [[package]] @@ -3087,9 +3221,9 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -3109,8 +3243,8 @@ dependencies = [ "frame-support", "parity-scale-codec", "sp-api", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -3132,6 +3266,15 @@ dependencies = [ "winapi", ] +[[package]] +name = "fsevent-sys" +version = "4.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2" +dependencies = [ + "libc", +] + [[package]] name = "funty" version = "2.0.0" @@ -3328,21 +3471,21 @@ dependencies = [ "serde", "serde_derive", "sp-api", - "sp-arithmetic 23.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-arithmetic", "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", "sp-consensus-grandpa", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-distance", "sp-genesis-builder", "sp-inherents", "sp-membership", "sp-offchain", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", "sp-session", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-std 14.0.0", "sp-transaction-pool", "sp-version", "substrate-wasm-builder 17.0.0", @@ -3403,23 +3546,23 @@ dependencies = [ "serde", "serde_derive", "sp-api", - "sp-arithmetic 23.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-arithmetic", "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", "sp-consensus-grandpa", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-distance", "sp-genesis-builder", "sp-inherents", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-io", "sp-keyring", "sp-membership", "sp-offchain", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", "sp-session", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-std 14.0.0", "sp-transaction-pool", "sp-version", "substrate-wasm-builder 17.0.0", @@ -3499,6 +3642,23 @@ dependencies = [ "polyval", ] +[[package]] +name = "gherkin" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20b79820c0df536d1f3a089a2fa958f61cb96ce9e0f3f8f507f5a31179567755" +dependencies = [ + "heck 0.4.1", + "peg", + "quote", + "serde", + "serde_json", + "syn 2.0.61", + "textwrap", + "thiserror", + "typed-builder", +] + [[package]] name = "gimli" version = "0.27.3" @@ -3713,21 +3873,21 @@ dependencies = [ "serde", "serde_derive", "sp-api", - "sp-arithmetic 23.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-arithmetic", "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", "sp-consensus-grandpa", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-distance", "sp-genesis-builder", "sp-inherents", "sp-membership", "sp-offchain", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", "sp-session", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-std 14.0.0", "sp-transaction-pool", "sp-version", "substrate-wasm-builder 17.0.0", @@ -4253,6 +4413,32 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e04e2fd2b8188ea827b32ef11de88377086d690286ab35747ef7f9bf3ccb590" +[[package]] +name = "inflections" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a257582fdcde896fd96463bf2d40eefea0580021c0712a0e2b028b60b47a837a" + +[[package]] +name = "inotify" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff" +dependencies = [ + "bitflags 1.3.2", + "inotify-sys", + "libc", +] + +[[package]] +name = "inotify-sys" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" +dependencies = [ + "libc", +] + [[package]] name = "inout" version = "0.1.3" @@ -4280,6 +4466,12 @@ dependencies = [ "num-traits 0.2.19", ] +[[package]] +name = "inventory" +version = "0.3.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f958d3d68f4167080a18141e10381e7634563984a537f2a49a30fd8e53ac5767" + [[package]] name = "io-lifetimes" version = "1.0.11" @@ -4374,41 +4566,31 @@ dependencies = [ "wasm-bindgen", ] -[[package]] -name = "jsonrpsee" -version = "0.21.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9579d0ca9fb30da026bac2f0f7d9576ec93489aeb7cd4971dd5b4617d82c79b2" -dependencies = [ - "jsonrpsee-client-transport", - "jsonrpsee-core 0.21.0", - "jsonrpsee-http-client", - "jsonrpsee-types 0.21.0", -] - [[package]] name = "jsonrpsee" version = "0.22.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cfdb12a2381ea5b2e68c3469ec604a007b367778cdb14d09612c8069ebd616ad" dependencies = [ - "jsonrpsee-core 0.22.5", + "jsonrpsee-client-transport", + "jsonrpsee-core", + "jsonrpsee-http-client", "jsonrpsee-proc-macros", "jsonrpsee-server", - "jsonrpsee-types 0.22.5", + "jsonrpsee-types", "tokio", "tracing", ] [[package]] name = "jsonrpsee-client-transport" -version = "0.21.0" +version = "0.22.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f9f9ed46590a8d5681975f126e22531698211b926129a40a2db47cbca429220" +checksum = "4978087a58c3ab02efc5b07c5e5e2803024536106fd5506f558db172c889b3aa" dependencies = [ "futures-util", "http 0.2.12", - "jsonrpsee-core 0.21.0", + "jsonrpsee-core", "pin-project", "rustls-native-certs 0.7.0", "rustls-pki-types", @@ -4421,30 +4603,6 @@ dependencies = [ "url", ] -[[package]] -name = "jsonrpsee-core" -version = "0.21.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "776d009e2f591b78c038e0d053a796f94575d66ca4e77dd84bfc5e81419e436c" -dependencies = [ - "anyhow", - "async-lock", - "async-trait", - "beef", - "futures-timer", - "futures-util", - "hyper 0.14.28", - "jsonrpsee-types 0.21.0", - "pin-project", - "rustc-hash", - "serde", - "serde_json", - "thiserror", - "tokio", - "tokio-stream", - "tracing", -] - [[package]] name = "jsonrpsee-core" version = "0.22.5" @@ -4454,30 +4612,33 @@ dependencies = [ "anyhow", "async-trait", "beef", + "futures-timer", "futures-util", "hyper 0.14.28", - "jsonrpsee-types 0.22.5", + "jsonrpsee-types", "parking_lot 0.12.2", + "pin-project", "rand 0.8.5", "rustc-hash", "serde", "serde_json", "thiserror", "tokio", + "tokio-stream", "tracing", ] [[package]] name = "jsonrpsee-http-client" -version = "0.21.0" +version = "0.22.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78b7de9f3219d95985eb77fd03194d7c1b56c19bce1abfcc9d07462574b15572" +checksum = "1ccf93fc4a0bfe05d851d37d7c32b7f370fe94336b52a2f0efc5f1981895c2e5" dependencies = [ "async-trait", "hyper 0.14.28", "hyper-rustls", - "jsonrpsee-core 0.21.0", - "jsonrpsee-types 0.21.0", + "jsonrpsee-core", + "jsonrpsee-types", "serde", "serde_json", "thiserror", @@ -4509,8 +4670,8 @@ dependencies = [ "futures-util", "http 0.2.12", "hyper 0.14.28", - "jsonrpsee-core 0.22.5", - "jsonrpsee-types 0.22.5", + "jsonrpsee-core", + "jsonrpsee-types", "pin-project", "route-recognizer", "serde", @@ -4524,19 +4685,6 @@ dependencies = [ "tracing", ] -[[package]] -name = "jsonrpsee-types" -version = "0.21.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3266dfb045c9174b24c77c2dfe0084914bb23a6b2597d70c9dc6018392e1cd1b" -dependencies = [ - "anyhow", - "beef", - "serde", - "serde_json", - "thiserror", -] - [[package]] name = "jsonrpsee-types" version = "0.22.5" @@ -4579,6 +4727,26 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c33070833c9ee02266356de0c43f723152bd38bd96ddf52c82b3af10c9138b28" +[[package]] +name = "kqueue" +version = "1.0.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c" +dependencies = [ + "kqueue-sys", + "libc", +] + +[[package]] +name = "kqueue-sys" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b" +dependencies = [ + "bitflags 1.3.2", + "libc", +] + [[package]] name = "kvdb" version = "0.13.0" @@ -4598,6 +4766,29 @@ dependencies = [ "parking_lot 0.12.2", ] +[[package]] +name = "lazy-regex" +version = "3.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d12be4595afdf58bd19e4a9f4e24187da2a66700786ff660a418e9059937a4c" +dependencies = [ + "lazy-regex-proc_macros", + "once_cell", + "regex", +] + +[[package]] +name = "lazy-regex-proc_macros" +version = "3.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44bcd58e6c97a7fcbaffcdc95728b393b8d98933bfadad49ed4097845b57ef0b" +dependencies = [ + "proc-macro2", + "quote", + "regex", + "syn 2.0.61", +] + [[package]] name = "lazy_static" version = "1.4.0" @@ -5448,6 +5639,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" dependencies = [ "libc", + "log", "wasi 0.11.0+wasi-snapshot-preview1", "windows-sys 0.48.0", ] @@ -5727,6 +5919,18 @@ dependencies = [ "libc", ] +[[package]] +name = "nix" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" +dependencies = [ + "bitflags 2.5.0", + "cfg-if", + "cfg_aliases", + "libc", +] + [[package]] name = "no-std-compat" version = "0.4.1" @@ -5744,8 +5948,8 @@ name = "node-primitives" version = "2.0.0" source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0#030a7b8fd5ef03e4da466e65ce8fe92e3cff90e4" dependencies = [ - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-runtime", ] [[package]] @@ -5770,6 +5974,17 @@ dependencies = [ "minimal-lexical", ] +[[package]] +name = "nom_locate" +version = "4.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e3c83c053b0713da60c5b8de47fe8e494fe3ece5267b2f23090a07a053ba8f3" +dependencies = [ + "bytecount", + "memchr", + "nom", +] + [[package]] name = "nonzero_ext" version = "0.3.0" @@ -5782,6 +5997,35 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" +[[package]] +name = "notify" +version = "6.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d" +dependencies = [ + "bitflags 2.5.0", + "crossbeam-channel", + "filetime", + "fsevent-sys", + "inotify", + "kqueue", + "libc", + "log", + "mio", + "walkdir", + "windows-sys 0.48.0", +] + +[[package]] +name = "notify-debouncer-mini" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d40b221972a1fc5ef4d858a2f671fb34c75983eb385463dff3780eeff6a9d43" +dependencies = [ + "log", + "notify", +] + [[package]] name = "nu-ansi-term" version = "0.46.0" @@ -5999,10 +6243,10 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -6015,10 +6259,10 @@ dependencies = [ "pallet-session", "parity-scale-codec", "scale-info", - "sp-application-crypto 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-application-crypto", "sp-authority-discovery", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -6034,12 +6278,12 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-io", + "sp-runtime", "sp-staking", - "sp-state-machine 0.35.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-state-machine", + "sp-std 14.0.0", ] [[package]] @@ -6052,8 +6296,8 @@ dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -6070,14 +6314,14 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-application-crypto 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-application-crypto", "sp-consensus-babe", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-io", + "sp-runtime", "sp-session", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-std 14.0.0", ] [[package]] @@ -6092,8 +6336,8 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -6107,11 +6351,11 @@ dependencies = [ "maplit", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-keystore 0.34.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-io", + "sp-keystore", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -6125,10 +6369,10 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -6147,13 +6391,13 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-consensus-babe", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-distance", "sp-inherents", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-keystore 0.34.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-io", + "sp-keystore", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -6172,10 +6416,10 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -6189,10 +6433,10 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -6217,12 +6461,12 @@ dependencies = [ "pallet-membership", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-io", "sp-membership", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-state-machine 0.35.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", + "sp-state-machine", + "sp-std 14.0.0", ] [[package]] @@ -6238,14 +6482,14 @@ dependencies = [ "pallet-session", "parity-scale-codec", "scale-info", - "sp-application-crypto 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-application-crypto", "sp-consensus-grandpa", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-io", + "sp-runtime", "sp-session", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-std 14.0.0", ] [[package]] @@ -6259,12 +6503,12 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-keystore 0.34.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-state-machine 0.35.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-io", + "sp-keystore", + "sp-runtime", + "sp-state-machine", + "sp-std 14.0.0", "substrate-wasm-builder 5.0.0-dev", ] @@ -6280,12 +6524,12 @@ dependencies = [ "pallet-authorship", "parity-scale-codec", "scale-info", - "sp-application-crypto 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-application-crypto", + "sp-core", + "sp-io", + "sp-runtime", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-std 14.0.0", ] [[package]] @@ -6298,11 +6542,11 @@ dependencies = [ "maplit", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-io", "sp-membership", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -6316,9 +6560,9 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-io", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -6330,11 +6574,11 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-io", + "sp-runtime", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-std 14.0.0", ] [[package]] @@ -6349,10 +6593,10 @@ dependencies = [ "pallet-transaction-payment", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -6366,10 +6610,10 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -6382,10 +6626,10 @@ dependencies = [ "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -6398,9 +6642,9 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-io", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -6414,10 +6658,10 @@ dependencies = [ "pallet-identity", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -6432,10 +6676,10 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-weights 27.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-io", + "sp-runtime", + "sp-std 14.0.0", + "sp-weights", ] [[package]] @@ -6450,14 +6694,14 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-io", + "sp-runtime", "sp-session", "sp-staking", - "sp-state-machine 0.35.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-trie 29.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-state-machine", + "sp-std 14.0.0", + "sp-trie", ] [[package]] @@ -6468,8 +6712,8 @@ dependencies = [ "frame-system", "pallet-session", "parity-scale-codec", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -6484,11 +6728,11 @@ dependencies = [ "pallet-authority-members", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-io", + "sp-runtime", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-std 14.0.0", ] [[package]] @@ -6502,9 +6746,9 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-io", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -6520,10 +6764,10 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-inherents", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-storage 19.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-io", + "sp-runtime", + "sp-std 14.0.0", + "sp-storage 19.0.0", "sp-timestamp", ] @@ -6537,10 +6781,10 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -6548,15 +6792,15 @@ name = "pallet-transaction-payment-rpc" version = "30.0.0" source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0#030a7b8fd5ef03e4da466e65ce8fe92e3cff90e4" dependencies = [ - "jsonrpsee 0.22.5", + "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", "parity-scale-codec", "sp-api", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-rpc", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-weights 27.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", + "sp-weights", ] [[package]] @@ -6567,8 +6811,8 @@ dependencies = [ "pallet-transaction-payment", "parity-scale-codec", "sp-api", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-weights 27.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", + "sp-weights", ] [[package]] @@ -6585,9 +6829,9 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -6602,11 +6846,11 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic 23.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -6618,11 +6862,11 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-io", + "sp-runtime", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-std 14.0.0", ] [[package]] @@ -6635,10 +6879,10 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -6802,8 +7046,35 @@ dependencies = [ ] [[package]] -name = "pem" -version = "1.1.1" +name = "peg" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f76678828272f177ac33b7e2ac2e3e73cc6c1cd1e3e387928aa69562fa51367" +dependencies = [ + "peg-macros", + "peg-runtime", +] + +[[package]] +name = "peg-macros" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "636d60acf97633e48d266d7415a9355d4389cea327a193f87df395d88cd2b14d" +dependencies = [ + "peg-runtime", + "proc-macro2", + "quote", +] + +[[package]] +name = "peg-runtime" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9555b1514d2d99d78150d3c799d4c357a3e2c2a8062cd108e93a06d9057629c5" + +[[package]] +name = "pem" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8" dependencies = [ @@ -7079,6 +7350,15 @@ version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" +[[package]] +name = "portpicker" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be97d76faf1bfab666e1375477b23fde79eccf0276e9b63b92a39d676a889ba9" +dependencies = [ + "rand 0.8.5", +] + [[package]] name = "powerfmt" version = "0.2.0" @@ -7716,6 +7996,12 @@ version = "0.6.29" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" +[[package]] +name = "regex-syntax" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" + [[package]] name = "regex-syntax" version = "0.8.3" @@ -7850,7 +8136,7 @@ dependencies = [ "log", "netlink-packet-route", "netlink-proto", - "nix", + "nix 0.24.3", "thiserror", "tokio", ] @@ -8095,8 +8381,8 @@ version = "23.0.0" source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0#030a7b8fd5ef03e4da466e65ce8fe92e3cff90e4" dependencies = [ "log", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-wasm-interface 20.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-wasm-interface 20.0.0", "thiserror", ] @@ -8116,9 +8402,9 @@ dependencies = [ "sp-api", "sp-blockchain", "sp-consensus", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-inherents", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", "substrate-prometheus-endpoint", ] @@ -8131,10 +8417,10 @@ dependencies = [ "sp-api", "sp-block-builder", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-inherents", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-trie 29.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", + "sp-trie", ] [[package]] @@ -8155,13 +8441,13 @@ dependencies = [ "serde", "serde_json", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-crypto-hashing 0.1.0", + "sp-core", + "sp-crypto-hashing", "sp-genesis-builder", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-state-machine 0.35.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-tracing 16.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-io", + "sp-runtime", + "sp-state-machine", + "sp-tracing 16.0.0", ] [[package]] @@ -8206,11 +8492,11 @@ dependencies = [ "serde", "serde_json", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-keyring", - "sp-keystore 0.34.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-panic-handler 13.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-keystore", + "sp-panic-handler", + "sp-runtime", "sp-version", "thiserror", "tokio", @@ -8232,14 +8518,14 @@ dependencies = [ "sp-api", "sp-blockchain", "sp-consensus", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-database", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-state-machine 0.35.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-externalities 0.25.0", + "sp-runtime", + "sp-state-machine", "sp-statement-store", - "sp-storage 19.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-trie 29.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-storage 19.0.0", + "sp-trie", "substrate-prometheus-endpoint", ] @@ -8259,13 +8545,13 @@ dependencies = [ "sc-client-api", "sc-state-db", "schnellru", - "sp-arithmetic 23.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-arithmetic", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-database", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-state-machine 0.35.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-trie 29.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", + "sp-state-machine", + "sp-trie", ] [[package]] @@ -8286,9 +8572,9 @@ dependencies = [ "sp-api", "sp-blockchain", "sp-consensus", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-state-machine 0.35.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-runtime", + "sp-state-machine", "substrate-prometheus-endpoint", "thiserror", ] @@ -8308,16 +8594,16 @@ dependencies = [ "sc-consensus-slots", "sc-telemetry", "sp-api", - "sp-application-crypto 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-application-crypto", "sp-block-builder", "sp-blockchain", "sp-consensus", "sp-consensus-aura", "sp-consensus-slots", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-inherents", - "sp-keystore 0.34.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-keystore", + "sp-runtime", "substrate-prometheus-endpoint", "thiserror", ] @@ -8343,17 +8629,17 @@ dependencies = [ "sc-telemetry", "sc-transaction-pool-api", "sp-api", - "sp-application-crypto 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-application-crypto", "sp-block-builder", "sp-blockchain", "sp-consensus", "sp-consensus-babe", "sp-consensus-slots", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-crypto-hashing 0.1.0", + "sp-core", + "sp-crypto-hashing", "sp-inherents", - "sp-keystore 0.34.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-keystore", + "sp-runtime", "substrate-prometheus-endpoint", "thiserror", ] @@ -8364,19 +8650,19 @@ version = "0.34.0" source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0#030a7b8fd5ef03e4da466e65ce8fe92e3cff90e4" dependencies = [ "futures 0.3.30", - "jsonrpsee 0.22.5", + "jsonrpsee", "sc-consensus-babe", "sc-consensus-epochs", "sc-rpc-api", "serde", "sp-api", - "sp-application-crypto 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-application-crypto", "sp-blockchain", "sp-consensus", "sp-consensus-babe", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-keystore 0.34.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-keystore", + "sp-runtime", "thiserror", ] @@ -8390,7 +8676,7 @@ dependencies = [ "sc-client-api", "sc-consensus", "sp-blockchain", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", ] [[package]] @@ -8424,15 +8710,15 @@ dependencies = [ "sc-utils", "serde_json", "sp-api", - "sp-application-crypto 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-arithmetic 23.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-application-crypto", + "sp-arithmetic", "sp-blockchain", "sp-consensus", "sp-consensus-grandpa", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-crypto-hashing 0.1.0", - "sp-keystore 0.34.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-crypto-hashing", + "sp-keystore", + "sp-runtime", "substrate-prometheus-endpoint", "thiserror", ] @@ -8446,7 +8732,7 @@ dependencies = [ "async-trait", "futures 0.3.30", "futures-timer", - "jsonrpsee 0.22.5", + "jsonrpsee", "log", "parity-scale-codec", "sc-client-api", @@ -8463,10 +8749,10 @@ dependencies = [ "sp-consensus-aura", "sp-consensus-babe", "sp-consensus-slots", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-inherents", - "sp-keystore 0.34.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-keystore", + "sp-runtime", "sp-timestamp", "substrate-prometheus-endpoint", "thiserror", @@ -8485,14 +8771,14 @@ dependencies = [ "sc-client-api", "sc-consensus", "sc-telemetry", - "sp-arithmetic 23.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-arithmetic", "sp-blockchain", "sp-consensus", "sp-consensus-slots", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-inherents", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-state-machine 0.35.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", + "sp-state-machine", ] [[package]] @@ -8507,14 +8793,14 @@ dependencies = [ "sc-executor-wasmtime", "schnellru", "sp-api", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-panic-handler 13.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime-interface 24.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-trie 29.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-externalities 0.25.0", + "sp-io", + "sp-panic-handler", + "sp-runtime-interface 24.0.0", + "sp-trie", "sp-version", - "sp-wasm-interface 20.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-wasm-interface 20.0.0", "tracing", ] @@ -8526,7 +8812,7 @@ dependencies = [ "polkavm", "sc-allocator", "sp-maybe-compressed-blob 11.0.0", - "sp-wasm-interface 20.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-wasm-interface 20.0.0", "thiserror", "wasm-instrument", ] @@ -8539,7 +8825,7 @@ dependencies = [ "log", "polkavm", "sc-executor-common", - "sp-wasm-interface 20.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-wasm-interface 20.0.0", ] [[package]] @@ -8555,8 +8841,8 @@ dependencies = [ "rustix 0.36.17", "sc-allocator", "sc-executor-common", - "sp-runtime-interface 24.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-wasm-interface 20.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime-interface 24.0.0", + "sp-wasm-interface 20.0.0", "wasmtime", ] @@ -8574,7 +8860,7 @@ dependencies = [ "sc-network-common", "sc-network-sync", "sp-blockchain", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", ] [[package]] @@ -8585,9 +8871,9 @@ dependencies = [ "array-bytes 6.2.2", "parking_lot 0.12.2", "serde_json", - "sp-application-crypto 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-keystore 0.34.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-application-crypto", + "sp-core", + "sp-keystore", "thiserror", ] @@ -8613,10 +8899,10 @@ dependencies = [ "sc-transaction-pool-api", "sp-api", "sp-consensus", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-keystore 0.34.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-keystore", "sp-mixnet", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", "thiserror", ] @@ -8657,10 +8943,10 @@ dependencies = [ "serde", "serde_json", "smallvec", - "sp-arithmetic 23.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-arithmetic", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-runtime", "substrate-prometheus-endpoint", "thiserror", "tokio", @@ -8686,7 +8972,7 @@ dependencies = [ "sc-network-types", "sp-consensus", "sp-consensus-grandpa", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", ] [[package]] @@ -8704,7 +8990,7 @@ dependencies = [ "sc-network-sync", "sc-network-types", "schnellru", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", "substrate-prometheus-endpoint", "tracing", ] @@ -8725,8 +9011,8 @@ dependencies = [ "sc-network", "sc-network-types", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-runtime", "thiserror", ] @@ -8755,12 +9041,12 @@ dependencies = [ "sc-utils", "schnellru", "smallvec", - "sp-arithmetic 23.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-arithmetic", "sp-blockchain", "sp-consensus", "sp-consensus-grandpa", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-runtime", "substrate-prometheus-endpoint", "thiserror", "tokio", @@ -8783,7 +9069,7 @@ dependencies = [ "sc-network-types", "sc-utils", "sp-consensus", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", "substrate-prometheus-endpoint", ] @@ -8827,11 +9113,11 @@ dependencies = [ "sc-transaction-pool-api", "sc-utils", "sp-api", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-keystore 0.34.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-externalities 0.25.0", + "sp-keystore", "sp-offchain", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", "threadpool", "tracing", ] @@ -8851,7 +9137,7 @@ version = "29.0.0" source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0#030a7b8fd5ef03e4da466e65ce8fe92e3cff90e4" dependencies = [ "futures 0.3.30", - "jsonrpsee 0.22.5", + "jsonrpsee", "log", "parity-scale-codec", "parking_lot 0.12.2", @@ -8866,11 +9152,11 @@ dependencies = [ "serde_json", "sp-api", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-keystore 0.34.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-keystore", "sp-offchain", "sp-rpc", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", "sp-session", "sp-statement-store", "sp-version", @@ -8882,7 +9168,7 @@ name = "sc-rpc-api" version = "0.33.0" source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0#030a7b8fd5ef03e4da466e65ce8fe92e3cff90e4" dependencies = [ - "jsonrpsee 0.22.5", + "jsonrpsee", "parity-scale-codec", "sc-chain-spec", "sc-mixnet", @@ -8890,9 +9176,9 @@ dependencies = [ "scale-info", "serde", "serde_json", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-rpc", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", "sp-version", "thiserror", ] @@ -8906,7 +9192,7 @@ dependencies = [ "governor", "http 0.2.12", "hyper 0.14.28", - "jsonrpsee 0.22.5", + "jsonrpsee", "log", "serde_json", "substrate-prometheus-endpoint", @@ -8924,7 +9210,7 @@ dependencies = [ "futures 0.3.30", "futures-util", "hex", - "jsonrpsee 0.22.5", + "jsonrpsee", "log", "parity-scale-codec", "parking_lot 0.12.2", @@ -8938,9 +9224,9 @@ dependencies = [ "serde", "sp-api", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-rpc", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", "sp-version", "thiserror", "tokio", @@ -8957,7 +9243,7 @@ dependencies = [ "exit-future", "futures 0.3.30", "futures-timer", - "jsonrpsee 0.22.5", + "jsonrpsee", "log", "parity-scale-codec", "parking_lot 0.12.2", @@ -8991,16 +9277,16 @@ dependencies = [ "sp-api", "sp-blockchain", "sp-consensus", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-keystore 0.34.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-externalities 0.25.0", + "sp-keystore", + "sp-runtime", "sp-session", - "sp-state-machine 0.35.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-storage 19.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-state-machine", + "sp-storage 19.0.0", "sp-transaction-pool", "sp-transaction-storage-proof", - "sp-trie 29.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-trie", "sp-version", "static_init", "substrate-prometheus-endpoint", @@ -9019,7 +9305,7 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.2", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", ] [[package]] @@ -9037,10 +9323,10 @@ dependencies = [ "sc-telemetry", "serde", "serde_json", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-crypto-hashing 0.1.0", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-crypto-hashing", + "sp-io", + "sp-std 14.0.0", ] [[package]] @@ -9083,10 +9369,10 @@ dependencies = [ "serde", "sp-api", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-rpc", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-tracing 16.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", + "sp-tracing 16.0.0", "thiserror", "tracing", "tracing-log 0.1.4", @@ -9122,10 +9408,10 @@ dependencies = [ "serde", "sp-api", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-crypto-hashing 0.1.0", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-tracing 16.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-crypto-hashing", + "sp-runtime", + "sp-tracing 16.0.0", "sp-transaction-pool", "substrate-prometheus-endpoint", "thiserror", @@ -9142,8 +9428,8 @@ dependencies = [ "parity-scale-codec", "serde", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-runtime", "thiserror", ] @@ -9159,18 +9445,7 @@ dependencies = [ "log", "parking_lot 0.12.2", "prometheus", - "sp-arithmetic 23.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", -] - -[[package]] -name = "scale-bits" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "036575c29af9b6e4866ffb7fa055dbf623fe7a9cc159b33786de6013a6969d89" -dependencies = [ - "parity-scale-codec", - "scale-info", - "serde", + "sp-arithmetic", ] [[package]] @@ -9185,21 +9460,6 @@ dependencies = [ "serde", ] -[[package]] -name = "scale-decode" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7caaf753f8ed1ab4752c6afb20174f03598c664724e0e32628e161c21000ff76" -dependencies = [ - "derive_more", - "parity-scale-codec", - "primitive-types", - "scale-bits 0.4.0", - "scale-decode-derive", - "scale-info", - "smallvec", -] - [[package]] name = "scale-decode" version = "0.11.1" @@ -9208,39 +9468,25 @@ checksum = "afc79ba56a1c742f5aeeed1f1801f3edf51f7e818f0a54582cac6f131364ea7b" dependencies = [ "derive_more", "parity-scale-codec", - "scale-bits 0.5.0", + "primitive-types", + "scale-bits", + "scale-decode-derive", "scale-type-resolver", "smallvec", ] [[package]] name = "scale-decode-derive" -version = "0.10.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3475108a1b62c7efd1b5c65974f30109a598b2f45f23c9ae030acb9686966db" +checksum = "5398fdb3c7bea3cb419bac4983aadacae93fe1a7b5f693f4ebd98c3821aad7a5" dependencies = [ "darling 0.14.4", - "proc-macro-crate 1.1.3", "proc-macro2", "quote", "syn 1.0.109", ] -[[package]] -name = "scale-encode" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d70cb4b29360105483fac1ed567ff95d65224a14dd275b6303ed0a654c78de5" -dependencies = [ - "derive_more", - "parity-scale-codec", - "primitive-types", - "scale-bits 0.4.0", - "scale-encode-derive", - "scale-info", - "smallvec", -] - [[package]] name = "scale-encode" version = "0.6.0" @@ -9249,16 +9495,18 @@ checksum = "628800925a33794fb5387781b883b5e14d130fece9af5a63613867b8de07c5c7" dependencies = [ "derive_more", "parity-scale-codec", - "scale-bits 0.5.0", + "primitive-types", + "scale-bits", + "scale-encode-derive", "scale-type-resolver", "smallvec", ] [[package]] name = "scale-encode-derive" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "995491f110efdc6bea96d6a746140e32bfceb4ea47510750a5467295a4707a25" +checksum = "7a304e1af7cdfbe7a24e08b012721456cc8cecdedadc14b3d10513eada63233c" dependencies = [ "darling 0.14.4", "proc-macro-crate 1.1.3", @@ -9305,9 +9553,9 @@ dependencies = [ [[package]] name = "scale-typegen" -version = "0.1.1" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00860983481ac590ac87972062909bef0d6a658013b592ccc0f2feb272feab11" +checksum = "d470fa75e71b12b3244a4113adc4bc49891f3daba2054703cacd06256066397e" dependencies = [ "proc-macro2", "quote", @@ -9318,9 +9566,9 @@ dependencies = [ [[package]] name = "scale-value" -version = "0.13.0" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58223c7691bf0bd46b43c9aea6f0472d1067f378d574180232358d7c6e0a8089" +checksum = "c07ccfee963104335c971aaf8b7b0e749be8569116322df23f1f75c4ca9e4a28" dependencies = [ "base58", "blake2 0.10.6", @@ -9328,31 +9576,15 @@ dependencies = [ "either", "frame-metadata 15.1.0", "parity-scale-codec", - "scale-bits 0.4.0", - "scale-decode 0.10.0", - "scale-encode 0.5.0", + "scale-bits", + "scale-decode", + "scale-encode", "scale-info", + "scale-type-resolver", "serde", "yap", ] -[[package]] -name = "scale-value" -version = "0.14.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c07ccfee963104335c971aaf8b7b0e749be8569116322df23f1f75c4ca9e4a28" -dependencies = [ - "derive_more", - "either", - "frame-metadata 15.1.0", - "parity-scale-codec", - "scale-bits 0.5.0", - "scale-decode 0.11.1", - "scale-encode 0.6.0", - "scale-info", - "scale-type-resolver", -] - [[package]] name = "schannel" version = "0.1.23" @@ -9429,6 +9661,18 @@ dependencies = [ "thiserror", ] +[[package]] +name = "sealed" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4a8caec23b7800fb97971a1c6ae365b6239aaeddfb934d6265f8505e795699d" +dependencies = [ + "heck 0.4.1", + "proc-macro2", + "quote", + "syn 2.0.61", +] + [[package]] name = "sec1" version = "0.7.3" @@ -9786,6 +10030,23 @@ version = "1.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" +[[package]] +name = "smart-default" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eb01866308440fc64d6c44d9e86c5cc17adfe33c4d6eed55da9145044d0ffc1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.61", +] + +[[package]] +name = "smawk" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c" + [[package]] name = "smol" version = "2.0.0" @@ -9964,14 +10225,14 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-api-proc-macro", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-externalities 0.25.0", "sp-metadata-ir", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime-interface 24.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-state-machine 0.35.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-trie 29.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", + "sp-runtime-interface 24.0.0", + "sp-state-machine", + "sp-std 14.0.0", + "sp-trie", "sp-version", "thiserror", ] @@ -9998,22 +10259,9 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", -] - -[[package]] -name = "sp-application-crypto" -version = "30.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" -dependencies = [ - "parity-scale-codec", - "scale-info", - "serde", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", + "sp-core", + "sp-io", + "sp-std 14.0.0", ] [[package]] @@ -10027,21 +10275,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "static_assertions", -] - -[[package]] -name = "sp-arithmetic" -version = "23.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" -dependencies = [ - "integer-sqrt", - "num-traits 0.2.19", - "parity-scale-codec", - "scale-info", - "serde", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", + "sp-std 14.0.0", "static_assertions", ] @@ -10071,8 +10305,8 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-api", - "sp-application-crypto 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-application-crypto", + "sp-runtime", ] [[package]] @@ -10082,7 +10316,7 @@ source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-sub dependencies = [ "sp-api", "sp-inherents", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", ] [[package]] @@ -10098,8 +10332,8 @@ dependencies = [ "sp-api", "sp-consensus", "sp-database", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-state-machine 0.35.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", + "sp-state-machine", "thiserror", ] @@ -10111,10 +10345,10 @@ dependencies = [ "async-trait", "futures 0.3.30", "log", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-inherents", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-state-machine 0.35.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", + "sp-state-machine", "thiserror", ] @@ -10127,10 +10361,10 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-api", - "sp-application-crypto 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-application-crypto", "sp-consensus-slots", "sp-inherents", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", "sp-timestamp", ] @@ -10144,11 +10378,11 @@ dependencies = [ "scale-info", "serde", "sp-api", - "sp-application-crypto 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-application-crypto", "sp-consensus-slots", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-inherents", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", "sp-timestamp", ] @@ -10163,10 +10397,10 @@ dependencies = [ "scale-info", "serde", "sp-api", - "sp-application-crypto 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-keystore 0.34.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-application-crypto", + "sp-core", + "sp-keystore", + "sp-runtime", ] [[package]] @@ -10213,61 +10447,14 @@ dependencies = [ "secp256k1", "secrecy", "serde", - "sp-crypto-hashing 0.1.0", - "sp-debug-derive 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime-interface 24.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-storage 19.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "ss58-registry", - "substrate-bip39 0.4.7 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "thiserror", - "tracing", - "w3f-bls", - "zeroize", -] - -[[package]] -name = "sp-core" -version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" -dependencies = [ - "array-bytes 6.2.2", - "bandersnatch_vrfs", - "bitflags 1.3.2", - "blake2 0.10.6", - "bounded-collections", - "bs58 0.5.1", - "dyn-clonable", - "ed25519-zebra 3.1.0", - "futures 0.3.30", - "hash-db", - "hash256-std-hasher", - "impl-serde", - "itertools 0.10.5", - "k256", - "libsecp256k1", - "log", - "merlin", - "parity-bip39", - "parity-scale-codec", - "parking_lot 0.12.2", - "paste", - "primitive-types", - "rand 0.8.5", - "scale-info", - "schnorrkel", - "secp256k1", - "secrecy", - "serde", - "sp-crypto-hashing 0.0.0", - "sp-debug-derive 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-runtime-interface 24.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-storage 19.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", + "sp-crypto-hashing", + "sp-debug-derive 14.0.0", + "sp-externalities 0.25.0", + "sp-runtime-interface 24.0.0", + "sp-std 14.0.0", + "sp-storage 19.0.0", "ss58-registry", - "substrate-bip39 0.4.7 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", + "substrate-bip39", "thiserror", "tracing", "w3f-bls", @@ -10277,9 +10464,9 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "15.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0#030a7b8fd5ef03e4da466e65ce8fe92e3cff90e4" dependencies = [ - "sp-crypto-hashing 0.0.0", + "sp-crypto-hashing", ] [[package]] @@ -10303,19 +10490,6 @@ dependencies = [ "sp-std 8.0.0", ] -[[package]] -name = "sp-crypto-hashing" -version = "0.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" -dependencies = [ - "blake2b_simd", - "byteorder", - "digest 0.10.7", - "sha2 0.10.8", - "sha3", - "twox-hash", -] - [[package]] name = "sp-crypto-hashing" version = "0.1.0" @@ -10335,7 +10509,7 @@ version = "0.1.0" source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0#030a7b8fd5ef03e4da466e65ce8fe92e3cff90e4" dependencies = [ "quote", - "sp-crypto-hashing 0.1.0", + "sp-crypto-hashing", "syn 2.0.61", ] @@ -10368,16 +10542,6 @@ dependencies = [ "syn 2.0.61", ] -[[package]] -name = "sp-debug-derive" -version = "14.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.61", -] - [[package]] name = "sp-distance" version = "1.0.0" @@ -10388,8 +10552,8 @@ dependencies = [ "scale-info", "serde", "sp-inherents", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", + "sp-std 14.0.0", "thiserror", ] @@ -10411,18 +10575,7 @@ source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-sub dependencies = [ "environmental", "parity-scale-codec", - "sp-storage 19.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", -] - -[[package]] -name = "sp-externalities" -version = "0.25.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" -dependencies = [ - "environmental", - "parity-scale-codec", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-storage 19.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", + "sp-storage 19.0.0", ] [[package]] @@ -10434,7 +10587,7 @@ dependencies = [ "scale-info", "serde_json", "sp-api", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", ] [[package]] @@ -10446,7 +10599,7 @@ dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", "thiserror", ] @@ -10463,41 +10616,15 @@ dependencies = [ "polkavm-derive", "rustversion", "secp256k1", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-crypto-hashing 0.1.0", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-keystore 0.34.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime-interface 24.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-state-machine 0.35.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-tracing 16.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-trie 29.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "tracing", - "tracing-core", -] - -[[package]] -name = "sp-io" -version = "30.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" -dependencies = [ - "bytes", - "ed25519-dalek 2.1.1", - "libsecp256k1", - "log", - "parity-scale-codec", - "polkavm-derive", - "rustversion", - "secp256k1", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-crypto-hashing 0.0.0", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-keystore 0.34.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-runtime-interface 24.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-state-machine 0.35.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-tracing 16.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-trie 29.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", + "sp-core", + "sp-crypto-hashing", + "sp-externalities 0.25.0", + "sp-keystore", + "sp-runtime-interface 24.0.0", + "sp-state-machine", + "sp-std 14.0.0", + "sp-tracing 16.0.0", + "sp-trie", "tracing", "tracing-core", ] @@ -10507,8 +10634,8 @@ name = "sp-keyring" version = "31.0.0" source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0#030a7b8fd5ef03e4da466e65ce8fe92e3cff90e4" dependencies = [ - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-runtime", "strum 0.26.2", ] @@ -10519,19 +10646,8 @@ source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-sub dependencies = [ "parity-scale-codec", "parking_lot 0.12.2", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", -] - -[[package]] -name = "sp-keystore" -version = "0.34.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" -dependencies = [ - "parity-scale-codec", - "parking_lot 0.12.2", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", + "sp-core", + "sp-externalities 0.25.0", ] [[package]] @@ -10560,8 +10676,8 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", + "sp-std 14.0.0", ] [[package]] @@ -10582,7 +10698,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-api", - "sp-application-crypto 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-application-crypto", ] [[package]] @@ -10591,8 +10707,8 @@ version = "26.0.0" source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0#030a7b8fd5ef03e4da466e65ce8fe92e3cff90e4" dependencies = [ "sp-api", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-runtime", ] [[package]] @@ -10605,16 +10721,6 @@ dependencies = [ "regex", ] -[[package]] -name = "sp-panic-handler" -version = "13.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" -dependencies = [ - "backtrace", - "lazy_static", - "regex", -] - [[package]] name = "sp-rpc" version = "26.0.0" @@ -10622,7 +10728,7 @@ source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-sub dependencies = [ "rustc-hash", "serde", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", ] [[package]] @@ -10641,36 +10747,12 @@ dependencies = [ "scale-info", "serde", "simple-mermaid", - "sp-application-crypto 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-arithmetic 23.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-weights 27.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", -] - -[[package]] -name = "sp-runtime" -version = "31.0.1" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" -dependencies = [ - "docify", - "either", - "hash256-std-hasher", - "impl-trait-for-tuples", - "log", - "parity-scale-codec", - "paste", - "rand 0.8.5", - "scale-info", - "serde", - "simple-mermaid", - "sp-application-crypto 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-arithmetic 23.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-weights 27.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", + "sp-application-crypto", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-std 14.0.0", + "sp-weights", ] [[package]] @@ -10701,31 +10783,12 @@ dependencies = [ "parity-scale-codec", "polkavm-derive", "primitive-types", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime-interface-proc-macro 17.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-storage 19.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-tracing 16.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-wasm-interface 20.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "static_assertions", -] - -[[package]] -name = "sp-runtime-interface" -version = "24.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" -dependencies = [ - "bytes", - "impl-trait-for-tuples", - "parity-scale-codec", - "polkavm-derive", - "primitive-types", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-runtime-interface-proc-macro 17.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-storage 19.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-tracing 16.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-wasm-interface 20.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", + "sp-externalities 0.25.0", + "sp-runtime-interface-proc-macro 17.0.0", + "sp-std 14.0.0", + "sp-storage 19.0.0", + "sp-tracing 16.0.0", + "sp-wasm-interface 20.0.0", "static_assertions", ] @@ -10755,19 +10818,6 @@ dependencies = [ "syn 2.0.61", ] -[[package]] -name = "sp-runtime-interface-proc-macro" -version = "17.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" -dependencies = [ - "Inflector", - "expander", - "proc-macro-crate 3.1.0", - "proc-macro2", - "quote", - "syn 2.0.61", -] - [[package]] name = "sp-session" version = "27.0.0" @@ -10776,9 +10826,9 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-api", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-keystore 0.34.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-keystore", + "sp-runtime", "sp-staking", ] @@ -10791,8 +10841,8 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-runtime", ] [[package]] @@ -10806,34 +10856,13 @@ dependencies = [ "parking_lot 0.12.2", "rand 0.8.5", "smallvec", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-panic-handler 13.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-trie 29.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "thiserror", - "tracing", - "trie-db 0.29.0", -] - -[[package]] -name = "sp-state-machine" -version = "0.35.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" -dependencies = [ - "hash-db", - "log", - "parity-scale-codec", - "parking_lot 0.12.2", - "rand 0.8.5", - "smallvec", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-panic-handler 13.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-trie 29.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", + "sp-core", + "sp-externalities 0.25.0", + "sp-panic-handler", + "sp-trie", "thiserror", "tracing", - "trie-db 0.28.0", + "trie-db", ] [[package]] @@ -10850,12 +10879,12 @@ dependencies = [ "scale-info", "sha2 0.10.8", "sp-api", - "sp-application-crypto 30.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-crypto-hashing 0.1.0", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime-interface 24.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-application-crypto", + "sp-core", + "sp-crypto-hashing", + "sp-externalities 0.25.0", + "sp-runtime", + "sp-runtime-interface 24.0.0", "thiserror", "x25519-dalek 2.0.1", ] @@ -10870,11 +10899,6 @@ name = "sp-std" version = "14.0.0" source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0#030a7b8fd5ef03e4da466e65ce8fe92e3cff90e4" -[[package]] -name = "sp-std" -version = "14.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" - [[package]] name = "sp-storage" version = "13.0.0" @@ -10897,20 +10921,7 @@ dependencies = [ "parity-scale-codec", "ref-cast", "serde", - "sp-debug-derive 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", -] - -[[package]] -name = "sp-storage" -version = "19.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" -dependencies = [ - "impl-serde", - "parity-scale-codec", - "ref-cast", - "serde", - "sp-debug-derive 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", + "sp-debug-derive 14.0.0", ] [[package]] @@ -10921,7 +10932,7 @@ dependencies = [ "async-trait", "parity-scale-codec", "sp-inherents", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", "thiserror", ] @@ -10948,25 +10959,13 @@ dependencies = [ "tracing-subscriber 0.3.18", ] -[[package]] -name = "sp-tracing" -version = "16.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" -dependencies = [ - "parity-scale-codec", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "tracing", - "tracing-core", - "tracing-subscriber 0.2.25", -] - [[package]] name = "sp-transaction-pool" version = "26.0.0" source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0#030a7b8fd5ef03e4da466e65ce8fe92e3cff90e4" dependencies = [ "sp-api", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", ] [[package]] @@ -10977,10 +10976,10 @@ dependencies = [ "async-trait", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", "sp-inherents", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-trie 29.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", + "sp-trie", ] [[package]] @@ -10998,35 +10997,11 @@ dependencies = [ "rand 0.8.5", "scale-info", "schnellru", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "thiserror", - "tracing", - "trie-db 0.29.0", - "trie-root", -] - -[[package]] -name = "sp-trie" -version = "29.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" -dependencies = [ - "ahash 0.8.11", - "hash-db", - "lazy_static", - "memory-db", - "nohash-hasher", - "parity-scale-codec", - "parking_lot 0.12.2", - "rand 0.8.5", - "scale-info", - "schnellru", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", + "sp-core", + "sp-externalities 0.25.0", "thiserror", "tracing", - "trie-db 0.28.0", + "trie-db", "trie-root", ] @@ -11041,8 +11016,8 @@ dependencies = [ "scale-info", "serde", "sp-crypto-hashing-proc-macro", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-runtime", + "sp-std 14.0.0", "sp-version-proc-macro", "thiserror", ] @@ -11083,19 +11058,6 @@ dependencies = [ "wasmtime", ] -[[package]] -name = "sp-wasm-interface" -version = "20.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" -dependencies = [ - "anyhow", - "impl-trait-for-tuples", - "log", - "parity-scale-codec", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "wasmtime", -] - [[package]] name = "sp-weights" version = "27.0.0" @@ -11106,23 +11068,8 @@ dependencies = [ "scale-info", "serde", "smallvec", - "sp-arithmetic 23.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-debug-derive 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", -] - -[[package]] -name = "sp-weights" -version = "27.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" -dependencies = [ - "bounded-collections", - "parity-scale-codec", - "scale-info", - "serde", - "smallvec", - "sp-arithmetic 23.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-debug-derive 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", + "sp-arithmetic", + "sp-debug-derive 14.0.0", ] [[package]] @@ -11299,18 +11246,6 @@ dependencies = [ "zeroize", ] -[[package]] -name = "substrate-bip39" -version = "0.4.7" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" -dependencies = [ - "hmac 0.12.1", - "pbkdf2", - "schnorrkel", - "sha2 0.10.8", - "zeroize", -] - [[package]] name = "substrate-build-script-utils" version = "11.0.0" @@ -11323,7 +11258,7 @@ source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-sub dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.30", - "jsonrpsee 0.22.5", + "jsonrpsee", "log", "parity-scale-codec", "sc-rpc-api", @@ -11331,8 +11266,8 @@ dependencies = [ "sp-api", "sp-block-builder", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.11.0)", + "sp-core", + "sp-runtime", ] [[package]] @@ -11417,8 +11352,8 @@ dependencies = [ [[package]] name = "subxt" -version = "0.34.0" -source = "git+https://github.com/duniter/subxt?branch=subxt-v0.34.0-duniter-substrate-v1.9.0#4f1923f3f53573bb5f47a061afacda7f4163e4a8" +version = "0.35.3" +source = "git+https://github.com/duniter/subxt?branch=subxt-v0.35.3-duniter-substrate-v1.11.0#04282d7f1638f8e86200958ee36cb3920852ed4f" dependencies = [ "async-trait", "base58", @@ -11430,19 +11365,19 @@ dependencies = [ "hex", "impl-serde", "instant", - "jsonrpsee 0.21.0", + "jsonrpsee", "parity-scale-codec", "primitive-types", - "scale-bits 0.4.0", - "scale-decode 0.10.0", - "scale-encode 0.5.0", + "scale-bits", + "scale-decode", + "scale-encode", "scale-info", - "scale-value 0.13.0", + "scale-value", "serde", "serde_json", - "sp-core 28.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", - "sp-core-hashing", - "sp-runtime 31.0.1 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0)", + "sp-core", + "sp-crypto-hashing", + "sp-runtime", "subxt-lightclient", "subxt-macro", "subxt-metadata", @@ -11454,13 +11389,13 @@ dependencies = [ [[package]] name = "subxt-codegen" -version = "0.34.0" -source = "git+https://github.com/duniter/subxt?branch=subxt-v0.34.0-duniter-substrate-v1.9.0#4f1923f3f53573bb5f47a061afacda7f4163e4a8" +version = "0.35.3" +source = "git+https://github.com/duniter/subxt?branch=subxt-v0.35.3-duniter-substrate-v1.11.0#04282d7f1638f8e86200958ee36cb3920852ed4f" dependencies = [ "frame-metadata 16.0.0", "heck 0.4.1", "hex", - "jsonrpsee 0.21.0", + "jsonrpsee", "parity-scale-codec", "proc-macro2", "quote", @@ -11474,8 +11409,8 @@ dependencies = [ [[package]] name = "subxt-lightclient" -version = "0.34.0" -source = "git+https://github.com/duniter/subxt?branch=subxt-v0.34.0-duniter-substrate-v1.9.0#4f1923f3f53573bb5f47a061afacda7f4163e4a8" +version = "0.35.3" +source = "git+https://github.com/duniter/subxt?branch=subxt-v0.35.3-duniter-substrate-v1.11.0#04282d7f1638f8e86200958ee36cb3920852ed4f" dependencies = [ "futures 0.3.30", "futures-util", @@ -11490,8 +11425,8 @@ dependencies = [ [[package]] name = "subxt-macro" -version = "0.34.0" -source = "git+https://github.com/duniter/subxt?branch=subxt-v0.34.0-duniter-substrate-v1.9.0#4f1923f3f53573bb5f47a061afacda7f4163e4a8" +version = "0.35.3" +source = "git+https://github.com/duniter/subxt?branch=subxt-v0.35.3-duniter-substrate-v1.11.0#04282d7f1638f8e86200958ee36cb3920852ed4f" dependencies = [ "darling 0.20.8", "parity-scale-codec", @@ -11504,14 +11439,15 @@ dependencies = [ [[package]] name = "subxt-metadata" -version = "0.34.0" -source = "git+https://github.com/duniter/subxt?branch=subxt-v0.34.0-duniter-substrate-v1.9.0#4f1923f3f53573bb5f47a061afacda7f4163e4a8" +version = "0.35.3" +source = "git+https://github.com/duniter/subxt?branch=subxt-v0.35.3-duniter-substrate-v1.11.0#04282d7f1638f8e86200958ee36cb3920852ed4f" dependencies = [ + "derive_more", "frame-metadata 16.0.0", + "hashbrown 0.14.5", "parity-scale-codec", "scale-info", - "sp-core-hashing", - "thiserror", + "sp-crypto-hashing", ] [[package]] @@ -11554,6 +11490,39 @@ dependencies = [ "unicode-xid", ] +[[package]] +name = "synthez" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3d2c2202510a1e186e63e596d9318c91a8cbe85cd1a56a7be0c333e5f59ec8d" +dependencies = [ + "syn 2.0.61", + "synthez-codegen", + "synthez-core", +] + +[[package]] +name = "synthez-codegen" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f724aa6d44b7162f3158a57bccd871a77b39a4aef737e01bcdff41f4772c7746" +dependencies = [ + "syn 2.0.61", + "synthez-core", +] + +[[package]] +name = "synthez-core" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78bfa6ec52465e2425fd43ce5bbbe0f0b623964f7c63feb6b10980e816c654ea" +dependencies = [ + "proc-macro2", + "quote", + "sealed", + "syn 2.0.61", +] + [[package]] name = "system-configuration" version = "0.5.1" @@ -11640,6 +11609,17 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" +[[package]] +name = "textwrap" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" +dependencies = [ + "smawk", + "unicode-linebreak", + "unicode-width", +] + [[package]] name = "thiserror" version = "1.0.60" @@ -12048,19 +12028,6 @@ dependencies = [ "tracing-log 0.2.0", ] -[[package]] -name = "trie-db" -version = "0.28.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff28e0f815c2fea41ebddf148e008b077d2faddb026c9555b29696114d602642" -dependencies = [ - "hash-db", - "hashbrown 0.13.2", - "log", - "rustc-hex", - "smallvec", -] - [[package]] name = "trie-db" version = "0.29.0" @@ -12218,6 +12185,26 @@ dependencies = [ "static_assertions", ] +[[package]] +name = "typed-builder" +version = "0.15.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7fe83c85a85875e8c4cb9ce4a890f05b23d38cd0d47647db7895d3d2a79566d2" +dependencies = [ + "typed-builder-macro", +] + +[[package]] +name = "typed-builder-macro" +version = "0.15.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29a3151c41d0b13e3d011f98adc24434560ef06673a155a6c7f66b9879eecce2" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.61", +] + [[package]] name = "typenum" version = "1.17.0" @@ -12304,6 +12291,12 @@ version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" +[[package]] +name = "unicode-linebreak" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f" + [[package]] name = "unicode-normalization" version = "0.1.22" @@ -13323,7 +13316,7 @@ dependencies = [ "placeholder", "reqwest", "scale-info", - "scale-value 0.14.1", + "scale-value", "serde", "serde_json", "tera", diff --git a/Cargo.toml b/Cargo.toml index 97c3d4807..8c35f9bbe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ resolver = "2" members = [ 'client/distance', 'distance-oracle', - #'end2end-tests', + 'end2end-tests', 'live-tests', 'node', 'pallets/authority-members', @@ -104,7 +104,7 @@ dubp-wot = { version = "0.11.1", default-features = false } flate2 = { version = "1.0.28", default-features = false } # Subxt -subxt = { git = 'https://github.com/duniter/subxt', branch = 'subxt-v0.34.0-duniter-substrate-v1.9.0', default-features = false } +subxt = { git = 'https://github.com/duniter/subxt', branch = 'subxt-v0.35.3-duniter-substrate-v1.11.0', default-features = false } # local dependencies weight-analyzer = { path = "resources/weight_analyzer", default-features = false } diff --git a/distance-oracle/src/api.rs b/distance-oracle/src/api.rs index db6f48911..66f17d6ce 100644 --- a/distance-oracle/src/api.rs +++ b/distance-oracle/src/api.rs @@ -106,17 +106,26 @@ pub async fn member_iter(client: &Client, evaluation_block: H256) -> MemberIter } pub struct MemberIter( - subxt::backend::StreamOfResults<( - Vec<u8>, - runtime::runtime_types::sp_membership::MembershipData<u32>, - )>, + subxt::backend::StreamOfResults< + subxt::storage::StorageKeyValuePair< + subxt::storage::Address< + (), + runtime::runtime_types::sp_membership::MembershipData<u32>, + (), + (), + subxt::storage::address::Yes, + >, + >, + >, ); impl MemberIter { pub async fn next(&mut self) -> Result<Option<IdtyIndex>, subxt::error::Error> { - self.0.next().await.transpose().map(|i| { - i.map(|(storage_key, _membership_data)| idty_id_from_storage_key(&storage_key)) - }) + self.0 + .next() + .await + .transpose() + .map(|i| i.map(|j| idty_id_from_storage_key(&j.key_bytes))) } } @@ -131,15 +140,29 @@ pub async fn cert_iter(client: &Client, evaluation_block: H256) -> CertIter { ) } -pub struct CertIter(subxt::backend::StreamOfResults<(Vec<u8>, Vec<(IdtyIndex, u32)>)>); +pub struct CertIter( + subxt::backend::StreamOfResults< + subxt::storage::StorageKeyValuePair< + subxt::storage::Address< + (), + Vec<(u32, u32)>, + (), + subxt::storage::address::Yes, + subxt::storage::address::Yes, + >, + >, + >, +); impl CertIter { pub async fn next( &mut self, ) -> Result<Option<(IdtyIndex, Vec<(IdtyIndex, u32)>)>, subxt::error::Error> { - self.0.next().await.transpose().map(|i| { - i.map(|(storage_key, issuers)| (idty_id_from_storage_key(&storage_key), issuers)) - }) + self.0 + .next() + .await + .transpose() + .map(|i| i.map(|j| (idty_id_from_storage_key(&j.key_bytes), j.value))) } } diff --git a/docs/api/runtime-calls.md b/docs/api/runtime-calls.md index a1bc106c1..011ff2ce4 100644 --- a/docs/api/runtime-calls.md +++ b/docs/api/runtime-calls.md @@ -325,7 +325,7 @@ Upgrade a specified account. This will waive the transaction fee if at least all but 10% of the accounts needed to be upgraded. (We let some not have to be upgraded just in order to allow for the -possibililty of churn). +possibility of churn). Set the regular balance of a given account. The dispatch origin for this call is `root`. diff --git a/end2end-tests/tests/common/mod.rs b/end2end-tests/tests/common/mod.rs index 6e61a8398..87df5c301 100644 --- a/end2end-tests/tests/common/mod.rs +++ b/end2end-tests/tests/common/mod.rs @@ -144,6 +144,7 @@ pub async fn spawn_node( "--rpc-cors=all", "--alice", "--tmp", + "--unsafe-force-node-key-generation", // Fix: End2End test may fail due to network discovery. This option disables automatic peer discovery.π "--reserved-only", // prevent local network discovery (even it does not connect due to above flag) diff --git a/live-tests/tests/sanity_gdev.rs b/live-tests/tests/sanity_gdev.rs index d2f8f0915..28a9a0387 100644 --- a/live-tests/tests/sanity_gdev.rs +++ b/live-tests/tests/sanity_gdev.rs @@ -14,10 +14,6 @@ // You should have received a copy of the GNU Affero General Public License // along with Duniter-v2S. If not, see <https://www.gnu.org/licenses/>. -// WARNING -// these live test build but I'm not sure they actually test something -// they should be checked against corrupted storage to see that they actually fail - #[subxt::subxt(runtime_metadata_path = "../resources/metadata.scale")] pub mod gdev {} @@ -27,11 +23,6 @@ use sp_core::{blake2_128, ByteArray, H256}; use std::collections::{HashMap, HashSet}; use subxt::backend::rpc::RpcClient; use subxt::config::SubstrateConfig as GdevConfig; -use subxt::ext::sp_core; -// use subxt::config::substrate::SubstrateExtrinsicParamsBuilder; -// use subxt::backend::rpc::RpcParams; -// use subxt::config::SubstrateExtrinsicParams; -// use subxt::ext::{sp_core, sp_runtime}; const DEFAULT_ENDPOINT: &str = "ws://localhost:9944"; @@ -103,10 +94,10 @@ async fn sanity_tests_at(client: Client, _maybe_block_hash: Option<H256>) -> any .unwrap() .iter(gdev::storage().system().account_iter()) .await?; - while let Some(Ok((key, account_info))) = account_iter.next().await { + while let Some(Ok(key)) = account_iter.next().await { let mut account_id_bytes = [0u8; 32]; - account_id_bytes.copy_from_slice(&key[48..]); - accounts.insert(AccountId32::new(account_id_bytes), account_info); + account_id_bytes.copy_from_slice(&key.key_bytes[48..]); + accounts.insert(AccountId32::new(account_id_bytes), key.value); } println!("accounts.len(): {}.", accounts.len()); @@ -119,16 +110,16 @@ async fn sanity_tests_at(client: Client, _maybe_block_hash: Option<H256>) -> any .unwrap() .iter(gdev::storage().identity().identities_iter()) .await?; - while let Some(Ok((key, idty_value))) = idty_iter.next().await { + while let Some(Ok(key)) = idty_iter.next().await { let mut idty_index_bytes = [0u8; 4]; - idty_index_bytes.copy_from_slice(&key[40..]); + idty_index_bytes.copy_from_slice(&key.key_bytes[40..]); let idty_val = IdtyValue { - data: idty_value.data, - next_creatable_identity_on: idty_value.next_creatable_identity_on, + data: key.value.data, + next_creatable_identity_on: key.value.next_creatable_identity_on, old_owner_key: None, // Not used in the live test, skip the conversion - owner_key: AccountId32::from(idty_value.owner_key.0), - next_scheduled: idty_value.next_scheduled, - status: idty_value.status, + owner_key: AccountId32::from(key.value.owner_key.0), + next_scheduled: key.value.next_scheduled, + status: key.value.status, }; identities.insert(IdtyIndex::from_le_bytes(idty_index_bytes), idty_val); } @@ -143,10 +134,10 @@ async fn sanity_tests_at(client: Client, _maybe_block_hash: Option<H256>) -> any .unwrap() .iter(gdev::storage().identity().identity_index_of_iter()) .await?; - while let Some(Ok((key, idty_index))) = idty_index_of_iter.next().await { + while let Some(Ok(key)) = idty_index_of_iter.next().await { let mut blake2_128_bytes = [0u8; 16]; - blake2_128_bytes.copy_from_slice(&key[32..48]); - identity_index_of.insert(blake2_128_bytes, idty_index); + blake2_128_bytes.copy_from_slice(&key.key_bytes[32..48]); + identity_index_of.insert(blake2_128_bytes, key.value); } println!("identity_index_of.len(): {}.", identity_index_of.len()); @@ -159,9 +150,9 @@ async fn sanity_tests_at(client: Client, _maybe_block_hash: Option<H256>) -> any .unwrap() .iter(gdev::storage().identity().identities_names_iter()) .await?; - while let Some(Ok((key, idty_index))) = idty_name_iter.next().await { - let name = IdtyName(key); - identities_names.insert(idty_index, name); + while let Some(Ok(key)) = idty_name_iter.next().await { + let name = IdtyName(key.key_bytes); + identities_names.insert(key.value, name); } println!("identities_names.len(): {}.", identities_names.len()); @@ -174,11 +165,11 @@ async fn sanity_tests_at(client: Client, _maybe_block_hash: Option<H256>) -> any .unwrap() .iter(gdev::storage().membership().membership_iter()) .await?; - while let Some(Ok((key, membership_data))) = membership_iter.next().await { + while let Some(Ok(key)) = membership_iter.next().await { let mut idty_index_bytes = [0u8; 4]; - idty_index_bytes.copy_from_slice(&key[40..]); + idty_index_bytes.copy_from_slice(&key.key_bytes[40..]); let membership_val = MembershipData { - expire_on: membership_data.expire_on, + expire_on: key.value.expire_on, }; memberships.insert(IdtyIndex::from_le_bytes(idty_index_bytes), membership_val); } diff --git a/pallets/oneshot-account/src/mock.rs b/pallets/oneshot-account/src/mock.rs index a1899df7e..8e83c61f0 100644 --- a/pallets/oneshot-account/src/mock.rs +++ b/pallets/oneshot-account/src/mock.rs @@ -14,6 +14,8 @@ // You should have received a copy of the GNU Affero General Public License // along with Duniter-v2S. If not, see <https://www.gnu.org/licenses/>. +#![allow(deprecated)] // TODO + use crate::{self as pallet_oneshot_account}; use frame_support::{parameter_types, traits::Everything, weights::IdentityFee}; use frame_system as system; diff --git a/resources/metadata.scale b/resources/metadata.scale index 0cdfcfc4f20071529a02e98e786e01241549b1b8..a8e24383b2f1ae9d40710fe9d4b78344ce741442 100644 GIT binary patch delta 10616 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 delta 9294 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 ZTPBO?7j2our+YXt*|1$?3|Pp@005+L=l1{r diff --git a/runtime/common/src/weights/block_weights.rs b/runtime/common/src/weights/block_weights.rs index ee4cfad0d..a1d29d9a5 100644 --- a/runtime/common/src/weights/block_weights.rs +++ b/runtime/common/src/weights/block_weights.rs @@ -1,6 +1,6 @@ //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21 (Y/M/D) +//! DATE: 2024-05-13 (Y/M/D) //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! //! SHORT-NAME: `block`, LONG-NAME: `BlockExecution`, RUNTIME: `Ğdev Local Testnet` @@ -26,17 +26,17 @@ parameter_types! { /// Calculated by multiplying the *Average* with `1.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 126_723, 340_033 - /// Average: 138_291 - /// Median: 135_462 - /// Std-Dev: 20991.25 + /// Min, Max: 124_012, 323_353 + /// Average: 133_143 + /// Median: 128_528 + /// Std-Dev: 20423.87 /// /// Percentiles nanoseconds: - /// 99th: 161_532 - /// 95th: 149_812 - /// 75th: 137_000 + /// 99th: 174_283 + /// 95th: 146_055 + /// 75th: 132_728 pub const BlockExecutionWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(138_291), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(133_143), 0); } #[cfg(test)] diff --git a/runtime/common/src/weights/extrinsic_weights.rs b/runtime/common/src/weights/extrinsic_weights.rs index 631849433..252aa7bcc 100644 --- a/runtime/common/src/weights/extrinsic_weights.rs +++ b/runtime/common/src/weights/extrinsic_weights.rs @@ -1,6 +1,6 @@ //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21 (Y/M/D) +//! DATE: 2024-05-13 (Y/M/D) //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! //! SHORT-NAME: `extrinsic`, LONG-NAME: `ExtrinsicBase`, RUNTIME: `Ğdev Local Testnet` @@ -26,17 +26,17 @@ parameter_types! { /// Calculated by multiplying the *Average* with `1.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 71_060, 75_485 - /// Average: 72_432 - /// Median: 71_656 - /// Std-Dev: 1217.92 + /// Min, Max: 70_730, 71_335 + /// Average: 70_896 + /// Median: 70_881 + /// Std-Dev: 92.55 /// /// Percentiles nanoseconds: - /// 99th: 75_102 - /// 95th: 74_635 - /// 75th: 73_416 + /// 99th: 71_139 + /// 95th: 71_044 + /// 75th: 70_948 pub const ExtrinsicBaseWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(72_432), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(70_896), 0); } #[cfg(test)] diff --git a/runtime/common/src/weights/frame_benchmarking_baseline.rs b/runtime/common/src/weights/frame_benchmarking_baseline.rs index c6d609287..a64d72edc 100644 --- a/runtime/common/src/weights/frame_benchmarking_baseline.rs +++ b/runtime/common/src/weights/frame_benchmarking_baseline.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `frame_benchmarking::baseline` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -52,8 +52,8 @@ impl<T: frame_system::Config> frame_benchmarking::baseline::WeightInfo for Weigh // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 128_000 picoseconds. - Weight::from_parts(170_681, 0) + // Minimum execution time: 78_000 picoseconds. + Weight::from_parts(91_433, 0) .saturating_add(Weight::from_parts(0, 0)) } /// The range of component `i` is `[0, 1000000]`. @@ -61,8 +61,8 @@ impl<T: frame_system::Config> frame_benchmarking::baseline::WeightInfo for Weigh // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 127_000 picoseconds. - Weight::from_parts(170_276, 0) + // Minimum execution time: 79_000 picoseconds. + Weight::from_parts(91_582, 0) .saturating_add(Weight::from_parts(0, 0)) } /// The range of component `i` is `[0, 1000000]`. @@ -70,8 +70,8 @@ impl<T: frame_system::Config> frame_benchmarking::baseline::WeightInfo for Weigh // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 128_000 picoseconds. - Weight::from_parts(178_263, 0) + // Minimum execution time: 79_000 picoseconds. + Weight::from_parts(102_823, 0) .saturating_add(Weight::from_parts(0, 0)) } /// The range of component `i` is `[0, 1000000]`. @@ -79,16 +79,16 @@ impl<T: frame_system::Config> frame_benchmarking::baseline::WeightInfo for Weigh // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 125_000 picoseconds. - Weight::from_parts(166_986, 0) + // Minimum execution time: 78_000 picoseconds. + Weight::from_parts(93_569, 0) .saturating_add(Weight::from_parts(0, 0)) } fn hashing() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 19_506_228_000 picoseconds. - Weight::from_parts(19_626_469_000, 0) + // Minimum execution time: 19_590_146_000 picoseconds. + Weight::from_parts(19_655_687_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// The range of component `i` is `[0, 100]`. @@ -96,10 +96,10 @@ impl<T: frame_system::Config> frame_benchmarking::baseline::WeightInfo for Weigh // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 140_000 picoseconds. - Weight::from_parts(31_329_942, 0) + // Minimum execution time: 82_000 picoseconds. + Weight::from_parts(27_963_495, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 20_080 - .saturating_add(Weight::from_parts(30_655_727, 0).saturating_mul(i.into())) + // Standard Error: 12_306 + .saturating_add(Weight::from_parts(31_412_930, 0).saturating_mul(i.into())) } } diff --git a/runtime/common/src/weights/frame_system.rs b/runtime/common/src/weights/frame_system.rs index a2109ba71..898c8d46d 100644 --- a/runtime/common/src/weights/frame_system.rs +++ b/runtime/common/src/weights/frame_system.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `frame_system` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -52,8 +52,8 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_473_000 picoseconds. - Weight::from_parts(917_713, 0) + // Minimum execution time: 1_419_000 picoseconds. + Weight::from_parts(1_498_000, 0) .saturating_add(Weight::from_parts(0, 0)) // Standard Error: 0 .saturating_add(Weight::from_parts(256, 0).saturating_mul(b.into())) @@ -63,11 +63,11 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_862_000 picoseconds. - Weight::from_parts(4_227_000, 0) + // Minimum execution time: 4_020_000 picoseconds. + Weight::from_parts(4_121_000, 0) .saturating_add(Weight::from_parts(0, 0)) // Standard Error: 0 - .saturating_add(Weight::from_parts(1_024, 0).saturating_mul(b.into())) + .saturating_add(Weight::from_parts(1_075, 0).saturating_mul(b.into())) } /// Storage: `System::Digest` (r:1 w:1) /// Proof: `System::Digest` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) @@ -77,8 +77,8 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0` // Estimated: `1485` - // Minimum execution time: 2_484_000 picoseconds. - Weight::from_parts(2_801_000, 0) + // Minimum execution time: 2_492_000 picoseconds. + Weight::from_parts(2_799_000, 0) .saturating_add(Weight::from_parts(0, 1485)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -91,8 +91,8 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0` // Estimated: `1485` - // Minimum execution time: 78_898_045_000 picoseconds. - Weight::from_parts(79_899_040_000, 0) + // Minimum execution time: 63_133_954_000 picoseconds. + Weight::from_parts(63_864_391_000, 0) .saturating_add(Weight::from_parts(0, 1485)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -104,11 +104,11 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_568_000 picoseconds. - Weight::from_parts(1_671_000, 0) + // Minimum execution time: 1_449_000 picoseconds. + Weight::from_parts(1_579_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 744 - .saturating_add(Weight::from_parts(617_916, 0).saturating_mul(i.into())) + // Standard Error: 559 + .saturating_add(Weight::from_parts(556_169, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into()))) } /// Storage: `Skipped::Metadata` (r:0 w:0) @@ -118,11 +118,11 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_525_000 picoseconds. - Weight::from_parts(1_612_000, 0) + // Minimum execution time: 1_433_000 picoseconds. + Weight::from_parts(1_567_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 675 - .saturating_add(Weight::from_parts(462_508, 0).saturating_mul(i.into())) + // Standard Error: 663 + .saturating_add(Weight::from_parts(431_131, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into()))) } /// Storage: `Skipped::Metadata` (r:0 w:0) @@ -132,11 +132,11 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `77 + p * (69 ±0)` // Estimated: `76 + p * (70 ±0)` - // Minimum execution time: 2_822_000 picoseconds. - Weight::from_parts(2_916_000, 0) + // Minimum execution time: 2_623_000 picoseconds. + Weight::from_parts(2_777_000, 0) .saturating_add(Weight::from_parts(0, 76)) - // Standard Error: 976 - .saturating_add(Weight::from_parts(916_456, 0).saturating_mul(p.into())) + // Standard Error: 880 + .saturating_add(Weight::from_parts(884_981, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into()))) .saturating_add(Weight::from_parts(0, 70).saturating_mul(p.into())) @@ -147,8 +147,8 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 9_656_000 picoseconds. - Weight::from_parts(11_608_000, 0) + // Minimum execution time: 8_355_000 picoseconds. + Weight::from_parts(9_636_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -162,8 +162,8 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `22` // Estimated: `1518` - // Minimum execution time: 82_977_884_000 picoseconds. - Weight::from_parts(83_566_102_000, 0) + // Minimum execution time: 67_748_762_000 picoseconds. + Weight::from_parts(68_751_848_000, 0) .saturating_add(Weight::from_parts(0, 1518)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(3)) diff --git a/runtime/common/src/weights/pallet_authority_members.rs b/runtime/common/src/weights/pallet_authority_members.rs index 2810089d1..55a182c4a 100644 --- a/runtime/common/src/weights/pallet_authority_members.rs +++ b/runtime/common/src/weights/pallet_authority_members.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_authority_members` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -63,8 +63,8 @@ impl<T: frame_system::Config> pallet_authority_members::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `750` // Estimated: `4215` - // Minimum execution time: 18_344_000 picoseconds. - Weight::from_parts(18_991_000, 0) + // Minimum execution time: 19_493_000 picoseconds. + Weight::from_parts(20_030_000, 0) .saturating_add(Weight::from_parts(0, 4215)) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(1)) @@ -89,8 +89,8 @@ impl<T: frame_system::Config> pallet_authority_members::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `1141` // Estimated: `4606` - // Minimum execution time: 25_598_000 picoseconds. - Weight::from_parts(26_722_000, 0) + // Minimum execution time: 25_348_000 picoseconds. + Weight::from_parts(26_404_000, 0) .saturating_add(Weight::from_parts(0, 4606)) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(1)) @@ -111,8 +111,8 @@ impl<T: frame_system::Config> pallet_authority_members::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `1511` // Estimated: `12401` - // Minimum execution time: 33_668_000 picoseconds. - Weight::from_parts(34_365_000, 0) + // Minimum execution time: 32_606_000 picoseconds. + Weight::from_parts(34_374_000, 0) .saturating_add(Weight::from_parts(0, 12401)) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(2)) @@ -135,8 +135,8 @@ impl<T: frame_system::Config> pallet_authority_members::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `716` // Estimated: `4181` - // Minimum execution time: 33_290_000 picoseconds. - Weight::from_parts(34_731_000, 0) + // Minimum execution time: 31_528_000 picoseconds. + Weight::from_parts(32_724_000, 0) .saturating_add(Weight::from_parts(0, 4181)) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(10)) @@ -147,8 +147,8 @@ impl<T: frame_system::Config> pallet_authority_members::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `199` // Estimated: `1684` - // Minimum execution time: 7_144_000 picoseconds. - Weight::from_parts(7_414_000, 0) + // Minimum execution time: 6_678_000 picoseconds. + Weight::from_parts(7_152_000, 0) .saturating_add(Weight::from_parts(0, 1684)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/common/src/weights/pallet_balances.rs b/runtime/common/src/weights/pallet_balances.rs index 963c1cb77..839334501 100644 --- a/runtime/common/src/weights/pallet_balances.rs +++ b/runtime/common/src/weights/pallet_balances.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_balances` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -53,8 +53,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `63` // Estimated: `6126` - // Minimum execution time: 42_980_000 picoseconds. - Weight::from_parts(44_396_000, 0) + // Minimum execution time: 41_565_000 picoseconds. + Weight::from_parts(42_593_000, 0) .saturating_add(Weight::from_parts(0, 6126)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -65,8 +65,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0` // Estimated: `3558` - // Minimum execution time: 28_973_000 picoseconds. - Weight::from_parts(29_569_000, 0) + // Minimum execution time: 27_790_000 picoseconds. + Weight::from_parts(29_817_000, 0) .saturating_add(Weight::from_parts(0, 3558)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -77,8 +77,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `100` // Estimated: `3558` - // Minimum execution time: 10_025_000 picoseconds. - Weight::from_parts(10_402_000, 0) + // Minimum execution time: 9_821_000 picoseconds. + Weight::from_parts(10_305_000, 0) .saturating_add(Weight::from_parts(0, 3558)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -89,8 +89,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `100` // Estimated: `3558` - // Minimum execution time: 14_088_000 picoseconds. - Weight::from_parts(14_787_000, 0) + // Minimum execution time: 12_978_000 picoseconds. + Weight::from_parts(13_582_000, 0) .saturating_add(Weight::from_parts(0, 3558)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -101,8 +101,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `126` // Estimated: `8694` - // Minimum execution time: 42_691_000 picoseconds. - Weight::from_parts(43_743_000, 0) + // Minimum execution time: 42_747_000 picoseconds. + Weight::from_parts(44_051_000, 0) .saturating_add(Weight::from_parts(0, 8694)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -113,8 +113,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0` // Estimated: `3558` - // Minimum execution time: 34_242_000 picoseconds. - Weight::from_parts(34_876_000, 0) + // Minimum execution time: 34_844_000 picoseconds. + Weight::from_parts(35_230_000, 0) .saturating_add(Weight::from_parts(0, 3558)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -125,8 +125,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `100` // Estimated: `3558` - // Minimum execution time: 12_247_000 picoseconds. - Weight::from_parts(12_864_000, 0) + // Minimum execution time: 11_831_000 picoseconds. + Weight::from_parts(12_229_000, 0) .saturating_add(Weight::from_parts(0, 3558)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -135,8 +135,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_323_000 picoseconds. - Weight::from_parts(4_809_000, 0) + // Minimum execution time: 4_144_000 picoseconds. + Weight::from_parts(4_464_000, 0) .saturating_add(Weight::from_parts(0, 0)) } } diff --git a/runtime/common/src/weights/pallet_certification.rs b/runtime/common/src/weights/pallet_certification.rs index cc008e2c1..580c622e9 100644 --- a/runtime/common/src/weights/pallet_certification.rs +++ b/runtime/common/src/weights/pallet_certification.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_certification` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -29,7 +29,7 @@ // --chain=dev // --steps=50 // --repeat=20 -// --pallet=pallet-certification +// --pallet=* // --extrinsic=* // --wasm-execution=compiled // --heap-pages=4096 @@ -63,8 +63,8 @@ impl<T: frame_system::Config> pallet_certification::WeightInfo for WeightInfo<T> // Proof Size summary in bytes: // Measured: `956` // Estimated: `6896` - // Minimum execution time: 30_521_000 picoseconds. - Weight::from_parts(31_388_000, 0) + // Minimum execution time: 30_971_000 picoseconds. + Weight::from_parts(32_188_000, 0) .saturating_add(Weight::from_parts(0, 6896)) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(4)) @@ -85,8 +85,8 @@ impl<T: frame_system::Config> pallet_certification::WeightInfo for WeightInfo<T> // Proof Size summary in bytes: // Measured: `980` // Estimated: `6920` - // Minimum execution time: 28_768_000 picoseconds. - Weight::from_parts(29_974_000, 0) + // Minimum execution time: 29_235_000 picoseconds. + Weight::from_parts(30_293_000, 0) .saturating_add(Weight::from_parts(0, 6920)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(3)) @@ -101,8 +101,8 @@ impl<T: frame_system::Config> pallet_certification::WeightInfo for WeightInfo<T> // Proof Size summary in bytes: // Measured: `444` // Estimated: `6384` - // Minimum execution time: 17_405_000 picoseconds. - Weight::from_parts(23_829_000, 0) + // Minimum execution time: 15_655_000 picoseconds. + Weight::from_parts(16_665_000, 0) .saturating_add(Weight::from_parts(0, 6384)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) @@ -120,11 +120,11 @@ impl<T: frame_system::Config> pallet_certification::WeightInfo for WeightInfo<T> // Proof Size summary in bytes: // Measured: `546 + i * (35 ±0)` // Estimated: `4017 + i * (2511 ±0)` - // Minimum execution time: 24_543_000 picoseconds. - Weight::from_parts(24_900_000, 0) + // Minimum execution time: 24_107_000 picoseconds. + Weight::from_parts(24_630_000, 0) .saturating_add(Weight::from_parts(0, 4017)) - // Standard Error: 50_900 - .saturating_add(Weight::from_parts(9_036_718, 0).saturating_mul(i.into())) + // Standard Error: 22_328 + .saturating_add(Weight::from_parts(8_359_989, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(i.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -137,8 +137,8 @@ impl<T: frame_system::Config> pallet_certification::WeightInfo for WeightInfo<T> // Proof Size summary in bytes: // Measured: `139` // Estimated: `3604` - // Minimum execution time: 2_295_000 picoseconds. - Weight::from_parts(2_512_000, 0) + // Minimum execution time: 2_464_000 picoseconds. + Weight::from_parts(2_697_000, 0) .saturating_add(Weight::from_parts(0, 3604)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -148,8 +148,8 @@ impl<T: frame_system::Config> pallet_certification::WeightInfo for WeightInfo<T> // Proof Size summary in bytes: // Measured: `237` // Estimated: `3702` - // Minimum execution time: 3_435_000 picoseconds. - Weight::from_parts(3_720_000, 0) + // Minimum execution time: 3_424_000 picoseconds. + Weight::from_parts(3_805_000, 0) .saturating_add(Weight::from_parts(0, 3702)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -166,8 +166,8 @@ impl<T: frame_system::Config> pallet_certification::WeightInfo for WeightInfo<T> // Proof Size summary in bytes: // Measured: `660` // Estimated: `6600` - // Minimum execution time: 19_827_000 picoseconds. - Weight::from_parts(20_470_000, 0) + // Minimum execution time: 19_445_000 picoseconds. + Weight::from_parts(20_341_000, 0) .saturating_add(Weight::from_parts(0, 6600)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(3)) diff --git a/runtime/common/src/weights/pallet_collective.rs b/runtime/common/src/weights/pallet_collective.rs index f731a1c4b..bdb723e56 100644 --- a/runtime/common/src/weights/pallet_collective.rs +++ b/runtime/common/src/weights/pallet_collective.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_collective` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -62,13 +62,13 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0 + m * (672 ±0) + p * (3191 ±0)` // Estimated: `10019 + m * (416 ±4) + p * (4183 ±23)` - // Minimum execution time: 10_666_000 picoseconds. - Weight::from_parts(11_300_000, 0) + // Minimum execution time: 10_752_000 picoseconds. + Weight::from_parts(10_889_000, 0) .saturating_add(Weight::from_parts(0, 10019)) - // Standard Error: 9_547 - .saturating_add(Weight::from_parts(737_609, 0).saturating_mul(m.into())) - // Standard Error: 47_194 - .saturating_add(Weight::from_parts(6_099_071, 0).saturating_mul(p.into())) + // Standard Error: 9_186 + .saturating_add(Weight::from_parts(692_252, 0).saturating_mul(m.into())) + // Standard Error: 45_413 + .saturating_add(Weight::from_parts(6_020_530, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes(2)) @@ -84,13 +84,13 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `32 + m * (32 ±0)` // Estimated: `1518 + m * (32 ±0)` - // Minimum execution time: 9_565_000 picoseconds. - Weight::from_parts(9_210_863, 0) + // Minimum execution time: 9_225_000 picoseconds. + Weight::from_parts(9_016_861, 0) .saturating_add(Weight::from_parts(0, 1518)) - // Standard Error: 35 - .saturating_add(Weight::from_parts(1_251, 0).saturating_mul(b.into())) - // Standard Error: 363 - .saturating_add(Weight::from_parts(11_557, 0).saturating_mul(m.into())) + // Standard Error: 28 + .saturating_add(Weight::from_parts(1_184, 0).saturating_mul(b.into())) + // Standard Error: 289 + .saturating_add(Weight::from_parts(10_540, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into())) } @@ -104,13 +104,13 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `32 + m * (32 ±0)` // Estimated: `3498 + m * (32 ±0)` - // Minimum execution time: 11_508_000 picoseconds. - Weight::from_parts(11_006_990, 0) + // Minimum execution time: 10_827_000 picoseconds. + Weight::from_parts(10_744_142, 0) .saturating_add(Weight::from_parts(0, 3498)) - // Standard Error: 35 - .saturating_add(Weight::from_parts(1_415, 0).saturating_mul(b.into())) - // Standard Error: 369 - .saturating_add(Weight::from_parts(20_563, 0).saturating_mul(m.into())) + // Standard Error: 36 + .saturating_add(Weight::from_parts(1_257, 0).saturating_mul(b.into())) + // Standard Error: 378 + .saturating_add(Weight::from_parts(17_916, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into())) } @@ -131,15 +131,15 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `24 + m * (32 ±0) + p * (55 ±0)` // Estimated: `3461 + m * (32 ±0) + p * (54 ±0)` - // Minimum execution time: 16_681_000 picoseconds. - Weight::from_parts(15_339_504, 0) + // Minimum execution time: 16_098_000 picoseconds. + Weight::from_parts(15_641_556, 0) .saturating_add(Weight::from_parts(0, 3461)) - // Standard Error: 63 - .saturating_add(Weight::from_parts(2_375, 0).saturating_mul(b.into())) - // Standard Error: 667 - .saturating_add(Weight::from_parts(18_004, 0).saturating_mul(m.into())) - // Standard Error: 3_333 - .saturating_add(Weight::from_parts(268_469, 0).saturating_mul(p.into())) + // Standard Error: 60 + .saturating_add(Weight::from_parts(2_167, 0).saturating_mul(b.into())) + // Standard Error: 633 + .saturating_add(Weight::from_parts(14_798, 0).saturating_mul(m.into())) + // Standard Error: 3_162 + .saturating_add(Weight::from_parts(240_622, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into())) @@ -154,11 +154,11 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `573 + m * (64 ±0)` // Estimated: `4037 + m * (64 ±0)` - // Minimum execution time: 14_534_000 picoseconds. - Weight::from_parts(15_664_016, 0) + // Minimum execution time: 14_164_000 picoseconds. + Weight::from_parts(15_244_842, 0) .saturating_add(Weight::from_parts(0, 4037)) - // Standard Error: 1_352 - .saturating_add(Weight::from_parts(37_559, 0).saturating_mul(m.into())) + // Standard Error: 599 + .saturating_add(Weight::from_parts(32_813, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into())) @@ -177,13 +177,13 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `117 + m * (64 ±0) + p * (55 ±0)` // Estimated: `3591 + m * (64 ±0) + p * (55 ±0)` - // Minimum execution time: 18_535_000 picoseconds. - Weight::from_parts(16_761_519, 0) + // Minimum execution time: 18_522_000 picoseconds. + Weight::from_parts(17_152_627, 0) .saturating_add(Weight::from_parts(0, 3591)) - // Standard Error: 1_509 - .saturating_add(Weight::from_parts(32_769, 0).saturating_mul(m.into())) - // Standard Error: 7_455 - .saturating_add(Weight::from_parts(262_217, 0).saturating_mul(p.into())) + // Standard Error: 516 + .saturating_add(Weight::from_parts(29_607, 0).saturating_mul(m.into())) + // Standard Error: 2_549 + .saturating_add(Weight::from_parts(211_764, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into())) @@ -204,15 +204,15 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `62 + b * (1 ±0) + m * (64 ±0) + p * (78 ±0)` // Estimated: `3619 + b * (1 ±0) + m * (63 ±0) + p * (74 ±0)` - // Minimum execution time: 26_666_000 picoseconds. - Weight::from_parts(24_644_989, 0) + // Minimum execution time: 26_712_000 picoseconds. + Weight::from_parts(25_076_930, 0) .saturating_add(Weight::from_parts(0, 3619)) - // Standard Error: 105 - .saturating_add(Weight::from_parts(2_406, 0).saturating_mul(b.into())) - // Standard Error: 1_119 - .saturating_add(Weight::from_parts(21_985, 0).saturating_mul(m.into())) - // Standard Error: 5_522 - .saturating_add(Weight::from_parts(351_753, 0).saturating_mul(p.into())) + // Standard Error: 82 + .saturating_add(Weight::from_parts(1_994, 0).saturating_mul(b.into())) + // Standard Error: 873 + .saturating_add(Weight::from_parts(18_412, 0).saturating_mul(m.into())) + // Standard Error: 4_310 + .saturating_add(Weight::from_parts(313_327, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(b.into())) @@ -235,13 +235,13 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `137 + m * (64 ±0) + p * (55 ±0)` // Estimated: `3611 + m * (64 ±0) + p * (55 ±0)` - // Minimum execution time: 20_714_000 picoseconds. - Weight::from_parts(19_521_589, 0) + // Minimum execution time: 20_754_000 picoseconds. + Weight::from_parts(18_867_635, 0) .saturating_add(Weight::from_parts(0, 3611)) - // Standard Error: 737 - .saturating_add(Weight::from_parts(32_955, 0).saturating_mul(m.into())) - // Standard Error: 3_641 - .saturating_add(Weight::from_parts(236_515, 0).saturating_mul(p.into())) + // Standard Error: 545 + .saturating_add(Weight::from_parts(34_251, 0).saturating_mul(m.into())) + // Standard Error: 2_693 + .saturating_add(Weight::from_parts(232_282, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into())) @@ -264,15 +264,15 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `82 + b * (1 ±0) + m * (64 ±0) + p * (78 ±0)` // Estimated: `3639 + b * (1 ±0) + m * (63 ±0) + p * (74 ±0)` - // Minimum execution time: 28_525_000 picoseconds. - Weight::from_parts(27_206_822, 0) + // Minimum execution time: 27_752_000 picoseconds. + Weight::from_parts(26_500_438, 0) .saturating_add(Weight::from_parts(0, 3639)) - // Standard Error: 102 - .saturating_add(Weight::from_parts(1_886, 0).saturating_mul(b.into())) - // Standard Error: 1_079 - .saturating_add(Weight::from_parts(19_617, 0).saturating_mul(m.into())) - // Standard Error: 5_324 - .saturating_add(Weight::from_parts(340_854, 0).saturating_mul(p.into())) + // Standard Error: 85 + .saturating_add(Weight::from_parts(2_063, 0).saturating_mul(b.into())) + // Standard Error: 903 + .saturating_add(Weight::from_parts(17_377, 0).saturating_mul(m.into())) + // Standard Error: 4_454 + .saturating_add(Weight::from_parts(327_819, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(b.into())) @@ -290,11 +290,11 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `189 + p * (32 ±0)` // Estimated: `1674 + p * (32 ±0)` - // Minimum execution time: 9_320_000 picoseconds. - Weight::from_parts(10_419_750, 0) + // Minimum execution time: 9_042_000 picoseconds. + Weight::from_parts(10_091_880, 0) .saturating_add(Weight::from_parts(0, 1674)) - // Standard Error: 1_981 - .saturating_add(Weight::from_parts(149_887, 0).saturating_mul(p.into())) + // Standard Error: 1_853 + .saturating_add(Weight::from_parts(159_967, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(p.into())) diff --git a/runtime/common/src/weights/pallet_distance.rs b/runtime/common/src/weights/pallet_distance.rs index bba3802a0..698e6ce40 100644 --- a/runtime/common/src/weights/pallet_distance.rs +++ b/runtime/common/src/weights/pallet_distance.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_distance` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -69,8 +69,8 @@ impl<T: frame_system::Config> pallet_distance::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `1119` // Estimated: `4584` - // Minimum execution time: 41_315_000 picoseconds. - Weight::from_parts(42_958_000, 0) + // Minimum execution time: 40_210_000 picoseconds. + Weight::from_parts(42_313_000, 0) .saturating_add(Weight::from_parts(0, 4584)) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(3)) @@ -97,8 +97,8 @@ impl<T: frame_system::Config> pallet_distance::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `1148` // Estimated: `7088` - // Minimum execution time: 44_462_000 picoseconds. - Weight::from_parts(45_605_000, 0) + // Minimum execution time: 43_404_000 picoseconds. + Weight::from_parts(44_672_000, 0) .saturating_add(Weight::from_parts(0, 7088)) .saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().writes(3)) @@ -120,11 +120,11 @@ impl<T: frame_system::Config> pallet_distance::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `402 + i * (10 ±0)` // Estimated: `1887 + i * (10 ±0)` - // Minimum execution time: 13_085_000 picoseconds. - Weight::from_parts(14_760_344, 0) + // Minimum execution time: 12_374_000 picoseconds. + Weight::from_parts(15_184_116, 0) .saturating_add(Weight::from_parts(0, 1887)) - // Standard Error: 180 - .saturating_add(Weight::from_parts(100_147, 0).saturating_mul(i.into())) + // Standard Error: 109 + .saturating_add(Weight::from_parts(99_165, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 10).saturating_mul(i.into())) @@ -138,11 +138,11 @@ impl<T: frame_system::Config> pallet_distance::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `139 + i * (10 ±0)` // Estimated: `1624 + i * (10 ±0)` - // Minimum execution time: 5_330_000 picoseconds. - Weight::from_parts(7_271_959, 0) + // Minimum execution time: 5_098_000 picoseconds. + Weight::from_parts(6_634_188, 0) .saturating_add(Weight::from_parts(0, 1624)) - // Standard Error: 102 - .saturating_add(Weight::from_parts(99_424, 0).saturating_mul(i.into())) + // Standard Error: 72 + .saturating_add(Weight::from_parts(99_785, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(Weight::from_parts(0, 10).saturating_mul(i.into())) @@ -159,8 +159,8 @@ impl<T: frame_system::Config> pallet_distance::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `609` // Estimated: `6549` - // Minimum execution time: 24_823_000 picoseconds. - Weight::from_parts(26_073_000, 0) + // Minimum execution time: 24_084_000 picoseconds. + Weight::from_parts(25_424_000, 0) .saturating_add(Weight::from_parts(0, 6549)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(3)) @@ -169,8 +169,8 @@ impl<T: frame_system::Config> pallet_distance::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 137_000 picoseconds. - Weight::from_parts(164_000, 0) + // Minimum execution time: 82_000 picoseconds. + Weight::from_parts(104_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `System::ParentHash` (r:1 w:0) @@ -195,8 +195,8 @@ impl<T: frame_system::Config> pallet_distance::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `973` // Estimated: `6913` - // Minimum execution time: 42_713_000 picoseconds. - Weight::from_parts(44_349_000, 0) + // Minimum execution time: 41_435_000 picoseconds. + Weight::from_parts(43_480_000, 0) .saturating_add(Weight::from_parts(0, 6913)) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(7)) @@ -215,8 +215,8 @@ impl<T: frame_system::Config> pallet_distance::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `364` // Estimated: `3829` - // Minimum execution time: 20_592_000 picoseconds. - Weight::from_parts(21_525_000, 0) + // Minimum execution time: 21_085_000 picoseconds. + Weight::from_parts(22_071_000, 0) .saturating_add(Weight::from_parts(0, 3829)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) @@ -231,8 +231,8 @@ impl<T: frame_system::Config> pallet_distance::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `109` // Estimated: `1594` - // Minimum execution time: 2_502_000 picoseconds. - Weight::from_parts(2_774_000, 0) + // Minimum execution time: 2_403_000 picoseconds. + Weight::from_parts(2_646_000, 0) .saturating_add(Weight::from_parts(0, 1594)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -243,8 +243,8 @@ impl<T: frame_system::Config> pallet_distance::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `133` // Estimated: `1618` - // Minimum execution time: 2_428_000 picoseconds. - Weight::from_parts(2_647_000, 0) + // Minimum execution time: 2_423_000 picoseconds. + Weight::from_parts(2_611_000, 0) .saturating_add(Weight::from_parts(0, 1618)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/common/src/weights/pallet_duniter_account.rs b/runtime/common/src/weights/pallet_duniter_account.rs index a6d9a4878..d43be46c9 100644 --- a/runtime/common/src/weights/pallet_duniter_account.rs +++ b/runtime/common/src/weights/pallet_duniter_account.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_duniter_account` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -53,8 +53,8 @@ impl<T: frame_system::Config> pallet_duniter_account::WeightInfo for WeightInfo< // Proof Size summary in bytes: // Measured: `0` // Estimated: `3558` - // Minimum execution time: 3_090_000 picoseconds. - Weight::from_parts(3_296_000, 0) + // Minimum execution time: 2_950_000 picoseconds. + Weight::from_parts(3_302_000, 0) .saturating_add(Weight::from_parts(0, 3558)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/common/src/weights/pallet_identity.rs b/runtime/common/src/weights/pallet_identity.rs index 593de4c76..47bc27779 100644 --- a/runtime/common/src/weights/pallet_identity.rs +++ b/runtime/common/src/weights/pallet_identity.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_identity` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -29,7 +29,7 @@ // --chain=dev // --steps=50 // --repeat=20 -// --pallet=pallet-identity +// --pallet=* // --extrinsic=* // --wasm-execution=compiled // --heap-pages=4096 @@ -73,8 +73,8 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `1022` // Estimated: `6962` - // Minimum execution time: 60_458_000 picoseconds. - Weight::from_parts(62_727_000, 0) + // Minimum execution time: 60_413_000 picoseconds. + Weight::from_parts(62_000_000, 0) .saturating_add(Weight::from_parts(0, 6962)) .saturating_add(T::DbWeight::get().reads(13)) .saturating_add(T::DbWeight::get().writes(12)) @@ -91,8 +91,8 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `698` // Estimated: `6638` - // Minimum execution time: 28_622_000 picoseconds. - Weight::from_parts(29_508_000, 0) + // Minimum execution time: 26_800_000 picoseconds. + Weight::from_parts(27_994_000, 0) .saturating_add(Weight::from_parts(0, 6638)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(4)) @@ -109,8 +109,8 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `727` // Estimated: `6667` - // Minimum execution time: 73_352_000 picoseconds. - Weight::from_parts(75_459_000, 0) + // Minimum execution time: 74_390_000 picoseconds. + Weight::from_parts(75_575_000, 0) .saturating_add(Weight::from_parts(0, 6667)) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(5)) @@ -129,8 +129,8 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `664` // Estimated: `6604` - // Minimum execution time: 63_115_000 picoseconds. - Weight::from_parts(64_603_000, 0) + // Minimum execution time: 63_320_000 picoseconds. + Weight::from_parts(65_355_000, 0) .saturating_add(Weight::from_parts(0, 6604)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(5)) @@ -142,11 +142,11 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_664_000 picoseconds. - Weight::from_parts(3_883_000, 0) + // Minimum execution time: 3_521_000 picoseconds. + Weight::from_parts(3_726_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 863 - .saturating_add(Weight::from_parts(1_217_853, 0).saturating_mul(i.into())) + // Standard Error: 1_009 + .saturating_add(Weight::from_parts(1_167_883, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into()))) } @@ -156,8 +156,8 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `104` // Estimated: `3558` - // Minimum execution time: 6_168_000 picoseconds. - Weight::from_parts(6_607_000, 0) + // Minimum execution time: 5_689_000 picoseconds. + Weight::from_parts(6_207_000, 0) .saturating_add(Weight::from_parts(0, 3558)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -172,8 +172,8 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `403` // Estimated: `3868` - // Minimum execution time: 49_185_000 picoseconds. - Weight::from_parts(50_359_000, 0) + // Minimum execution time: 51_045_000 picoseconds. + Weight::from_parts(52_911_000, 0) .saturating_add(Weight::from_parts(0, 3868)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(1)) @@ -182,8 +182,8 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 120_000 picoseconds. - Weight::from_parts(135_000, 0) + // Minimum execution time: 86_000 picoseconds. + Weight::from_parts(92_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `Identity::Identities` (r:1 w:0) @@ -192,8 +192,8 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `302` // Estimated: `3767` - // Minimum execution time: 3_420_000 picoseconds. - Weight::from_parts(3_635_000, 0) + // Minimum execution time: 3_481_000 picoseconds. + Weight::from_parts(3_682_000, 0) .saturating_add(Weight::from_parts(0, 3767)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -231,8 +231,8 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `1555` // Estimated: `9970` - // Minimum execution time: 80_698_000 picoseconds. - Weight::from_parts(84_553_000, 0) + // Minimum execution time: 80_541_000 picoseconds. + Weight::from_parts(83_780_000, 0) .saturating_add(Weight::from_parts(0, 9970)) .saturating_add(T::DbWeight::get().reads(16)) .saturating_add(T::DbWeight::get().writes(20)) @@ -243,8 +243,8 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `302` // Estimated: `3767` - // Minimum execution time: 3_452_000 picoseconds. - Weight::from_parts(3_571_000, 0) + // Minimum execution time: 3_401_000 picoseconds. + Weight::from_parts(3_647_000, 0) .saturating_add(Weight::from_parts(0, 3767)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -288,8 +288,8 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `1990` // Estimated: `12880` - // Minimum execution time: 111_633_000 picoseconds. - Weight::from_parts(115_818_000, 0) + // Minimum execution time: 110_832_000 picoseconds. + Weight::from_parts(114_246_000, 0) .saturating_add(Weight::from_parts(0, 12880)) .saturating_add(T::DbWeight::get().reads(21)) .saturating_add(T::DbWeight::get().writes(26)) @@ -334,8 +334,8 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `1999` // Estimated: `12889` - // Minimum execution time: 108_432_000 picoseconds. - Weight::from_parts(113_373_000, 0) + // Minimum execution time: 106_765_000 picoseconds. + Weight::from_parts(113_444_000, 0) .saturating_add(Weight::from_parts(0, 12889)) .saturating_add(T::DbWeight::get().reads(22)) .saturating_add(T::DbWeight::get().writes(25)) @@ -348,8 +348,8 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `407` // Estimated: `6347` - // Minimum execution time: 13_935_000 picoseconds. - Weight::from_parts(14_601_000, 0) + // Minimum execution time: 13_367_000 picoseconds. + Weight::from_parts(13_900_000, 0) .saturating_add(Weight::from_parts(0, 6347)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -360,8 +360,8 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `157` // Estimated: `3622` - // Minimum execution time: 2_501_000 picoseconds. - Weight::from_parts(2_758_000, 0) + // Minimum execution time: 2_586_000 picoseconds. + Weight::from_parts(2_760_000, 0) .saturating_add(Weight::from_parts(0, 3622)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -373,8 +373,8 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `327` // Estimated: `3792` - // Minimum execution time: 5_740_000 picoseconds. - Weight::from_parts(6_198_000, 0) + // Minimum execution time: 5_582_000 picoseconds. + Weight::from_parts(6_138_000, 0) .saturating_add(Weight::from_parts(0, 3792)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -399,8 +399,8 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `851` // Estimated: `4316` - // Minimum execution time: 30_080_000 picoseconds. - Weight::from_parts(31_099_000, 0) + // Minimum execution time: 29_033_000 picoseconds. + Weight::from_parts(30_980_000, 0) .saturating_add(Weight::from_parts(0, 4316)) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(7)) diff --git a/runtime/common/src/weights/pallet_im_online.rs b/runtime/common/src/weights/pallet_im_online.rs index 1323efa5b..ce863fb2a 100644 --- a/runtime/common/src/weights/pallet_im_online.rs +++ b/runtime/common/src/weights/pallet_im_online.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_im_online` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -64,11 +64,11 @@ impl<T: frame_system::Config> pallet_im_online::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `603 + k * (32 ±0)` // Estimated: `33487 + k * (1761 ±0)` - // Minimum execution time: 50_649_000 picoseconds. - Weight::from_parts(71_173_084, 0) + // Minimum execution time: 51_245_000 picoseconds. + Weight::from_parts(65_147_264, 0) .saturating_add(Weight::from_parts(0, 33487)) - // Standard Error: 1_053 - .saturating_add(Weight::from_parts(52_697, 0).saturating_mul(k.into())) + // Standard Error: 668 + .saturating_add(Weight::from_parts(42_079, 0).saturating_mul(k.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(Weight::from_parts(0, 1761).saturating_mul(k.into())) diff --git a/runtime/common/src/weights/pallet_membership.rs b/runtime/common/src/weights/pallet_membership.rs index 4959cc20e..e73cd744d 100644 --- a/runtime/common/src/weights/pallet_membership.rs +++ b/runtime/common/src/weights/pallet_membership.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_membership` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -51,8 +51,8 @@ impl<T: frame_system::Config> pallet_membership::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 139_000 picoseconds. - Weight::from_parts(166_000, 0) + // Minimum execution time: 81_000 picoseconds. + Weight::from_parts(102_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `Membership::MembershipsExpireOn` (r:2 w:2) @@ -88,11 +88,11 @@ impl<T: frame_system::Config> pallet_membership::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `138 + i * (804 ±0)` // Estimated: `9744 + i * (2687 ±0)` - // Minimum execution time: 4_076_000 picoseconds. - Weight::from_parts(10_534_642, 0) + // Minimum execution time: 4_020_000 picoseconds. + Weight::from_parts(10_625_923, 0) .saturating_add(Weight::from_parts(0, 9744)) - // Standard Error: 428_909 - .saturating_add(Weight::from_parts(62_035_985, 0).saturating_mul(i.into())) + // Standard Error: 438_932 + .saturating_add(Weight::from_parts(59_569_449, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads((10_u64).saturating_mul(i.into()))) .saturating_add(T::DbWeight::get().writes(3)) diff --git a/runtime/common/src/weights/pallet_multisig.rs b/runtime/common/src/weights/pallet_multisig.rs index 9fdbeccf6..3a02f9907 100644 --- a/runtime/common/src/weights/pallet_multisig.rs +++ b/runtime/common/src/weights/pallet_multisig.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_multisig` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -52,11 +52,11 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_803_000 picoseconds. - Weight::from_parts(5_310_413, 0) + // Minimum execution time: 4_700_000 picoseconds. + Weight::from_parts(5_031_868, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 13 - .saturating_add(Weight::from_parts(334, 0).saturating_mul(z.into())) + // Standard Error: 1 + .saturating_add(Weight::from_parts(336, 0).saturating_mul(z.into())) } /// Storage: `Multisig::Multisigs` (r:1 w:1) /// Proof: `Multisig::Multisigs` (`max_values`: None, `max_size`: Some(457), added: 2932, mode: `MaxEncodedLen`) @@ -66,13 +66,13 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `125 + s * (5 ±0)` // Estimated: `3922` - // Minimum execution time: 22_307_000 picoseconds. - Weight::from_parts(23_308_259, 0) + // Minimum execution time: 22_870_000 picoseconds. + Weight::from_parts(22_165_477, 0) .saturating_add(Weight::from_parts(0, 3922)) - // Standard Error: 6_486 - .saturating_add(Weight::from_parts(44_886, 0).saturating_mul(s.into())) + // Standard Error: 5_814 + .saturating_add(Weight::from_parts(182_402, 0).saturating_mul(s.into())) // Standard Error: 5 - .saturating_add(Weight::from_parts(1_045, 0).saturating_mul(z.into())) + .saturating_add(Weight::from_parts(1_093, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -84,13 +84,13 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `240` // Estimated: `3922` - // Minimum execution time: 13_348_000 picoseconds. - Weight::from_parts(12_879_515, 0) + // Minimum execution time: 13_557_000 picoseconds. + Weight::from_parts(12_644_271, 0) .saturating_add(Weight::from_parts(0, 3922)) - // Standard Error: 5_192 - .saturating_add(Weight::from_parts(96_125, 0).saturating_mul(s.into())) + // Standard Error: 4_239 + .saturating_add(Weight::from_parts(139_896, 0).saturating_mul(s.into())) // Standard Error: 3 - .saturating_add(Weight::from_parts(1_071, 0).saturating_mul(z.into())) + .saturating_add(Weight::from_parts(1_080, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -104,13 +104,13 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `259 + s * (37 ±0)` // Estimated: `3922` - // Minimum execution time: 25_710_000 picoseconds. - Weight::from_parts(25_686_043, 0) + // Minimum execution time: 25_742_000 picoseconds. + Weight::from_parts(25_260_018, 0) .saturating_add(Weight::from_parts(0, 3922)) - // Standard Error: 7_969 - .saturating_add(Weight::from_parts(135_213, 0).saturating_mul(s.into())) - // Standard Error: 6 - .saturating_add(Weight::from_parts(1_063, 0).saturating_mul(z.into())) + // Standard Error: 5_601 + .saturating_add(Weight::from_parts(190_696, 0).saturating_mul(s.into())) + // Standard Error: 4 + .saturating_add(Weight::from_parts(1_084, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -121,11 +121,11 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `130 + s * (5 ±0)` // Estimated: `3922` - // Minimum execution time: 20_357_000 picoseconds. - Weight::from_parts(21_819_684, 0) + // Minimum execution time: 20_342_000 picoseconds. + Weight::from_parts(22_035_094, 0) .saturating_add(Weight::from_parts(0, 3922)) - // Standard Error: 7_534 - .saturating_add(Weight::from_parts(107_921, 0).saturating_mul(s.into())) + // Standard Error: 5_918 + .saturating_add(Weight::from_parts(100_249, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -136,11 +136,11 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `240` // Estimated: `3922` - // Minimum execution time: 11_277_000 picoseconds. - Weight::from_parts(12_307_137, 0) + // Minimum execution time: 11_121_000 picoseconds. + Weight::from_parts(12_140_243, 0) .saturating_add(Weight::from_parts(0, 3922)) - // Standard Error: 4_378 - .saturating_add(Weight::from_parts(81_587, 0).saturating_mul(s.into())) + // Standard Error: 3_270 + .saturating_add(Weight::from_parts(129_148, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -151,11 +151,11 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `328 + s * (5 ±0)` // Estimated: `3922` - // Minimum execution time: 21_623_000 picoseconds. - Weight::from_parts(22_886_022, 0) + // Minimum execution time: 21_577_000 picoseconds. + Weight::from_parts(22_824_830, 0) .saturating_add(Weight::from_parts(0, 3922)) - // Standard Error: 6_484 - .saturating_add(Weight::from_parts(141_019, 0).saturating_mul(s.into())) + // Standard Error: 5_043 + .saturating_add(Weight::from_parts(157_777, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } diff --git a/runtime/common/src/weights/pallet_oneshot_account.rs b/runtime/common/src/weights/pallet_oneshot_account.rs index 967646237..351111163 100644 --- a/runtime/common/src/weights/pallet_oneshot_account.rs +++ b/runtime/common/src/weights/pallet_oneshot_account.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_oneshot_account` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -53,8 +53,8 @@ impl<T: frame_system::Config> pallet_oneshot_account::WeightInfo for WeightInfo< // Proof Size summary in bytes: // Measured: `42` // Estimated: `3507` - // Minimum execution time: 15_328_000 picoseconds. - Weight::from_parts(15_960_000, 0) + // Minimum execution time: 14_969_000 picoseconds. + Weight::from_parts(15_431_000, 0) .saturating_add(Weight::from_parts(0, 3507)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -69,8 +69,8 @@ impl<T: frame_system::Config> pallet_oneshot_account::WeightInfo for WeightInfo< // Proof Size summary in bytes: // Measured: `241` // Estimated: `3706` - // Minimum execution time: 20_915_000 picoseconds. - Weight::from_parts(22_147_000, 0) + // Minimum execution time: 21_074_000 picoseconds. + Weight::from_parts(21_985_000, 0) .saturating_add(Weight::from_parts(0, 3706)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) @@ -85,8 +85,8 @@ impl<T: frame_system::Config> pallet_oneshot_account::WeightInfo for WeightInfo< // Proof Size summary in bytes: // Measured: `301` // Estimated: `6126` - // Minimum execution time: 29_505_000 picoseconds. - Weight::from_parts(30_279_000, 0) + // Minimum execution time: 29_007_000 picoseconds. + Weight::from_parts(30_502_000, 0) .saturating_add(Weight::from_parts(0, 6126)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) diff --git a/runtime/common/src/weights/pallet_preimage.rs b/runtime/common/src/weights/pallet_preimage.rs index 599620f54..3b548577f 100644 --- a/runtime/common/src/weights/pallet_preimage.rs +++ b/runtime/common/src/weights/pallet_preimage.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_preimage` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -58,11 +58,11 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `42` // Estimated: `3548` - // Minimum execution time: 10_684_000 picoseconds. - Weight::from_parts(10_979_000, 0) + // Minimum execution time: 10_457_000 picoseconds. + Weight::from_parts(11_037_000, 0) .saturating_add(Weight::from_parts(0, 3548)) // Standard Error: 1 - .saturating_add(Weight::from_parts(1_294, 0).saturating_mul(s.into())) + .saturating_add(Weight::from_parts(1_322, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -77,11 +77,11 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3548` - // Minimum execution time: 12_918_000 picoseconds. - Weight::from_parts(13_124_000, 0) + // Minimum execution time: 12_718_000 picoseconds. + Weight::from_parts(13_125_000, 0) .saturating_add(Weight::from_parts(0, 3548)) // Standard Error: 1 - .saturating_add(Weight::from_parts(1_294, 0).saturating_mul(s.into())) + .saturating_add(Weight::from_parts(1_317, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -96,11 +96,11 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3548` - // Minimum execution time: 11_380_000 picoseconds. - Weight::from_parts(11_646_000, 0) + // Minimum execution time: 11_424_000 picoseconds. + Weight::from_parts(11_595_000, 0) .saturating_add(Weight::from_parts(0, 3548)) // Standard Error: 1 - .saturating_add(Weight::from_parts(1_294, 0).saturating_mul(s.into())) + .saturating_add(Weight::from_parts(1_402, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -114,8 +114,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `172` // Estimated: `3548` - // Minimum execution time: 23_181_000 picoseconds. - Weight::from_parts(24_693_000, 0) + // Minimum execution time: 21_436_000 picoseconds. + Weight::from_parts(23_457_000, 0) .saturating_add(Weight::from_parts(0, 3548)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -130,8 +130,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `144` // Estimated: `3548` - // Minimum execution time: 22_556_000 picoseconds. - Weight::from_parts(25_299_000, 0) + // Minimum execution time: 22_815_000 picoseconds. + Weight::from_parts(25_024_000, 0) .saturating_add(Weight::from_parts(0, 3548)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -144,8 +144,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `172` // Estimated: `3548` - // Minimum execution time: 20_271_000 picoseconds. - Weight::from_parts(22_202_000, 0) + // Minimum execution time: 20_222_000 picoseconds. + Weight::from_parts(22_476_000, 0) .saturating_add(Weight::from_parts(0, 3548)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -158,8 +158,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `144` // Estimated: `3548` - // Minimum execution time: 13_258_000 picoseconds. - Weight::from_parts(15_335_000, 0) + // Minimum execution time: 12_916_000 picoseconds. + Weight::from_parts(14_899_000, 0) .saturating_add(Weight::from_parts(0, 3548)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -172,8 +172,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `42` // Estimated: `3548` - // Minimum execution time: 9_884_000 picoseconds. - Weight::from_parts(11_045_000, 0) + // Minimum execution time: 9_655_000 picoseconds. + Weight::from_parts(10_358_000, 0) .saturating_add(Weight::from_parts(0, 3548)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -186,8 +186,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3548` - // Minimum execution time: 6_602_000 picoseconds. - Weight::from_parts(7_110_000, 0) + // Minimum execution time: 6_793_000 picoseconds. + Weight::from_parts(7_733_000, 0) .saturating_add(Weight::from_parts(0, 3548)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -202,8 +202,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `144` // Estimated: `3548` - // Minimum execution time: 20_995_000 picoseconds. - Weight::from_parts(22_598_000, 0) + // Minimum execution time: 20_945_000 picoseconds. + Weight::from_parts(22_280_000, 0) .saturating_add(Weight::from_parts(0, 3548)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -216,8 +216,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3548` - // Minimum execution time: 6_745_000 picoseconds. - Weight::from_parts(7_702_000, 0) + // Minimum execution time: 6_661_000 picoseconds. + Weight::from_parts(7_650_000, 0) .saturating_add(Weight::from_parts(0, 3548)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -230,8 +230,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3548` - // Minimum execution time: 6_745_000 picoseconds. - Weight::from_parts(7_609_000, 0) + // Minimum execution time: 6_583_000 picoseconds. + Weight::from_parts(7_274_000, 0) .saturating_add(Weight::from_parts(0, 3548)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -247,11 +247,11 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0 + n * (179 ±0)` // Estimated: `990 + n * (2568 ±0)` - // Minimum execution time: 15_889_000 picoseconds. - Weight::from_parts(16_617_000, 0) + // Minimum execution time: 16_145_000 picoseconds. + Weight::from_parts(16_720_000, 0) .saturating_add(Weight::from_parts(0, 990)) - // Standard Error: 18_407 - .saturating_add(Weight::from_parts(13_280_498, 0).saturating_mul(n.into())) + // Standard Error: 17_095 + .saturating_add(Weight::from_parts(13_483_623, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(n.into()))) .saturating_add(Weight::from_parts(0, 2568).saturating_mul(n.into())) diff --git a/runtime/common/src/weights/pallet_provide_randomness.rs b/runtime/common/src/weights/pallet_provide_randomness.rs index c8d6c7c1f..70522dc8c 100644 --- a/runtime/common/src/weights/pallet_provide_randomness.rs +++ b/runtime/common/src/weights/pallet_provide_randomness.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_provide_randomness` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -65,8 +65,8 @@ impl<T: frame_system::Config> pallet_provide_randomness::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `298` // Estimated: `3763` - // Minimum execution time: 31_156_000 picoseconds. - Weight::from_parts(32_999_000, 0) + // Minimum execution time: 31_329_000 picoseconds. + Weight::from_parts(32_906_000, 0) .saturating_add(Weight::from_parts(0, 3763)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(5)) @@ -86,11 +86,11 @@ impl<T: frame_system::Config> pallet_provide_randomness::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `341 + i * (59 ±0)` // Estimated: `1827 + i * (2535 ±0)` - // Minimum execution time: 14_529_000 picoseconds. - Weight::from_parts(12_773_743, 0) + // Minimum execution time: 14_478_000 picoseconds. + Weight::from_parts(13_079_242, 0) .saturating_add(Weight::from_parts(0, 1827)) - // Standard Error: 8_159 - .saturating_add(Weight::from_parts(4_810_361, 0).saturating_mul(i.into())) + // Standard Error: 3_642 + .saturating_add(Weight::from_parts(4_859_336, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(i.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -118,11 +118,11 @@ impl<T: frame_system::Config> pallet_provide_randomness::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `351 + i * (59 ±0)` // Estimated: `3817 + i * (2535 ±0)` - // Minimum execution time: 16_035_000 picoseconds. - Weight::from_parts(15_198_800, 0) + // Minimum execution time: 16_054_000 picoseconds. + Weight::from_parts(14_770_472, 0) .saturating_add(Weight::from_parts(0, 3817)) - // Standard Error: 11_547 - .saturating_add(Weight::from_parts(5_138_477, 0).saturating_mul(i.into())) + // Standard Error: 4_259 + .saturating_add(Weight::from_parts(5_131_103, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(i.into()))) .saturating_add(T::DbWeight::get().writes(3)) diff --git a/runtime/common/src/weights/pallet_proxy.rs b/runtime/common/src/weights/pallet_proxy.rs index 4f782eda8..315bf051c 100644 --- a/runtime/common/src/weights/pallet_proxy.rs +++ b/runtime/common/src/weights/pallet_proxy.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_proxy` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -54,11 +54,11 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `157 + p * (37 ±0)` // Estimated: `4698` - // Minimum execution time: 10_906_000 picoseconds. - Weight::from_parts(11_889_390, 0) + // Minimum execution time: 10_587_000 picoseconds. + Weight::from_parts(11_927_836, 0) .saturating_add(Weight::from_parts(0, 4698)) - // Standard Error: 1_682 - .saturating_add(Weight::from_parts(26_963, 0).saturating_mul(p.into())) + // Standard Error: 1_371 + .saturating_add(Weight::from_parts(22_824, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) } /// Storage: `Proxy::Proxies` (r:1 w:0) @@ -73,13 +73,13 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `399 + a * (68 ±0) + p * (37 ±0)` // Estimated: `5690` - // Minimum execution time: 26_178_000 picoseconds. - Weight::from_parts(27_006_660, 0) + // Minimum execution time: 26_005_000 picoseconds. + Weight::from_parts(26_650_052, 0) .saturating_add(Weight::from_parts(0, 5690)) - // Standard Error: 2_049 - .saturating_add(Weight::from_parts(125_721, 0).saturating_mul(a.into())) - // Standard Error: 2_117 - .saturating_add(Weight::from_parts(28_169, 0).saturating_mul(p.into())) + // Standard Error: 1_871 + .saturating_add(Weight::from_parts(128_419, 0).saturating_mul(a.into())) + // Standard Error: 1_933 + .saturating_add(Weight::from_parts(32_266, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -89,15 +89,17 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> { /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `MaxEncodedLen`) /// The range of component `a` is `[0, 31]`. /// The range of component `p` is `[1, 31]`. - fn remove_announcement(a: u32, _p: u32, ) -> Weight { + fn remove_announcement(a: u32, p: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `322 + a * (68 ±0)` // Estimated: `5690` - // Minimum execution time: 17_480_000 picoseconds. - Weight::from_parts(18_443_858, 0) + // Minimum execution time: 17_219_000 picoseconds. + Weight::from_parts(18_205_164, 0) .saturating_add(Weight::from_parts(0, 5690)) - // Standard Error: 1_669 - .saturating_add(Weight::from_parts(115_732, 0).saturating_mul(a.into())) + // Standard Error: 1_493 + .saturating_add(Weight::from_parts(122_565, 0).saturating_mul(a.into())) + // Standard Error: 1_543 + .saturating_add(Weight::from_parts(8_216, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -111,13 +113,13 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `322 + a * (68 ±0)` // Estimated: `5690` - // Minimum execution time: 17_176_000 picoseconds. - Weight::from_parts(17_632_635, 0) + // Minimum execution time: 17_268_000 picoseconds. + Weight::from_parts(18_015_864, 0) .saturating_add(Weight::from_parts(0, 5690)) - // Standard Error: 1_699 - .saturating_add(Weight::from_parts(132_908, 0).saturating_mul(a.into())) - // Standard Error: 1_756 - .saturating_add(Weight::from_parts(15_277, 0).saturating_mul(p.into())) + // Standard Error: 1_421 + .saturating_add(Weight::from_parts(120_331, 0).saturating_mul(a.into())) + // Standard Error: 1_468 + .saturating_add(Weight::from_parts(8_881, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -133,13 +135,13 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `331 + a * (68 ±0) + p * (37 ±0)` // Estimated: `5690` - // Minimum execution time: 23_618_000 picoseconds. - Weight::from_parts(23_484_852, 0) + // Minimum execution time: 23_803_000 picoseconds. + Weight::from_parts(23_771_521, 0) .saturating_add(Weight::from_parts(0, 5690)) - // Standard Error: 1_589 - .saturating_add(Weight::from_parts(127_986, 0).saturating_mul(a.into())) - // Standard Error: 1_641 - .saturating_add(Weight::from_parts(43_278, 0).saturating_mul(p.into())) + // Standard Error: 1_323 + .saturating_add(Weight::from_parts(125_762, 0).saturating_mul(a.into())) + // Standard Error: 1_367 + .saturating_add(Weight::from_parts(35_700, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -150,11 +152,11 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `157 + p * (37 ±0)` // Estimated: `4698` - // Minimum execution time: 16_111_000 picoseconds. - Weight::from_parts(17_412_702, 0) + // Minimum execution time: 16_406_000 picoseconds. + Weight::from_parts(17_515_617, 0) .saturating_add(Weight::from_parts(0, 4698)) - // Standard Error: 1_596 - .saturating_add(Weight::from_parts(33_701, 0).saturating_mul(p.into())) + // Standard Error: 1_411 + .saturating_add(Weight::from_parts(38_705, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -165,11 +167,11 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `157 + p * (37 ±0)` // Estimated: `4698` - // Minimum execution time: 16_236_000 picoseconds. - Weight::from_parts(18_324_106, 0) + // Minimum execution time: 16_194_000 picoseconds. + Weight::from_parts(17_532_724, 0) .saturating_add(Weight::from_parts(0, 4698)) - // Standard Error: 2_714 - .saturating_add(Weight::from_parts(11_138, 0).saturating_mul(p.into())) + // Standard Error: 2_309 + .saturating_add(Weight::from_parts(51_908, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -180,24 +182,26 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `157 + p * (37 ±0)` // Estimated: `4698` - // Minimum execution time: 16_116_000 picoseconds. - Weight::from_parts(16_986_854, 0) + // Minimum execution time: 16_020_000 picoseconds. + Weight::from_parts(17_245_545, 0) .saturating_add(Weight::from_parts(0, 4698)) - // Standard Error: 1_818 - .saturating_add(Weight::from_parts(40_407, 0).saturating_mul(p.into())) + // Standard Error: 1_555 + .saturating_add(Weight::from_parts(16_291, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } /// Storage: `Proxy::Proxies` (r:1 w:1) /// Proof: `Proxy::Proxies` (`max_values`: None, `max_size`: Some(1233), added: 3708, mode: `MaxEncodedLen`) /// The range of component `p` is `[1, 31]`. - fn create_pure(_p: u32, ) -> Weight { + fn create_pure(p: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `177` // Estimated: `4698` - // Minimum execution time: 17_556_000 picoseconds. - Weight::from_parts(19_158_031, 0) + // Minimum execution time: 17_534_000 picoseconds. + Weight::from_parts(18_700_319, 0) .saturating_add(Weight::from_parts(0, 4698)) + // Standard Error: 1_342 + .saturating_add(Weight::from_parts(10_675, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -208,11 +212,11 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `194 + p * (37 ±0)` // Estimated: `4698` - // Minimum execution time: 16_233_000 picoseconds. - Weight::from_parts(17_619_735, 0) + // Minimum execution time: 16_577_000 picoseconds. + Weight::from_parts(17_708_748, 0) .saturating_add(Weight::from_parts(0, 4698)) - // Standard Error: 1_830 - .saturating_add(Weight::from_parts(29_758, 0).saturating_mul(p.into())) + // Standard Error: 1_458 + .saturating_add(Weight::from_parts(25_279, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } diff --git a/runtime/common/src/weights/pallet_quota.rs b/runtime/common/src/weights/pallet_quota.rs index 40331f0af..a19434338 100644 --- a/runtime/common/src/weights/pallet_quota.rs +++ b/runtime/common/src/weights/pallet_quota.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_quota` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -53,8 +53,8 @@ impl<T: frame_system::Config> pallet_quota::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `11288` // Estimated: `12751` - // Minimum execution time: 7_647_000 picoseconds. - Weight::from_parts(8_035_000, 0) + // Minimum execution time: 7_146_000 picoseconds. + Weight::from_parts(7_473_000, 0) .saturating_add(Weight::from_parts(0, 12751)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -65,8 +65,8 @@ impl<T: frame_system::Config> pallet_quota::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `139` // Estimated: `3489` - // Minimum execution time: 4_781_000 picoseconds. - Weight::from_parts(5_015_000, 0) + // Minimum execution time: 4_469_000 picoseconds. + Weight::from_parts(4_731_000, 0) .saturating_add(Weight::from_parts(0, 3489)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -79,8 +79,8 @@ impl<T: frame_system::Config> pallet_quota::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `202` // Estimated: `6126` - // Minimum execution time: 21_986_000 picoseconds. - Weight::from_parts(23_487_000, 0) + // Minimum execution time: 21_893_000 picoseconds. + Weight::from_parts(22_789_000, 0) .saturating_add(Weight::from_parts(0, 6126)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) @@ -93,8 +93,8 @@ impl<T: frame_system::Config> pallet_quota::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `202` // Estimated: `6126` - // Minimum execution time: 21_622_000 picoseconds. - Weight::from_parts(22_386_000, 0) + // Minimum execution time: 21_581_000 picoseconds. + Weight::from_parts(22_465_000, 0) .saturating_add(Weight::from_parts(0, 6126)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) @@ -105,8 +105,8 @@ impl<T: frame_system::Config> pallet_quota::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `43` // Estimated: `12751` - // Minimum execution time: 1_799_000 picoseconds. - Weight::from_parts(2_044_000, 0) + // Minimum execution time: 1_759_000 picoseconds. + Weight::from_parts(1_953_000, 0) .saturating_add(Weight::from_parts(0, 12751)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -122,11 +122,11 @@ impl<T: frame_system::Config> pallet_quota::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `227 + i * (44 ±0)` // Estimated: `12751` - // Minimum execution time: 24_653_000 picoseconds. - Weight::from_parts(39_571_198, 0) + // Minimum execution time: 25_323_000 picoseconds. + Weight::from_parts(39_142_016, 0) .saturating_add(Weight::from_parts(0, 12751)) - // Standard Error: 2_430 - .saturating_add(Weight::from_parts(1_197_849, 0).saturating_mul(i.into())) + // Standard Error: 2_270 + .saturating_add(Weight::from_parts(1_181_628, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } diff --git a/runtime/common/src/weights/pallet_scheduler.rs b/runtime/common/src/weights/pallet_scheduler.rs index 8d6f206c0..59e5bbdcb 100644 --- a/runtime/common/src/weights/pallet_scheduler.rs +++ b/runtime/common/src/weights/pallet_scheduler.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_scheduler` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -53,8 +53,8 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `30` // Estimated: `1489` - // Minimum execution time: 2_293_000 picoseconds. - Weight::from_parts(2_428_000, 0) + // Minimum execution time: 2_247_000 picoseconds. + Weight::from_parts(2_368_000, 0) .saturating_add(Weight::from_parts(0, 1489)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -66,11 +66,11 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `77 + s * (177 ±0)` // Estimated: `13928` - // Minimum execution time: 2_715_000 picoseconds. - Weight::from_parts(5_304_460, 0) + // Minimum execution time: 2_623_000 picoseconds. + Weight::from_parts(5_323_281, 0) .saturating_add(Weight::from_parts(0, 13928)) - // Standard Error: 1_481 - .saturating_add(Weight::from_parts(269_752, 0).saturating_mul(s.into())) + // Standard Error: 1_521 + .saturating_add(Weight::from_parts(261_061, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -78,8 +78,8 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_151_000 picoseconds. - Weight::from_parts(2_342_000, 0) + // Minimum execution time: 2_057_000 picoseconds. + Weight::from_parts(2_231_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `Preimage::PreimageFor` (r:1 w:1) @@ -93,11 +93,11 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `179 + s * (1 ±0)` // Estimated: `3644 + s * (1 ±0)` - // Minimum execution time: 13_626_000 picoseconds. - Weight::from_parts(14_017_000, 0) + // Minimum execution time: 13_676_000 picoseconds. + Weight::from_parts(13_904_000, 0) .saturating_add(Weight::from_parts(0, 3644)) // Standard Error: 2 - .saturating_add(Weight::from_parts(934, 0).saturating_mul(s.into())) + .saturating_add(Weight::from_parts(864, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(s.into())) @@ -108,8 +108,8 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_320_000 picoseconds. - Weight::from_parts(3_606_000, 0) + // Minimum execution time: 3_190_000 picoseconds. + Weight::from_parts(3_399_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -117,24 +117,24 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_177_000 picoseconds. - Weight::from_parts(2_347_000, 0) + // Minimum execution time: 2_037_000 picoseconds. + Weight::from_parts(2_185_000, 0) .saturating_add(Weight::from_parts(0, 0)) } fn execute_dispatch_signed() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_534_000 picoseconds. - Weight::from_parts(1_629_000, 0) + // Minimum execution time: 1_451_000 picoseconds. + Weight::from_parts(1_527_000, 0) .saturating_add(Weight::from_parts(0, 0)) } fn execute_dispatch_unsigned() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_523_000 picoseconds. - Weight::from_parts(1_665_000, 0) + // Minimum execution time: 1_380_000 picoseconds. + Weight::from_parts(1_528_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `Scheduler::Agenda` (r:1 w:1) @@ -144,11 +144,11 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `77 + s * (177 ±0)` // Estimated: `13928` - // Minimum execution time: 7_014_000 picoseconds. - Weight::from_parts(10_429_553, 0) + // Minimum execution time: 7_345_000 picoseconds. + Weight::from_parts(10_149_347, 0) .saturating_add(Weight::from_parts(0, 13928)) - // Standard Error: 2_308 - .saturating_add(Weight::from_parts(273_551, 0).saturating_mul(s.into())) + // Standard Error: 1_470 + .saturating_add(Weight::from_parts(271_802, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -163,11 +163,11 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `77 + s * (177 ±0)` // Estimated: `13928` - // Minimum execution time: 11_904_000 picoseconds. - Weight::from_parts(12_749_369, 0) + // Minimum execution time: 11_065_000 picoseconds. + Weight::from_parts(12_201_393, 0) .saturating_add(Weight::from_parts(0, 13928)) - // Standard Error: 1_721 - .saturating_add(Weight::from_parts(428_230, 0).saturating_mul(s.into())) + // Standard Error: 1_220 + .saturating_add(Weight::from_parts(421_428, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -180,11 +180,11 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `254 + s * (185 ±0)` // Estimated: `13928` - // Minimum execution time: 9_564_000 picoseconds. - Weight::from_parts(14_001_763, 0) + // Minimum execution time: 9_738_000 picoseconds. + Weight::from_parts(13_973_802, 0) .saturating_add(Weight::from_parts(0, 13928)) - // Standard Error: 3_210 - .saturating_add(Weight::from_parts(313_544, 0).saturating_mul(s.into())) + // Standard Error: 3_249 + .saturating_add(Weight::from_parts(309_352, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -199,11 +199,11 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `280 + s * (185 ±0)` // Estimated: `13928` - // Minimum execution time: 13_729_000 picoseconds. - Weight::from_parts(15_963_157, 0) + // Minimum execution time: 13_718_000 picoseconds. + Weight::from_parts(15_856_702, 0) .saturating_add(Weight::from_parts(0, 13928)) - // Standard Error: 2_377 - .saturating_add(Weight::from_parts(448_945, 0).saturating_mul(s.into())) + // Standard Error: 2_313 + .saturating_add(Weight::from_parts(428_752, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -216,11 +216,11 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `117` // Estimated: `13928` - // Minimum execution time: 6_873_000 picoseconds. - Weight::from_parts(7_582_416, 0) + // Minimum execution time: 6_953_000 picoseconds. + Weight::from_parts(7_530_478, 0) .saturating_add(Weight::from_parts(0, 13928)) - // Standard Error: 1_740 - .saturating_add(Weight::from_parts(26_017, 0).saturating_mul(s.into())) + // Standard Error: 563 + .saturating_add(Weight::from_parts(20_586, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -232,8 +232,8 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `8927` // Estimated: `13928` - // Minimum execution time: 19_457_000 picoseconds. - Weight::from_parts(20_163_000, 0) + // Minimum execution time: 18_248_000 picoseconds. + Weight::from_parts(18_882_000, 0) .saturating_add(Weight::from_parts(0, 13928)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -248,8 +248,8 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `9605` // Estimated: `13928` - // Minimum execution time: 25_900_000 picoseconds. - Weight::from_parts(26_625_000, 0) + // Minimum execution time: 23_731_000 picoseconds. + Weight::from_parts(24_949_000, 0) .saturating_add(Weight::from_parts(0, 13928)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -262,8 +262,8 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `8939` // Estimated: `13928` - // Minimum execution time: 18_312_000 picoseconds. - Weight::from_parts(18_872_000, 0) + // Minimum execution time: 18_270_000 picoseconds. + Weight::from_parts(18_997_000, 0) .saturating_add(Weight::from_parts(0, 13928)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -278,8 +278,8 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `9617` // Estimated: `13928` - // Minimum execution time: 23_531_000 picoseconds. - Weight::from_parts(24_475_000, 0) + // Minimum execution time: 23_185_000 picoseconds. + Weight::from_parts(23_971_000, 0) .saturating_add(Weight::from_parts(0, 13928)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/common/src/weights/pallet_session.rs b/runtime/common/src/weights/pallet_session.rs index c5f1ecf26..5bbff4c24 100644 --- a/runtime/common/src/weights/pallet_session.rs +++ b/runtime/common/src/weights/pallet_session.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_session` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -55,8 +55,8 @@ impl<T: frame_system::Config> pallet_session::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `723` // Estimated: `11613` - // Minimum execution time: 23_680_000 picoseconds. - Weight::from_parts(25_045_000, 0) + // Minimum execution time: 22_533_000 picoseconds. + Weight::from_parts(23_536_000, 0) .saturating_add(Weight::from_parts(0, 11613)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(5)) @@ -69,8 +69,8 @@ impl<T: frame_system::Config> pallet_session::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `412` // Estimated: `3877` - // Minimum execution time: 14_503_000 picoseconds. - Weight::from_parts(15_052_000, 0) + // Minimum execution time: 13_783_000 picoseconds. + Weight::from_parts(14_376_000, 0) .saturating_add(Weight::from_parts(0, 3877)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(5)) diff --git a/runtime/common/src/weights/pallet_smith_members.rs b/runtime/common/src/weights/pallet_smith_members.rs index 5e73cfa16..8f2a1a7dc 100644 --- a/runtime/common/src/weights/pallet_smith_members.rs +++ b/runtime/common/src/weights/pallet_smith_members.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_smith_members` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -63,8 +63,8 @@ impl<T: frame_system::Config> pallet_smith_members::WeightInfo for WeightInfo<T> // Proof Size summary in bytes: // Measured: `765` // Estimated: `6705` - // Minimum execution time: 25_109_000 picoseconds. - Weight::from_parts(25_899_000, 0) + // Minimum execution time: 24_537_000 picoseconds. + Weight::from_parts(25_692_000, 0) .saturating_add(Weight::from_parts(0, 6705)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(2)) @@ -77,8 +77,8 @@ impl<T: frame_system::Config> pallet_smith_members::WeightInfo for WeightInfo<T> // Proof Size summary in bytes: // Measured: `496` // Estimated: `3961` - // Minimum execution time: 13_004_000 picoseconds. - Weight::from_parts(13_564_000, 0) + // Minimum execution time: 13_084_000 picoseconds. + Weight::from_parts(13_653_000, 0) .saturating_add(Weight::from_parts(0, 3961)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -97,8 +97,8 @@ impl<T: frame_system::Config> pallet_smith_members::WeightInfo for WeightInfo<T> // Proof Size summary in bytes: // Measured: `626` // Estimated: `6566` - // Minimum execution time: 23_752_000 picoseconds. - Weight::from_parts(24_806_000, 0) + // Minimum execution time: 23_286_000 picoseconds. + Weight::from_parts(24_203_000, 0) .saturating_add(Weight::from_parts(0, 6566)) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(3)) @@ -123,8 +123,8 @@ impl<T: frame_system::Config> pallet_smith_members::WeightInfo for WeightInfo<T> // Proof Size summary in bytes: // Measured: `911` // Estimated: `9326` - // Minimum execution time: 49_501_000 picoseconds. - Weight::from_parts(51_840_000, 0) + // Minimum execution time: 46_868_000 picoseconds. + Weight::from_parts(48_648_000, 0) .saturating_add(Weight::from_parts(0, 9326)) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(13)) @@ -135,8 +135,8 @@ impl<T: frame_system::Config> pallet_smith_members::WeightInfo for WeightInfo<T> // Proof Size summary in bytes: // Measured: `187` // Estimated: `3652` - // Minimum execution time: 2_953_000 picoseconds. - Weight::from_parts(3_111_000, 0) + // Minimum execution time: 2_780_000 picoseconds. + Weight::from_parts(2_992_000, 0) .saturating_add(Weight::from_parts(0, 3652)) .saturating_add(T::DbWeight::get().reads(1)) } diff --git a/runtime/common/src/weights/pallet_sudo.rs b/runtime/common/src/weights/pallet_sudo.rs index 4edd67546..c51df6c48 100644 --- a/runtime/common/src/weights/pallet_sudo.rs +++ b/runtime/common/src/weights/pallet_sudo.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_sudo` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -53,8 +53,8 @@ impl<T: frame_system::Config> pallet_sudo::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `165` // Estimated: `1517` - // Minimum execution time: 6_745_000 picoseconds. - Weight::from_parts(7_129_000, 0) + // Minimum execution time: 6_589_000 picoseconds. + Weight::from_parts(6_985_000, 0) .saturating_add(Weight::from_parts(0, 1517)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -65,8 +65,8 @@ impl<T: frame_system::Config> pallet_sudo::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `165` // Estimated: `1517` - // Minimum execution time: 7_066_000 picoseconds. - Weight::from_parts(7_855_000, 0) + // Minimum execution time: 6_878_000 picoseconds. + Weight::from_parts(7_358_000, 0) .saturating_add(Weight::from_parts(0, 1517)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -76,8 +76,8 @@ impl<T: frame_system::Config> pallet_sudo::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `165` // Estimated: `1517` - // Minimum execution time: 7_015_000 picoseconds. - Weight::from_parts(7_360_000, 0) + // Minimum execution time: 6_934_000 picoseconds. + Weight::from_parts(7_434_000, 0) .saturating_add(Weight::from_parts(0, 1517)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -87,8 +87,8 @@ impl<T: frame_system::Config> pallet_sudo::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `165` // Estimated: `1517` - // Minimum execution time: 5_973_000 picoseconds. - Weight::from_parts(6_261_000, 0) + // Minimum execution time: 6_001_000 picoseconds. + Weight::from_parts(6_397_000, 0) .saturating_add(Weight::from_parts(0, 1517)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/common/src/weights/pallet_timestamp.rs b/runtime/common/src/weights/pallet_timestamp.rs index a6e620662..df562e804 100644 --- a/runtime/common/src/weights/pallet_timestamp.rs +++ b/runtime/common/src/weights/pallet_timestamp.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_timestamp` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -59,8 +59,8 @@ impl<T: frame_system::Config> pallet_timestamp::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `379` // Estimated: `1864` - // Minimum execution time: 10_380_000 picoseconds. - Weight::from_parts(11_078_000, 0) + // Minimum execution time: 10_293_000 picoseconds. + Weight::from_parts(11_107_000, 0) .saturating_add(Weight::from_parts(0, 1864)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(2)) @@ -69,8 +69,8 @@ impl<T: frame_system::Config> pallet_timestamp::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `57` // Estimated: `0` - // Minimum execution time: 2_542_000 picoseconds. - Weight::from_parts(2_694_000, 0) + // Minimum execution time: 2_400_000 picoseconds. + Weight::from_parts(2_539_000, 0) .saturating_add(Weight::from_parts(0, 0)) } } diff --git a/runtime/common/src/weights/pallet_treasury.rs b/runtime/common/src/weights/pallet_treasury.rs index 6b93d76ab..5bfd1059f 100644 --- a/runtime/common/src/weights/pallet_treasury.rs +++ b/runtime/common/src/weights/pallet_treasury.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_treasury` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -63,8 +63,8 @@ impl<T: frame_system::Config> pallet_treasury::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `67` // Estimated: `1489` - // Minimum execution time: 16_761_000 picoseconds. - Weight::from_parts(17_586_000, 0) + // Minimum execution time: 16_895_000 picoseconds. + Weight::from_parts(17_676_000, 0) .saturating_add(Weight::from_parts(0, 1489)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -77,8 +77,8 @@ impl<T: frame_system::Config> pallet_treasury::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `272` // Estimated: `6126` - // Minimum execution time: 27_433_000 picoseconds. - Weight::from_parts(28_307_000, 0) + // Minimum execution time: 27_835_000 picoseconds. + Weight::from_parts(28_815_000, 0) .saturating_add(Weight::from_parts(0, 6126)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -92,11 +92,11 @@ impl<T: frame_system::Config> pallet_treasury::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `433 + p * (8 ±0)` // Estimated: `3557` - // Minimum execution time: 6_113_000 picoseconds. - Weight::from_parts(9_442_836, 0) + // Minimum execution time: 6_110_000 picoseconds. + Weight::from_parts(9_332_735, 0) .saturating_add(Weight::from_parts(0, 3557)) - // Standard Error: 1_120 - .saturating_add(Weight::from_parts(46_468, 0).saturating_mul(p.into())) + // Standard Error: 1_142 + .saturating_add(Weight::from_parts(49_768, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -106,8 +106,8 @@ impl<T: frame_system::Config> pallet_treasury::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `90` // Estimated: `1887` - // Minimum execution time: 4_527_000 picoseconds. - Weight::from_parts(4_722_000, 0) + // Minimum execution time: 4_290_000 picoseconds. + Weight::from_parts(4_657_000, 0) .saturating_add(Weight::from_parts(0, 1887)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -125,11 +125,11 @@ impl<T: frame_system::Config> pallet_treasury::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0 + p * (195 ±0)` // Estimated: `3558 + p * (5136 ±0)` - // Minimum execution time: 12_865_000 picoseconds. - Weight::from_parts(19_048_235, 0) + // Minimum execution time: 11_965_000 picoseconds. + Weight::from_parts(24_309_981, 0) .saturating_add(Weight::from_parts(0, 3558)) - // Standard Error: 33_635 - .saturating_add(Weight::from_parts(23_701_918, 0).saturating_mul(p.into())) + // Standard Error: 14_472 + .saturating_add(Weight::from_parts(23_310_107, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -152,8 +152,8 @@ impl<T: frame_system::Config> pallet_treasury::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `179` // Estimated: `6126` - // Minimum execution time: 39_028_000 picoseconds. - Weight::from_parts(39_818_000, 0) + // Minimum execution time: 39_319_000 picoseconds. + Weight::from_parts(40_632_000, 0) .saturating_add(Weight::from_parts(0, 6126)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -164,8 +164,8 @@ impl<T: frame_system::Config> pallet_treasury::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `116` // Estimated: `3526` - // Minimum execution time: 9_032_000 picoseconds. - Weight::from_parts(9_459_000, 0) + // Minimum execution time: 8_711_000 picoseconds. + Weight::from_parts(9_202_000, 0) .saturating_add(Weight::from_parts(0, 3526)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -176,8 +176,8 @@ impl<T: frame_system::Config> pallet_treasury::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `116` // Estimated: `3526` - // Minimum execution time: 7_991_000 picoseconds. - Weight::from_parts(8_435_000, 0) + // Minimum execution time: 7_887_000 picoseconds. + Weight::from_parts(8_349_000, 0) .saturating_add(Weight::from_parts(0, 3526)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/common/src/weights/pallet_universal_dividend.rs b/runtime/common/src/weights/pallet_universal_dividend.rs index 59318a48c..778f298d2 100644 --- a/runtime/common/src/weights/pallet_universal_dividend.rs +++ b/runtime/common/src/weights/pallet_universal_dividend.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_universal_dividend` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -62,11 +62,11 @@ impl<T: frame_system::Config> pallet_universal_dividend::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `643` // Estimated: `4108` - // Minimum execution time: 25_250_000 picoseconds. - Weight::from_parts(26_478_413, 0) + // Minimum execution time: 24_610_000 picoseconds. + Weight::from_parts(26_539_017, 0) .saturating_add(Weight::from_parts(0, 4108)) - // Standard Error: 2_994 - .saturating_add(Weight::from_parts(12_798, 0).saturating_mul(i.into())) + // Standard Error: 382 + .saturating_add(Weight::from_parts(234, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -78,8 +78,8 @@ impl<T: frame_system::Config> pallet_universal_dividend::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `156` // Estimated: `6126` - // Minimum execution time: 45_153_000 picoseconds. - Weight::from_parts(46_077_000, 0) + // Minimum execution time: 45_470_000 picoseconds. + Weight::from_parts(46_660_000, 0) .saturating_add(Weight::from_parts(0, 6126)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) @@ -92,8 +92,8 @@ impl<T: frame_system::Config> pallet_universal_dividend::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `93` // Estimated: `3558` - // Minimum execution time: 30_379_000 picoseconds. - Weight::from_parts(31_216_000, 0) + // Minimum execution time: 30_105_000 picoseconds. + Weight::from_parts(31_315_000, 0) .saturating_add(Weight::from_parts(0, 3558)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -105,13 +105,15 @@ impl<T: frame_system::Config> pallet_universal_dividend::WeightInfo for WeightIn /// Storage: `System::Account` (r:1 w:1) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `MaxEncodedLen`) /// The range of component `i` is `[1, 160]`. - fn on_removed_member(_i: u32, ) -> Weight { + fn on_removed_member(i: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `181` // Estimated: `3558` - // Minimum execution time: 13_329_000 picoseconds. - Weight::from_parts(14_784_356, 0) + // Minimum execution time: 12_722_000 picoseconds. + Weight::from_parts(14_020_745, 0) .saturating_add(Weight::from_parts(0, 3558)) + // Standard Error: 216 + .saturating_add(Weight::from_parts(1_349, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(1)) } diff --git a/runtime/common/src/weights/pallet_upgrade_origin.rs b/runtime/common/src/weights/pallet_upgrade_origin.rs index 4b01ad587..09e11404c 100644 --- a/runtime/common/src/weights/pallet_upgrade_origin.rs +++ b/runtime/common/src/weights/pallet_upgrade_origin.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_upgrade_origin` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -51,8 +51,8 @@ impl<T: frame_system::Config> pallet_upgrade_origin::WeightInfo for WeightInfo<T // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_194_000 picoseconds. - Weight::from_parts(4_665_000, 0) + // Minimum execution time: 4_208_000 picoseconds. + Weight::from_parts(4_574_000, 0) .saturating_add(Weight::from_parts(0, 0)) } } diff --git a/runtime/common/src/weights/pallet_utility.rs b/runtime/common/src/weights/pallet_utility.rs index 6436ee7f3..3e4b97c81 100644 --- a/runtime/common/src/weights/pallet_utility.rs +++ b/runtime/common/src/weights/pallet_utility.rs @@ -17,7 +17,7 @@ //! Autogenerated weights for `pallet_utility` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-05-13, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 @@ -52,18 +52,18 @@ impl<T: frame_system::Config> pallet_utility::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_572_000 picoseconds. - Weight::from_parts(7_967_083, 0) + // Minimum execution time: 3_225_000 picoseconds. + Weight::from_parts(6_768_835, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 2_196 - .saturating_add(Weight::from_parts(2_073_965, 0).saturating_mul(c.into())) + // Standard Error: 2_935 + .saturating_add(Weight::from_parts(2_000_415, 0).saturating_mul(c.into())) } fn as_derivative() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_939_000 picoseconds. - Weight::from_parts(3_163_000, 0) + // Minimum execution time: 2_752_000 picoseconds. + Weight::from_parts(2_997_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// The range of component `c` is `[0, 1000]`. @@ -71,18 +71,18 @@ impl<T: frame_system::Config> pallet_utility::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_720_000 picoseconds. - Weight::from_parts(25_395_372, 0) + // Minimum execution time: 3_150_000 picoseconds. + Weight::from_parts(6_300_063, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 3_072 - .saturating_add(Weight::from_parts(2_157_020, 0).saturating_mul(c.into())) + // Standard Error: 1_366 + .saturating_add(Weight::from_parts(2_184_259, 0).saturating_mul(c.into())) } fn dispatch_as() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_533_000 picoseconds. - Weight::from_parts(5_032_000, 0) + // Minimum execution time: 4_387_000 picoseconds. + Weight::from_parts(4_735_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// The range of component `c` is `[0, 1000]`. @@ -90,10 +90,10 @@ impl<T: frame_system::Config> pallet_utility::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_583_000 picoseconds. - Weight::from_parts(9_224_622, 0) + // Minimum execution time: 3_227_000 picoseconds. + Weight::from_parts(8_110_481, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 3_462 - .saturating_add(Weight::from_parts(2_059_460, 0).saturating_mul(c.into())) + // Standard Error: 1_389 + .saturating_add(Weight::from_parts(2_001_592, 0).saturating_mul(c.into())) } } diff --git a/runtime/common/src/weights/paritydb_weights.rs b/runtime/common/src/weights/paritydb_weights.rs index dc1ee1f0e..972f0dca3 100644 --- a/runtime/common/src/weights/paritydb_weights.rs +++ b/runtime/common/src/weights/paritydb_weights.rs @@ -1,6 +1,6 @@ //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 -//! DATE: 2024-03-21 (Y/M/D) +//! DATE: 2024-05-13 (Y/M/D) //! HOSTNAME: `bgallois-ms7d43`, CPU: `12th Gen Intel(R) Core(TM) i3-12100F` //! //! DATABASE: `ParityDb`, RUNTIME: `Ğdev Local Testnet` @@ -33,31 +33,31 @@ pub mod constants { /// Calculated by multiplying the *Average* of all values with `2.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 1_069, 1_117_853 - /// Average: 10_457 - /// Median: 1_757 - /// Std-Dev: 97504.22 + /// Min, Max: 794, 1_098_997 + /// Average: 9_893 + /// Median: 1_232 + /// Std-Dev: 95894.03 /// /// Percentiles nanoseconds: - /// 99th: 10_084 - /// 95th: 2_736 - /// 75th: 1_979 - read: 20_914 * constants::WEIGHT_REF_TIME_PER_NANOS, + /// 99th: 9_401 + /// 95th: 2_655 + /// 75th: 1_565 + read: 19_786 * constants::WEIGHT_REF_TIME_PER_NANOS, /// Time to write one storage item. /// Calculated by multiplying the *Average* of all values with `2.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 4_790, 5_998_438 - /// Average: 58_505 - /// Median: 12_295 - /// Std-Dev: 523003.75 + /// Min, Max: 3_685, 6_605_999 + /// Average: 59_740 + /// Median: 8_551 + /// Std-Dev: 576372.47 /// /// Percentiles nanoseconds: - /// 99th: 47_632 - /// 95th: 19_096 - /// 75th: 14_574 - write: 117_010 * constants::WEIGHT_REF_TIME_PER_NANOS, + /// 99th: 18_887 + /// 95th: 13_172 + /// 75th: 11_273 + write: 119_480 * constants::WEIGHT_REF_TIME_PER_NANOS, }; } diff --git a/runtime/g1/src/lib.rs b/runtime/g1/src/lib.rs index 26f8d22fd..8129cbc2e 100644 --- a/runtime/g1/src/lib.rs +++ b/runtime/g1/src/lib.rs @@ -14,6 +14,7 @@ // You should have received a copy of the GNU Affero General Public License // along with Duniter-v2S. If not, see <https://www.gnu.org/licenses/>. +#![allow(deprecated)] // TODO #![cfg_attr(not(feature = "std"), no_std)] // `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256. #![recursion_limit = "256"] diff --git a/runtime/gdev/src/lib.rs b/runtime/gdev/src/lib.rs index 436f8a315..c662393b4 100644 --- a/runtime/gdev/src/lib.rs +++ b/runtime/gdev/src/lib.rs @@ -14,6 +14,7 @@ // You should have received a copy of the GNU Affero General Public License // along with Duniter-v2S. If not, see <https://www.gnu.org/licenses/>. +#![allow(deprecated)] // TODO #![cfg_attr(not(feature = "std"), no_std)] // `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256. #![recursion_limit = "256"] diff --git a/runtime/gtest/src/lib.rs b/runtime/gtest/src/lib.rs index 1c7018c55..385887b0b 100644 --- a/runtime/gtest/src/lib.rs +++ b/runtime/gtest/src/lib.rs @@ -14,6 +14,7 @@ // You should have received a copy of the GNU Affero General Public License // along with Duniter-v2S. If not, see <https://www.gnu.org/licenses/>. +#![allow(deprecated)] // TODO #![cfg_attr(not(feature = "std"), no_std)] // `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256. #![recursion_limit = "256"] -- GitLab