From a3273d236ea90137f483c7a9a2ee64478de1d12b Mon Sep 17 00:00:00 2001 From: Benjamin Gallois <business@gallois.cc> Date: Mon, 6 May 2024 10:37:23 +0200 Subject: [PATCH] Upgrade to polkadot-v1.9.0 (nodes/rust/duniter-v2s!258) * doc: use duniter repo * use only polkadot-sdk from duniter * use git shallow copy * upgrade documentation * regenerate metadata * fix tests * fix benchmarks * upgrade to polkadot-v1.9.0 --- .cargo/config.toml | 18 +- .gitlab-ci.yml | 16 +- Cargo.lock | 2012 ++++++++++------- Cargo.toml | 218 +- docker/Dockerfile | 6 +- docs/dev/upgrade-substrate.md | 64 +- node/src/command.rs | 12 +- pallets/authority-members/src/mock.rs | 5 + pallets/certification/src/benchmarking.rs | 16 - pallets/certification/src/mock.rs | 5 + pallets/distance/src/mock.rs | 5 + pallets/duniter-wot/src/mock.rs | 5 + pallets/identity/src/benchmarking.rs | 32 - pallets/identity/src/mock.rs | 5 + pallets/membership/src/mock.rs | 5 + pallets/offences/src/mock.rs | 5 + pallets/oneshot-account/src/mock.rs | 5 + pallets/quota/src/mock.rs | 5 + pallets/smith-members/src/mock.rs | 5 + pallets/universal-dividend/src/lib.rs | 2 +- pallets/universal-dividend/src/mock.rs | 5 + resources/metadata.scale | Bin 113245 -> 147052 bytes runtime/common/Cargo.toml | 3 + runtime/common/src/apis.rs | 2 +- runtime/common/src/pallets_config.rs | 15 +- 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 | 54 +- .../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 | 70 +- .../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 | 94 +- runtime/common/src/weights/pallet_quota.rs | 30 +- .../common/src/weights/pallet_scheduler.rs | 157 +- 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 | 22 +- .../src/weights/pallet_upgrade_origin.rs | 6 +- runtime/common/src/weights/pallet_utility.rs | 34 +- .../common/src/weights/paritydb_weights.rs | 34 +- runtime/gdev/tests/offences_tests.rs | 6 +- xtask/src/gen_doc.rs | 2 +- 56 files changed, 1996 insertions(+), 1626 deletions(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index f332af474..4cce48d3d 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,12 +1,12 @@ [alias] -sanity-gdev = "test -p duniter-live-tests --test sanity_gdev -- --nocapture" -tu = "test --workspace --exclude duniter-end2end-tests --exclude duniter-live-tests --features constant-fees" +sanity-gdev = "test -Zgit=shallow-deps -p duniter-live-tests --test sanity_gdev -- --nocapture" +tu = "test -Zgit=shallow-deps --workspace --exclude duniter-end2end-tests --exclude duniter-live-tests --features constant-fees" # `te` and `cucumber` are synonyms te = "test -p duniter-end2end-tests --test cucumber_tests --features constant-fees --" -cucumber-build = "build --features constant-fees" -cucumber = "test -p duniter-end2end-tests --test cucumber_tests --" -ta = "test --workspace --exclude duniter-live-tests --features constant-fees" -tb = "test --features runtime-benchmarks -p" -rbp = "run --release --features runtime-benchmarks -- benchmark pallet --chain=dev --steps=50 --repeat=20 --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=. --pallet" -xtask = "run --package xtask --" -cucumber-node = "run -- --chain=gdev_dev --execution=Native --sealing=manual --force-authoring --rpc-cors=all --tmp --ws-port 9944 --alice --features constant-fees" +cucumber-build = "build -Zgit=shallow-deps --features constant-fees" +cucumber = "test -Zgit=shallow-deps -p duniter-end2end-tests --test cucumber_tests --" +ta = "test -Zgit=shallow-deps --workspace --exclude duniter-live-tests --features constant-fees" +tb = "test -Zgit=shallow-deps --features runtime-benchmarks -p" +rbp = "run -Zgit=shallow-deps --release --features runtime-benchmarks -- benchmark pallet --chain=dev --steps=50 --repeat=20 --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=. --pallet" +xtask = "run -Zgit=shallow-deps --package xtask --" +cucumber-node = "run -Zgit=shallow-deps -- --chain=gdev_dev --execution=Native --sealing=manual --force-authoring --rpc-cors=all --tmp --ws-port 9944 --alice --features constant-fees" diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8d159753c..241c8e95a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -70,10 +70,10 @@ fmt_and_clippy: - when: manual stage: quality script: - - cargo fmt -- --version - - cargo fmt -- --check - - cargo clippy -- -V - - cargo clippy --features runtime-benchmarks --all --tests -- -D warnings + - cargo fmt -- --version + - cargo fmt -- --check + - cargo clippy -- -V + - cargo clippy -Zgit=shallow-deps --features runtime-benchmarks --all --tests -- -D warnings run_benchmarks: extends: .env @@ -86,7 +86,7 @@ run_benchmarks: - if: '$CI_MERGE_REQUEST_ID || $CI_COMMIT_BRANCH == "master"' - when: manual script: - - cargo build --release --features runtime-benchmarks + - cargo build -Zgit=shallow-deps --release --features runtime-benchmarks - target/release/duniter benchmark storage --chain=dev --mul=2 --state-version=1 - target/release/duniter benchmark overhead --chain=dev --wasm-execution=compiled --warmup=1 --repeat=100 - target/release/duniter benchmark pallet --chain=dev --steps=5 --repeat=2 --pallet="*" --extrinsic="*" --wasm-execution=compiled @@ -108,7 +108,7 @@ gdev_build: script: - apt-get update - apt-get install -y clang cmake protobuf-compiler - - cargo build --no-default-features --features gtest + - cargo build -Zgit=shallow-deps --no-default-features --features gtest gdev_srtool_build: stage: build @@ -316,8 +316,8 @@ create_g1_data: script: - apt-get update - apt-get install -y clang cmake protobuf-compiler - - cargo run ${FEATURES} -- build-spec --chain=${RUNTIME}_live > release/${RUNTIME}.json - - cargo run ${FEATURES} -- build-spec --chain=release/${RUNTIME}.json --disable-default-bootnode --raw > release/${RUNTIME}-raw.json + - cargo run -Zgit=shallow-deps ${FEATURES} -- build-spec --chain=${RUNTIME}_live > release/${RUNTIME}.json + - cargo run -Zgit=shallow-deps ${FEATURES} -- build-spec --chain=release/${RUNTIME}.json --disable-default-bootnode --raw > release/${RUNTIME}-raw.json - cp node/specs/${RUNTIME}_client-specs.yaml release/ artifacts: expire_in: never diff --git a/Cargo.lock b/Cargo.lock index 468fd6f4f..ab1569c41 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -84,9 +84,9 @@ dependencies = [ [[package]] name = "ahash" -version = "0.8.10" +version = "0.8.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b79b82693f705137f8fb9b37871d99e4f9a7df12b917eed79c3d3954830a60b" +checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" dependencies = [ "cfg-if", "getrandom 0.2.12", @@ -97,9 +97,9 @@ dependencies = [ [[package]] name = "aho-corasick" -version = "1.1.2" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" +checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" dependencies = [ "memchr", ] @@ -184,9 +184,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.80" +version = "1.0.81" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ad32ce52e4161730f7098c077cd2ed6229b5804ccf99e5366be1ab72a98b4e1" +checksum = "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247" [[package]] name = "approx" @@ -197,6 +197,20 @@ dependencies = [ "num-traits 0.2.18", ] +[[package]] +name = "aquamarine" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d1da02abba9f9063d786eab1509833ebb2fac0f966862ca59439c76b9c566760" +dependencies = [ + "include_dir", + "itertools 0.10.5", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 1.0.109", +] + [[package]] name = "aquamarine" version = "0.5.0" @@ -208,7 +222,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -439,7 +453,7 @@ dependencies = [ [[package]] name = "ark-secret-scalar" version = "0.0.2" -source = "git+https://github.com/w3f/ring-vrf?rev=e9782f9#e9782f938629c90f3adb3fff2358bc8d1386af3e" +source = "git+https://github.com/duniter/ring-vrf#06b60fdb7308c127448ef5799414c45516f6c42b" dependencies = [ "ark-ec", "ark-ff", @@ -488,7 +502,7 @@ dependencies = [ [[package]] name = "ark-transcript" version = "0.0.2" -source = "git+https://github.com/w3f/ring-vrf?rev=e9782f9#e9782f938629c90f3adb3fff2358bc8d1386af3e" +source = "git+https://github.com/duniter/ring-vrf#06b60fdb7308c127448ef5799414c45516f6c42b" dependencies = [ "ark-ff", "ark-serialize", @@ -525,12 +539,6 @@ dependencies = [ "nodrop", ] -[[package]] -name = "arrayvec" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" - [[package]] name = "arrayvec" version = "0.7.4" @@ -639,9 +647,9 @@ dependencies = [ [[package]] name = "async-io" -version = "2.3.1" +version = "2.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f97ab0c5b00a7cdbe5a371b9a782ee7be1316095885c8a4ea1daf490eb0ef65" +checksum = "dcccb0f599cfa2f8ace422d3555572f47424da5648a4382a9dd0310ff8210884" dependencies = [ "async-lock 3.3.0", "cfg-if", @@ -650,7 +658,7 @@ dependencies = [ "futures-lite", "parking", "polling", - "rustix 0.38.31", + "rustix 0.38.32", "slab", "tracing", "windows-sys 0.52.0", @@ -701,7 +709,7 @@ dependencies = [ "cfg-if", "event-listener 5.2.0", "futures-lite", - "rustix 0.38.31", + "rustix 0.38.32", "windows-sys 0.52.0", ] @@ -717,7 +725,7 @@ dependencies = [ "cfg-if", "futures-core", "futures-io", - "rustix 0.38.31", + "rustix 0.38.32", "signal-hook-registry", "slab", "windows-sys 0.48.0", @@ -731,13 +739,13 @@ checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799" [[package]] name = "async-trait" -version = "0.1.77" +version = "0.1.79" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9" +checksum = "a507401cad91ec6a857ed5513a2073c82a9b9048762b885bb98655b306964681" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -767,15 +775,15 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] name = "autocfg" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" +checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80" [[package]] name = "backtrace" -version = "0.3.69" +version = "0.3.71" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" +checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d" dependencies = [ "addr2line 0.21.0", "cc", @@ -789,7 +797,7 @@ dependencies = [ [[package]] name = "bandersnatch_vrfs" version = "0.0.4" -source = "git+https://github.com/w3f/ring-vrf?rev=e9782f9#e9782f938629c90f3adb3fff2358bc8d1386af3e" +source = "git+https://github.com/duniter/ring-vrf#06b60fdb7308c127448ef5799414c45516f6c42b" dependencies = [ "ark-bls12-381", "ark-ec", @@ -799,7 +807,7 @@ dependencies = [ "ark-std", "dleq_vrf", "fflonk", - "merlin 3.0.0", + "merlin", "rand_chacha", "rand_core 0.6.4", "ring 0.1.0", @@ -875,13 +883,13 @@ dependencies = [ "lazy_static", "lazycell", "peeking_take_while", - "prettyplease 0.2.16", + "prettyplease 0.2.17", "proc-macro2", "quote", "regex", "rustc-hash", "shlex", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -890,11 +898,7 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "93f2635620bf0b9d4576eb7bb9a38a55df78bd1205d26fa994b25911a69f212f" dependencies = [ - "bitcoin_hashes", - "rand", - "rand_core 0.6.4", - "serde", - "unicode-normalization", + "bitcoin_hashes 0.11.0", ] [[package]] @@ -912,12 +916,28 @@ version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" +[[package]] +name = "bitcoin-internals" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9425c3bf7089c983facbae04de54513cce73b41c7f9ff8c845b54e7bc64ebbfb" + [[package]] name = "bitcoin_hashes" version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "90064b8dee6815a6470d60bad07bbbaee885c0e12d04177138fa3291a01b7bc4" +[[package]] +name = "bitcoin_hashes" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1930a4dabfebb8d7d9992db18ebe3ae2876f0a305fab206fd168df931ede293b" +dependencies = [ + "bitcoin-internals", + "hex-conservative", +] + [[package]] name = "bitflags" version = "1.3.2" @@ -926,9 +946,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.4.2" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" +checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" [[package]] name = "bitvec" @@ -997,9 +1017,9 @@ dependencies = [ [[package]] name = "blake3" -version = "1.5.0" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0231f06152bf547e9c2b5194f247cd97aacf6dcd8b15d8e5ec0663f64580da87" +checksum = "30cca6d3674597c30ddf2c587bf8d9d65c9a84d2326d941cc79c9842dfe0ef52" dependencies = [ "arrayref", "arrayvec 0.7.4", @@ -1008,18 +1028,6 @@ dependencies = [ "constant_time_eq 0.3.0", ] -[[package]] -name = "block-buffer" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" -dependencies = [ - "block-padding", - "byte-tools", - "byteorder", - "generic-array 0.12.4", -] - [[package]] name = "block-buffer" version = "0.9.0" @@ -1038,15 +1046,6 @@ dependencies = [ "generic-array 0.14.7", ] -[[package]] -name = "block-padding" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5" -dependencies = [ - "byte-tools", -] - [[package]] name = "blocking" version = "1.5.1" @@ -1083,9 +1082,9 @@ checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3" [[package]] name = "bs58" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5353f36341f7451062466f0b755b96ac3a9547e4d7f6b70d603fc721a7d7896" +checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" dependencies = [ "tinyvec", ] @@ -1111,9 +1110,9 @@ dependencies = [ [[package]] name = "bumpalo" -version = "3.15.3" +version = "3.15.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ea184aa71bb362a1157c896979544cc23974e08fd265f29ea96b59f0b4a555b" +checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa" [[package]] name = "byte-slice-cast" @@ -1135,9 +1134,9 @@ checksum = "e1e5f035d16fc623ae5f74981db80a439803888314e3a555fd6f04acd51a3205" [[package]] name = "bytemuck" -version = "1.14.3" +version = "1.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2ef034f05691a48569bd920a96c81b9d91bbad1ab5ac7c4616c1f6ef36cb79f" +checksum = "5d6d68c57235a3a081186990eca2867354726650f42f7516ca50c28d6281fd15" [[package]] name = "byteorder" @@ -1147,9 +1146,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.5.0" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" +checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" [[package]] name = "bzip2-sys" @@ -1183,9 +1182,9 @@ dependencies = [ [[package]] name = "cargo-platform" -version = "0.1.7" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "694c8807f2ae16faecc43dc17d74b3eb042482789fd0eb64b39a2e04e087053f" +checksum = "24b1f0365a6c6bb4020cd05806fd0d33c44d38046b8bd7f0e40814b9763cabfc" dependencies = [ "serde", ] @@ -1206,10 +1205,11 @@ dependencies = [ [[package]] name = "cc" -version = "1.0.88" +version = "1.0.90" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02f341c093d19155a6e41631ce5971aac4e9a868262212153124c15fa22d1cdc" +checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5" dependencies = [ + "jobserver", "libc", ] @@ -1279,9 +1279,9 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.34" +version = "0.4.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5bc015644b92d5890fab7489e49d21f879d5c990186827d42ec511919404f38b" +checksum = "8eaf5903dcbc0a39312feb77df2ff4c76387d591b9fc7b04a238dcf8bb62639a" dependencies = [ "android-tzdata", "iana-time-zone", @@ -1337,9 +1337,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.1" +version = "4.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c918d541ef2913577a0f9566e9ce27cb35b6df072075769e0b26cb5a554520da" +checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0" dependencies = [ "clap_builder", "clap_derive", @@ -1347,9 +1347,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.1" +version = "4.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f3e7391dad68afb0c2ede1bf619f579a3dc9c2ec67f089baa397123a2f3d1eb" +checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4" dependencies = [ "anstream", "anstyle", @@ -1369,14 +1369,14 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.0" +version = "4.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "307bc0538d5f0f83b8248db3087aa92fe504e4691294d0c96c0eabc33f47ba47" +checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64" dependencies = [ - "heck 0.4.1", + "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -1446,7 +1446,7 @@ dependencies = [ "ark-std", "fflonk", "getrandom_or_panic", - "merlin 3.0.0", + "merlin", "rand_chacha", ] @@ -1466,6 +1466,7 @@ dependencies = [ "frame-system", "frame-system-benchmarking", "frame-try-runtime", + "pallet-atomic-swap", "pallet-authority-members", "pallet-babe", "pallet-balances", @@ -1504,7 +1505,7 @@ dependencies = [ "sp-membership", "sp-runtime", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", "sp-weights", ] @@ -1538,9 +1539,9 @@ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" [[package]] name = "const-random" -version = "0.1.17" +version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5aaf16c9c2c612020bcfd042e170f6e32de9b9d75adb5277cdbbd2e2c8c8299a" +checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359" dependencies = [ "const-random-macro", ] @@ -1665,7 +1666,7 @@ dependencies = [ "gimli 0.27.3", "hashbrown 0.13.2", "log", - "regalloc2", + "regalloc2 0.6.1", "smallvec", "target-lexicon", ] @@ -1840,16 +1841,6 @@ dependencies = [ "subtle 2.5.0", ] -[[package]] -name = "crypto-mac" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25fab6889090c8133f3deb8f73ba3c65a7f456f66436fc012a1b1e272b1e103e" -dependencies = [ - "generic-array 0.14.7", - "subtle 2.5.0", -] - [[package]] name = "ctr" version = "0.9.2" @@ -1861,11 +1852,11 @@ dependencies = [ [[package]] name = "ctrlc" -version = "3.4.2" +version = "3.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b467862cc8610ca6fc9a1532d7777cee0804e678ab45410897b9396495994a0b" +checksum = "672465ae37dc1bc6380a6547a8883d5dd397b0f1faaad4f265726cc7042a5345" dependencies = [ - "nix 0.27.1", + "nix 0.28.0", "windows-sys 0.52.0", ] @@ -1911,7 +1902,7 @@ dependencies = [ "proc-macro2", "quote", "regex", - "syn 2.0.52", + "syn 2.0.55", "synthez", ] @@ -1929,19 +1920,6 @@ dependencies = [ "regex-syntax 0.7.5", ] -[[package]] -name = "curve25519-dalek" -version = "2.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a9b85542f99a2dfa2a1b8e192662741c9859a846b296bef1c92ef9b58b5a216" -dependencies = [ - "byteorder", - "digest 0.8.1", - "rand_core 0.5.1", - "subtle 2.5.0", - "zeroize", -] - [[package]] name = "curve25519-dalek" version = "3.2.0" @@ -1980,14 +1958,14 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] name = "cxx" -version = "1.0.118" +version = "1.0.120" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2673ca5ae28334544ec2a6b18ebe666c42a2650abfb48abbd532ed409a44be2b" +checksum = "ff4dc7287237dd438b926a81a1a5605dad33d286870e5eee2db17bf2bcd9e92a" dependencies = [ "cc", "cxxbridge-flags", @@ -1997,9 +1975,9 @@ dependencies = [ [[package]] name = "cxx-build" -version = "1.0.118" +version = "1.0.120" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9df46fe0eb43066a332586114174c449a62c25689f85a08f28fdcc8e12c380b9" +checksum = "f47c6c8ad7c1a10d3ef0fe3ff6733f4db0d78f08ef0b13121543163ef327058b" dependencies = [ "cc", "codespan-reporting", @@ -2007,24 +1985,24 @@ dependencies = [ "proc-macro2", "quote", "scratch", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] name = "cxxbridge-flags" -version = "1.0.118" +version = "1.0.120" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "886acf875df67811c11cd015506b3392b9e1820b1627af1a6f4e93ccdfc74d11" +checksum = "701a1ac7a697e249cdd8dc026d7a7dafbfd0dbcd8bd24ec55889f2bc13dd6287" [[package]] name = "cxxbridge-macro" -version = "1.0.118" +version = "1.0.120" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d151cc139c3080e07f448f93a1284577ab2283d2a44acd902c6fba9ec20b6de" +checksum = "b404f596046b0bb2d903a9c786b875a126261b52b7c3a64bbb66382c41c771df" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -2072,7 +2050,7 @@ dependencies = [ "proc-macro2", "quote", "strsim 0.10.0", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -2094,7 +2072,20 @@ checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f" dependencies = [ "darling_core 0.20.8", "quote", - "syn 2.0.52", + "syn 2.0.55", +] + +[[package]] +name = "dashmap" +version = "5.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" +dependencies = [ + "cfg-if", + "hashbrown 0.14.3", + "lock_api", + "once_cell", + "parking_lot_core 0.9.9", ] [[package]] @@ -2294,7 +2285,7 @@ checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -2322,7 +2313,7 @@ dependencies = [ [[package]] name = "dleq_vrf" version = "0.0.2" -source = "git+https://github.com/w3f/ring-vrf?rev=e9782f9#e9782f938629c90f3adb3fff2358bc8d1386af3e" +source = "git+https://github.com/duniter/ring-vrf#06b60fdb7308c127448ef5799414c45516f6c42b" dependencies = [ "ark-ec", "ark-ff", @@ -2356,9 +2347,9 @@ dependencies = [ "proc-macro2", "quote", "regex", - "syn 2.0.52", + "syn 2.0.55", "termcolor", - "toml 0.8.10", + "toml 0.8.12", "walkdir", ] @@ -2404,7 +2395,7 @@ name = "duniter" version = "0.8.0" dependencies = [ "async-io", - "bs58 0.5.0", + "bs58 0.5.1", "clap", "clap_complete", "common-runtime", @@ -2418,7 +2409,7 @@ dependencies = [ "gdev-runtime", "gtest-runtime", "hex", - "jsonrpsee 0.20.3", + "jsonrpsee 0.22.3", "log", "memmap2 0.9.4", "num-format", @@ -2467,7 +2458,7 @@ dependencies = [ "sp-offchain", "sp-runtime", "sp-session", - "sp-storage 19.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-storage 19.0.0", "sp-timestamp", "sp-transaction-pool", "sp-transaction-storage-proof", @@ -2486,7 +2477,7 @@ dependencies = [ "ctrlc", "cucumber", "distance-oracle", - "env_logger 0.11.2", + "env_logger 0.11.3", "hex", "notify", "notify-debouncer-mini", @@ -2556,6 +2547,7 @@ dependencies = [ "digest 0.10.7", "elliptic-curve", "rfc6979", + "serdect", "signature", "spki", ] @@ -2635,6 +2627,7 @@ dependencies = [ "pkcs8", "rand_core 0.6.4", "sec1", + "serdect", "subtle 2.5.0", "zeroize", ] @@ -2645,15 +2638,6 @@ version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" -[[package]] -name = "encoding_rs" -version = "0.8.33" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" -dependencies = [ - "cfg-if", -] - [[package]] name = "enum-as-inner" version = "0.5.1" @@ -2690,9 +2674,9 @@ dependencies = [ [[package]] name = "env_logger" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c012a26a7f605efc424dd53697843a72be7dc86ad2d01f7814337794a12231d" +checksum = "38b35839ba51819680ba087cd351788c9a3c476841207e0b8cee0b04722343b9" dependencies = [ "env_filter", "log", @@ -2779,66 +2763,46 @@ dependencies = [ [[package]] name = "expander" -version = "2.0.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f86a749cf851891866c10515ef6c299b5c69661465e9c3bbe7e07a2b77fb0f7" +checksum = "00e83c02035136f1592a47964ea60c05a50e4ed8b5892cfac197063850898d4d" dependencies = [ "blake2 0.10.6", "fs-err", + "prettier-please", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] -name = "failure" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86" -dependencies = [ - "backtrace", - "failure_derive", -] - -[[package]] -name = "failure_derive" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4" -dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", - "synstructure", -] - -[[package]] -name = "fake-simd" -version = "0.1.2" +name = "fallible-iterator" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" +checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" [[package]] name = "fallible-iterator" -version = "0.2.0" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" +checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649" [[package]] name = "fancy-regex" -version = "0.11.0" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2" +checksum = "531e46835a22af56d1e3b66f04844bed63158bc094a628bec1d321d9b4c44bf2" dependencies = [ "bit-set", - "regex", + "regex-automata 0.4.6", + "regex-syntax 0.8.2", ] [[package]] name = "fastrand" -version = "2.0.1" +version = "2.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" +checksum = "658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984" [[package]] name = "fdlimit" @@ -2870,14 +2834,14 @@ dependencies = [ "ark-poly", "ark-serialize", "ark-std", - "merlin 3.0.0", + "merlin", ] [[package]] name = "fiat-crypto" -version = "0.2.6" +version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1676f435fc1dadde4d03e43f5d62b259e1ce5f40bd4ffb21db2b42ebe59c1382" +checksum = "c007b1ae3abe1cb6f85a16305acd418b7ca6343b953633fee2b76d8f108b830f" [[package]] name = "file-per-thread-logger" @@ -2964,7 +2928,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "12.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "parity-scale-codec", ] @@ -2987,7 +2951,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "frame-support", "frame-support-procedural", @@ -3003,16 +2967,16 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-runtime-interface 24.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", - "sp-storage 19.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-runtime-interface 24.0.0", + "sp-std 14.0.0", + "sp-storage 19.0.0", "static_assertions", ] [[package]] name = "frame-benchmarking-cli" version = "32.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "Inflector", "array-bytes 6.2.2", @@ -3044,15 +3008,15 @@ dependencies = [ "sp-blockchain", "sp-core", "sp-database", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-externalities 0.25.0", "sp-inherents", "sp-io", "sp-keystore", "sp-runtime", "sp-state-machine", - "sp-storage 19.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-storage 19.0.0", "sp-trie", - "sp-wasm-interface 20.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-wasm-interface 20.0.0", "thiserror", "thousands", ] @@ -3060,8 +3024,9 @@ dependencies = [ [[package]] name = "frame-executive" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ + "aquamarine 0.3.3", "frame-support", "frame-system", "frame-try-runtime", @@ -3071,8 +3036,8 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", - "sp-tracing 16.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", + "sp-tracing 16.0.0", ] [[package]] @@ -3101,11 +3066,11 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.35.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "futures 0.3.30", "indicatif", - "jsonrpsee 0.20.3", + "jsonrpsee 0.22.3", "log", "parity-scale-codec", "serde", @@ -3123,9 +3088,9 @@ dependencies = [ [[package]] name = "frame-support" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ - "aquamarine", + "aquamarine 0.5.0", "array-bytes 6.2.2", "bitflags 1.3.2", "docify", @@ -3146,7 +3111,7 @@ dependencies = [ "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.7.1)", + "sp-debug-derive 14.0.0", "sp-genesis-builder", "sp-inherents", "sp-io", @@ -3154,8 +3119,8 @@ dependencies = [ "sp-runtime", "sp-staking", "sp-state-machine", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", - "sp-tracing 16.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", + "sp-tracing 16.0.0", "sp-weights", "static_assertions", "tt-call", @@ -3164,7 +3129,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "23.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "Inflector", "cfg-expr", @@ -3177,35 +3142,35 @@ dependencies = [ "proc-macro2", "quote", "sp-crypto-hashing", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] name = "frame-support-procedural-tools" version = "10.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] name = "frame-support-procedural-tools-derive" version = "11.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] name = "frame-system" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "cfg-if", "docify", @@ -3217,7 +3182,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", "sp-version", "sp-weights", ] @@ -3225,7 +3190,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "frame-benchmarking", "frame-support", @@ -3234,13 +3199,13 @@ dependencies = [ "scale-info", "sp-core", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "frame-system-rpc-runtime-api" version = "26.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "parity-scale-codec", "sp-api", @@ -3249,13 +3214,13 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.34.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "frame-support", "parity-scale-codec", "sp-api", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] @@ -3349,9 +3314,9 @@ checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" [[package]] name = "futures-lite" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "445ba825b27408685aaecefd65178908c36c6e96aaf6d8599419d46e624192ba" +checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" dependencies = [ "fastrand", "futures-core", @@ -3368,7 +3333,7 @@ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -3496,7 +3461,7 @@ dependencies = [ "sp-runtime", "sp-session", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", "sp-transaction-pool", "sp-version", "substrate-wasm-builder 17.0.0", @@ -3573,7 +3538,7 @@ dependencies = [ "sp-runtime", "sp-session", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", "sp-transaction-pool", "sp-version", "substrate-wasm-builder 17.0.0", @@ -3645,9 +3610,9 @@ dependencies = [ [[package]] name = "ghash" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d930750de5717d2dd0b8c0d42c076c0e884c81a73e6cab859bbd2339c71e3e40" +checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" dependencies = [ "opaque-debug 0.3.1", "polyval", @@ -3664,7 +3629,7 @@ dependencies = [ "quote", "serde", "serde_json", - "syn 2.0.52", + "syn 2.0.55", "textwrap", "thiserror", "typed-builder", @@ -3676,7 +3641,7 @@ version = "0.27.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" dependencies = [ - "fallible-iterator", + "fallible-iterator 0.2.0", "indexmap 1.9.3", "stable_deref_trait", ] @@ -3686,6 +3651,10 @@ name = "gimli" version = "0.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" +dependencies = [ + "fallible-iterator 0.3.0", + "stable_deref_trait", +] [[package]] name = "git-version" @@ -3704,7 +3673,7 @@ checksum = "53010ccb100b96a67bc32c0175f0ed1426b31b655d562898e57325f81c023ac0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -3722,7 +3691,7 @@ dependencies = [ "aho-corasick", "bstr", "log", - "regex-automata 0.4.5", + "regex-automata 0.4.6", "regex-syntax 0.8.2", ] @@ -3737,6 +3706,26 @@ dependencies = [ "walkdir", ] +[[package]] +name = "governor" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68a7f542ee6b35af73b06abc0dad1c1bae89964e4e253bc4b587b91c9637867b" +dependencies = [ + "cfg-if", + "dashmap", + "futures 0.3.30", + "futures-timer", + "no-std-compat", + "nonzero_ext", + "parking_lot 0.12.1", + "portable-atomic", + "quanta", + "rand", + "smallvec", + "spinning_top", +] + [[package]] name = "graphql-introspection-query" version = "0.2.0" @@ -3748,19 +3737,19 @@ dependencies = [ [[package]] name = "graphql-parser" -version = "0.2.3" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5613c31f18676f164112732202124f373bb2103ff017b3b85ca954ea6a66ada" +checksum = "d2ebc8013b4426d5b81a4364c419a95ed0b404af2b82e2457de52d9348f0e474" dependencies = [ "combine", - "failure", + "thiserror", ] [[package]] name = "graphql_client" -version = "0.10.0" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9b58571cfc3cc42c3e8ff44fc6cfbb6c0dea17ed22d20f9d8f1efc4e8209a3f" +checksum = "09cdf7b487d864c2939b23902291a5041bc4a84418268f25fda1c8d4e15ad8fa" dependencies = [ "graphql_query_derive", "serde", @@ -3769,13 +3758,13 @@ dependencies = [ [[package]] name = "graphql_client_codegen" -version = "0.10.0" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4bf9cd823359d74ad3d3ecf1afd4a975f4ff2f891cdf9a66744606daf52de8c" +checksum = "a40f793251171991c4eb75bd84bc640afa8b68ff6907bc89d3b712a22f700506" dependencies = [ "graphql-introspection-query", "graphql-parser", - "heck 0.3.3", + "heck 0.4.1", "lazy_static", "proc-macro2", "quote", @@ -3786,9 +3775,9 @@ dependencies = [ [[package]] name = "graphql_query_derive" -version = "0.10.0" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e56b093bfda71de1da99758b036f4cc811fd2511c8a76f75680e9ffbd2bb4251" +checksum = "00bda454f3d313f909298f626115092d348bc231025699f557b27e248475f48c" dependencies = [ "graphql_client_codegen", "proc-macro2", @@ -3874,7 +3863,7 @@ dependencies = [ "sp-runtime", "sp-session", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", "sp-transaction-pool", "sp-version", "substrate-wasm-builder 17.0.0", @@ -3882,17 +3871,17 @@ dependencies = [ [[package]] name = "h2" -version = "0.3.24" +version = "0.3.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb2c4422095b67ee78da96fbb51a4cc413b3b25883c7717ff7ca1ab31022c9c9" +checksum = "4fbd2820c5e49886948654ab546d0688ff24530286bdcf8fca3cefb16d4618eb" dependencies = [ "bytes", "fnv", "futures-core", "futures-sink", "futures-util", - "http", - "indexmap 2.2.5", + "http 0.2.12", + "indexmap 2.2.6", "slab", "tokio", "tokio-util", @@ -3901,9 +3890,9 @@ dependencies = [ [[package]] name = "handlebars" -version = "4.5.0" +version = "5.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "faa67bab9ff362228eb3d00bd024a4965d8231bbb7921167f0cfa66c6626b225" +checksum = "d08485b96a0e6393e9e4d1b8d48cf74ad6c063cd905eb33f42c1ce3f0377539b" dependencies = [ "log", "pest", @@ -3943,7 +3932,7 @@ version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" dependencies = [ - "ahash 0.8.10", + "ahash 0.8.11", ] [[package]] @@ -3952,7 +3941,7 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" dependencies = [ - "ahash 0.8.10", + "ahash 0.8.11", "allocator-api2", "serde", ] @@ -3968,18 +3957,15 @@ dependencies = [ [[package]] name = "heck" -version = "0.3.3" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" -dependencies = [ - "unicode-segmentation", -] +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" [[package]] name = "heck" -version = "0.4.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" [[package]] name = "hermit-abi" @@ -3993,6 +3979,12 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" +[[package]] +name = "hex-conservative" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30ed443af458ccb6d81c1e7e661545f94d3176752fb1df2f543b902a1e0f51e2" + [[package]] name = "hex-literal" version = "0.4.1" @@ -4018,16 +4010,6 @@ dependencies = [ "digest 0.9.0", ] -[[package]] -name = "hmac" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a2a2320eb7ec0ebe8da8f744d7812d9fc4cb4d09344ac01898dbcb6a20ae69b" -dependencies = [ - "crypto-mac 0.11.0", - "digest 0.9.0", -] - [[package]] name = "hmac" version = "0.12.1" @@ -4070,9 +4052,20 @@ dependencies = [ [[package]] name = "http" -version = "0.2.11" +version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" +checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + +[[package]] +name = "http" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" dependencies = [ "bytes", "fnv", @@ -4086,7 +4079,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" dependencies = [ "bytes", - "http", + "http 0.2.12", + "pin-project-lite 0.2.13", +] + +[[package]] +name = "http-body" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" +dependencies = [ + "bytes", + "http 1.1.0", +] + +[[package]] +name = "http-body-util" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d" +dependencies = [ + "bytes", + "futures-core", + "http 1.1.0", + "http-body 1.0.0", "pin-project-lite 0.2.13", ] @@ -4125,8 +4141,8 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", - "http-body", + "http 0.2.12", + "http-body 0.4.6", "httparse", "httpdate", "itoa", @@ -4138,6 +4154,25 @@ dependencies = [ "want", ] +[[package]] +name = "hyper" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "186548d73ac615b32a73aafe38fb4f56c0d340e110e5a200bcadbaf2e199263a" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "http 1.1.0", + "http-body 1.0.0", + "httparse", + "itoa", + "pin-project-lite 0.2.13", + "smallvec", + "tokio", + "want", +] + [[package]] name = "hyper-rustls" version = "0.24.2" @@ -4145,8 +4180,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" dependencies = [ "futures-util", - "http", - "hyper", + "http 0.2.12", + "hyper 0.14.28", "log", "rustls 0.21.10", "rustls-native-certs 0.6.3", @@ -4154,6 +4189,26 @@ dependencies = [ "tokio-rustls 0.24.1", ] +[[package]] +name = "hyper-util" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca38ef113da30126bbff9cd1705f9273e15d45498615d138b0c20279ac7a76aa" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "http 1.1.0", + "http-body 1.0.0", + "hyper 1.2.0", + "pin-project-lite 0.2.13", + "socket2 0.5.6", + "tokio", + "tower", + "tower-service", + "tracing", +] + [[package]] name = "iana-time-zone" version = "0.1.60" @@ -4243,7 +4298,7 @@ dependencies = [ "globset", "log", "memchr", - "regex-automata 0.4.5", + "regex-automata 0.4.6", "same-file", "walkdir", "winapi-util", @@ -4310,9 +4365,9 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.2.5" +version = "2.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b0b929d511467233429c45a44ac1dcaa21ba0f5ba11e4879e6ed28ddb4f9df4" +checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" dependencies = [ "equivalent", "hashbrown 0.14.3", @@ -4471,33 +4526,26 @@ dependencies = [ [[package]] name = "itoa" -version = "1.0.10" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" +checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" [[package]] -name = "js-sys" -version = "0.3.68" +name = "jobserver" +version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "406cda4b368d531c842222cf9d2600a9a4acce8d29423695379c6868a143a9ee" +checksum = "ab46a6e9526ddef3ae7f787c06f0f2600639ba80ea3eade3d8e670a2230f51d6" dependencies = [ - "wasm-bindgen", + "libc", ] [[package]] -name = "jsonrpsee" -version = "0.20.3" +name = "js-sys" +version = "0.3.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "affdc52f7596ccb2d7645231fc6163bb314630c989b64998f3699a28b4d5d4dc" +checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" dependencies = [ - "jsonrpsee-core 0.20.3", - "jsonrpsee-http-client 0.20.3", - "jsonrpsee-proc-macros", - "jsonrpsee-server", - "jsonrpsee-types 0.20.3", - "jsonrpsee-ws-client", - "tokio", - "tracing", + "wasm-bindgen", ] [[package]] @@ -4512,21 +4560,38 @@ dependencies = [ "jsonrpsee-types 0.21.0", ] +[[package]] +name = "jsonrpsee" +version = "0.22.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3cdbb7cb6f3ba28f5b212dd250ab4483105efc3e381f5c8bb90340f14f0a2cc3" +dependencies = [ + "jsonrpsee-core 0.22.3", + "jsonrpsee-http-client 0.22.3", + "jsonrpsee-proc-macros", + "jsonrpsee-server", + "jsonrpsee-types 0.22.3", + "jsonrpsee-ws-client", + "tokio", + "tracing", +] + [[package]] name = "jsonrpsee-client-transport" -version = "0.20.3" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5b005c793122d03217da09af68ba9383363caa950b90d3436106df8cabce935" +checksum = "3f9f9ed46590a8d5681975f126e22531698211b926129a40a2db47cbca429220" dependencies = [ "futures-util", - "http", - "jsonrpsee-core 0.20.3", + "http 0.2.12", + "jsonrpsee-core 0.21.0", "pin-project", - "rustls-native-certs 0.6.3", + "rustls-native-certs 0.7.0", + "rustls-pki-types", "soketto", "thiserror", "tokio", - "tokio-rustls 0.24.1", + "tokio-rustls 0.25.0", "tokio-util", "tracing", "url", @@ -4534,13 +4599,13 @@ dependencies = [ [[package]] name = "jsonrpsee-client-transport" -version = "0.21.0" +version = "0.22.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f9f9ed46590a8d5681975f126e22531698211b926129a40a2db47cbca429220" +checksum = "9ab2e14e727d2faf388c99d9ca5210566ed3b044f07d92c29c3611718d178380" dependencies = [ "futures-util", - "http", - "jsonrpsee-core 0.21.0", + "http 0.2.12", + "jsonrpsee-core 0.22.3", "pin-project", "rustls-native-certs 0.7.0", "rustls-pki-types", @@ -4555,34 +4620,33 @@ dependencies = [ [[package]] name = "jsonrpsee-core" -version = "0.20.3" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da2327ba8df2fdbd5e897e2b5ed25ce7f299d345b9736b6828814c3dbd1fd47b" +checksum = "776d009e2f591b78c038e0d053a796f94575d66ca4e77dd84bfc5e81419e436c" dependencies = [ "anyhow", - "async-lock 2.8.0", + "async-lock 3.3.0", "async-trait", "beef", "futures-timer", "futures-util", - "hyper", - "jsonrpsee-types 0.20.3", - "parking_lot 0.12.1", - "rand", + "hyper 0.14.28", + "jsonrpsee-types 0.21.0", + "pin-project", "rustc-hash", "serde", "serde_json", - "soketto", "thiserror", "tokio", + "tokio-stream", "tracing", ] [[package]] name = "jsonrpsee-core" -version = "0.21.0" +version = "0.22.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "776d009e2f591b78c038e0d053a796f94575d66ca4e77dd84bfc5e81419e436c" +checksum = "71962a1c49af43adf81d337e4ebc93f3c915faf6eccaa14d74e255107dfd7723" dependencies = [ "anyhow", "async-lock 3.3.0", @@ -4590,9 +4654,11 @@ dependencies = [ "beef", "futures-timer", "futures-util", - "hyper", - "jsonrpsee-types 0.21.0", + "hyper 0.14.28", + "jsonrpsee-types 0.22.3", + "parking_lot 0.12.1", "pin-project", + "rand", "rustc-hash", "serde", "serde_json", @@ -4604,15 +4670,15 @@ dependencies = [ [[package]] name = "jsonrpsee-http-client" -version = "0.20.3" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f80c17f62c7653ce767e3d7288b793dfec920f97067ceb189ebdd3570f2bc20" +checksum = "78b7de9f3219d95985eb77fd03194d7c1b56c19bce1abfcc9d07462574b15572" dependencies = [ "async-trait", - "hyper", + "hyper 0.14.28", "hyper-rustls", - "jsonrpsee-core 0.20.3", - "jsonrpsee-types 0.20.3", + "jsonrpsee-core 0.21.0", + "jsonrpsee-types 0.21.0", "serde", "serde_json", "thiserror", @@ -4624,15 +4690,15 @@ dependencies = [ [[package]] name = "jsonrpsee-http-client" -version = "0.21.0" +version = "0.22.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78b7de9f3219d95985eb77fd03194d7c1b56c19bce1abfcc9d07462574b15572" +checksum = "8c13987da51270bda2c1c9b40c19be0fe9b225c7a0553963d8f17e683a50ce84" dependencies = [ "async-trait", - "hyper", + "hyper 0.14.28", "hyper-rustls", - "jsonrpsee-core 0.21.0", - "jsonrpsee-types 0.21.0", + "jsonrpsee-core 0.22.3", + "jsonrpsee-types 0.22.3", "serde", "serde_json", "thiserror", @@ -4644,28 +4710,29 @@ dependencies = [ [[package]] name = "jsonrpsee-proc-macros" -version = "0.20.3" +version = "0.22.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29110019693a4fa2dbda04876499d098fa16d70eba06b1e6e2b3f1b251419515" +checksum = "1d7c2416c400c94b2e864603c51a5bbd5b103386da1f5e58cbf01e7bb3ef0833" dependencies = [ "heck 0.4.1", - "proc-macro-crate 1.1.3", + "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.55", ] [[package]] name = "jsonrpsee-server" -version = "0.20.3" +version = "0.22.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82c39a00449c9ef3f50b84fc00fc4acba20ef8f559f07902244abf4c15c5ab9c" +checksum = "4882e640e70c2553e3d9487e6f4dddd5fd11918f25e40fa45218f9fe29ed2152" dependencies = [ "futures-util", - "http", - "hyper", - "jsonrpsee-core 0.20.3", - "jsonrpsee-types 0.20.3", + "http 0.2.12", + "hyper 0.14.28", + "jsonrpsee-core 0.22.3", + "jsonrpsee-types 0.22.3", + "pin-project", "route-recognizer", "serde", "serde_json", @@ -4680,23 +4747,22 @@ dependencies = [ [[package]] name = "jsonrpsee-types" -version = "0.20.3" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5be0be325642e850ed0bdff426674d2e66b2b7117c9be23a7caef68a2902b7d9" +checksum = "3266dfb045c9174b24c77c2dfe0084914bb23a6b2597d70c9dc6018392e1cd1b" dependencies = [ "anyhow", "beef", "serde", "serde_json", "thiserror", - "tracing", ] [[package]] name = "jsonrpsee-types" -version = "0.21.0" +version = "0.22.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3266dfb045c9174b24c77c2dfe0084914bb23a6b2597d70c9dc6018392e1cd1b" +checksum = "1e53c72de6cd2ad6ac1aa6e848206ef8b736f92ed02354959130373dfa5b3cbd" dependencies = [ "anyhow", "beef", @@ -4707,14 +4773,14 @@ dependencies = [ [[package]] name = "jsonrpsee-ws-client" -version = "0.20.3" +version = "0.22.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bca9cb3933ccae417eb6b08c3448eb1cb46e39834e5b503e395e5e5bd08546c0" +checksum = "c8a07ab8da9a283b906f6735ddd17d3680158bb72259e853441d1dd0167079ec" dependencies = [ - "http", - "jsonrpsee-client-transport 0.20.3", - "jsonrpsee-core 0.20.3", - "jsonrpsee-types 0.20.3", + "http 0.2.12", + "jsonrpsee-client-transport 0.22.3", + "jsonrpsee-core 0.22.3", + "jsonrpsee-types 0.22.3", "url", ] @@ -4728,6 +4794,7 @@ dependencies = [ "ecdsa", "elliptic-curve", "once_cell", + "serdect", "sha2 0.10.8", ] @@ -4819,7 +4886,7 @@ dependencies = [ "proc-macro2", "quote", "regex", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -4842,12 +4909,12 @@ checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" [[package]] name = "libloading" -version = "0.8.1" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161" +checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19" dependencies = [ "cfg-if", - "windows-sys 0.48.0", + "windows-targets 0.52.4", ] [[package]] @@ -5255,7 +5322,7 @@ version = "0.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" dependencies = [ - "bitflags 2.4.2", + "bitflags 2.5.0", "libc", "redox_syscall 0.4.1", ] @@ -5325,9 +5392,9 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.1.15" +version = "1.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "037731f5d3aaa87a5675e895b63ddff1a87624bc29f77004ea829809654e48f6" +checksum = "5e143b5e666b2695d28f6bca6497720813f699c9602dd7f5cac91008b8ada7f9" dependencies = [ "cc", "cmake", @@ -5474,7 +5541,7 @@ dependencies = [ "macro_magic_core", "macro_magic_macros", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -5488,7 +5555,7 @@ dependencies = [ "macro_magic_core_macros", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -5499,7 +5566,7 @@ checksum = "9ea73aa640dc01d62a590d48c0c3521ed739d53b27f919b25c3551e233481654" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -5510,7 +5577,7 @@ checksum = "ef9d79ae96aaba821963320eb2b6e34d17df1e5a83d8a1985c29cc5be59577b3" dependencies = [ "macro_magic_core", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -5562,7 +5629,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64" dependencies = [ - "rustix 0.38.31", + "rustix 0.38.32", ] [[package]] @@ -5601,18 +5668,6 @@ dependencies = [ "hash-db", ] -[[package]] -name = "merlin" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e261cf0f8b3c42ded9f7d2bb59dea03aa52bc8a1cbc7482f9fc3fd1229d3b42" -dependencies = [ - "byteorder", - "keccak", - "rand_core 0.5.1", - "zeroize", -] - [[package]] name = "merlin" version = "3.0.0" @@ -5648,9 +5703,9 @@ dependencies = [ [[package]] name = "mio" -version = "0.8.10" +version = "0.8.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" +checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" dependencies = [ "libc", "log", @@ -5906,15 +5961,22 @@ dependencies = [ [[package]] name = "nix" -version = "0.27.1" +version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" +checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" dependencies = [ - "bitflags 2.4.2", + "bitflags 2.5.0", "cfg-if", + "cfg_aliases", "libc", ] +[[package]] +name = "no-std-compat" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c" + [[package]] name = "no-std-net" version = "0.6.0" @@ -5924,7 +5986,7 @@ checksum = "43794a0ace135be66a25d3ae77d41b91615fb68ae937f904090203e81f755b65" [[package]] name = "node-primitives" version = "2.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "sp-core", "sp-runtime", @@ -5963,6 +6025,12 @@ dependencies = [ "nom", ] +[[package]] +name = "nonzero_ext" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21" + [[package]] name = "normalize-line-endings" version = "0.3.0" @@ -5975,7 +6043,7 @@ version = "6.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d" dependencies = [ - "bitflags 2.4.2", + "bitflags 2.5.0", "crossbeam-channel", "filetime", "fsevent-sys", @@ -6153,7 +6221,7 @@ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" [[package]] name = "pallet-atomic-swap" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "frame-support", "frame-system", @@ -6162,13 +6230,13 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "pallet-authority-discovery" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "frame-support", "frame-system", @@ -6178,7 +6246,7 @@ dependencies = [ "sp-application-crypto", "sp-authority-discovery", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] @@ -6199,13 +6267,13 @@ dependencies = [ "sp-runtime", "sp-staking", "sp-state-machine", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "pallet-authorship" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "frame-support", "frame-system", @@ -6213,13 +6281,13 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "pallet-babe" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "frame-benchmarking", "frame-support", @@ -6237,13 +6305,13 @@ dependencies = [ "sp-runtime", "sp-session", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "pallet-balances" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "docify", "frame-benchmarking", @@ -6253,7 +6321,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] @@ -6271,13 +6339,13 @@ dependencies = [ "sp-io", "sp-keystore", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "pallet-collective" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "frame-benchmarking", "frame-support", @@ -6288,7 +6356,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] @@ -6313,7 +6381,7 @@ dependencies = [ "sp-io", "sp-keystore", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] @@ -6335,7 +6403,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] @@ -6352,7 +6420,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] @@ -6361,7 +6429,7 @@ version = "1.0.0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -6382,13 +6450,13 @@ dependencies = [ "sp-membership", "sp-runtime", "sp-state-machine", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "pallet-grandpa" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "frame-benchmarking", "frame-support", @@ -6405,7 +6473,7 @@ dependencies = [ "sp-runtime", "sp-session", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] @@ -6424,14 +6492,14 @@ dependencies = [ "sp-keystore", "sp-runtime", "sp-state-machine", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", "substrate-wasm-builder 5.0.0-dev", ] [[package]] name = "pallet-im-online" version = "27.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "frame-benchmarking", "frame-support", @@ -6445,7 +6513,7 @@ dependencies = [ "sp-io", "sp-runtime", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] @@ -6462,13 +6530,13 @@ dependencies = [ "sp-io", "sp-membership", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "pallet-multisig" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "frame-benchmarking", "frame-support", @@ -6478,7 +6546,7 @@ dependencies = [ "scale-info", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] @@ -6494,7 +6562,7 @@ dependencies = [ "sp-io", "sp-runtime", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] @@ -6512,13 +6580,13 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "pallet-preimage" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "frame-benchmarking", "frame-support", @@ -6529,7 +6597,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] @@ -6545,13 +6613,13 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "pallet-proxy" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "frame-benchmarking", "frame-support", @@ -6560,7 +6628,7 @@ dependencies = [ "scale-info", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] @@ -6577,13 +6645,13 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "pallet-scheduler" version = "29.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "docify", "frame-benchmarking", @@ -6594,14 +6662,14 @@ dependencies = [ "scale-info", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", "sp-weights", ] [[package]] name = "pallet-session" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "frame-support", "frame-system", @@ -6616,7 +6684,7 @@ dependencies = [ "sp-session", "sp-staking", "sp-state-machine", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", "sp-trie", ] @@ -6629,7 +6697,7 @@ dependencies = [ "pallet-session", "parity-scale-codec", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] @@ -6648,13 +6716,13 @@ dependencies = [ "sp-io", "sp-runtime", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "pallet-sudo" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "docify", "frame-benchmarking", @@ -6664,13 +6732,13 @@ dependencies = [ "scale-info", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "pallet-timestamp" version = "27.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "docify", "frame-benchmarking", @@ -6682,15 +6750,15 @@ dependencies = [ "sp-inherents", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", - "sp-storage 19.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", + "sp-storage 19.0.0", "sp-timestamp", ] [[package]] name = "pallet-transaction-payment" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "frame-support", "frame-system", @@ -6700,15 +6768,15 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "pallet-transaction-payment-rpc" version = "30.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ - "jsonrpsee 0.20.3", + "jsonrpsee 0.22.3", "pallet-transaction-payment-rpc-runtime-api", "parity-scale-codec", "sp-api", @@ -6722,7 +6790,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6734,7 +6802,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "27.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "docify", "frame-benchmarking", @@ -6747,7 +6815,7 @@ dependencies = [ "serde", "sp-core", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] @@ -6766,7 +6834,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] @@ -6782,13 +6850,13 @@ dependencies = [ "sp-io", "sp-runtime", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "pallet-utility" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "frame-benchmarking", "frame-support", @@ -6798,7 +6866,20 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", +] + +[[package]] +name = "parity-bip39" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4e69bf016dc406eff7d53a7d3f7cf1c2e72c82b9088aac1118591e36dd2cd3e9" +dependencies = [ + "bitcoin_hashes 0.13.0", + "rand", + "rand_core 0.6.4", + "serde", + "unicode-normalization", ] [[package]] @@ -6922,19 +7003,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7924d1d0ad836f665c9065e26d016c673ece3993f30d340068b16f282afc1156" [[package]] -name = "paste" -version = "1.0.14" +name = "password-hash" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" +checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166" +dependencies = [ + "base64ct", + "rand_core 0.6.4", + "subtle 2.5.0", +] [[package]] -name = "pbkdf2" -version = "0.8.0" +name = "paste" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d95f5254224e617595d2cc3cc73ff0a5eaf2637519e25f03388154e9378b6ffa" -dependencies = [ - "crypto-mac 0.11.0", -] +checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" [[package]] name = "pbkdf2" @@ -6943,6 +7026,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" dependencies = [ "digest 0.10.7", + "password-hash", ] [[package]] @@ -6995,9 +7079,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" [[package]] name = "pest" -version = "2.7.7" +version = "2.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "219c0dcc30b6a27553f9cc242972b67f75b60eb0db71f0b5462f38b058c41546" +checksum = "56f8023d0fb78c8e03784ea1c7f3fa36e68a723138990b8d5a47d916b651e7a8" dependencies = [ "memchr", "thiserror", @@ -7006,9 +7090,9 @@ dependencies = [ [[package]] name = "pest_derive" -version = "2.7.7" +version = "2.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22e1288dbd7786462961e69bfd4df7848c1e37e8b74303dbdab82c3a9cdd2809" +checksum = "b0d24f72393fd16ab6ac5738bc33cdb6a9aa73f8b902e8fe29cf4e67d7dd1026" dependencies = [ "pest", "pest_generator", @@ -7016,22 +7100,22 @@ dependencies = [ [[package]] name = "pest_generator" -version = "2.7.7" +version = "2.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1381c29a877c6d34b8c176e734f35d7f7f5b3adaefe940cb4d1bb7af94678e2e" +checksum = "fdc17e2a6c7d0a492f0158d7a4bd66cc17280308bbaff78d5bef566dca35ab80" dependencies = [ "pest", "pest_meta", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] name = "pest_meta" -version = "2.7.7" +version = "2.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0934d6907f148c22a3acbda520c7eed243ad7487a30f51f6ce52b58b7077a8a" +checksum = "934cd7631c050f4674352a6e835d5f6711ffbfb9345c2fc0107155ac495ae293" dependencies = [ "once_cell", "pest", @@ -7045,27 +7129,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" dependencies = [ "fixedbitset", - "indexmap 2.2.5", + "indexmap 2.2.6", ] [[package]] name = "pin-project" -version = "1.1.4" +version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0302c4a0442c456bd56f841aee5c3bfd17967563f6fadc9ceb9f9c23cf3807e0" +checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.4" +version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "266c042b60c9c76b8d53061e52b2e0d1116abc57cefc8c5cd671619a56ac3690" +checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -7129,53 +7213,100 @@ version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "626dec3cac7cc0e1577a2ec3fc496277ec2baa084bebad95bb6fdbfae235f84c" +[[package]] +name = "polkavm" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a3693e5efdb2bf74e449cd25fd777a28bd7ed87e41f5d5da75eb31b4de48b94" +dependencies = [ + "libc", + "log", + "polkavm-assembler", + "polkavm-common", + "polkavm-linux-raw", +] + +[[package]] +name = "polkavm-assembler" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fa96d6d868243acc12de813dd48e756cbadcc8e13964c70d272753266deadc1" +dependencies = [ + "log", +] + [[package]] name = "polkavm-common" -version = "0.8.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92c99f7eee94e7be43ba37eef65ad0ee8cbaf89b7c00001c3f6d2be985cb1817" +checksum = "1d9428a5cfcc85c5d7b9fc4b6a18c4b802d0173d768182a51cc7751640f08b92" +dependencies = [ + "log", +] [[package]] name = "polkavm-derive" -version = "0.8.0" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79fa916f7962348bd1bb1a65a83401675e6fc86c51a0fdbcf92a3108e58e6125" +checksum = "ae8c4bea6f3e11cd89bb18bcdddac10bd9a24015399bd1c485ad68a985a19606" dependencies = [ "polkavm-derive-impl-macro", ] [[package]] name = "polkavm-derive-impl" -version = "0.8.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c10b2654a8a10a83c260bfb93e97b262cf0017494ab94a65d389e0eda6de6c9c" +checksum = "5c4fdfc49717fb9a196e74a5d28e0bc764eb394a2c803eb11133a31ac996c60c" dependencies = [ "polkavm-common", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] name = "polkavm-derive-impl-macro" -version = "0.8.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15e85319a0d5129dc9f021c62607e0804f5fb777a05cdda44d750ac0732def66" +checksum = "8ba81f7b5faac81e528eb6158a6f3c9e0bb1008e0ffa19653bc8dea925ecb429" dependencies = [ "polkavm-derive-impl", - "syn 2.0.52", + "syn 2.0.55", +] + +[[package]] +name = "polkavm-linker" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c7be503e60cf56c0eb785f90aaba4b583b36bff00e93997d93fef97f9553c39" +dependencies = [ + "gimli 0.28.1", + "hashbrown 0.14.3", + "log", + "object 0.32.2", + "polkavm-common", + "regalloc2 0.9.3", + "rustc-demangle", ] +[[package]] +name = "polkavm-linux-raw" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26e85d3456948e650dff0cfc85603915847faf893ed1e66b020bb82ef4557120" + [[package]] name = "polling" -version = "3.5.0" +version = "3.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24f040dee2588b4963afb4e420540439d126f73fdacf4a9c486a96d840bac3c9" +checksum = "e0c976a60b2d7e99d6f229e414670a9b85d13ac305cc6d1e9c134de58c5aaaf6" dependencies = [ "cfg-if", "concurrent-queue", + "hermit-abi", "pin-project-lite 0.2.13", - "rustix 0.38.31", + "rustix 0.38.32", "tracing", "windows-sys 0.52.0", ] @@ -7193,9 +7324,9 @@ dependencies = [ [[package]] name = "polyval" -version = "0.6.1" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d52cff9d1d4dee5fe6d03729099f4a310a41179e0a10dbf542039873f2e826fb" +checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" dependencies = [ "cfg-if", "cpufeatures", @@ -7260,11 +7391,21 @@ dependencies = [ "termtree", ] +[[package]] +name = "prettier-please" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22020dfcf177fcc7bf5deaf7440af371400c67c0de14c399938d8ed4fb4645d3" +dependencies = [ + "proc-macro2", + "syn 2.0.55", +] + [[package]] name = "prettyplease" -version = "0.1.25" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86" +checksum = "f28f53e8b192565862cf99343194579a022eb9c7dd3a8d03134734803c7b3125" dependencies = [ "proc-macro2", "syn 1.0.109", @@ -7272,12 +7413,12 @@ dependencies = [ [[package]] name = "prettyplease" -version = "0.2.16" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a41cf62165e97c7f814d2221421dbb9afcbcdb0a88068e5ea206e19951c2cbb5" +checksum = "8d3928fb5db768cb86f891ff014f0144589297e3c6a1aba6ed7cecfdace270c7" dependencies = [ "proc-macro2", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -7353,14 +7494,14 @@ checksum = "834da187cfe638ae8abb0203f0b33e5ccdb02a28e7199f2f47b3e2754f50edca" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] name = "proc-macro2" -version = "1.0.78" +version = "1.0.79" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" +checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e" dependencies = [ "unicode-ident", ] @@ -7399,7 +7540,7 @@ checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -7435,7 +7576,7 @@ dependencies = [ "log", "multimap", "petgraph", - "prettyplease 0.1.25", + "prettyplease 0.1.11", "prost 0.11.9", "prost-types", "regex", @@ -7467,7 +7608,7 @@ dependencies = [ "itertools 0.11.0", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -7488,6 +7629,21 @@ dependencies = [ "cc", ] +[[package]] +name = "quanta" +version = "0.12.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ca0b7bac0b97248c40bb77288fc52029cf1459c0461ea1b05ee32ccf011de2c" +dependencies = [ + "crossbeam-utils", + "libc", + "once_cell", + "raw-cpuid", + "wasi 0.11.0+wasi-snapshot-preview1", + "web-sys", + "winapi", +] + [[package]] name = "quick-error" version = "1.2.3" @@ -7618,6 +7774,15 @@ dependencies = [ "rand_core 0.6.4", ] +[[package]] +name = "raw-cpuid" +version = "11.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d86a7c4638d42c44551f4791a20e687dbb4c3de1f33c43dd71e355cd429def1" +dependencies = [ + "bitflags 2.5.0", +] + [[package]] name = "rawpointer" version = "0.2.1" @@ -7626,9 +7791,9 @@ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" [[package]] name = "rayon" -version = "1.9.0" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4963ed1bc86e4f3ee217022bd855b297cef07fb9eac5dfa1f788b220b49b3bd" +checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" dependencies = [ "either", "rayon-core", @@ -7702,7 +7867,7 @@ checksum = "5fddb4f8d99b0a2ebafc65a87a69a7b9875e4b1ae1f00db265d300ef7f28bccc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -7717,15 +7882,28 @@ dependencies = [ "smallvec", ] +[[package]] +name = "regalloc2" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad156d539c879b7a24a363a2016d77961786e71f48f2e2fc8302a92abd2429a6" +dependencies = [ + "hashbrown 0.13.2", + "log", + "rustc-hash", + "slice-group-by", + "smallvec", +] + [[package]] name = "regex" -version = "1.10.3" +version = "1.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" +checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" dependencies = [ "aho-corasick", "memchr", - "regex-automata 0.4.5", + "regex-automata 0.4.6", "regex-syntax 0.8.2", ] @@ -7740,9 +7918,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.5" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd" +checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" dependencies = [ "aho-corasick", "memchr", @@ -7769,19 +7947,19 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "reqwest" -version = "0.11.24" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6920094eb85afde5e4a138be3f2de8bbdf28000f0029e72c45025a56b042251" +checksum = "2d66674f2b6fb864665eea7a3c1ac4e3dfacd2fda83cf6f935a612e01b0e3338" dependencies = [ "base64 0.21.7", "bytes", - "encoding_rs", "futures-core", "futures-util", - "h2", - "http", - "http-body", - "hyper", + "http 1.1.0", + "http-body 1.0.0", + "http-body-util", + "hyper 1.2.0", + "hyper-util", "ipnet", "js-sys", "log", @@ -7793,7 +7971,6 @@ dependencies = [ "serde_json", "serde_urlencoded", "sync_wrapper", - "system-configuration", "tokio", "tower-service", "url", @@ -7836,7 +8013,7 @@ dependencies = [ "blake2 0.10.6", "common", "fflonk", - "merlin 3.0.0", + "merlin", ] [[package]] @@ -7973,11 +8150,11 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.31" +version = "0.38.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949" +checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89" dependencies = [ - "bitflags 2.4.2", + "bitflags 2.5.0", "errno", "libc", "linux-raw-sys 0.4.13", @@ -8010,9 +8187,9 @@ dependencies = [ [[package]] name = "rustls" -version = "0.22.2" +version = "0.22.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e87c9956bd9807afa1f77e0f7594af32566e830e088a5576d27c5b6f30f49d41" +checksum = "99008d7ad0bbbea527ec27bddbc0e432c5b87d8175178cee68d2eec9c4a1813c" dependencies = [ "log", "ring 0.17.8", @@ -8068,9 +8245,9 @@ dependencies = [ [[package]] name = "rustls-pki-types" -version = "1.3.1" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ede67b28608b4c60685c7d54122d4400d90f62b40caee7700e700380a390fa8" +checksum = "868e20fada228fefaf6b652e00cc73623d54f8171e7352c18bb281571f2d92da" [[package]] name = "rustls-webpki" @@ -8148,18 +8325,18 @@ dependencies = [ [[package]] name = "sc-allocator" version = "23.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "log", "sp-core", - "sp-wasm-interface 20.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-wasm-interface 20.0.0", "thiserror", ] [[package]] name = "sc-basic-authorship" version = "0.34.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "futures 0.3.30", "futures-timer", @@ -8181,7 +8358,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.33.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "parity-scale-codec", "sp-api", @@ -8196,7 +8373,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "27.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "array-bytes 6.2.2", "docify", @@ -8222,21 +8399,20 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "11.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] name = "sc-cli" version = "0.36.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "array-bytes 6.2.2", - "bip39", "chrono", "clap", "fdlimit", @@ -8245,6 +8421,7 @@ dependencies = [ "libp2p-identity", "log", "names", + "parity-bip39", "parity-scale-codec", "rand", "regex", @@ -8274,7 +8451,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "fnv", "futures 0.3.30", @@ -8289,11 +8466,11 @@ dependencies = [ "sp-consensus", "sp-core", "sp-database", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "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.7.1)", + "sp-storage 19.0.0", "sp-trie", "substrate-prometheus-endpoint", ] @@ -8301,7 +8478,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.35.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "hash-db", "kvdb", @@ -8327,7 +8504,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.33.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "async-trait", "futures 0.3.30", @@ -8352,7 +8529,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.34.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "async-trait", "futures 0.3.30", @@ -8381,7 +8558,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.34.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "async-trait", "fork-tree", @@ -8417,10 +8594,10 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.34.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "futures 0.3.30", - "jsonrpsee 0.20.3", + "jsonrpsee 0.22.3", "sc-consensus-babe", "sc-consensus-epochs", "sc-rpc-api", @@ -8439,7 +8616,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.33.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8452,9 +8629,9 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.19.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ - "ahash 0.8.10", + "ahash 0.8.11", "array-bytes 6.2.2", "async-trait", "dyn-clone", @@ -8495,13 +8672,13 @@ dependencies = [ [[package]] name = "sc-consensus-manual-seal" version = "0.35.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "assert_matches", "async-trait", "futures 0.3.30", "futures-timer", - "jsonrpsee 0.20.3", + "jsonrpsee 0.22.3", "log", "parity-scale-codec", "sc-client-api", @@ -8530,7 +8707,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.33.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "async-trait", "futures 0.3.30", @@ -8553,41 +8730,54 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.32.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "sc-executor-common", + "sc-executor-polkavm", "sc-executor-wasmtime", "schnellru", "sp-api", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-externalities 0.25.0", "sp-io", "sp-panic-handler", - "sp-runtime-interface 24.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "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.7.1)", + "sp-wasm-interface 20.0.0", "tracing", ] [[package]] name = "sc-executor-common" version = "0.29.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" 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.7.1)", + "sp-wasm-interface 20.0.0", "thiserror", "wasm-instrument", ] +[[package]] +name = "sc-executor-polkavm" +version = "0.29.0" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" +dependencies = [ + "log", + "polkavm", + "sc-executor-common", + "sp-wasm-interface 20.0.0", +] + [[package]] name = "sc-executor-wasmtime" version = "0.29.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "anyhow", "cfg-if", @@ -8597,15 +8787,15 @@ 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.7.1)", - "sp-wasm-interface 20.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-runtime-interface 24.0.0", + "sp-wasm-interface 20.0.0", "wasmtime", ] [[package]] name = "sc-informant" version = "0.33.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "ansi_term", "futures 0.3.30", @@ -8622,7 +8812,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "25.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "array-bytes 6.2.2", "parking_lot 0.12.1", @@ -8636,7 +8826,7 @@ dependencies = [ [[package]] name = "sc-mixnet" version = "0.4.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "array-bytes 4.2.0", "arrayvec 0.7.4", @@ -8665,7 +8855,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.34.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "array-bytes 6.2.2", "async-channel 1.9.0", @@ -8708,7 +8898,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.33.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "async-channel 1.9.0", "cid", @@ -8728,7 +8918,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.33.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -8745,9 +8935,9 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.34.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ - "ahash 0.8.10", + "ahash 0.8.11", "futures 0.3.30", "futures-timer", "libp2p", @@ -8764,7 +8954,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.33.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "array-bytes 6.2.2", "async-channel 1.9.0", @@ -8785,7 +8975,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.33.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "array-bytes 6.2.2", "async-channel 1.9.0", @@ -8821,7 +9011,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.33.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "array-bytes 6.2.2", "futures 0.3.30", @@ -8840,14 +9030,14 @@ dependencies = [ [[package]] name = "sc-offchain" version = "29.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "array-bytes 6.2.2", "bytes", "fnv", "futures 0.3.30", "futures-timer", - "hyper", + "hyper 0.14.28", "hyper-rustls", "libp2p", "log", @@ -8863,7 +9053,7 @@ dependencies = [ "sc-utils", "sp-api", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-externalities 0.25.0", "sp-keystore", "sp-offchain", "sp-runtime", @@ -8874,7 +9064,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.17.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -8883,10 +9073,10 @@ dependencies = [ [[package]] name = "sc-rpc" version = "29.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "futures 0.3.30", - "jsonrpsee 0.20.3", + "jsonrpsee 0.22.3", "log", "parity-scale-codec", "parking_lot 0.12.1", @@ -8915,9 +9105,9 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.33.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ - "jsonrpsee 0.20.3", + "jsonrpsee 0.22.3", "parity-scale-codec", "sc-chain-spec", "sc-mixnet", @@ -8935,10 +9125,13 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "11.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ - "http", - "jsonrpsee 0.20.3", + "futures 0.3.30", + "governor", + "http 0.2.12", + "hyper 0.14.28", + "jsonrpsee 0.22.3", "log", "serde_json", "substrate-prometheus-endpoint", @@ -8950,16 +9143,17 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.34.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "array-bytes 6.2.2", "futures 0.3.30", "futures-util", "hex", - "jsonrpsee 0.20.3", + "jsonrpsee 0.22.3", "log", "parity-scale-codec", "parking_lot 0.12.1", + "rand", "sc-chain-spec", "sc-client-api", "sc-rpc", @@ -8980,14 +9174,14 @@ dependencies = [ [[package]] name = "sc-service" version = "0.35.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "async-trait", "directories", "exit-future", "futures 0.3.30", "futures-timer", - "jsonrpsee 0.20.3", + "jsonrpsee 0.22.3", "log", "parity-scale-codec", "parking_lot 0.12.1", @@ -9015,18 +9209,19 @@ dependencies = [ "sc-transaction-pool", "sc-transaction-pool-api", "sc-utils", + "schnellru", "serde", "serde_json", "sp-api", "sp-blockchain", "sp-consensus", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-externalities 0.25.0", "sp-keystore", "sp-runtime", "sp-session", "sp-state-machine", - "sp-storage 19.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-storage 19.0.0", "sp-transaction-pool", "sp-transaction-storage-proof", "sp-trie", @@ -9043,7 +9238,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.30.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "log", "parity-scale-codec", @@ -9054,7 +9249,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "27.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "derive_more", "futures 0.3.30", @@ -9069,13 +9264,13 @@ dependencies = [ "sp-core", "sp-crypto-hashing", "sp-io", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "sc-telemetry" version = "15.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "chrono", "futures 0.3.30", @@ -9094,7 +9289,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "ansi_term", "chrono", @@ -9114,7 +9309,7 @@ dependencies = [ "sp-core", "sp-rpc", "sp-runtime", - "sp-tracing 16.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-tracing 16.0.0", "thiserror", "tracing", "tracing-log", @@ -9124,18 +9319,18 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "11.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] name = "sc-transaction-pool" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "async-trait", "futures 0.3.30", @@ -9153,7 +9348,7 @@ dependencies = [ "sp-core", "sp-crypto-hashing", "sp-runtime", - "sp-tracing 16.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-tracing 16.0.0", "sp-transaction-pool", "substrate-prometheus-endpoint", "thiserror", @@ -9162,7 +9357,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "async-trait", "futures 0.3.30", @@ -9178,7 +9373,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "14.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "async-channel 1.9.0", "futures 0.3.30", @@ -9201,6 +9396,18 @@ dependencies = [ "serde", ] +[[package]] +name = "scale-bits" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "662d10dcd57b1c2a3c41c9cf68f71fb09747ada1ea932ad961aca7e2ca28315f" +dependencies = [ + "parity-scale-codec", + "scale-info", + "scale-type-resolver", + "serde", +] + [[package]] name = "scale-decode" version = "0.10.0" @@ -9210,12 +9417,25 @@ dependencies = [ "derive_more", "parity-scale-codec", "primitive-types", - "scale-bits", + "scale-bits 0.4.0", "scale-decode-derive", "scale-info", "smallvec", ] +[[package]] +name = "scale-decode" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "afc79ba56a1c742f5aeeed1f1801f3edf51f7e818f0a54582cac6f131364ea7b" +dependencies = [ + "derive_more", + "parity-scale-codec", + "scale-bits 0.5.0", + "scale-type-resolver", + "smallvec", +] + [[package]] name = "scale-decode-derive" version = "0.10.0" @@ -9238,12 +9458,25 @@ dependencies = [ "derive_more", "parity-scale-codec", "primitive-types", - "scale-bits", + "scale-bits 0.4.0", "scale-encode-derive", "scale-info", "smallvec", ] +[[package]] +name = "scale-encode" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "628800925a33794fb5387781b883b5e14d130fece9af5a63613867b8de07c5c7" +dependencies = [ + "derive_more", + "parity-scale-codec", + "scale-bits 0.5.0", + "scale-type-resolver", + "smallvec", +] + [[package]] name = "scale-encode-derive" version = "0.5.0" @@ -9259,9 +9492,9 @@ dependencies = [ [[package]] name = "scale-info" -version = "2.10.0" +version = "2.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f7d66a1128282b7ef025a8ead62a4a9fcf017382ec53b8ffbf4d7bf77bd3c60" +checksum = "788745a868b0e751750388f4e6546eb921ef714a4317fa6954f7cde114eb2eb7" dependencies = [ "bitvec", "cfg-if", @@ -9273,9 +9506,9 @@ dependencies = [ [[package]] name = "scale-info-derive" -version = "2.10.0" +version = "2.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abf2c68b89cafb3b8d918dd07b42be0da66ff202cf1155c5739a4e0c1ea0dc19" +checksum = "7dc2f4e8bc344b9fc3d5f74f72c2e55bfc38d28dc2ebc69c194a3df424e4d9ac" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -9283,6 +9516,16 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "scale-type-resolver" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "10b800069bfd43374e0f96f653e0d46882a2cb16d6d961ac43bea80f26c76843" +dependencies = [ + "scale-info", + "smallvec", +] + [[package]] name = "scale-typegen" version = "0.1.1" @@ -9292,7 +9535,7 @@ dependencies = [ "proc-macro2", "quote", "scale-info", - "syn 2.0.52", + "syn 2.0.55", "thiserror", ] @@ -9308,14 +9551,31 @@ dependencies = [ "either", "frame-metadata 15.1.0", "parity-scale-codec", - "scale-bits", - "scale-decode", - "scale-encode", + "scale-bits 0.4.0", + "scale-decode 0.10.0", + "scale-encode 0.5.0", "scale-info", "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" @@ -9331,27 +9591,11 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "772575a524feeb803e5b0fcbc6dd9f367e579488197c94c6e4023aad2305774d" dependencies = [ - "ahash 0.8.10", + "ahash 0.8.11", "cfg-if", "hashbrown 0.13.2", ] -[[package]] -name = "schnorrkel" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "021b403afe70d81eea68f6ea12f6b3c9588e5d536a94c3bf80f15e7faa267862" -dependencies = [ - "arrayref", - "arrayvec 0.5.2", - "curve25519-dalek 2.1.3", - "merlin 2.0.1", - "rand_core 0.5.1", - "sha2 0.8.2", - "subtle 2.5.0", - "zeroize", -] - [[package]] name = "schnorrkel" version = "0.11.4" @@ -9363,7 +9607,7 @@ dependencies = [ "arrayvec 0.7.4", "curve25519-dalek 4.1.2", "getrandom_or_panic", - "merlin 3.0.0", + "merlin", "rand_core 0.6.4", "serde_bytes", "sha2 0.10.8", @@ -9402,7 +9646,7 @@ dependencies = [ "heck 0.4.1", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -9415,6 +9659,7 @@ dependencies = [ "der", "generic-array 0.14.7", "pkcs8", + "serdect", "subtle 2.5.0", "zeroize", ] @@ -9519,14 +9764,14 @@ checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] name = "serde_json" -version = "1.0.114" +version = "1.0.115" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0" +checksum = "12dc5c46daa8e9fdf4f5e71b6cf9a53f2487da0e86e55808e2d35539666497dd" dependencies = [ "itoa", "ryu", @@ -9556,17 +9801,27 @@ dependencies = [ [[package]] name = "serde_yaml" -version = "0.9.32" +version = "0.9.34+deprecated" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fd075d994154d4a774f95b51fb96bdc2832b0ea48425c92546073816cda1f2f" +checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" dependencies = [ - "indexmap 2.2.5", + "indexmap 2.2.6", "itoa", "ryu", "serde", "unsafe-libyaml", ] +[[package]] +name = "serdect" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a84f14a19e9a014bb9f4512488d9829a68e04ecabffb0f9904cd1ace94598177" +dependencies = [ + "base16ct", + "serde", +] + [[package]] name = "sha-1" version = "0.9.8" @@ -9580,18 +9835,6 @@ dependencies = [ "opaque-debug 0.3.1", ] -[[package]] -name = "sha2" -version = "0.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a256f46ea78a0c0d9ff00077504903ac881a1dafdc20da66545699e7776b3e69" -dependencies = [ - "block-buffer 0.7.3", - "digest 0.8.1", - "fake-simd", - "opaque-debug 0.2.3", -] - [[package]] name = "sha2" version = "0.9.9" @@ -9675,8 +9918,9 @@ dependencies = [ [[package]] name = "simple-mermaid" -version = "0.1.0" -source = "git+https://github.com/kianenigma/simple-mermaid.git?rev=e48b187bcfd5cc75111acd9d241f1bd36604344b#e48b187bcfd5cc75111acd9d241f1bd36604344b" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "620a1d43d70e142b1d46a929af51d44f383db9c7a2ec122de2cd992ccfcf3c18" [[package]] name = "simple_logger" @@ -9696,9 +9940,9 @@ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" [[package]] name = "siphasher" -version = "1.0.0" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54ac45299ccbd390721be55b412d41931911f654fa99e2cb8bfb57184b2061fe" +checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" [[package]] name = "slab" @@ -9717,9 +9961,9 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" [[package]] name = "smallvec" -version = "1.13.1" +version = "1.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" +checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" [[package]] name = "smart-default" @@ -9729,7 +9973,7 @@ checksum = "0eb01866308440fc64d6c44d9e86c5cc17adfe33c4d6eed55da9145044d0ffc1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -9767,7 +10011,7 @@ dependencies = [ "base64 0.21.7", "bip39", "blake2-rfc", - "bs58 0.5.0", + "bs58 0.5.1", "chacha20", "crossbeam-queue", "derive_more", @@ -9783,24 +10027,24 @@ dependencies = [ "itertools 0.12.1", "libm", "libsecp256k1", - "merlin 3.0.0", + "merlin", "no-std-net", "nom", "num-bigint", "num-rational", "num-traits 0.2.18", - "pbkdf2 0.12.2", + "pbkdf2", "pin-project", "poly1305", "rand", "rand_chacha", "ruzstd", - "schnorrkel 0.11.4", + "schnorrkel", "serde", "serde_json", "sha2 0.10.8", "sha3", - "siphasher 1.0.0", + "siphasher 1.0.1", "slab", "smallvec", "soketto", @@ -9839,7 +10083,7 @@ dependencies = [ "rand_chacha", "serde", "serde_json", - "siphasher 1.0.0", + "siphasher 1.0.1", "slab", "smol", "smoldot", @@ -9899,7 +10143,7 @@ dependencies = [ "bytes", "flate2", "futures 0.3.30", - "http", + "http 0.2.12", "httparse", "log", "rand", @@ -9909,7 +10153,7 @@ dependencies = [ [[package]] name = "sp-api" version = "26.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "hash-db", "log", @@ -9917,11 +10161,12 @@ dependencies = [ "scale-info", "sp-api-proc-macro", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-externalities 0.25.0", "sp-metadata-ir", "sp-runtime", + "sp-runtime-interface 24.0.0", "sp-state-machine", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", "sp-trie", "sp-version", "thiserror", @@ -9930,7 +10175,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "15.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "Inflector", "blake2 0.10.6", @@ -9938,40 +10183,40 @@ dependencies = [ "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] name = "sp-application-crypto" version = "30.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +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", "sp-io", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "sp-arithmetic" version = "23.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "integer-sqrt", "num-traits 0.2.18", "parity-scale-codec", "scale-info", "serde", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", "static_assertions", ] [[package]] name = "sp-ark-bls12-381" version = "0.4.2" -source = "git+https://github.com/paritytech/arkworks-substrate#caa2eed74beb885dd07c7db5f916f2281dad818f" +source = "git+https://github.com/duniter/arkworks-substrate#1dbec3114648697c992d3d022ade24c7a221c4c8" dependencies = [ "ark-bls12-381-ext", "sp-crypto-ec-utils", @@ -9980,7 +10225,7 @@ dependencies = [ [[package]] name = "sp-ark-ed-on-bls12-381-bandersnatch" version = "0.4.2" -source = "git+https://github.com/paritytech/arkworks-substrate#caa2eed74beb885dd07c7db5f916f2281dad818f" +source = "git+https://github.com/duniter/arkworks-substrate#1dbec3114648697c992d3d022ade24c7a221c4c8" dependencies = [ "ark-ed-on-bls12-381-bandersnatch-ext", "sp-crypto-ec-utils", @@ -9989,31 +10234,31 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "26.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "parity-scale-codec", "scale-info", "sp-api", "sp-application-crypto", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "sp-block-builder" version = "26.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "sp-api", "sp-inherents", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "sp-blockchain" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "futures 0.3.30", "log", @@ -10031,7 +10276,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.32.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "async-trait", "futures 0.3.30", @@ -10046,7 +10291,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.32.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "async-trait", "parity-scale-codec", @@ -10056,14 +10301,14 @@ dependencies = [ "sp-consensus-slots", "sp-inherents", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", "sp-timestamp", ] [[package]] name = "sp-consensus-babe" version = "0.32.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "async-trait", "parity-scale-codec", @@ -10075,14 +10320,14 @@ dependencies = [ "sp-core", "sp-inherents", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", "sp-timestamp", ] [[package]] name = "sp-consensus-grandpa" version = "13.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "finality-grandpa", "log", @@ -10094,33 +10339,32 @@ dependencies = [ "sp-core", "sp-keystore", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "sp-consensus-slots" version = "0.32.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", "sp-timestamp", ] [[package]] name = "sp-core" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "array-bytes 6.2.2", "bandersnatch_vrfs", - "bip39", "bitflags 1.3.2", "blake2 0.10.6", "bounded-collections", - "bs58 0.5.0", + "bs58 0.5.1", "dyn-clonable", "ed25519-zebra 3.1.0", "futures 0.3.30", @@ -10128,25 +10372,27 @@ dependencies = [ "hash256-std-hasher", "impl-serde", "itertools 0.10.5", + "k256", "libsecp256k1", "log", - "merlin 3.0.0", + "merlin", + "parity-bip39", "parity-scale-codec", "parking_lot 0.12.1", "paste", "primitive-types", "rand", "scale-info", - "schnorrkel 0.11.4", + "schnorrkel", "secp256k1", "secrecy", "serde", "sp-crypto-hashing", - "sp-debug-derive 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", - "sp-runtime-interface 24.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", - "sp-storage 19.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "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", "thiserror", @@ -10158,15 +10404,15 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "15.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "sp-crypto-hashing", ] [[package]] name = "sp-crypto-ec-utils" -version = "0.10.0" -source = "git+https://github.com/paritytech/polkadot-sdk#f0e589d72e5228472c7658c525e0ff80d122d777" +version = "0.4.1" +source = "git+https://github.com/duniter/duniter-polkadot-sdk#c84530c57a6f9ab808a92f6b5d29338acf1c6e4f" dependencies = [ "ark-bls12-377", "ark-bls12-377-ext", @@ -10180,14 +10426,14 @@ dependencies = [ "ark-ed-on-bls12-381-bandersnatch", "ark-ed-on-bls12-381-bandersnatch-ext", "ark-scale", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk)", + "sp-runtime-interface 17.0.0", + "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.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "blake2b_simd", "byteorder", @@ -10200,17 +10446,17 @@ dependencies = [ [[package]] name = "sp-crypto-hashing-proc-macro" version = "0.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "quote", "sp-crypto-hashing", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] name = "sp-database" version = "10.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10218,22 +10464,22 @@ dependencies = [ [[package]] name = "sp-debug-derive" -version = "14.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +version = "8.0.0" +source = "git+https://github.com/duniter/duniter-polkadot-sdk#c84530c57a6f9ab808a92f6b5d29338acf1c6e4f" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#f0e589d72e5228472c7658c525e0ff80d122d777" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -10247,77 +10493,78 @@ dependencies = [ "serde", "sp-inherents", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", "thiserror", ] [[package]] name = "sp-externalities" -version = "0.25.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +version = "0.19.0" +source = "git+https://github.com/duniter/duniter-polkadot-sdk#c84530c57a6f9ab808a92f6b5d29338acf1c6e4f" dependencies = [ "environmental", "parity-scale-codec", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", - "sp-storage 19.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 8.0.0", + "sp-storage 13.0.0", ] [[package]] name = "sp-externalities" version = "0.25.0" -source = "git+https://github.com/paritytech/polkadot-sdk#f0e589d72e5228472c7658c525e0ff80d122d777" +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/paritytech/polkadot-sdk)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk)", + "sp-std 14.0.0", + "sp-storage 19.0.0", ] [[package]] name = "sp-genesis-builder" version = "0.7.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "serde_json", "sp-api", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "sp-inherents" version = "26.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "async-trait", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", "thiserror", ] [[package]] name = "sp-io" version = "30.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "bytes", "ed25519-dalek", "libsecp256k1", "log", "parity-scale-codec", + "polkavm-derive", "rustversion", "secp256k1", "sp-core", "sp-crypto-hashing", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-externalities 0.25.0", "sp-keystore", - "sp-runtime-interface 24.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-runtime-interface 24.0.0", "sp-state-machine", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", - "sp-tracing 16.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", + "sp-tracing 16.0.0", "sp-trie", "tracing", "tracing-core", @@ -10326,7 +10573,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "31.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "sp-core", "sp-runtime", @@ -10336,13 +10583,12 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.34.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", - "thiserror", + "sp-externalities 0.25.0", ] [[package]] @@ -10357,7 +10603,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "11.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "thiserror", "zstd 0.12.4", @@ -10372,36 +10618,36 @@ dependencies = [ "scale-info", "serde", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "sp-metadata-ir" version = "0.6.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "frame-metadata 16.0.0", "parity-scale-codec", "scale-info", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "sp-mixnet" version = "0.4.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "parity-scale-codec", "scale-info", "sp-api", "sp-application-crypto", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "sp-offchain" version = "26.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "sp-api", "sp-core", @@ -10411,7 +10657,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "13.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "backtrace", "lazy_static", @@ -10421,7 +10667,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "26.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "rustc-hash", "serde", @@ -10431,7 +10677,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "31.0.1" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "docify", "either", @@ -10448,77 +10694,77 @@ dependencies = [ "sp-arithmetic", "sp-core", "sp-io", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", "sp-weights", ] [[package]] name = "sp-runtime-interface" -version = "24.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +version = "17.0.0" +source = "git+https://github.com/duniter/duniter-polkadot-sdk#c84530c57a6f9ab808a92f6b5d29338acf1c6e4f" dependencies = [ "bytes", "impl-trait-for-tuples", "parity-scale-codec", "primitive-types", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", - "sp-runtime-interface-proc-macro 17.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", - "sp-storage 19.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", - "sp-tracing 16.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", - "sp-wasm-interface 20.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-externalities 0.19.0", + "sp-runtime-interface-proc-macro 11.0.0", + "sp-std 8.0.0", + "sp-storage 13.0.0", + "sp-tracing 10.0.0", + "sp-wasm-interface 14.0.0", "static_assertions", ] [[package]] name = "sp-runtime-interface" version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#f0e589d72e5228472c7658c525e0ff80d122d777" +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/paritytech/polkadot-sdk)", - "sp-runtime-interface-proc-macro 17.0.0 (git+https://github.com/paritytech/polkadot-sdk)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk)", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk)", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk)", + "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", ] [[package]] name = "sp-runtime-interface-proc-macro" -version = "17.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +version = "11.0.0" +source = "git+https://github.com/duniter/duniter-polkadot-sdk#c84530c57a6f9ab808a92f6b5d29338acf1c6e4f" dependencies = [ "Inflector", "expander", "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] name = "sp-runtime-interface-proc-macro" version = "17.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#f0e589d72e5228472c7658c525e0ff80d122d777" +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.52", + "syn 2.0.55", ] [[package]] name = "sp-session" version = "27.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "parity-scale-codec", "scale-info", @@ -10527,13 +10773,13 @@ dependencies = [ "sp-keystore", "sp-runtime", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "sp-staking" version = "26.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10541,13 +10787,13 @@ dependencies = [ "serde", "sp-core", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", ] [[package]] name = "sp-state-machine" version = "0.35.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "hash-db", "log", @@ -10556,9 +10802,9 @@ dependencies = [ "rand", "smallvec", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-externalities 0.25.0", "sp-panic-handler", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", "sp-trie", "thiserror", "tracing", @@ -10568,7 +10814,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "10.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "aes-gcm", "curve25519-dalek 4.1.2", @@ -10582,70 +10828,70 @@ dependencies = [ "sp-application-crypto", "sp-core", "sp-crypto-hashing", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-externalities 0.25.0", "sp-runtime", - "sp-runtime-interface 24.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-runtime-interface 24.0.0", + "sp-std 14.0.0", "thiserror", "x25519-dalek 2.0.1", ] [[package]] name = "sp-std" -version = "14.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +version = "8.0.0" +source = "git+https://github.com/duniter/duniter-polkadot-sdk#c84530c57a6f9ab808a92f6b5d29338acf1c6e4f" [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#f0e589d72e5228472c7658c525e0ff80d122d777" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" [[package]] name = "sp-storage" -version = "19.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +version = "13.0.0" +source = "git+https://github.com/duniter/duniter-polkadot-sdk#c84530c57a6f9ab808a92f6b5d29338acf1c6e4f" 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.7.1)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-debug-derive 8.0.0", + "sp-std 8.0.0", ] [[package]] name = "sp-storage" version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#f0e589d72e5228472c7658c525e0ff80d122d777" +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/paritytech/polkadot-sdk)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk)", + "sp-debug-derive 14.0.0", + "sp-std 14.0.0", ] [[package]] name = "sp-timestamp" version = "26.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "async-trait", "parity-scale-codec", "sp-inherents", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", "thiserror", ] [[package]] name = "sp-tracing" -version = "16.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +version = "10.0.0" +source = "git+https://github.com/duniter/duniter-polkadot-sdk#c84530c57a6f9ab808a92f6b5d29338acf1c6e4f" dependencies = [ "parity-scale-codec", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 8.0.0", "tracing", "tracing-core", "tracing-subscriber", @@ -10654,10 +10900,10 @@ dependencies = [ [[package]] name = "sp-tracing" version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#f0e589d72e5228472c7658c525e0ff80d122d777" +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/paritytech/polkadot-sdk)", + "sp-std 14.0.0", "tracing", "tracing-core", "tracing-subscriber", @@ -10666,7 +10912,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "26.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "sp-api", "sp-runtime", @@ -10675,7 +10921,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "26.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "async-trait", "parity-scale-codec", @@ -10683,16 +10929,16 @@ dependencies = [ "sp-core", "sp-inherents", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", "sp-trie", ] [[package]] name = "sp-trie" version = "29.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ - "ahash 0.8.10", + "ahash 0.8.11", "hash-db", "lazy_static", "memory-db", @@ -10703,8 +10949,8 @@ dependencies = [ "scale-info", "schnellru", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-externalities 0.25.0", + "sp-std 14.0.0", "thiserror", "tracing", "trie-db", @@ -10714,7 +10960,7 @@ dependencies = [ [[package]] name = "sp-version" version = "29.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10723,7 +10969,7 @@ dependencies = [ "serde", "sp-crypto-hashing-proc-macro", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-std 14.0.0", "sp-version-proc-macro", "thiserror", ] @@ -10731,44 +10977,44 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "13.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "parity-scale-codec", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] name = "sp-wasm-interface" -version = "20.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +version = "14.0.0" +source = "git+https://github.com/duniter/duniter-polkadot-sdk#c84530c57a6f9ab808a92f6b5d29338acf1c6e4f" 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.7.1)", + "sp-std 8.0.0", "wasmtime", ] [[package]] name = "sp-wasm-interface" version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#f0e589d72e5228472c7658c525e0ff80d122d777" +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/paritytech/polkadot-sdk)", + "sp-std 14.0.0", "wasmtime", ] [[package]] name = "sp-weights" version = "27.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "bounded-collections", "parity-scale-codec", @@ -10776,8 +11022,8 @@ dependencies = [ "serde", "smallvec", "sp-arithmetic", - "sp-debug-derive 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", - "sp-std 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-debug-derive 14.0.0", + "sp-std 14.0.0", ] [[package]] @@ -10803,6 +11049,15 @@ dependencies = [ "strum 0.24.1", ] +[[package]] +name = "spinning_top" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300" +dependencies = [ + "lock_api", +] + [[package]] name = "spki" version = "0.7.3" @@ -10815,9 +11070,9 @@ dependencies = [ [[package]] name = "ss58-registry" -version = "1.46.0" +version = "1.47.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1114ee5900b8569bbc8b1a014a942f937b752af4b44f4607430b5f86cedaac0" +checksum = "4743ce898933fbff7bbf414f497c459a782d496269644b3d650a398ae6a487ba" dependencies = [ "Inflector", "num-format", @@ -10918,35 +11173,34 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] name = "substrate-bip39" -version = "0.4.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e620c7098893ba667438b47169c00aacdd9e7c10e042250ce2b60b087ec97328" +version = "0.4.7" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ - "hmac 0.11.0", - "pbkdf2 0.8.0", - "schnorrkel 0.9.1", - "sha2 0.9.9", + "hmac 0.12.1", + "pbkdf2", + "schnorrkel", + "sha2 0.10.8", "zeroize", ] [[package]] name = "substrate-build-script-utils" version = "11.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" [[package]] name = "substrate-frame-rpc-system" version = "28.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.30", - "jsonrpsee 0.20.3", + "jsonrpsee 0.22.3", "log", "parity-scale-codec", "sc-rpc-api", @@ -10961,9 +11215,9 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.17.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ - "hyper", + "hyper 0.14.28", "log", "prometheus", "thiserror", @@ -10973,10 +11227,10 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.33.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "async-trait", - "jsonrpsee 0.20.3", + "jsonrpsee 0.22.3", "log", "sc-rpc-api", "serde", @@ -10996,7 +11250,7 @@ dependencies = [ "sp-maybe-compressed-blob 4.1.0-dev", "strum 0.24.1", "tempfile", - "toml 0.8.10", + "toml 0.8.12", "walkdir", "wasm-opt", ] @@ -11004,17 +11258,18 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "17.0.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "build-helper", "cargo_metadata", "console", "filetime", "parity-wasm", + "polkavm-linker", "sp-maybe-compressed-blob 11.0.0", "strum 0.24.1", "tempfile", - "toml 0.8.10", + "toml 0.8.12", "walkdir", "wasm-opt", ] @@ -11033,9 +11288,9 @@ checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" [[package]] name = "subweight-core" -version = "3.3.1" +version = "3.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee5751d8385836e91a9b7c613e1e7e11f97a4c8a867d6f45f556497d2cfb53c1" +checksum = "715b75bcbcee44fab4847560579a822397f2f9765248bc0df52215e8cc5dfd8c" dependencies = [ "clap", "fancy-regex", @@ -11047,13 +11302,13 @@ dependencies = [ "semver 1.0.22", "serde", "serde_json", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] name = "subxt" version = "0.34.0" -source = "git+https://github.com/duniter/subxt?branch=subxt-v0.34.0-duniter-substrate-v1.7.1#ff7cf1b480c9b9e4027ca21fdc82bc69cf64562b" +source = "git+https://github.com/duniter/subxt?branch=subxt-v0.34.0-duniter-substrate-v1.9.0#4f1923f3f53573bb5f47a061afacda7f4163e4a8" dependencies = [ "async-trait", "base58", @@ -11068,11 +11323,11 @@ dependencies = [ "jsonrpsee 0.21.0", "parity-scale-codec", "primitive-types", - "scale-bits", - "scale-decode", - "scale-encode", + "scale-bits 0.4.0", + "scale-decode 0.10.0", + "scale-encode 0.5.0", "scale-info", - "scale-value", + "scale-value 0.13.0", "serde", "serde_json", "sp-core", @@ -11090,7 +11345,7 @@ dependencies = [ [[package]] name = "subxt-codegen" version = "0.34.0" -source = "git+https://github.com/duniter/subxt?branch=subxt-v0.34.0-duniter-substrate-v1.7.1#ff7cf1b480c9b9e4027ca21fdc82bc69cf64562b" +source = "git+https://github.com/duniter/subxt?branch=subxt-v0.34.0-duniter-substrate-v1.9.0#4f1923f3f53573bb5f47a061afacda7f4163e4a8" dependencies = [ "frame-metadata 16.0.0", "heck 0.4.1", @@ -11102,7 +11357,7 @@ dependencies = [ "scale-info", "scale-typegen", "subxt-metadata", - "syn 2.0.52", + "syn 2.0.55", "thiserror", "tokio", ] @@ -11110,7 +11365,7 @@ dependencies = [ [[package]] name = "subxt-lightclient" version = "0.34.0" -source = "git+https://github.com/duniter/subxt?branch=subxt-v0.34.0-duniter-substrate-v1.7.1#ff7cf1b480c9b9e4027ca21fdc82bc69cf64562b" +source = "git+https://github.com/duniter/subxt?branch=subxt-v0.34.0-duniter-substrate-v1.9.0#4f1923f3f53573bb5f47a061afacda7f4163e4a8" dependencies = [ "futures 0.3.30", "futures-util", @@ -11126,7 +11381,7 @@ dependencies = [ [[package]] name = "subxt-macro" version = "0.34.0" -source = "git+https://github.com/duniter/subxt?branch=subxt-v0.34.0-duniter-substrate-v1.7.1#ff7cf1b480c9b9e4027ca21fdc82bc69cf64562b" +source = "git+https://github.com/duniter/subxt?branch=subxt-v0.34.0-duniter-substrate-v1.9.0#4f1923f3f53573bb5f47a061afacda7f4163e4a8" dependencies = [ "darling 0.20.8", "parity-scale-codec", @@ -11134,13 +11389,13 @@ dependencies = [ "quote", "scale-typegen", "subxt-codegen", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] name = "subxt-metadata" version = "0.34.0" -source = "git+https://github.com/duniter/subxt?branch=subxt-v0.34.0-duniter-substrate-v1.7.1#ff7cf1b480c9b9e4027ca21fdc82bc69cf64562b" +source = "git+https://github.com/duniter/subxt?branch=subxt-v0.34.0-duniter-substrate-v1.9.0#4f1923f3f53573bb5f47a061afacda7f4163e4a8" dependencies = [ "frame-metadata 16.0.0", "parity-scale-codec", @@ -11162,9 +11417,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.52" +version = "2.0.55" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b699d15b36d1f02c3e7c69f8ffef53de37aefae075d8488d4ba1a7788d574a07" +checksum = "002a1b3dbf967edfafc32655d0f377ab0bb7b994aa1d32c8cc7e9b8bf3ebb8f0" dependencies = [ "proc-macro2", "quote", @@ -11195,7 +11450,7 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a3d2c2202510a1e186e63e596d9318c91a8cbe85cd1a56a7be0c333e5f59ec8d" dependencies = [ - "syn 2.0.52", + "syn 2.0.55", "synthez-codegen", "synthez-core", ] @@ -11206,7 +11461,7 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f724aa6d44b7162f3158a57bccd871a77b39a4aef737e01bcdff41f4772c7746" dependencies = [ - "syn 2.0.52", + "syn 2.0.55", "synthez-core", ] @@ -11219,7 +11474,7 @@ dependencies = [ "proc-macro2", "quote", "sealed", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -11263,7 +11518,7 @@ checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" dependencies = [ "cfg-if", "fastrand", - "rustix 0.38.31", + "rustix 0.38.32", "windows-sys 0.52.0", ] @@ -11298,7 +11553,7 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" dependencies = [ - "rustix 0.38.31", + "rustix 0.38.32", "windows-sys 0.48.0", ] @@ -11321,22 +11576,22 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.57" +version = "1.0.58" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e45bcbe8ed29775f228095caf2cd67af7a4ccf756ebff23a306bf3e8b47b24b" +checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.57" +version = "1.0.58" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a953cb265bef375dae3de6663da4d3804eee9682ea80d8e2542529b73c531c81" +checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -11456,7 +11711,7 @@ checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -11486,16 +11741,16 @@ version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f" dependencies = [ - "rustls 0.22.2", + "rustls 0.22.3", "rustls-pki-types", "tokio", ] [[package]] name = "tokio-stream" -version = "0.1.14" +version = "0.1.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" +checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af" dependencies = [ "futures-core", "pin-project-lite 0.2.13", @@ -11529,14 +11784,14 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.10" +version = "0.8.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a9aad4a3066010876e8dcf5a8a06e70a558751117a145c6ce2b82c2e2054290" +checksum = "e9dd1545e8208b4a5af1aa9bbd0b4cf7e9ea08fabc5d0a5c67fcaafa17433aa3" dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit 0.22.6", + "toml_edit 0.22.9", ] [[package]] @@ -11554,7 +11809,7 @@ version = "0.20.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81" dependencies = [ - "indexmap 2.2.5", + "indexmap 2.2.6", "toml_datetime", "winnow 0.5.40", ] @@ -11565,18 +11820,18 @@ version = "0.21.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" dependencies = [ - "indexmap 2.2.5", + "indexmap 2.2.6", "toml_datetime", "winnow 0.5.40", ] [[package]] name = "toml_edit" -version = "0.22.6" +version = "0.22.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c1b5fd4128cc8d3e0cb74d4ed9a9cc7c7284becd4df68f5f940e1ad123606f6" +checksum = "8e40bb779c5187258fd7aad0eb68cb8706a0a81fa712fbea808ab43c4b8374c4" dependencies = [ - "indexmap 2.2.5", + "indexmap 2.2.6", "serde", "serde_spanned", "toml_datetime", @@ -11593,6 +11848,7 @@ dependencies = [ "futures-util", "pin-project", "pin-project-lite 0.2.13", + "tokio", "tower-layer", "tower-service", "tracing", @@ -11604,12 +11860,12 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140" dependencies = [ - "bitflags 2.4.2", + "bitflags 2.5.0", "bytes", "futures-core", "futures-util", - "http", - "http-body", + "http 0.2.12", + "http-body 0.4.6", "http-range-header", "pin-project-lite 0.2.13", "tower-layer", @@ -11648,7 +11904,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -11792,7 +12048,7 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" [[package]] name = "try-runtime-cli" version = "0.38.0" -source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1#4e4e20b11be79be8ba6ade0b96e767aca0198c70" +source = "git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.9.0#ea52f768bfebd64207bea373dd0a7412ee368396" dependencies = [ "async-trait", "clap", @@ -11809,8 +12065,8 @@ dependencies = [ "sp-consensus-aura", "sp-consensus-babe", "sp-core", - "sp-debug-derive 14.0.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", - "sp-externalities 0.25.0 (git+https://github.com/duniter/duniter-polkadot-sdk?branch=duniter-substrate-v1.7.1)", + "sp-debug-derive 14.0.0", + "sp-externalities 0.25.0", "sp-inherents", "sp-io", "sp-keystore", @@ -11860,7 +12116,7 @@ checksum = "29a3151c41d0b13e3d011f98adc24434560ef06673a155a6c7f66b9879eecce2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -12003,9 +12259,9 @@ dependencies = [ [[package]] name = "unsafe-libyaml" -version = "0.2.10" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab4c90930b95a82d00dc9e9ac071b4991924390d46cbd0dfe566148667605e4b" +checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861" [[package]] name = "unsigned-varint" @@ -12098,9 +12354,9 @@ dependencies = [ [[package]] name = "walkdir" -version = "2.4.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" +checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" dependencies = [ "same-file", "winapi-util", @@ -12129,9 +12385,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm-bindgen" -version = "0.2.91" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1e124130aee3fb58c5bdd6b639a0509486b0338acaaae0c84a5124b0f588b7f" +checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" dependencies = [ "cfg-if", "wasm-bindgen-macro", @@ -12139,24 +12395,24 @@ dependencies = [ [[package]] name = "wasm-bindgen-backend" -version = "0.2.91" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9e7e1900c352b609c8488ad12639a311045f40a35491fb69ba8c12f758af70b" +checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" dependencies = [ "bumpalo", "log", "once_cell", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.41" +version = "0.4.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "877b9c3f61ceea0e56331985743b13f3d25c406a7098d45180fb5f09bc19ed97" +checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" dependencies = [ "cfg-if", "js-sys", @@ -12166,9 +12422,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.91" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b30af9e2d358182b5c7449424f017eba305ed32a7010509ede96cdc4696c46ed" +checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -12176,22 +12432,22 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.91" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "642f325be6301eb8107a83d12a8ac6c1e1c54345a7ef1a9261962dfefda09e66" +checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.91" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f186bd2dcf04330886ce82d6f33dd75a7bfcf69ecf5763b89fcde53b6ac9838" +checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" [[package]] name = "wasm-instrument" @@ -12504,9 +12760,9 @@ dependencies = [ [[package]] name = "web-sys" -version = "0.3.68" +version = "0.3.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96565907687f7aceb35bc5fc03770a8a0471d82e479f25832f54a0e3f4b28446" +checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" dependencies = [ "js-sys", "wasm-bindgen", @@ -12550,7 +12806,7 @@ dependencies = [ "either", "home", "once_cell", - "rustix 0.38.31", + "rustix 0.38.32", ] [[package]] @@ -12918,7 +13174,7 @@ dependencies = [ "placeholder", "reqwest", "scale-info", - "scale-value", + "scale-value 0.14.1", "serde", "serde_json", "tera", @@ -12973,7 +13229,7 @@ checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] @@ -12993,7 +13249,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.55", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 1a2dc0b34..c65427e46 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -47,64 +47,64 @@ version = '1.0.0' [workspace.dependencies] # crates.io dependencies -anyhow = { version = "1.0.79", default-features = false } +anyhow = { version = "1.0.81", default-features = false } countmap = { version = "0.2.0", default-features = false } -ctrlc = { version = "3.4.2", default-features = false } +ctrlc = { version = "3.4.4", default-features = false } cucumber = { version = "0.20.2", default-features = false } -env_logger = { version = "0.11.1", default-features = false } +env_logger = { version = "0.11.3", default-features = false } notify = { version = "6.1.1", default-features = false } portpicker = { version = "0.1.1", default-features = false } notify-debouncer-mini = { version = "0.4.1", default-features = false } async-io = { version = "2.3.1", default-features = false } -async-trait = { version = "0.1.77", default-features = false } -thiserror = { version = "1.0.56", default-features = false } +async-trait = { version = "0.1.78", default-features = false } +thiserror = { version = "1.0.58", default-features = false } frame-metadata = { version = "16.0.0", default-features = false } -graphql_client = { version = "0.10.0" } -bs58 = { version = "0.5.0", default-features = false } -placeholder = { version = "1.1.3", default-features = false } +graphql_client = { version = "0.13.0" } +bs58 = { version = "0.5.1", default-features = false } +placeholder = { version = "1.1.4", default-features = false } getrandom = { version = "0.2.12", default-features = false } -clap = { version = "4.4.18" } -clap_complete = { version = "4.4.10" } -reqwest = { version = "0.11.11", default-features = false } +clap = { version = "4.5.3" } +clap_complete = { version = "4.5.1" } +reqwest = { version = "0.12.0", default-features = false } glob = { version = "0.3.1", default-features = false } convert_case = { version = "0.6.0", default-features = false } subweight-core = { version = "3.3.1", default-features = false } -version_check = { version = "0.9.2", default-features = false } +version_check = { version = "0.9.4", default-features = false } codec = { package = "parity-scale-codec", version = "3.6.9", default-features = false } enum-as-inner = { version = "=0.5.1", default-features = false } #https://github.com/bluejekyll/trust-dns/issues/1946 futures = { version = "0.3.30", default-features = false } tera = { version = "1", default-features = false } hex = { version = "0.4.3", default-features = false } -jsonrpsee = { version = "0.20.3", default-features = false } # Version should exactly match polkadot one +jsonrpsee = { version = "0.22", default-features = false } # Version should exactly match polkadot one lazy_static = { version = "1.4.0", default-features = false } -log = { version = "0.4.20", default-features = false } +log = { version = "0.4.21", default-features = false } maplit = { version = '1.0.2', default-features = false } -proc-macro2 = { version = '1.0.76', default-features = false } +proc-macro2 = { version = '1.0.79', default-features = false } quote = { version = '1.0.35', default-features = false } -syn = { version = '2.0.48', default-features = false } +syn = { version = '2.0.53', default-features = false } memmap2 = { version = "0.9.4", default-features = false } num-format = { version = "0.4.4", default-features = false } -smallvec = { version = "1.13.1", default-features = false } +smallvec = { version = "1.13.2", default-features = false } hex-literal = { version = '0.4.1', default-features = false } -scale-info = { version = "2.10.0", default-features = false } -scale-value = { version = "0.13.0", default-features = false } -serde = { version = "1.0.196", default-features = false } -serde_derive = { version = "1.0.196", default-features = false } -serde_yaml = { version = "0.9.27", default-features = false } -serde_json = { version = "1.0.64", default-features = false } +scale-info = { version = "2.11.0", default-features = false } +scale-value = { version = "0.14.1", default-features = false } +serde = { version = "1.0.197", default-features = false } +serde_derive = { version = "1.0.197", default-features = false } +serde_yaml = { version = "0.9.33", default-features = false } +serde_json = { version = "1.0.114", default-features = false } fnv = { version = "1.0.7", default-features = false } -tokio = { version = "1.35.1", default-features = false } -time = { version = "0.3.31", default-features = false } -time-macros = { version = "0.2.16", default-features = false } -num-traits = { version = "0.2.17", default-features = false } -rayon = { version = "1.8.1", default-features = false } +tokio = { version = "1.36.0", default-features = false } +time = { version = "0.3.34", default-features = false } +time-macros = { version = "0.2.17", default-features = false } +num-traits = { version = "0.2.18", default-features = false } +rayon = { version = "1.9.0", default-features = false } simple_logger = { version = "4.3.3", default-features = false } bincode = { version = "1.3.3", default-features = false } 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.7.1', default-features = false } +subxt = { git = 'https://github.com/duniter/subxt', branch = 'subxt-v0.34.0-duniter-substrate-v1.9.0', default-features = false } # local dependencies weight-analyzer = { path = "resources/weight_analyzer", default-features = false } @@ -136,86 +136,86 @@ sp-distance = { path = 'primitives/distance', default-features = false } sp-membership = { path = 'primitives/membership', default-features = false } # substrate dependencies -pallet-transaction-payment-rpc = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -frame-benchmarking = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -frame-executive = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -frame-support = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -frame-system = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -frame-system-benchmarking = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -frame-system-rpc-runtime-api = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -frame-try-runtime = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -pallet-atomic-swap = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -pallet-authority-discovery = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -pallet-authorship = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -pallet-babe = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -pallet-balances = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -pallet-collective = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -pallet-grandpa = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -pallet-im-online = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -pallet-multisig = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -pallet-preimage = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -pallet-proxy = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -pallet-scheduler = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -pallet-session = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -pallet-sudo = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -pallet-timestamp = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -pallet-treasury = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -pallet-utility = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-api = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-arithmetic = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-block-builder = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sc-client-db = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sc-client-api = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sc-consensus-grandpa = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sc-consensus-babe = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sc-consensus-babe-rpc = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-blockchain = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sc-offchain = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -try-runtime-cli = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-consensus-babe = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-consensus-grandpa = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-core = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-inherents = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-offchain = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-runtime = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-session = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-std = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-staking = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-weights = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-transaction-pool = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-version = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sc-cli = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sc-service = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-trie = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-authority-discovery = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-genesis-builder = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-keyring = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-consensus = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-core-hashing = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sc-keystore = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sc-rpc-api = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -substrate-wasm-builder = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-io = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -substrate-build-script-utils = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1' } -node-primitives = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -frame-benchmarking-cli = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sc-chain-spec = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sc-consensus = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sc-consensus-manual-seal = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sc-executor = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sc-telemetry = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sc-transaction-pool = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sc-basic-authorship = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sc-network = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-keystore = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-storage = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-timestamp = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-transaction-storage-proof = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sc-transaction-pool-api = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -sp-state-machine = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } -substrate-frame-rpc-system = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.7.1', default-features = false } +pallet-transaction-payment-rpc = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +frame-benchmarking = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +frame-executive = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +frame-support = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +frame-system = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +frame-system-benchmarking = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +frame-system-rpc-runtime-api = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +frame-try-runtime = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +pallet-atomic-swap = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +pallet-authority-discovery = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +pallet-authorship = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +pallet-babe = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +pallet-balances = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +pallet-collective = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +pallet-grandpa = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +pallet-im-online = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +pallet-multisig = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +pallet-preimage = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +pallet-proxy = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +pallet-scheduler = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +pallet-session = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +pallet-sudo = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +pallet-timestamp = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +pallet-treasury = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +pallet-utility = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-api = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-arithmetic = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-block-builder = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sc-client-db = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sc-client-api = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sc-consensus-grandpa = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sc-consensus-babe = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sc-consensus-babe-rpc = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-blockchain = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sc-offchain = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +try-runtime-cli = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-consensus-babe = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-consensus-grandpa = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-core = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-inherents = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-offchain = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-runtime = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-session = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-std = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-staking = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-weights = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-transaction-pool = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-version = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sc-cli = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sc-service = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-trie = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-authority-discovery = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-genesis-builder = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-keyring = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-consensus = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-core-hashing = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sc-keystore = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sc-rpc-api = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +substrate-wasm-builder = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-io = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +substrate-build-script-utils = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0' } +node-primitives = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +frame-benchmarking-cli = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sc-chain-spec = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sc-consensus = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sc-consensus-manual-seal = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sc-executor = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sc-telemetry = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sc-transaction-pool = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sc-basic-authorship = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sc-network = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-keystore = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-storage = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-timestamp = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-transaction-storage-proof = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sc-transaction-pool-api = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +sp-state-machine = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } +substrate-frame-rpc-system = { git = 'https://github.com/duniter/duniter-polkadot-sdk', branch = 'duniter-substrate-v1.9.0', default-features = false } # The list of dependencies below (which can be both direct and indirect dependencies) are crates # that are suspected to be CPU-intensive, and that are unlikely to require debugging (as some of diff --git a/docker/Dockerfile b/docker/Dockerfile index 62f423629..c3363d229 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -48,8 +48,8 @@ ARG chain="gdev" RUN set -x && \ cat /root/dynenv && \ . /root/dynenv && \ - cargo build --locked $CARGO_OPTIONS --no-default-features $BENCH_OPTIONS --features $chain --target "$RUST_ARCH_TRIPLET" && \ - cargo build --locked $CARGO_OPTIONS --target "$RUST_ARCH_TRIPLET" --package distance-oracle && \ + cargo build -Zgit=shallow-deps --locked $CARGO_OPTIONS --no-default-features $BENCH_OPTIONS --features $chain --target "$RUST_ARCH_TRIPLET" && \ + cargo build -Zgit=shallow-deps --locked $CARGO_OPTIONS --target "$RUST_ARCH_TRIPLET" --package distance-oracle && \ mkdir -p build && \ mv target/$RUST_ARCH_TRIPLET/$TARGET_FOLDER/duniter build/ && \ mv target/$RUST_ARCH_TRIPLET/$TARGET_FOLDER/distance-oracle build/ @@ -58,7 +58,7 @@ RUN set -x && \ ARG cucumber=0 RUN if [ "$cucumber" != 0 ] && [ "$TARGETPLATFORM" = "$BUILDPLATFORM" ]; then \ cargo ta && \ - cargo test --workspace --exclude duniter-end2end-tests --exclude duniter-live-tests --features=runtime-benchmarks,constant-fees \ + cargo test -Zgit=shallow-deps --workspace --exclude duniter-end2end-tests --exclude duniter-live-tests --features=runtime-benchmarks,constant-fees \ cd target/debug/deps/ && \ rm cucumber_tests-*.d && \ mv cucumber_tests* ../../../build/duniter-cucumber; \ diff --git a/docs/dev/upgrade-substrate.md b/docs/dev/upgrade-substrate.md index 2345be020..899053ea2 100644 --- a/docs/dev/upgrade-substrate.md +++ b/docs/dev/upgrade-substrate.md @@ -1,31 +1,47 @@ -# Upgrade Substrate +# Polkadot Upgrade Guide -We need to keep up to date with Substrate. Here is an empirical guide. +ParityTech frequently releases upgrades of the polkadot-sdk. For each upgrade, Duniter should be upgraded following the instructions below. These instructions are based on upgrading from version 1.8.0 to 1.9.0. -Let's say for the example that we want to upgrade from `v0.9.26` to `v0.9.32`. +## 1. Upgrade the duniter-polkadot-sdk -## Upgrade Substrate fork -1. Checkout the latest Substrate Polkadot branch `polkadot-v0.9.xy` in [our Substrate](https://github.com/duniter/substrate/) -2. Create a new branch `duniter-substrate-v0.9.xy` -3. Cherry-pick `3ad5e1a1fdac5398d4911272a34e1f16c1bdd8f0`, `87ef489034ca2b15c4f30da387e06b1f6716d9a2` and `c36ab4f32454318a47777b24b6533c44121fc10b` -4. Run `cargo check` to check the cherry-picking +* Clone the repository: `git clone git@github.com:duniter/duniter-polkadot-sdk.git` +* Set the upstream repository: `git remote add upstream git@github.com:paritytech/polkadot-sdk.git` +* Fetch the latest released version: `git fetch --tag polkadot-v1.9.0` +* Create a new branch: `git checkout -b duniter-polkadot-v1.9.0` +* Rebase the branch, keeping only specific commits: "fix treasury benchmarks when no SpendOrigin", "allow manual seal to produce non-empty blocks with BABE", "add custom pallet-balance GenesisConfig", and "remove pallet-balances upgrade_account extrinsic", "remove all paritytech sdk dependencies". +* Push the new branch: `git push` -## Upgrade Subxt fork +## 2. Upgrade duniter subxt -1. Checkout the currently used branch in [our Subxt fork](https://github.com/duniter/subxt), e.g. `duniter-substrate-v0.9.26` -2. Create a new branch `duniter-substrate-v0.9.32` -3. Fetch the [upstream repository](https://github.com/paritytech/subxt) -4. Rebase on an upstream stable branch matching the wanted version +* Clone the repository: `git clone git@github.com:duniter/subxt.git` +* Set the upstream repository: `git remote add upstream git@github.com:paritytech/subxt.git` +* If a new version compatible with the polkadot-sdk version used in duniter is available, upgrade Subxt using the same method as duniter-polkadot-sdk. +* In the `Cargo.toml` file of duniter subxt, change the GitHub path pointing to the paritytech polkadot-sdk, or old duniter-polkadot-sdk to the new duniter-polkadot-sdk. +* Run `cargo upgrade` and push the branch. -## Upgrade Duniter +## 3. Upgrade Dependencies -1. Replace `duniter-substrate-v0.9.26` with `duniter-substrate-v0.9.32` in `Cargo.toml` -2. Update the `rust-toolchain` file according to [Polkadot release notes](https://github.com/paritytech/polkadot/releases) - * Tip: To save storage space on your machine, do `rm target -r` after changing the rust toolchain version and before re-building the project with the new version. -3. While needed, iterate `cargo check`, `cargo update` and upgrading dependencies to match substrate's dependencies -4. Fix errors in Duniter code - * You may need to check how Polkadot is doing by searching in [their repo](https://github.com/paritytech/polkadot). Luckily, the project structure and Substrate patterns are close enough to ours. - * Some errors may happen due to two semver-incompatible versions of a same crate being used. To check this, use `cargo tree -i <crate>`. Update the dependency accordingly, then do `cargo update`. -5. As always, don't forget to `clippy` once you're done with the errors. -6. Test benchmarking: - `cargo run --features runtime-benchmarks -- benchmark overhead --chain=dev --execution=wasm --wasm-execution=interpreted-i-know-what-i-do --weight-path=. --warmup=10 --repeat=100` \ No newline at end of file +Ensure that the dependencies for [Arkwork](https://github.com/duniter/arkworks-substrate) and [ring-vrf bandersnatch-vrfs](https://github.com/duniter/ring-vrf/) only depend on the duniter-polkadot-sdk. When upgrading these repositories, make sure to cherry-pick the "use duniter polkadot-sdk" commit. + +## 4. Upgrade repository + +* In the `Cargo.toml` file of Duniter, change the version number from 1.8.0 to 1.9.0 for all polkadot-sdk dependencies. Also, change the version for Subxt. `find . -type f -name "Cargo.toml" -exec sed -i'' -e 's/polkadot-v1.8.0\/polkadot-v1.9.0/g' {} +`. +* Upgrade the version number of all crateio dependencies to ensure compatibility with those used in the polkadot-sdk, see the node template at: [Node Template](https://github.com/paritytech/polkadot-sdk/blob/master/templates/solochain/node/Cargo.toml) (choose the correct branch/tag). + +At this point, two cases may arise: + +1. If the upgrade only adds some types and minor changes, add the types in the pallet configuration, replace the offending `WeightInfo`, and delete the corresponding weights files until they can be regenerated. + +2. If there are many breaking changes, it is recommended to break down the process: + + * Start by correcting errors on individual pallets using `cargo check -p my_pallet` to identify and rectify any errors. Then, test using `cargo test -p my_pallet` and benchmark using `cargo test -p my_pallet --feature runtime-benchmark`. + * After correcting all pallets, fix the runtimes using the same approach: check for trait declarations added or removed in each pallet configuration, and use `cargo check -p runtime`, `cargo test -p runtime`, and `cargo test -p runtime --feature runtime-benchmark`. + * Repeat this process with the node part, the distance-oracle, all the tests, xtask, and the client. + * Conclude the process by executing all benchmarks using the command `scripts/run_all_benchmarks.sh`. + +## 4. Troubleshooting + +As Duniter may sometimes be the only chain implementing advanced features, such as manual sealing, not many references can be found. However, the following projects may be useful: + +* Node template for general up-to-date implementation: [Node Template](https://github.com/paritytech/polkadot-sdk/tree/master/templates) +* Acala: [Acala](https://github.com/AcalaNetwork/Acala), which also uses manual sealing add a similar node implementation. diff --git a/node/src/command.rs b/node/src/command.rs index fa6900d93..ed1bab724 100644 --- a/node/src/command.rs +++ b/node/src/command.rs @@ -329,11 +329,13 @@ pub fn run() -> sc_cli::Result<()> { BenchmarkCmd::Pallet(cmd) => { if cfg!(feature = "runtime-benchmarks") { runner.sync_run(|config| { - cmd.run::<service::runtime_executor::runtime::Block, ExtendedHostFunctions< - sp_io::SubstrateHostFunctions, - <Executor as NativeExecutionDispatch>::ExtendHostFunctions, - >>(config) - }) + cmd.run::<sp_runtime::traits::HashingFor< + service::runtime_executor::runtime::Block, + >, ExtendedHostFunctions< + sp_io::SubstrateHostFunctions, + <Executor as NativeExecutionDispatch>::ExtendHostFunctions, + >>(config) + }) } else { Err("Benchmarking wasn't enabled when building the node. \ You can enable it with `--features runtime-benchmarks`." diff --git a/pallets/authority-members/src/mock.rs b/pallets/authority-members/src/mock.rs index f4d412df5..34b26a922 100644 --- a/pallets/authority-members/src/mock.rs +++ b/pallets/authority-members/src/mock.rs @@ -75,16 +75,21 @@ impl system::Config for Test { type Hashing = BlakeTwo256; type Lookup = IdentityLookup<Self::AccountId>; type MaxConsumers = frame_support::traits::ConstU32<16>; + type MultiBlockMigrator = (); type Nonce = u64; type OnKilledAccount = (); type OnNewAccount = (); type OnSetCode = (); type PalletInfo = PalletInfo; + type PostInherents = (); + type PostTransactions = (); + type PreInherents = (); type RuntimeCall = RuntimeCall; type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type RuntimeTask = (); type SS58Prefix = SS58Prefix; + type SingleBlockMigrations = (); type SystemWeightInfo = (); type Version = (); } diff --git a/pallets/certification/src/benchmarking.rs b/pallets/certification/src/benchmarking.rs index 3e47370a0..1fa4b0bfb 100644 --- a/pallets/certification/src/benchmarking.rs +++ b/pallets/certification/src/benchmarking.rs @@ -47,22 +47,6 @@ mod benchmarks { Ok(()) } - #[benchmark] - fn do_add_cert_checked() -> Result<(), BenchmarkError> { - let issuer: T::IdtyIndex = 1.into(); - let receiver: T::IdtyIndex = 2.into(); - Pallet::<T>::del_cert(RawOrigin::Root.into(), issuer, receiver)?; - frame_system::pallet::Pallet::<T>::set_block_number(T::CertPeriod::get()); - - #[block] - { - Pallet::<T>::do_add_cert_checked(issuer, receiver, true)?; - } - - assert_has_event::<T>(Event::<T>::CertAdded { issuer, receiver }.into()); - Ok(()) - } - #[benchmark] fn add_cert() -> Result<(), BenchmarkError> { let issuer: T::IdtyIndex = 1.into(); diff --git a/pallets/certification/src/mock.rs b/pallets/certification/src/mock.rs index 066753f25..7f24b214b 100644 --- a/pallets/certification/src/mock.rs +++ b/pallets/certification/src/mock.rs @@ -56,16 +56,21 @@ impl system::Config for Test { type Hashing = BlakeTwo256; type Lookup = IdentityLookup<Self::AccountId>; type MaxConsumers = frame_support::traits::ConstU32<16>; + type MultiBlockMigrator = (); type Nonce = u64; type OnKilledAccount = (); type OnNewAccount = (); type OnSetCode = (); type PalletInfo = PalletInfo; + type PostInherents = (); + type PostTransactions = (); + type PreInherents = (); type RuntimeCall = RuntimeCall; type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type RuntimeTask = (); type SS58Prefix = SS58Prefix; + type SingleBlockMigrations = (); type SystemWeightInfo = (); type Version = (); } diff --git a/pallets/distance/src/mock.rs b/pallets/distance/src/mock.rs index 86337cce6..5d6813516 100644 --- a/pallets/distance/src/mock.rs +++ b/pallets/distance/src/mock.rs @@ -81,16 +81,21 @@ impl system::Config for Test { type Hashing = BlakeTwo256; type Lookup = IdentityLookup<Self::AccountId>; type MaxConsumers = frame_support::traits::ConstU32<16>; + type MultiBlockMigrator = (); type Nonce = u64; type OnKilledAccount = (); type OnNewAccount = (); type OnSetCode = (); type PalletInfo = PalletInfo; + type PostInherents = (); + type PostTransactions = (); + type PreInherents = (); type RuntimeCall = RuntimeCall; type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type RuntimeTask = (); type SS58Prefix = SS58Prefix; + type SingleBlockMigrations = (); type SystemWeightInfo = (); type Version = (); } diff --git a/pallets/duniter-wot/src/mock.rs b/pallets/duniter-wot/src/mock.rs index 0a442ac5d..d9ebcb180 100644 --- a/pallets/duniter-wot/src/mock.rs +++ b/pallets/duniter-wot/src/mock.rs @@ -69,16 +69,21 @@ impl system::Config for Test { type Hashing = BlakeTwo256; type Lookup = IdentityLookup<Self::AccountId>; type MaxConsumers = frame_support::traits::ConstU32<16>; + type MultiBlockMigrator = (); type Nonce = u64; type OnKilledAccount = (); type OnNewAccount = (); type OnSetCode = (); type PalletInfo = PalletInfo; + type PostInherents = (); + type PostTransactions = (); + type PreInherents = (); type RuntimeCall = RuntimeCall; type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type RuntimeTask = (); type SS58Prefix = SS58Prefix; + type SingleBlockMigrations = (); type SystemWeightInfo = (); type Version = (); } diff --git a/pallets/identity/src/benchmarking.rs b/pallets/identity/src/benchmarking.rs index f693a5de7..734707ae0 100644 --- a/pallets/identity/src/benchmarking.rs +++ b/pallets/identity/src/benchmarking.rs @@ -451,38 +451,6 @@ mod benchmarks { } } - #[benchmark] - fn membership_added() -> Result<(), BenchmarkError> { - let caller: T::AccountId = Identities::<T>::get(T::IdtyIndex::from(1u32)) - .unwrap() - .owner_key; - let caller_origin: <T as frame_system::Config>::RuntimeOrigin = - RawOrigin::Signed(caller.clone()).into(); - let owner_key: T::AccountId = account("new_identity", 2, 1); - let owner_key_origin: <T as frame_system::Config>::RuntimeOrigin = - RawOrigin::Signed(owner_key.clone()).into(); - Pallet::<T>::create_identity(caller_origin.clone(), owner_key.clone())?; - let name = IdtyName("new_identity".into()); - Pallet::<T>::confirm_identity(owner_key_origin.clone(), name.clone())?; - let idty_index = IdentityIndexOf::<T>::get(&owner_key).unwrap(); - assert_ne!( - Identities::<T>::get(idty_index).unwrap().status, - IdtyStatus::Member - ); - - #[block] - { - Pallet::<T>::membership_added(idty_index); - } - - assert_has_event::<T>(Event::<T>::IdtyValidated { idty_index }.into()); - assert_eq!( - Identities::<T>::get(idty_index).unwrap().status, - IdtyStatus::Member - ); - Ok(()) - } - #[benchmark] fn membership_removed() -> Result<(), BenchmarkError> { let key: T::AccountId = account("new_identity", 2, 1); diff --git a/pallets/identity/src/mock.rs b/pallets/identity/src/mock.rs index 8a887b008..81a0dc356 100644 --- a/pallets/identity/src/mock.rs +++ b/pallets/identity/src/mock.rs @@ -68,16 +68,21 @@ impl system::Config for Test { type Hashing = BlakeTwo256; type Lookup = IdentityLookup<Self::AccountId>; type MaxConsumers = frame_support::traits::ConstU32<16>; + type MultiBlockMigrator = (); type Nonce = u64; type OnKilledAccount = (); type OnNewAccount = (); type OnSetCode = (); type PalletInfo = PalletInfo; + type PostInherents = (); + type PostTransactions = (); + type PreInherents = (); type RuntimeCall = RuntimeCall; type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type RuntimeTask = (); type SS58Prefix = SS58Prefix; + type SingleBlockMigrations = (); type SystemWeightInfo = (); type Version = (); } diff --git a/pallets/membership/src/mock.rs b/pallets/membership/src/mock.rs index 5fb5d29ec..2d27a0d79 100644 --- a/pallets/membership/src/mock.rs +++ b/pallets/membership/src/mock.rs @@ -57,16 +57,21 @@ impl system::Config for Test { type Hashing = BlakeTwo256; type Lookup = IdentityLookup<Self::AccountId>; type MaxConsumers = frame_support::traits::ConstU32<16>; + type MultiBlockMigrator = (); type Nonce = u64; type OnKilledAccount = (); type OnNewAccount = (); type OnSetCode = (); type PalletInfo = PalletInfo; + type PostInherents = (); + type PostTransactions = (); + type PreInherents = (); type RuntimeCall = RuntimeCall; type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type RuntimeTask = (); type SS58Prefix = SS58Prefix; + type SingleBlockMigrations = (); type SystemWeightInfo = (); type Version = (); } diff --git a/pallets/offences/src/mock.rs b/pallets/offences/src/mock.rs index 11b2b4109..76fb2218f 100644 --- a/pallets/offences/src/mock.rs +++ b/pallets/offences/src/mock.rs @@ -76,16 +76,21 @@ impl frame_system::Config for Runtime { type Hashing = BlakeTwo256; type Lookup = IdentityLookup<Self::AccountId>; type MaxConsumers = ConstU32<16>; + type MultiBlockMigrator = (); type Nonce = u64; type OnKilledAccount = (); type OnNewAccount = (); type OnSetCode = (); type PalletInfo = PalletInfo; + type PostInherents = (); + type PostTransactions = (); + type PreInherents = (); type RuntimeCall = RuntimeCall; type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type RuntimeTask = (); type SS58Prefix = (); + type SingleBlockMigrations = (); type SystemWeightInfo = (); type Version = (); } diff --git a/pallets/oneshot-account/src/mock.rs b/pallets/oneshot-account/src/mock.rs index d6c18c736..cddd7e006 100644 --- a/pallets/oneshot-account/src/mock.rs +++ b/pallets/oneshot-account/src/mock.rs @@ -57,16 +57,21 @@ impl system::Config for Test { type Hashing = BlakeTwo256; type Lookup = IdentityLookup<Self::AccountId>; type MaxConsumers = frame_support::traits::ConstU32<16>; + type MultiBlockMigrator = (); type Nonce = u64; type OnKilledAccount = (); type OnNewAccount = (); type OnSetCode = (); type PalletInfo = PalletInfo; + type PostInherents = (); + type PostTransactions = (); + type PreInherents = (); type RuntimeCall = RuntimeCall; type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type RuntimeTask = (); type SS58Prefix = SS58Prefix; + type SingleBlockMigrations = (); type SystemWeightInfo = (); type Version = (); } diff --git a/pallets/quota/src/mock.rs b/pallets/quota/src/mock.rs index b5fa5311f..06aa1acbe 100644 --- a/pallets/quota/src/mock.rs +++ b/pallets/quota/src/mock.rs @@ -91,16 +91,21 @@ impl system::Config for Test { type Hashing = BlakeTwo256; type Lookup = IdentityLookup<Self::AccountId>; type MaxConsumers = frame_support::traits::ConstU32<16>; + type MultiBlockMigrator = (); type Nonce = u64; type OnKilledAccount = (); type OnNewAccount = (); type OnSetCode = (); type PalletInfo = PalletInfo; + type PostInherents = (); + type PostTransactions = (); + type PreInherents = (); type RuntimeCall = RuntimeCall; type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type RuntimeTask = (); type SS58Prefix = SS58Prefix; + type SingleBlockMigrations = (); type SystemWeightInfo = (); type Version = (); } diff --git a/pallets/smith-members/src/mock.rs b/pallets/smith-members/src/mock.rs index 2e7ddf15b..3669161b5 100644 --- a/pallets/smith-members/src/mock.rs +++ b/pallets/smith-members/src/mock.rs @@ -57,16 +57,21 @@ impl frame_system::Config for Runtime { type Hashing = BlakeTwo256; type Lookup = IdentityLookup<Self::AccountId>; type MaxConsumers = ConstU32<16>; + type MultiBlockMigrator = (); type Nonce = u64; type OnKilledAccount = (); type OnNewAccount = (); type OnSetCode = (); type PalletInfo = PalletInfo; + type PostInherents = (); + type PostTransactions = (); + type PreInherents = (); type RuntimeCall = RuntimeCall; type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type RuntimeTask = (); type SS58Prefix = (); + type SingleBlockMigrations = (); type SystemWeightInfo = (); type Version = (); } diff --git a/pallets/universal-dividend/src/lib.rs b/pallets/universal-dividend/src/lib.rs index a360fbdf4..9eb12eb1b 100644 --- a/pallets/universal-dividend/src/lib.rs +++ b/pallets/universal-dividend/src/lib.rs @@ -181,7 +181,7 @@ pub mod pallet { initial_monetary_mass: Default::default(), #[cfg(test)] initial_members: Default::default(), - ud: Default::default(), + ud: BalanceOf::<T>::one(), } } } diff --git a/pallets/universal-dividend/src/mock.rs b/pallets/universal-dividend/src/mock.rs index 55cafb5be..dbe776de2 100644 --- a/pallets/universal-dividend/src/mock.rs +++ b/pallets/universal-dividend/src/mock.rs @@ -64,16 +64,21 @@ impl system::Config for Test { type Hashing = BlakeTwo256; type Lookup = IdentityLookup<Self::AccountId>; type MaxConsumers = frame_support::traits::ConstU32<16>; + type MultiBlockMigrator = (); type Nonce = u64; type OnKilledAccount = (); type OnNewAccount = (); type OnSetCode = (); type PalletInfo = PalletInfo; + type PostInherents = (); + type PostTransactions = (); + type PreInherents = (); type RuntimeCall = RuntimeCall; type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type RuntimeTask = (); type SS58Prefix = SS58Prefix; + type SingleBlockMigrations = (); type SystemWeightInfo = (); type Version = (); } diff --git a/resources/metadata.scale b/resources/metadata.scale index c98d5a3d9e7f0de953152c86bcc286c8a0e08255..0cdfcfc4f20071529a02e98e786e01241549b1b8 100644 GIT binary patch delta 44471 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 KhC3gK82<;*sAS;) delta 10833 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 Y@e3Tm>NCh2fCg4Kg=EpWJ2l+@0k^(`c>n+a diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml index a204abf7b..355d7ca17 100644 --- a/runtime/common/Cargo.toml +++ b/runtime/common/Cargo.toml @@ -57,6 +57,7 @@ std = [ "frame-system/std", "frame-try-runtime/std", "pallet-authority-members/std", + "pallet-atomic-swap/std", "pallet-babe/std", "pallet-balances/std", "pallet-certification/std", @@ -101,6 +102,7 @@ try-runtime = [ "frame-system/try-runtime", "frame-try-runtime/try-runtime", "pallet-authority-members/try-runtime", + "pallet-atomic-swap/try-runtime", "pallet-babe/try-runtime", "pallet-balances/try-runtime", "pallet-certification/try-runtime", @@ -141,6 +143,7 @@ frame-system = { workspace = true } frame-system-benchmarking = { workspace = true, optional = true } frame-try-runtime = { workspace = true, optional = true } pallet-authority-members = { workspace = true } +pallet-atomic-swap = { workspace = true } pallet-babe = { workspace = true } pallet-balances = { workspace = true } pallet-certification = { workspace = true } diff --git a/runtime/common/src/apis.rs b/runtime/common/src/apis.rs index e654b9249..8872063fa 100644 --- a/runtime/common/src/apis.rs +++ b/runtime/common/src/apis.rs @@ -89,7 +89,7 @@ macro_rules! runtime_apis { Executive::execute_block(block) } - fn initialize_block(header: &<Block as BlockT>::Header) { + fn initialize_block(header: &<Block as BlockT>::Header) -> sp_runtime::ExtrinsicInclusionMode { Executive::initialize_block(header) } } diff --git a/runtime/common/src/pallets_config.rs b/runtime/common/src/pallets_config.rs index 1c9d1e0c5..09156ab08 100644 --- a/runtime/common/src/pallets_config.rs +++ b/runtime/common/src/pallets_config.rs @@ -69,11 +69,16 @@ macro_rules! pallets_config { /// The set code logic, just the default since we're not a parachain. type OnSetCode = (); type MaxConsumers = frame_support::traits::ConstU32<16>; - /// The type for storing how many extrinsics an account has signed. - type Nonce = node_primitives::Nonce; - /// The block type for the runtime. - type Block = Block; -type RuntimeTask = (); + /// The type for storing how many extrinsics an account has signed. + type Nonce = node_primitives::Nonce; + /// The block type for the runtime. + type Block = Block; + type RuntimeTask = (); + type SingleBlockMigrations = (); + type MultiBlockMigrator = (); + type PreInherents = (); + type PostInherents = (); + type PostTransactions = (); } // SCHEDULER // diff --git a/runtime/common/src/weights/block_weights.rs b/runtime/common/src/weights/block_weights.rs index bf39684d6..ee4cfad0d 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-07 (Y/M/D) +//! DATE: 2024-03-21 (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: 121_957, 152_945 - /// Average: 128_921 - /// Median: 128_776 - /// Std-Dev: 4882.38 + /// Min, Max: 126_723, 340_033 + /// Average: 138_291 + /// Median: 135_462 + /// Std-Dev: 20991.25 /// /// Percentiles nanoseconds: - /// 99th: 145_642 - /// 95th: 137_477 - /// 75th: 130_552 + /// 99th: 161_532 + /// 95th: 149_812 + /// 75th: 137_000 pub const BlockExecutionWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(128_921), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(138_291), 0); } #[cfg(test)] diff --git a/runtime/common/src/weights/extrinsic_weights.rs b/runtime/common/src/weights/extrinsic_weights.rs index 4672708f0..631849433 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-07 (Y/M/D) +//! DATE: 2024-03-21 (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: 70_750, 72_752 - /// Average: 71_018 - /// Median: 70_935 - /// Std-Dev: 325.2 + /// Min, Max: 71_060, 75_485 + /// Average: 72_432 + /// Median: 71_656 + /// Std-Dev: 1217.92 /// /// Percentiles nanoseconds: - /// 99th: 72_619 - /// 95th: 71_691 - /// 75th: 71_005 + /// 99th: 75_102 + /// 95th: 74_635 + /// 75th: 73_416 pub const ExtrinsicBaseWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(71_018), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(72_432), 0); } #[cfg(test)] diff --git a/runtime/common/src/weights/frame_benchmarking_baseline.rs b/runtime/common/src/weights/frame_benchmarking_baseline.rs index 59df27c4b..c6d609287 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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: 126_000 picoseconds. - Weight::from_parts(176_231, 0) + // Minimum execution time: 128_000 picoseconds. + Weight::from_parts(170_681, 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: 126_000 picoseconds. - Weight::from_parts(184_871, 0) + // Minimum execution time: 127_000 picoseconds. + Weight::from_parts(170_276, 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: 124_000 picoseconds. - Weight::from_parts(177_273, 0) + // Minimum execution time: 128_000 picoseconds. + Weight::from_parts(178_263, 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: 127_000 picoseconds. - Weight::from_parts(178_738, 0) + // Minimum execution time: 125_000 picoseconds. + Weight::from_parts(166_986, 0) .saturating_add(Weight::from_parts(0, 0)) } fn hashing() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 20_014_001_000 picoseconds. - Weight::from_parts(20_040_496_000, 0) + // Minimum execution time: 19_506_228_000 picoseconds. + Weight::from_parts(19_626_469_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: 129_000 picoseconds. - Weight::from_parts(27_377_743, 0) + // Minimum execution time: 140_000 picoseconds. + Weight::from_parts(31_329_942, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 11_322 - .saturating_add(Weight::from_parts(30_585_807, 0).saturating_mul(i.into())) + // Standard Error: 20_080 + .saturating_add(Weight::from_parts(30_655_727, 0).saturating_mul(i.into())) } } diff --git a/runtime/common/src/weights/frame_system.rs b/runtime/common/src/weights/frame_system.rs index 81ef84b46..a2109ba71 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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,22 +52,22 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_564_000 picoseconds. - Weight::from_parts(1_197_322, 0) + // Minimum execution time: 1_473_000 picoseconds. + Weight::from_parts(917_713, 0) .saturating_add(Weight::from_parts(0, 0)) // Standard Error: 0 - .saturating_add(Weight::from_parts(254, 0).saturating_mul(b.into())) + .saturating_add(Weight::from_parts(256, 0).saturating_mul(b.into())) } /// The range of component `b` is `[0, 3932160]`. fn remark_with_event(b: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_288_000 picoseconds. - Weight::from_parts(4_380_000, 0) + // Minimum execution time: 3_862_000 picoseconds. + Weight::from_parts(4_227_000, 0) .saturating_add(Weight::from_parts(0, 0)) // Standard Error: 0 - .saturating_add(Weight::from_parts(1_014, 0).saturating_mul(b.into())) + .saturating_add(Weight::from_parts(1_024, 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_558_000 picoseconds. - Weight::from_parts(2_908_000, 0) + // Minimum execution time: 2_484_000 picoseconds. + Weight::from_parts(2_801_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: 77_935_212_000 picoseconds. - Weight::from_parts(78_378_594_000, 0) + // Minimum execution time: 78_898_045_000 picoseconds. + Weight::from_parts(79_899_040_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_506_000 picoseconds. - Weight::from_parts(1_584_000, 0) + // Minimum execution time: 1_568_000 picoseconds. + Weight::from_parts(1_671_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 494 - .saturating_add(Weight::from_parts(632_843, 0).saturating_mul(i.into())) + // Standard Error: 744 + .saturating_add(Weight::from_parts(617_916, 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_623_000 picoseconds. - Weight::from_parts(1_662_000, 0) + // Minimum execution time: 1_525_000 picoseconds. + Weight::from_parts(1_612_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 609 - .saturating_add(Weight::from_parts(474_921, 0).saturating_mul(i.into())) + // Standard Error: 675 + .saturating_add(Weight::from_parts(462_508, 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_932_000 picoseconds. - Weight::from_parts(3_055_000, 0) + // Minimum execution time: 2_822_000 picoseconds. + Weight::from_parts(2_916_000, 0) .saturating_add(Weight::from_parts(0, 76)) - // Standard Error: 810 - .saturating_add(Weight::from_parts(893_967, 0).saturating_mul(p.into())) + // Standard Error: 976 + .saturating_add(Weight::from_parts(916_456, 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_251_000 picoseconds. - Weight::from_parts(10_361_000, 0) + // Minimum execution time: 9_656_000 picoseconds. + Weight::from_parts(11_608_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: 81_451_881_000 picoseconds. - Weight::from_parts(82_199_641_000, 0) + // Minimum execution time: 82_977_884_000 picoseconds. + Weight::from_parts(83_566_102_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 8386e9f5f..2810089d1 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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: 19_222_000 picoseconds. - Weight::from_parts(20_061_000, 0) + // Minimum execution time: 18_344_000 picoseconds. + Weight::from_parts(18_991_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_552_000 picoseconds. - Weight::from_parts(26_021_000, 0) + // Minimum execution time: 25_598_000 picoseconds. + Weight::from_parts(26_722_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: 31_474_000 picoseconds. - Weight::from_parts(33_317_000, 0) + // Minimum execution time: 33_668_000 picoseconds. + Weight::from_parts(34_365_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: 32_214_000 picoseconds. - Weight::from_parts(34_987_000, 0) + // Minimum execution time: 33_290_000 picoseconds. + Weight::from_parts(34_731_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_167_000 picoseconds. - Weight::from_parts(7_685_000, 0) + // Minimum execution time: 7_144_000 picoseconds. + Weight::from_parts(7_414_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 6aa514802..963c1cb77 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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: 41_681_000 picoseconds. - Weight::from_parts(42_728_000, 0) + // Minimum execution time: 42_980_000 picoseconds. + Weight::from_parts(44_396_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: 27_691_000 picoseconds. - Weight::from_parts(28_632_000, 0) + // Minimum execution time: 28_973_000 picoseconds. + Weight::from_parts(29_569_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: 9_354_000 picoseconds. - Weight::from_parts(9_977_000, 0) + // Minimum execution time: 10_025_000 picoseconds. + Weight::from_parts(10_402_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_024_000 picoseconds. - Weight::from_parts(14_706_000, 0) + // Minimum execution time: 14_088_000 picoseconds. + Weight::from_parts(14_787_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: 44_648_000 picoseconds. - Weight::from_parts(45_886_000, 0) + // Minimum execution time: 42_691_000 picoseconds. + Weight::from_parts(43_743_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: 35_626_000 picoseconds. - Weight::from_parts(36_682_000, 0) + // Minimum execution time: 34_242_000 picoseconds. + Weight::from_parts(34_876_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_762_000 picoseconds. - Weight::from_parts(13_285_000, 0) + // Minimum execution time: 12_247_000 picoseconds. + Weight::from_parts(12_864_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_482_000 picoseconds. - Weight::from_parts(4_850_000, 0) + // Minimum execution time: 4_323_000 picoseconds. + Weight::from_parts(4_809_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 d38b68f61..cc008e2c1 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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=pallet-certification // --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: 29_984_000 picoseconds. - Weight::from_parts(31_191_000, 0) + // Minimum execution time: 30_521_000 picoseconds. + Weight::from_parts(31_388_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_588_000 picoseconds. - Weight::from_parts(29_753_000, 0) + // Minimum execution time: 28_768_000 picoseconds. + Weight::from_parts(29_974_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: 16_101_000 picoseconds. - Weight::from_parts(17_043_000, 0) + // Minimum execution time: 17_405_000 picoseconds. + Weight::from_parts(23_829_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: 23_179_000 picoseconds. - Weight::from_parts(24_678_000, 0) + // Minimum execution time: 24_543_000 picoseconds. + Weight::from_parts(24_900_000, 0) .saturating_add(Weight::from_parts(0, 4017)) - // Standard Error: 23_289 - .saturating_add(Weight::from_parts(8_457_573, 0).saturating_mul(i.into())) + // Standard Error: 50_900 + .saturating_add(Weight::from_parts(9_036_718, 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_504_000 picoseconds. - Weight::from_parts(2_735_000, 0) + // Minimum execution time: 2_295_000 picoseconds. + Weight::from_parts(2_512_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_538_000 picoseconds. - Weight::from_parts(3_793_000, 0) + // Minimum execution time: 3_435_000 picoseconds. + Weight::from_parts(3_720_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_451_000 picoseconds. - Weight::from_parts(20_049_000, 0) + // Minimum execution time: 19_827_000 picoseconds. + Weight::from_parts(20_470_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 87b88b605..f731a1c4b 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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_940_000 picoseconds. - Weight::from_parts(11_480_000, 0) + // Minimum execution time: 10_666_000 picoseconds. + Weight::from_parts(11_300_000, 0) .saturating_add(Weight::from_parts(0, 10019)) - // Standard Error: 8_608 - .saturating_add(Weight::from_parts(659_510, 0).saturating_mul(m.into())) - // Standard Error: 42_556 - .saturating_add(Weight::from_parts(5_773_542, 0).saturating_mul(p.into())) + // 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())) .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_508_000 picoseconds. - Weight::from_parts(8_829_625, 0) + // Minimum execution time: 9_565_000 picoseconds. + Weight::from_parts(9_210_863, 0) .saturating_add(Weight::from_parts(0, 1518)) - // Standard Error: 32 - .saturating_add(Weight::from_parts(1_455, 0).saturating_mul(b.into())) - // Standard Error: 332 - .saturating_add(Weight::from_parts(13_226, 0).saturating_mul(m.into())) + // 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())) .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_035_000 picoseconds. - Weight::from_parts(10_954_712, 0) + // Minimum execution time: 11_508_000 picoseconds. + Weight::from_parts(11_006_990, 0) .saturating_add(Weight::from_parts(0, 3498)) - // Standard Error: 40 - .saturating_add(Weight::from_parts(1_357, 0).saturating_mul(b.into())) - // Standard Error: 420 - .saturating_add(Weight::from_parts(21_206, 0).saturating_mul(m.into())) + // 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())) .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: 15_937_000 picoseconds. - Weight::from_parts(15_424_210, 0) + // Minimum execution time: 16_681_000 picoseconds. + Weight::from_parts(15_339_504, 0) .saturating_add(Weight::from_parts(0, 3461)) - // Standard Error: 61 - .saturating_add(Weight::from_parts(2_225, 0).saturating_mul(b.into())) - // Standard Error: 643 - .saturating_add(Weight::from_parts(16_668, 0).saturating_mul(m.into())) - // Standard Error: 3_212 - .saturating_add(Weight::from_parts(267_223, 0).saturating_mul(p.into())) + // 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())) .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_524_000 picoseconds. - Weight::from_parts(15_543_160, 0) + // Minimum execution time: 14_534_000 picoseconds. + Weight::from_parts(15_664_016, 0) .saturating_add(Weight::from_parts(0, 4037)) - // Standard Error: 683 - .saturating_add(Weight::from_parts(34_924, 0).saturating_mul(m.into())) + // Standard Error: 1_352 + .saturating_add(Weight::from_parts(37_559, 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_368_000 picoseconds. - Weight::from_parts(16_519_080, 0) + // Minimum execution time: 18_535_000 picoseconds. + Weight::from_parts(16_761_519, 0) .saturating_add(Weight::from_parts(0, 3591)) - // Standard Error: 703 - .saturating_add(Weight::from_parts(36_105, 0).saturating_mul(m.into())) - // Standard Error: 3_471 - .saturating_add(Weight::from_parts(252_066, 0).saturating_mul(p.into())) + // 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())) .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_622_000 picoseconds. - Weight::from_parts(24_805_925, 0) + // Minimum execution time: 26_666_000 picoseconds. + Weight::from_parts(24_644_989, 0) .saturating_add(Weight::from_parts(0, 3619)) - // Standard Error: 84 - .saturating_add(Weight::from_parts(2_040, 0).saturating_mul(b.into())) - // Standard Error: 892 - .saturating_add(Weight::from_parts(21_970, 0).saturating_mul(m.into())) - // Standard Error: 4_401 - .saturating_add(Weight::from_parts(341_319, 0).saturating_mul(p.into())) + // 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())) .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_468_000 picoseconds. - Weight::from_parts(18_459_368, 0) + // Minimum execution time: 20_714_000 picoseconds. + Weight::from_parts(19_521_589, 0) .saturating_add(Weight::from_parts(0, 3611)) - // Standard Error: 669 - .saturating_add(Weight::from_parts(38_818, 0).saturating_mul(m.into())) - // Standard Error: 3_307 - .saturating_add(Weight::from_parts(260_504, 0).saturating_mul(p.into())) + // 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())) .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: 27_774_000 picoseconds. - Weight::from_parts(27_396_502, 0) + // Minimum execution time: 28_525_000 picoseconds. + Weight::from_parts(27_206_822, 0) .saturating_add(Weight::from_parts(0, 3639)) - // Standard Error: 90 - .saturating_add(Weight::from_parts(1_613, 0).saturating_mul(b.into())) - // Standard Error: 957 - .saturating_add(Weight::from_parts(16_088, 0).saturating_mul(m.into())) - // Standard Error: 4_722 - .saturating_add(Weight::from_parts(338_874, 0).saturating_mul(p.into())) + // 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())) .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: 8_964_000 picoseconds. - Weight::from_parts(9_924_932, 0) + // Minimum execution time: 9_320_000 picoseconds. + Weight::from_parts(10_419_750, 0) .saturating_add(Weight::from_parts(0, 1674)) - // Standard Error: 1_864 - .saturating_add(Weight::from_parts(188_098, 0).saturating_mul(p.into())) + // Standard Error: 1_981 + .saturating_add(Weight::from_parts(149_887, 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 fb79b7cbd..bba3802a0 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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: 39_352_000 picoseconds. - Weight::from_parts(41_526_000, 0) + // Minimum execution time: 41_315_000 picoseconds. + Weight::from_parts(42_958_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: 42_952_000 picoseconds. - Weight::from_parts(44_492_000, 0) + // Minimum execution time: 44_462_000 picoseconds. + Weight::from_parts(45_605_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: 12_115_000 picoseconds. - Weight::from_parts(14_548_951, 0) + // Minimum execution time: 13_085_000 picoseconds. + Weight::from_parts(14_760_344, 0) .saturating_add(Weight::from_parts(0, 1887)) - // Standard Error: 133 - .saturating_add(Weight::from_parts(100_163, 0).saturating_mul(i.into())) + // Standard Error: 180 + .saturating_add(Weight::from_parts(100_147, 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_344_000 picoseconds. - Weight::from_parts(6_909_844, 0) + // Minimum execution time: 5_330_000 picoseconds. + Weight::from_parts(7_271_959, 0) .saturating_add(Weight::from_parts(0, 1624)) - // Standard Error: 364 - .saturating_add(Weight::from_parts(101_524, 0).saturating_mul(i.into())) + // Standard Error: 102 + .saturating_add(Weight::from_parts(99_424, 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_728_000 picoseconds. - Weight::from_parts(25_348_000, 0) + // Minimum execution time: 24_823_000 picoseconds. + Weight::from_parts(26_073_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: 136_000 picoseconds. - Weight::from_parts(181_000, 0) + // Minimum execution time: 137_000 picoseconds. + Weight::from_parts(164_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: 43_974_000 picoseconds. - Weight::from_parts(45_186_000, 0) + // Minimum execution time: 42_713_000 picoseconds. + Weight::from_parts(44_349_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: 21_585_000 picoseconds. - Weight::from_parts(22_585_000, 0) + // Minimum execution time: 20_592_000 picoseconds. + Weight::from_parts(21_525_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_465_000 picoseconds. - Weight::from_parts(2_649_000, 0) + // Minimum execution time: 2_502_000 picoseconds. + Weight::from_parts(2_774_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_486_000 picoseconds. - Weight::from_parts(2_653_000, 0) + // Minimum execution time: 2_428_000 picoseconds. + Weight::from_parts(2_647_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 2ba12eeb7..a6d9a4878 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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_293_000 picoseconds. - Weight::from_parts(3_598_000, 0) + // Minimum execution time: 3_090_000 picoseconds. + Weight::from_parts(3_296_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 695d15018..593de4c76 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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=pallet-identity // --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: 59_347_000 picoseconds. - Weight::from_parts(61_712_000, 0) + // Minimum execution time: 60_458_000 picoseconds. + Weight::from_parts(62_727_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: 26_807_000 picoseconds. - Weight::from_parts(28_043_000, 0) + // Minimum execution time: 28_622_000 picoseconds. + Weight::from_parts(29_508_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: 75_151_000 picoseconds. - Weight::from_parts(77_856_000, 0) + // Minimum execution time: 73_352_000 picoseconds. + Weight::from_parts(75_459_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: 64_694_000 picoseconds. - Weight::from_parts(67_425_000, 0) + // Minimum execution time: 63_115_000 picoseconds. + Weight::from_parts(64_603_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: 6_469_000 picoseconds. - Weight::from_parts(6_750_000, 0) + // Minimum execution time: 3_664_000 picoseconds. + Weight::from_parts(3_883_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 1_349 - .saturating_add(Weight::from_parts(1_213_368, 0).saturating_mul(i.into())) + // Standard Error: 863 + .saturating_add(Weight::from_parts(1_217_853, 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_216_000 picoseconds. - Weight::from_parts(6_778_000, 0) + // Minimum execution time: 6_168_000 picoseconds. + Weight::from_parts(6_607_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: 50_710_000 picoseconds. - Weight::from_parts(52_162_000, 0) + // Minimum execution time: 49_185_000 picoseconds. + Weight::from_parts(50_359_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: 143_000 picoseconds. - Weight::from_parts(177_000, 0) + // Minimum execution time: 120_000 picoseconds. + Weight::from_parts(135_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_491_000 picoseconds. - Weight::from_parts(3_819_000, 0) + // Minimum execution time: 3_420_000 picoseconds. + Weight::from_parts(3_635_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: 79_770_000 picoseconds. - Weight::from_parts(83_924_000, 0) + // Minimum execution time: 80_698_000 picoseconds. + Weight::from_parts(84_553_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_520_000 picoseconds. - Weight::from_parts(3_792_000, 0) + // Minimum execution time: 3_452_000 picoseconds. + Weight::from_parts(3_571_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: 109_731_000 picoseconds. - Weight::from_parts(115_002_000, 0) + // Minimum execution time: 111_633_000 picoseconds. + Weight::from_parts(115_818_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: 110_950_000 picoseconds. - Weight::from_parts(116_583_000, 0) + // Minimum execution time: 108_432_000 picoseconds. + Weight::from_parts(113_373_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_875_000 picoseconds. - Weight::from_parts(14_622_000, 0) + // Minimum execution time: 13_935_000 picoseconds. + Weight::from_parts(14_601_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_783_000 picoseconds. - Weight::from_parts(2_943_000, 0) + // Minimum execution time: 2_501_000 picoseconds. + Weight::from_parts(2_758_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: 6_225_000 picoseconds. - Weight::from_parts(6_490_000, 0) + // Minimum execution time: 5_740_000 picoseconds. + Weight::from_parts(6_198_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_421_000 picoseconds. - Weight::from_parts(32_153_000, 0) + // Minimum execution time: 30_080_000 picoseconds. + Weight::from_parts(31_099_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 29e1ebaca..1323efa5b 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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: 51_809_000 picoseconds. - Weight::from_parts(65_303_831, 0) + // Minimum execution time: 50_649_000 picoseconds. + Weight::from_parts(71_173_084, 0) .saturating_add(Weight::from_parts(0, 33487)) - // Standard Error: 581 - .saturating_add(Weight::from_parts(37_332, 0).saturating_mul(k.into())) + // Standard Error: 1_053 + .saturating_add(Weight::from_parts(52_697, 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 e4474c625..4959cc20e 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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: 119_000 picoseconds. - Weight::from_parts(173_000, 0) + // Minimum execution time: 139_000 picoseconds. + Weight::from_parts(166_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_137_000 picoseconds. - Weight::from_parts(9_897_784, 0) + // Minimum execution time: 4_076_000 picoseconds. + Weight::from_parts(10_534_642, 0) .saturating_add(Weight::from_parts(0, 9744)) - // Standard Error: 391_303 - .saturating_add(Weight::from_parts(61_134_697, 0).saturating_mul(i.into())) + // Standard Error: 428_909 + .saturating_add(Weight::from_parts(62_035_985, 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 9437a8a1d..9fdbeccf6 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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_923_000 picoseconds. - Weight::from_parts(5_274_030, 0) + // Minimum execution time: 4_803_000 picoseconds. + Weight::from_parts(5_310_413, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 2 - .saturating_add(Weight::from_parts(340, 0).saturating_mul(z.into())) + // Standard Error: 13 + .saturating_add(Weight::from_parts(334, 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_115_000 picoseconds. - Weight::from_parts(22_471_427, 0) + // Minimum execution time: 22_307_000 picoseconds. + Weight::from_parts(23_308_259, 0) .saturating_add(Weight::from_parts(0, 3922)) - // Standard Error: 5_006 - .saturating_add(Weight::from_parts(129_162, 0).saturating_mul(s.into())) - // Standard Error: 4 - .saturating_add(Weight::from_parts(1_064, 0).saturating_mul(z.into())) + // Standard Error: 6_486 + .saturating_add(Weight::from_parts(44_886, 0).saturating_mul(s.into())) + // Standard Error: 5 + .saturating_add(Weight::from_parts(1_045, 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_050_000 picoseconds. - Weight::from_parts(12_643_850, 0) + // Minimum execution time: 13_348_000 picoseconds. + Weight::from_parts(12_879_515, 0) .saturating_add(Weight::from_parts(0, 3922)) - // Standard Error: 3_420 - .saturating_add(Weight::from_parts(122_334, 0).saturating_mul(s.into())) - // Standard Error: 2 - .saturating_add(Weight::from_parts(1_061, 0).saturating_mul(z.into())) + // Standard Error: 5_192 + .saturating_add(Weight::from_parts(96_125, 0).saturating_mul(s.into())) + // Standard Error: 3 + .saturating_add(Weight::from_parts(1_071, 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_906_000 picoseconds. - Weight::from_parts(25_410_716, 0) + // Minimum execution time: 25_710_000 picoseconds. + Weight::from_parts(25_686_043, 0) .saturating_add(Weight::from_parts(0, 3922)) - // Standard Error: 5_104 - .saturating_add(Weight::from_parts(166_187, 0).saturating_mul(s.into())) - // Standard Error: 4 - .saturating_add(Weight::from_parts(1_071, 0).saturating_mul(z.into())) + // 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())) .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_709_000 picoseconds. - Weight::from_parts(21_800_486, 0) + // Minimum execution time: 20_357_000 picoseconds. + Weight::from_parts(21_819_684, 0) .saturating_add(Weight::from_parts(0, 3922)) - // Standard Error: 5_531 - .saturating_add(Weight::from_parts(113_178, 0).saturating_mul(s.into())) + // Standard Error: 7_534 + .saturating_add(Weight::from_parts(107_921, 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_067_000 picoseconds. - Weight::from_parts(11_782_446, 0) + // Minimum execution time: 11_277_000 picoseconds. + Weight::from_parts(12_307_137, 0) .saturating_add(Weight::from_parts(0, 3922)) - // Standard Error: 3_413 - .saturating_add(Weight::from_parts(136_281, 0).saturating_mul(s.into())) + // Standard Error: 4_378 + .saturating_add(Weight::from_parts(81_587, 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_534_000 picoseconds. - Weight::from_parts(22_623_667, 0) + // Minimum execution time: 21_623_000 picoseconds. + Weight::from_parts(22_886_022, 0) .saturating_add(Weight::from_parts(0, 3922)) - // Standard Error: 5_386 - .saturating_add(Weight::from_parts(151_486, 0).saturating_mul(s.into())) + // Standard Error: 6_484 + .saturating_add(Weight::from_parts(141_019, 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 6d349ee2a..967646237 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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_125_000 picoseconds. - Weight::from_parts(15_698_000, 0) + // Minimum execution time: 15_328_000 picoseconds. + Weight::from_parts(15_960_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: 21_134_000 picoseconds. - Weight::from_parts(22_156_000, 0) + // Minimum execution time: 20_915_000 picoseconds. + Weight::from_parts(22_147_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: 31_092_000 picoseconds. - Weight::from_parts(31_841_000, 0) + // Minimum execution time: 29_505_000 picoseconds. + Weight::from_parts(30_279_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 b46329fd6..599620f54 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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_613_000 picoseconds. - Weight::from_parts(10_789_000, 0) + // Minimum execution time: 10_684_000 picoseconds. + Weight::from_parts(10_979_000, 0) .saturating_add(Weight::from_parts(0, 3548)) // Standard Error: 1 - .saturating_add(Weight::from_parts(1_277, 0).saturating_mul(s.into())) + .saturating_add(Weight::from_parts(1_294, 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_469_000 picoseconds. - Weight::from_parts(13_036_000, 0) + // Minimum execution time: 12_918_000 picoseconds. + Weight::from_parts(13_124_000, 0) .saturating_add(Weight::from_parts(0, 3548)) // Standard Error: 1 - .saturating_add(Weight::from_parts(1_279, 0).saturating_mul(s.into())) + .saturating_add(Weight::from_parts(1_294, 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_537_000 picoseconds. - Weight::from_parts(11_691_000, 0) + // Minimum execution time: 11_380_000 picoseconds. + Weight::from_parts(11_646_000, 0) .saturating_add(Weight::from_parts(0, 3548)) // Standard Error: 1 - .saturating_add(Weight::from_parts(1_276, 0).saturating_mul(s.into())) + .saturating_add(Weight::from_parts(1_294, 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: 22_106_000 picoseconds. - Weight::from_parts(23_688_000, 0) + // Minimum execution time: 23_181_000 picoseconds. + Weight::from_parts(24_693_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: 21_655_000 picoseconds. - Weight::from_parts(22_784_000, 0) + // Minimum execution time: 22_556_000 picoseconds. + Weight::from_parts(25_299_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: 19_520_000 picoseconds. - Weight::from_parts(22_107_000, 0) + // Minimum execution time: 20_271_000 picoseconds. + Weight::from_parts(22_202_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: 12_957_000 picoseconds. - Weight::from_parts(14_583_000, 0) + // Minimum execution time: 13_258_000 picoseconds. + Weight::from_parts(15_335_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: 8_518_000 picoseconds. - Weight::from_parts(9_498_000, 0) + // Minimum execution time: 9_884_000 picoseconds. + Weight::from_parts(11_045_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_798_000 picoseconds. - Weight::from_parts(7_494_000, 0) + // Minimum execution time: 6_602_000 picoseconds. + Weight::from_parts(7_110_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_094_000 picoseconds. - Weight::from_parts(21_542_000, 0) + // Minimum execution time: 20_995_000 picoseconds. + Weight::from_parts(22_598_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_639_000 picoseconds. - Weight::from_parts(7_268_000, 0) + // Minimum execution time: 6_745_000 picoseconds. + Weight::from_parts(7_702_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: 7_003_000 picoseconds. - Weight::from_parts(8_332_000, 0) + // Minimum execution time: 6_745_000 picoseconds. + Weight::from_parts(7_609_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: 16_232_000 picoseconds. - Weight::from_parts(16_454_000, 0) + // Minimum execution time: 15_889_000 picoseconds. + Weight::from_parts(16_617_000, 0) .saturating_add(Weight::from_parts(0, 990)) - // Standard Error: 20_312 - .saturating_add(Weight::from_parts(13_357_022, 0).saturating_mul(n.into())) + // Standard Error: 18_407 + .saturating_add(Weight::from_parts(13_280_498, 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 175200a7c..c8d6c7c1f 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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: 30_972_000 picoseconds. - Weight::from_parts(32_618_000, 0) + // Minimum execution time: 31_156_000 picoseconds. + Weight::from_parts(32_999_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_392_000 picoseconds. - Weight::from_parts(12_954_509, 0) + // Minimum execution time: 14_529_000 picoseconds. + Weight::from_parts(12_773_743, 0) .saturating_add(Weight::from_parts(0, 1827)) - // Standard Error: 17_758 - .saturating_add(Weight::from_parts(4_883_742, 0).saturating_mul(i.into())) + // Standard Error: 8_159 + .saturating_add(Weight::from_parts(4_810_361, 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_163_000 picoseconds. - Weight::from_parts(14_320_825, 0) + // Minimum execution time: 16_035_000 picoseconds. + Weight::from_parts(15_198_800, 0) .saturating_add(Weight::from_parts(0, 3817)) - // Standard Error: 8_123 - .saturating_add(Weight::from_parts(5_205_695, 0).saturating_mul(i.into())) + // Standard Error: 11_547 + .saturating_add(Weight::from_parts(5_138_477, 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 802a81dbe..4f782eda8 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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_830_000 picoseconds. - Weight::from_parts(11_861_543, 0) + // Minimum execution time: 10_906_000 picoseconds. + Weight::from_parts(11_889_390, 0) .saturating_add(Weight::from_parts(0, 4698)) - // Standard Error: 1_430 - .saturating_add(Weight::from_parts(25_728, 0).saturating_mul(p.into())) + // Standard Error: 1_682 + .saturating_add(Weight::from_parts(26_963, 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_183_000 picoseconds. - Weight::from_parts(26_654_251, 0) + // Minimum execution time: 26_178_000 picoseconds. + Weight::from_parts(27_006_660, 0) .saturating_add(Weight::from_parts(0, 5690)) - // Standard Error: 2_264 - .saturating_add(Weight::from_parts(133_279, 0).saturating_mul(a.into())) - // Standard Error: 2_339 - .saturating_add(Weight::from_parts(32_639, 0).saturating_mul(p.into())) + // 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())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -89,17 +89,15 @@ 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_319_000 picoseconds. - Weight::from_parts(18_199_328, 0) + // Minimum execution time: 17_480_000 picoseconds. + Weight::from_parts(18_443_858, 0) .saturating_add(Weight::from_parts(0, 5690)) - // Standard Error: 1_540 - .saturating_add(Weight::from_parts(124_783, 0).saturating_mul(a.into())) - // Standard Error: 1_591 - .saturating_add(Weight::from_parts(5_169, 0).saturating_mul(p.into())) + // Standard Error: 1_669 + .saturating_add(Weight::from_parts(115_732, 0).saturating_mul(a.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -113,13 +111,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_018_000 picoseconds. - Weight::from_parts(17_924_399, 0) + // Minimum execution time: 17_176_000 picoseconds. + Weight::from_parts(17_632_635, 0) .saturating_add(Weight::from_parts(0, 5690)) - // Standard Error: 1_475 - .saturating_add(Weight::from_parts(127_569, 0).saturating_mul(a.into())) - // Standard Error: 1_524 - .saturating_add(Weight::from_parts(7_684, 0).saturating_mul(p.into())) + // 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())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -135,13 +133,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_704_000 picoseconds. - Weight::from_parts(23_803_880, 0) + // Minimum execution time: 23_618_000 picoseconds. + Weight::from_parts(23_484_852, 0) .saturating_add(Weight::from_parts(0, 5690)) - // Standard Error: 1_524 - .saturating_add(Weight::from_parts(121_149, 0).saturating_mul(a.into())) - // Standard Error: 1_574 - .saturating_add(Weight::from_parts(33_993, 0).saturating_mul(p.into())) + // 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())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -152,11 +150,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_382_000 picoseconds. - Weight::from_parts(17_276_720, 0) + // Minimum execution time: 16_111_000 picoseconds. + Weight::from_parts(17_412_702, 0) .saturating_add(Weight::from_parts(0, 4698)) - // Standard Error: 1_808 - .saturating_add(Weight::from_parts(41_816, 0).saturating_mul(p.into())) + // Standard Error: 1_596 + .saturating_add(Weight::from_parts(33_701, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -167,11 +165,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_683_000 picoseconds. - Weight::from_parts(17_736_447, 0) + // Minimum execution time: 16_236_000 picoseconds. + Weight::from_parts(18_324_106, 0) .saturating_add(Weight::from_parts(0, 4698)) - // Standard Error: 1_974 - .saturating_add(Weight::from_parts(38_263, 0).saturating_mul(p.into())) + // Standard Error: 2_714 + .saturating_add(Weight::from_parts(11_138, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -182,11 +180,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_325_000 picoseconds. - Weight::from_parts(17_471_080, 0) + // Minimum execution time: 16_116_000 picoseconds. + Weight::from_parts(16_986_854, 0) .saturating_add(Weight::from_parts(0, 4698)) - // Standard Error: 1_939 - .saturating_add(Weight::from_parts(14_724, 0).saturating_mul(p.into())) + // Standard Error: 1_818 + .saturating_add(Weight::from_parts(40_407, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -197,8 +195,8 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> { // Proof Size summary in bytes: // Measured: `177` // Estimated: `4698` - // Minimum execution time: 17_706_000 picoseconds. - Weight::from_parts(18_970_369, 0) + // Minimum execution time: 17_556_000 picoseconds. + Weight::from_parts(19_158_031, 0) .saturating_add(Weight::from_parts(0, 4698)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -210,11 +208,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_290_000 picoseconds. - Weight::from_parts(17_835_952, 0) + // Minimum execution time: 16_233_000 picoseconds. + Weight::from_parts(17_619_735, 0) .saturating_add(Weight::from_parts(0, 4698)) - // Standard Error: 1_933 - .saturating_add(Weight::from_parts(25_316, 0).saturating_mul(p.into())) + // Standard Error: 1_830 + .saturating_add(Weight::from_parts(29_758, 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 7a1cc40e2..40331f0af 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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_338_000 picoseconds. - Weight::from_parts(7_649_000, 0) + // Minimum execution time: 7_647_000 picoseconds. + Weight::from_parts(8_035_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_552_000 picoseconds. - Weight::from_parts(4_917_000, 0) + // Minimum execution time: 4_781_000 picoseconds. + Weight::from_parts(5_015_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: 23_029_000 picoseconds. - Weight::from_parts(23_837_000, 0) + // Minimum execution time: 21_986_000 picoseconds. + Weight::from_parts(23_487_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: 22_943_000 picoseconds. - Weight::from_parts(23_837_000, 0) + // Minimum execution time: 21_622_000 picoseconds. + Weight::from_parts(22_386_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_944_000 picoseconds. - Weight::from_parts(2_099_000, 0) + // Minimum execution time: 1_799_000 picoseconds. + Weight::from_parts(2_044_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: 26_506_000 picoseconds. - Weight::from_parts(38_904_844, 0) + // Minimum execution time: 24_653_000 picoseconds. + Weight::from_parts(39_571_198, 0) .saturating_add(Weight::from_parts(0, 12751)) - // Standard Error: 1_948 - .saturating_add(Weight::from_parts(1_214_823, 0).saturating_mul(i.into())) + // Standard Error: 2_430 + .saturating_add(Weight::from_parts(1_197_849, 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 cdf2fb675..8d6f206c0 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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_167_000 picoseconds. - Weight::from_parts(2_327_000, 0) + // Minimum execution time: 2_293_000 picoseconds. + Weight::from_parts(2_428_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_574_000 picoseconds. - Weight::from_parts(5_074_977, 0) + // Minimum execution time: 2_715_000 picoseconds. + Weight::from_parts(5_304_460, 0) .saturating_add(Weight::from_parts(0, 13928)) - // Standard Error: 1_424 - .saturating_add(Weight::from_parts(306_785, 0).saturating_mul(s.into())) + // Standard Error: 1_481 + .saturating_add(Weight::from_parts(269_752, 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_209_000 picoseconds. - Weight::from_parts(2_317_000, 0) + // Minimum execution time: 2_151_000 picoseconds. + Weight::from_parts(2_342_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_751_000 picoseconds. - Weight::from_parts(14_079_000, 0) + // Minimum execution time: 13_626_000 picoseconds. + Weight::from_parts(14_017_000, 0) .saturating_add(Weight::from_parts(0, 3644)) - // Standard Error: 3 - .saturating_add(Weight::from_parts(931, 0).saturating_mul(s.into())) + // Standard Error: 2 + .saturating_add(Weight::from_parts(934, 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_376_000 picoseconds. - Weight::from_parts(3_599_000, 0) + // Minimum execution time: 3_320_000 picoseconds. + Weight::from_parts(3_606_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_083_000 picoseconds. - Weight::from_parts(2_314_000, 0) + // Minimum execution time: 2_177_000 picoseconds. + Weight::from_parts(2_347_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_564_000 picoseconds. - Weight::from_parts(1_729_000, 0) + // Minimum execution time: 1_534_000 picoseconds. + Weight::from_parts(1_629_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_543_000 picoseconds. - Weight::from_parts(1_671_000, 0) + // Minimum execution time: 1_523_000 picoseconds. + Weight::from_parts(1_665_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `Scheduler::Agenda` (r:1 w:1) @@ -144,16 +144,18 @@ 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_122_000 picoseconds. - Weight::from_parts(9_881_386, 0) + // Minimum execution time: 7_014_000 picoseconds. + Weight::from_parts(10_429_553, 0) .saturating_add(Weight::from_parts(0, 13928)) - // Standard Error: 1_476 - .saturating_add(Weight::from_parts(314_604, 0).saturating_mul(s.into())) + // Standard Error: 2_308 + .saturating_add(Weight::from_parts(273_551, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } /// Storage: `Scheduler::Agenda` (r:1 w:1) /// Proof: `Scheduler::Agenda` (`max_values`: None, `max_size`: Some(10463), added: 12938, mode: `MaxEncodedLen`) + /// Storage: `Scheduler::Retries` (r:0 w:1) + /// Proof: `Scheduler::Retries` (`max_values`: None, `max_size`: Some(30), added: 2505, mode: `MaxEncodedLen`) /// Storage: `Scheduler::Lookup` (r:0 w:1) /// Proof: `Scheduler::Lookup` (`max_values`: None, `max_size`: Some(48), added: 2523, mode: `MaxEncodedLen`) /// The range of component `s` is `[1, 50]`. @@ -161,13 +163,13 @@ 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: 10_688_000 picoseconds. - Weight::from_parts(10_946_224, 0) + // Minimum execution time: 11_904_000 picoseconds. + Weight::from_parts(12_749_369, 0) .saturating_add(Weight::from_parts(0, 13928)) - // Standard Error: 1_243 - .saturating_add(Weight::from_parts(509_493, 0).saturating_mul(s.into())) + // Standard Error: 1_721 + .saturating_add(Weight::from_parts(428_230, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) - .saturating_add(T::DbWeight::get().writes(2)) + .saturating_add(T::DbWeight::get().writes(3)) } /// Storage: `Scheduler::Lookup` (r:1 w:1) /// Proof: `Scheduler::Lookup` (`max_values`: None, `max_size`: Some(48), added: 2523, mode: `MaxEncodedLen`) @@ -178,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_934_000 picoseconds. - Weight::from_parts(13_660_920, 0) + // Minimum execution time: 9_564_000 picoseconds. + Weight::from_parts(14_001_763, 0) .saturating_add(Weight::from_parts(0, 13928)) - // Standard Error: 2_918 - .saturating_add(Weight::from_parts(353_892, 0).saturating_mul(s.into())) + // Standard Error: 3_210 + .saturating_add(Weight::from_parts(313_544, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -190,17 +192,96 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> { /// Proof: `Scheduler::Lookup` (`max_values`: None, `max_size`: Some(48), added: 2523, mode: `MaxEncodedLen`) /// Storage: `Scheduler::Agenda` (r:1 w:1) /// Proof: `Scheduler::Agenda` (`max_values`: None, `max_size`: Some(10463), added: 12938, mode: `MaxEncodedLen`) + /// Storage: `Scheduler::Retries` (r:0 w:1) + /// Proof: `Scheduler::Retries` (`max_values`: None, `max_size`: Some(30), added: 2505, mode: `MaxEncodedLen`) /// The range of component `s` is `[1, 50]`. fn cancel_named(s: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `280 + s * (185 ±0)` // Estimated: `13928` - // Minimum execution time: 12_239_000 picoseconds. - Weight::from_parts(13_848_458, 0) + // Minimum execution time: 13_729_000 picoseconds. + Weight::from_parts(15_963_157, 0) .saturating_add(Weight::from_parts(0, 13928)) - // Standard Error: 1_491 - .saturating_add(Weight::from_parts(522_089, 0).saturating_mul(s.into())) + // Standard Error: 2_377 + .saturating_add(Weight::from_parts(448_945, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(3)) + } + /// Storage: `Scheduler::Agenda` (r:1 w:1) + /// Proof: `Scheduler::Agenda` (`max_values`: None, `max_size`: Some(10463), added: 12938, mode: `MaxEncodedLen`) + /// Storage: `Scheduler::Retries` (r:0 w:1) + /// Proof: `Scheduler::Retries` (`max_values`: None, `max_size`: Some(30), added: 2505, mode: `MaxEncodedLen`) + /// The range of component `s` is `[1, 50]`. + fn schedule_retry(s: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `117` + // Estimated: `13928` + // Minimum execution time: 6_873_000 picoseconds. + Weight::from_parts(7_582_416, 0) + .saturating_add(Weight::from_parts(0, 13928)) + // Standard Error: 1_740 + .saturating_add(Weight::from_parts(26_017, 0).saturating_mul(s.into())) + .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } + /// Storage: `Scheduler::Agenda` (r:1 w:0) + /// Proof: `Scheduler::Agenda` (`max_values`: None, `max_size`: Some(10463), added: 12938, mode: `MaxEncodedLen`) + /// Storage: `Scheduler::Retries` (r:0 w:1) + /// Proof: `Scheduler::Retries` (`max_values`: None, `max_size`: Some(30), added: 2505, mode: `MaxEncodedLen`) + fn set_retry() -> Weight { + // Proof Size summary in bytes: + // Measured: `8927` + // Estimated: `13928` + // Minimum execution time: 19_457_000 picoseconds. + Weight::from_parts(20_163_000, 0) + .saturating_add(Weight::from_parts(0, 13928)) + .saturating_add(T::DbWeight::get().reads(1)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Scheduler::Lookup` (r:1 w:0) + /// Proof: `Scheduler::Lookup` (`max_values`: None, `max_size`: Some(48), added: 2523, mode: `MaxEncodedLen`) + /// Storage: `Scheduler::Agenda` (r:1 w:0) + /// Proof: `Scheduler::Agenda` (`max_values`: None, `max_size`: Some(10463), added: 12938, mode: `MaxEncodedLen`) + /// Storage: `Scheduler::Retries` (r:0 w:1) + /// Proof: `Scheduler::Retries` (`max_values`: None, `max_size`: Some(30), added: 2505, mode: `MaxEncodedLen`) + fn set_retry_named() -> Weight { + // Proof Size summary in bytes: + // Measured: `9605` + // Estimated: `13928` + // Minimum execution time: 25_900_000 picoseconds. + Weight::from_parts(26_625_000, 0) + .saturating_add(Weight::from_parts(0, 13928)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Scheduler::Agenda` (r:1 w:0) + /// Proof: `Scheduler::Agenda` (`max_values`: None, `max_size`: Some(10463), added: 12938, mode: `MaxEncodedLen`) + /// Storage: `Scheduler::Retries` (r:0 w:1) + /// Proof: `Scheduler::Retries` (`max_values`: None, `max_size`: Some(30), added: 2505, mode: `MaxEncodedLen`) + fn cancel_retry() -> Weight { + // Proof Size summary in bytes: + // Measured: `8939` + // Estimated: `13928` + // Minimum execution time: 18_312_000 picoseconds. + Weight::from_parts(18_872_000, 0) + .saturating_add(Weight::from_parts(0, 13928)) + .saturating_add(T::DbWeight::get().reads(1)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Scheduler::Lookup` (r:1 w:0) + /// Proof: `Scheduler::Lookup` (`max_values`: None, `max_size`: Some(48), added: 2523, mode: `MaxEncodedLen`) + /// Storage: `Scheduler::Agenda` (r:1 w:0) + /// Proof: `Scheduler::Agenda` (`max_values`: None, `max_size`: Some(10463), added: 12938, mode: `MaxEncodedLen`) + /// Storage: `Scheduler::Retries` (r:0 w:1) + /// Proof: `Scheduler::Retries` (`max_values`: None, `max_size`: Some(30), added: 2505, mode: `MaxEncodedLen`) + fn cancel_retry_named() -> Weight { + // Proof Size summary in bytes: + // Measured: `9617` + // Estimated: `13928` + // Minimum execution time: 23_531_000 picoseconds. + Weight::from_parts(24_475_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 def90ff90..c5f1ecf26 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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_286_000 picoseconds. - Weight::from_parts(24_542_000, 0) + // Minimum execution time: 23_680_000 picoseconds. + Weight::from_parts(25_045_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: 13_663_000 picoseconds. - Weight::from_parts(14_425_000, 0) + // Minimum execution time: 14_503_000 picoseconds. + Weight::from_parts(15_052_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 359604e5b..5e73cfa16 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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: 26_184_000 picoseconds. - Weight::from_parts(27_223_000, 0) + // Minimum execution time: 25_109_000 picoseconds. + Weight::from_parts(25_899_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_989_000 picoseconds. - Weight::from_parts(14_790_000, 0) + // Minimum execution time: 13_004_000 picoseconds. + Weight::from_parts(13_564_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: 25_006_000 picoseconds. - Weight::from_parts(25_628_000, 0) + // Minimum execution time: 23_752_000 picoseconds. + Weight::from_parts(24_806_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_816_000 picoseconds. - Weight::from_parts(52_006_000, 0) + // Minimum execution time: 49_501_000 picoseconds. + Weight::from_parts(51_840_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_929_000 picoseconds. - Weight::from_parts(3_255_000, 0) + // Minimum execution time: 2_953_000 picoseconds. + Weight::from_parts(3_111_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 d5107e40b..4edd67546 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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_637_000 picoseconds. - Weight::from_parts(7_003_000, 0) + // Minimum execution time: 6_745_000 picoseconds. + Weight::from_parts(7_129_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: 6_929_000 picoseconds. - Weight::from_parts(7_432_000, 0) + // Minimum execution time: 7_066_000 picoseconds. + Weight::from_parts(7_855_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_061_000 picoseconds. - Weight::from_parts(7_318_000, 0) + // Minimum execution time: 7_015_000 picoseconds. + Weight::from_parts(7_360_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_844_000 picoseconds. - Weight::from_parts(6_087_000, 0) + // Minimum execution time: 5_973_000 picoseconds. + Weight::from_parts(6_261_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 ea87e2dae..a6e620662 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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_593_000 picoseconds. - Weight::from_parts(11_054_000, 0) + // Minimum execution time: 10_380_000 picoseconds. + Weight::from_parts(11_078_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_439_000 picoseconds. - Weight::from_parts(2_627_000, 0) + // Minimum execution time: 2_542_000 picoseconds. + Weight::from_parts(2_694_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 250326f85..6b93d76ab 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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_041_000 picoseconds. - Weight::from_parts(16_625_000, 0) + // Minimum execution time: 16_761_000 picoseconds. + Weight::from_parts(17_586_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: 26_246_000 picoseconds. - Weight::from_parts(26_659_000, 0) + // Minimum execution time: 27_433_000 picoseconds. + Weight::from_parts(28_307_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: 5_814_000 picoseconds. - Weight::from_parts(9_146_952, 0) + // Minimum execution time: 6_113_000 picoseconds. + Weight::from_parts(9_442_836, 0) .saturating_add(Weight::from_parts(0, 3557)) - // Standard Error: 1_170 - .saturating_add(Weight::from_parts(49_557, 0).saturating_mul(p.into())) + // Standard Error: 1_120 + .saturating_add(Weight::from_parts(46_468, 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_272_000 picoseconds. - Weight::from_parts(4_509_000, 0) + // Minimum execution time: 4_527_000 picoseconds. + Weight::from_parts(4_722_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_537_000 picoseconds. - Weight::from_parts(22_233_569, 0) + // Minimum execution time: 12_865_000 picoseconds. + Weight::from_parts(19_048_235, 0) .saturating_add(Weight::from_parts(0, 3558)) - // Standard Error: 20_410 - .saturating_add(Weight::from_parts(23_394_974, 0).saturating_mul(p.into())) + // Standard Error: 33_635 + .saturating_add(Weight::from_parts(23_701_918, 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: 38_199_000 picoseconds. - Weight::from_parts(39_274_000, 0) + // Minimum execution time: 39_028_000 picoseconds. + Weight::from_parts(39_818_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: 8_133_000 picoseconds. - Weight::from_parts(8_557_000, 0) + // Minimum execution time: 9_032_000 picoseconds. + Weight::from_parts(9_459_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_477_000 picoseconds. - Weight::from_parts(7_793_000, 0) + // Minimum execution time: 7_991_000 picoseconds. + Weight::from_parts(8_435_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 6440bc866..59318a48c 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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,13 +58,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 claim_uds(_i: u32, ) -> Weight { + fn claim_uds(i: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `643` // Estimated: `4108` - // Minimum execution time: 25_314_000 picoseconds. - Weight::from_parts(26_970_849, 0) + // Minimum execution time: 25_250_000 picoseconds. + Weight::from_parts(26_478_413, 0) .saturating_add(Weight::from_parts(0, 4108)) + // Standard Error: 2_994 + .saturating_add(Weight::from_parts(12_798, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -76,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: 44_537_000 picoseconds. - Weight::from_parts(47_866_000, 0) + // Minimum execution time: 45_153_000 picoseconds. + Weight::from_parts(46_077_000, 0) .saturating_add(Weight::from_parts(0, 6126)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) @@ -90,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: 31_594_000 picoseconds. - Weight::from_parts(32_461_000, 0) + // Minimum execution time: 30_379_000 picoseconds. + Weight::from_parts(31_216_000, 0) .saturating_add(Weight::from_parts(0, 3558)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -107,8 +109,8 @@ impl<T: frame_system::Config> pallet_universal_dividend::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `181` // Estimated: `3558` - // Minimum execution time: 13_249_000 picoseconds. - Weight::from_parts(14_430_362, 0) + // Minimum execution time: 13_329_000 picoseconds. + Weight::from_parts(14_784_356, 0) .saturating_add(Weight::from_parts(0, 3558)) .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 d2924afba..4b01ad587 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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_650_000 picoseconds. - Weight::from_parts(5_023_000, 0) + // Minimum execution time: 4_194_000 picoseconds. + Weight::from_parts(4_665_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 f043ba5e8..6436ee7f3 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-07, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-03-21, 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_612_000 picoseconds. - Weight::from_parts(14_108_660, 0) + // Minimum execution time: 3_572_000 picoseconds. + Weight::from_parts(7_967_083, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 1_227 - .saturating_add(Weight::from_parts(2_029_200, 0).saturating_mul(c.into())) + // Standard Error: 2_196 + .saturating_add(Weight::from_parts(2_073_965, 0).saturating_mul(c.into())) } fn as_derivative() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_900_000 picoseconds. - Weight::from_parts(3_182_000, 0) + // Minimum execution time: 2_939_000 picoseconds. + Weight::from_parts(3_163_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_575_000 picoseconds. - Weight::from_parts(7_407_760, 0) + // Minimum execution time: 3_720_000 picoseconds. + Weight::from_parts(25_395_372, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 1_691 - .saturating_add(Weight::from_parts(2_201_382, 0).saturating_mul(c.into())) + // Standard Error: 3_072 + .saturating_add(Weight::from_parts(2_157_020, 0).saturating_mul(c.into())) } fn dispatch_as() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_675_000 picoseconds. - Weight::from_parts(4_980_000, 0) + // Minimum execution time: 4_533_000 picoseconds. + Weight::from_parts(5_032_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_527_000 picoseconds. - Weight::from_parts(7_345_393, 0) + // Minimum execution time: 3_583_000 picoseconds. + Weight::from_parts(9_224_622, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 859 - .saturating_add(Weight::from_parts(2_044_855, 0).saturating_mul(c.into())) + // Standard Error: 3_462 + .saturating_add(Weight::from_parts(2_059_460, 0).saturating_mul(c.into())) } } diff --git a/runtime/common/src/weights/paritydb_weights.rs b/runtime/common/src/weights/paritydb_weights.rs index f6a5484f2..dc1ee1f0e 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-07 (Y/M/D) +//! DATE: 2024-03-21 (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: 950, 1_381_817 - /// Average: 12_278 - /// Median: 1_541 - /// Std-Dev: 120586.22 + /// Min, Max: 1_069, 1_117_853 + /// Average: 10_457 + /// Median: 1_757 + /// Std-Dev: 97504.22 /// /// Percentiles nanoseconds: - /// 99th: 13_355 - /// 95th: 2_279 - /// 75th: 1_722 - read: 24_556 * constants::WEIGHT_REF_TIME_PER_NANOS, + /// 99th: 10_084 + /// 95th: 2_736 + /// 75th: 1_979 + read: 20_914 * 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: 3_867, 6_844_962 - /// Average: 62_096 - /// Median: 9_057 - /// Std-Dev: 597208.3 + /// Min, Max: 4_790, 5_998_438 + /// Average: 58_505 + /// Median: 12_295 + /// Std-Dev: 523003.75 /// /// Percentiles nanoseconds: - /// 99th: 28_062 - /// 95th: 16_544 - /// 75th: 11_426 - write: 124_192 * constants::WEIGHT_REF_TIME_PER_NANOS, + /// 99th: 47_632 + /// 95th: 19_096 + /// 75th: 14_574 + write: 117_010 * constants::WEIGHT_REF_TIME_PER_NANOS, }; } diff --git a/runtime/gdev/tests/offences_tests.rs b/runtime/gdev/tests/offences_tests.rs index 25f8f63ae..fbfbb9d30 100644 --- a/runtime/gdev/tests/offences_tests.rs +++ b/runtime/gdev/tests/offences_tests.rs @@ -44,7 +44,7 @@ fn test_imonline_offence() { .map(|full_id| (id, full_id)) }) .collect::<Vec<IdentificationTuple<Runtime>>>(); - let keys = ImOnline::keys(); + let keys = pallet_im_online::Keys::<Runtime>::get(); let validator_set_count = keys.len() as u32; let offence = UnresponsivenessOffence { session_index, @@ -86,7 +86,7 @@ fn test_grandpa_offence() { .map(|full_id| (id, full_id)) }) .collect::<Vec<IdentificationTuple<Runtime>>>(); - let keys = ImOnline::keys(); + let keys = pallet_im_online::Keys::<Runtime>::get(); let validator_set_count = keys.len() as u32; let time_slot = pallet_grandpa::TimeSlot { set_id: 0, @@ -131,7 +131,7 @@ fn test_babe_offence() { .map(|full_id| (id, full_id)) }) .collect::<Vec<IdentificationTuple<Runtime>>>(); - let keys = ImOnline::keys(); + let keys = pallet_im_online::Keys::<Runtime>::get(); let validator_set_count = keys.len() as u32; let offence = pallet_babe::EquivocationOffence { slot: 0u64.into(), diff --git a/xtask/src/gen_doc.rs b/xtask/src/gen_doc.rs index 929361633..90252b013 100644 --- a/xtask/src/gen_doc.rs +++ b/xtask/src/gen_doc.rs @@ -339,7 +339,7 @@ fn get_max_weight_from_metadata_v15( let block_weights = scale_value::scale::decode_as_type( &mut &*block_weights.value, - block_weights.ty.id, + &block_weights.ty.id, &metadata_v15.types, ) .expect("Can't decode max_weight") -- GitLab