From 1dd6d1b3cd8952cb35be3f3b421bb1a98a89d481 Mon Sep 17 00:00:00 2001 From: girazoki Date: Wed, 9 Jun 2021 20:18:30 +0200 Subject: [PATCH] Gorka v0.9.4 dep update (#494) * Updated branches and dependencies * Updated cargo lock * Democracy now requires generics in genesisConfig and proxy requires max-encoded-len * New democracy config adapting * Adapt to latest changes in node service * Update toolchain because of wasmtime 0.27 * Adapt fork-chain test to be non-dependent on the block number at which a TX is re-inserted * editorconfig * try catching error * Update spec template with new democracy * Revert "try catching error" This reverts commit 2ec0bc65bff08f666fcf2ffb90df5a78437ebe05. * Bump runtime version * Point to main for crowdloan-rewards --- Cargo.lock | 853 ++++++++++--------- client/rpc-core/debug/Cargo.toml | 2 +- client/rpc-core/txpool/Cargo.toml | 2 +- client/rpc/debug/Cargo.toml | 24 +- client/rpc/trace/Cargo.toml | 30 +- client/rpc/txpool/Cargo.toml | 18 +- core-primitives/Cargo.toml | 4 +- node/cli/Cargo.toml | 34 +- node/service/Cargo.toml | 142 +-- node/service/src/chain_spec/moonbase.rs | 2 +- node/service/src/chain_spec/moonbeam.rs | 2 +- node/service/src/chain_spec/moonriver.rs | 2 +- node/service/src/chain_spec/moonshadow.rs | 2 +- node/service/src/lib.rs | 26 +- pallets/author-mapping/Cargo.toml | 16 +- pallets/ethereum-chain-id/Cargo.toml | 4 +- pallets/parachain-staking/Cargo.toml | 18 +- primitives/account/Cargo.toml | 12 +- primitives/rpc/debug/Cargo.toml | 10 +- primitives/rpc/txpool/Cargo.toml | 8 +- runtime/evm_tracer/Cargo.toml | 12 +- runtime/moonbase/Cargo.toml | 98 +-- runtime/moonbase/src/lib.rs | 19 +- runtime/moonbeam/Cargo.toml | 98 +-- runtime/moonbeam/src/lib.rs | 19 +- runtime/moonriver/Cargo.toml | 98 +-- runtime/moonriver/src/lib.rs | 19 +- runtime/moonshadow/Cargo.toml | 94 +- runtime/moonshadow/src/lib.rs | 19 +- runtime/precompiles/Cargo.toml | 22 +- rust-toolchain | 2 +- specs/alphanet/parachain-specs-template.json | 4 +- tests/tests/test-fork-chain.ts | 19 +- 33 files changed, 929 insertions(+), 805 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5d39545ac0..d18d4e4f4e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -37,7 +37,16 @@ version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a55f82cfe485775d02112886f4169bde0c5894d75e79ead7eafe7e40a25e45f7" dependencies = [ - "gimli", + "gimli 0.23.0", +] + +[[package]] +name = "addr2line" +version = "0.15.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7a2e47a1fbe209ee101dd6d61285226744c6c8d3c21c8dc878ba6cb9f467f3a" +dependencies = [ + "gimli 0.24.0", ] [[package]] @@ -361,6 +370,19 @@ version = "4.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e91831deabf0d6d7ec49552e489aed63b7456a7a3c46cff62adad428110b0af0" +[[package]] +name = "async-tls" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f23d769dbf1838d5df5156e7b1ad404f4c463d1ac2c6aeb6cd943630f8a8400" +dependencies = [ + "futures-core", + "futures-io", + "rustls 0.19.0", + "webpki 0.21.4", + "webpki-roots", +] + [[package]] name = "async-trait" version = "0.1.48" @@ -442,11 +464,11 @@ version = "0.3.56" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d117600f438b1707d4e4ae15d3595657288f8235a0eb593e80ecc98ab34e1bc" dependencies = [ - "addr2line", + "addr2line 0.14.1", "cfg-if 1.0.0", "libc", "miniz_oxide", - "object", + "object 0.23.0", "rustc-demangle", ] @@ -483,7 +505,7 @@ checksum = "6736e2428df2ca2848d846c43e88745121a6654696e349ce0054a420815a7409" [[package]] name = "beefy-gadget" version = "0.1.0" -source = "git+https://github.com/paritytech/grandpa-bridge-gadget?branch=polkadot-v0.9.3#063e18a1f82945d5a304906db92bfbb571bac459" +source = "git+https://github.com/paritytech/grandpa-bridge-gadget?branch=polkadot-v0.9.4#527d0c81d30714946ec8863e2043ef93801da361" dependencies = [ "beefy-primitives", "futures 0.3.14", @@ -511,7 +533,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "0.1.0" -source = "git+https://github.com/paritytech/grandpa-bridge-gadget?branch=polkadot-v0.9.3#063e18a1f82945d5a304906db92bfbb571bac459" +source = "git+https://github.com/paritytech/grandpa-bridge-gadget?branch=polkadot-v0.9.4#527d0c81d30714946ec8863e2043ef93801da361" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -532,7 +554,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "0.1.0" -source = "git+https://github.com/paritytech/grandpa-bridge-gadget?branch=polkadot-v0.9.3#063e18a1f82945d5a304906db92bfbb571bac459" +source = "git+https://github.com/paritytech/grandpa-bridge-gadget?branch=polkadot-v0.9.4#527d0c81d30714946ec8863e2043ef93801da361" dependencies = [ "parity-scale-codec", "sp-api", @@ -715,7 +737,7 @@ dependencies = [ [[package]] name = "bp-header-chain" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "finality-grandpa", "frame-support", @@ -730,7 +752,7 @@ dependencies = [ [[package]] name = "bp-messages" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "bp-runtime", "frame-support", @@ -742,7 +764,7 @@ dependencies = [ [[package]] name = "bp-polkadot-core" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "bp-messages", "bp-runtime", @@ -759,7 +781,7 @@ dependencies = [ [[package]] name = "bp-rococo" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "bp-header-chain", "bp-messages", @@ -775,7 +797,7 @@ dependencies = [ [[package]] name = "bp-runtime" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "frame-support", "hash-db", @@ -792,7 +814,7 @@ dependencies = [ [[package]] name = "bp-test-utils" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "bp-header-chain", "ed25519-dalek", @@ -807,7 +829,7 @@ dependencies = [ [[package]] name = "bp-wococo" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "bp-header-chain", "bp-messages", @@ -1171,38 +1193,36 @@ checksum = "dcb25d077389e53838a8158c8e99174c5a9d902dee4904320db714f3c653ffba" [[package]] name = "cranelift-bforest" -version = "0.71.0" +version = "0.74.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bcee7a5107071484772b89fdf37f0f460b7db75f476e43ea7a684fd942470bcf" +checksum = "c8ca3560686e7c9c7ed7e0fe77469f2410ba5d7781b1acaa9adc8d8deea28e3e" dependencies = [ "cranelift-entity", ] [[package]] name = "cranelift-codegen" -version = "0.71.0" +version = "0.74.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "654ab96f0f1cab71c0d323618a58360a492da2c341eb2c1f977fc195c664001b" +checksum = "baf9bf1ffffb6ce3d2e5ebc83549bd2436426c99b31cc550d521364cbe35d276" dependencies = [ - "byteorder", "cranelift-bforest", "cranelift-codegen-meta", "cranelift-codegen-shared", "cranelift-entity", - "gimli", + "gimli 0.24.0", "log", "regalloc", "serde", "smallvec 1.6.1", "target-lexicon", - "thiserror", ] [[package]] name = "cranelift-codegen-meta" -version = "0.71.0" +version = "0.74.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65994cfc5be9d5fd10c5fc30bcdddfa50c04bb79c91329287bff846434ff8f14" +checksum = "4cc21936a5a6d07e23849ffe83e5c1f6f50305c074f4b2970ca50c13bf55b821" dependencies = [ "cranelift-codegen-shared", "cranelift-entity", @@ -1210,27 +1230,27 @@ dependencies = [ [[package]] name = "cranelift-codegen-shared" -version = "0.71.0" +version = "0.74.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "889d720b688b8b7df5e4903f9b788c3c59396050f5548e516e58ccb7312463ab" +checksum = "ca5b6ffaa87560bebe69a5446449da18090b126037920b0c1c6d5945f72faf6b" dependencies = [ "serde", ] [[package]] name = "cranelift-entity" -version = "0.71.0" +version = "0.74.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a2e6884a363e42a9ba980193ea8603a4272f8a92bd8bbaf9f57a94dbea0ff96" +checksum = "7d6b4a8bef04f82e4296782646f733c641d09497df2fabf791323fefaa44c64c" dependencies = [ "serde", ] [[package]] name = "cranelift-frontend" -version = "0.71.0" +version = "0.74.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6f41e2f9b57d2c030e249d0958f1cdc2c3cd46accf8c0438b3d1944e9153444" +checksum = "c31b783b351f966fce33e3c03498cb116d16d97a8f9978164a60920bd0d3a99c" dependencies = [ "cranelift-codegen", "log", @@ -1240,9 +1260,9 @@ dependencies = [ [[package]] name = "cranelift-native" -version = "0.71.0" +version = "0.74.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aab70ba7575665375d31cbdea2462916ce58be887834e1b83c860b43b51af637" +checksum = "a77c88d3dd48021ff1e37e978a00098524abd3513444ae252c08d37b310b3d2a" dependencies = [ "cranelift-codegen", "target-lexicon", @@ -1250,9 +1270,9 @@ dependencies = [ [[package]] name = "cranelift-wasm" -version = "0.71.0" +version = "0.74.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2fc3d2e70da6439adf97648dcdf81834363154f2907405345b6fbe7ca38918c" +checksum = "edb6d408e2da77cdbbd65466298d44c86ae71c1785d2ab0d8657753cdb4d9d89" dependencies = [ "cranelift-codegen", "cranelift-entity", @@ -1426,7 +1446,7 @@ dependencies = [ [[package]] name = "cumulus-client-cli" version = "0.1.0" -source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v9.3#2bade0772106c37d2222dd78945c880edca98e15" +source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v0.9.4#51adcf4d3def6d168423294e2f55f0221dfa9ace" dependencies = [ "sc-cli", "sc-service", @@ -1436,7 +1456,7 @@ dependencies = [ [[package]] name = "cumulus-client-collator" version = "0.1.0" -source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v9.3#2bade0772106c37d2222dd78945c880edca98e15" +source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v0.9.4#51adcf4d3def6d168423294e2f55f0221dfa9ace" dependencies = [ "cumulus-client-consensus-common", "cumulus-client-network", @@ -1460,7 +1480,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-common" version = "0.1.0" -source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v9.3#2bade0772106c37d2222dd78945c880edca98e15" +source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v0.9.4#51adcf4d3def6d168423294e2f55f0221dfa9ace" dependencies = [ "async-trait", "dyn-clone", @@ -1484,7 +1504,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-relay-chain" version = "0.1.0" -source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v9.3#2bade0772106c37d2222dd78945c880edca98e15" +source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v0.9.4#51adcf4d3def6d168423294e2f55f0221dfa9ace" dependencies = [ "async-trait", "cumulus-client-consensus-common", @@ -1508,7 +1528,7 @@ dependencies = [ [[package]] name = "cumulus-client-network" version = "0.1.0" -source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v9.3#2bade0772106c37d2222dd78945c880edca98e15" +source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v0.9.4#51adcf4d3def6d168423294e2f55f0221dfa9ace" dependencies = [ "derive_more", "futures 0.3.14", @@ -1532,7 +1552,7 @@ dependencies = [ [[package]] name = "cumulus-client-pov-recovery" version = "0.1.0" -source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v9.3#2bade0772106c37d2222dd78945c880edca98e15" +source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v0.9.4#51adcf4d3def6d168423294e2f55f0221dfa9ace" dependencies = [ "cumulus-primitives-core", "futures 0.3.14", @@ -1558,7 +1578,7 @@ dependencies = [ [[package]] name = "cumulus-client-service" version = "0.1.0" -source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v9.3#2bade0772106c37d2222dd78945c880edca98e15" +source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v0.9.4#51adcf4d3def6d168423294e2f55f0221dfa9ace" dependencies = [ "cumulus-client-collator", "cumulus-client-consensus-common", @@ -1586,7 +1606,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system" version = "0.1.0" -source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v9.3#2bade0772106c37d2222dd78945c880edca98e15" +source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v0.9.4#51adcf4d3def6d168423294e2f55f0221dfa9ace" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-parachain-inherent", @@ -1616,7 +1636,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-core" version = "0.1.0" -source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v9.3#2bade0772106c37d2222dd78945c880edca98e15" +source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v0.9.4#51adcf4d3def6d168423294e2f55f0221dfa9ace" dependencies = [ "frame-support", "impl-trait-for-tuples 0.2.1", @@ -1634,7 +1654,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" version = "0.1.0" -source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v9.3#2bade0772106c37d2222dd78945c880edca98e15" +source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v0.9.4#51adcf4d3def6d168423294e2f55f0221dfa9ace" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -1654,7 +1674,7 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" version = "0.1.0" -source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v9.3#2bade0772106c37d2222dd78945c880edca98e15" +source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v0.9.4#51adcf4d3def6d168423294e2f55f0221dfa9ace" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", @@ -1820,6 +1840,12 @@ version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" +[[package]] +name = "downcast-rs" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" + [[package]] name = "dyn-clonable" version = "0.9.0" @@ -2166,7 +2192,7 @@ dependencies = [ [[package]] name = "fc-consensus" version = "1.0.1-dev" -source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.1#d622fc66c6118897986963631806075fd757ad81" +source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.2#f0f81d04600c58a7cf022d89ccb2f5de75587e3f" dependencies = [ "async-trait", "derive_more", @@ -2191,7 +2217,7 @@ dependencies = [ [[package]] name = "fc-db" version = "1.0.0" -source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.1#d622fc66c6118897986963631806075fd757ad81" +source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.2#f0f81d04600c58a7cf022d89ccb2f5de75587e3f" dependencies = [ "kvdb", "kvdb-rocksdb", @@ -2205,7 +2231,7 @@ dependencies = [ [[package]] name = "fc-mapping-sync" version = "1.1.0-dev" -source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.1#d622fc66c6118897986963631806075fd757ad81" +source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.2#f0f81d04600c58a7cf022d89ccb2f5de75587e3f" dependencies = [ "fc-consensus", "fc-db", @@ -2223,7 +2249,7 @@ dependencies = [ [[package]] name = "fc-rpc" version = "2.0.0-dev" -source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.1#d622fc66c6118897986963631806075fd757ad81" +source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.2#f0f81d04600c58a7cf022d89ccb2f5de75587e3f" dependencies = [ "ethereum", "ethereum-types", @@ -2264,7 +2290,7 @@ dependencies = [ [[package]] name = "fc-rpc-core" version = "1.1.0-dev" -source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.1#d622fc66c6118897986963631806075fd757ad81" +source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.2#f0f81d04600c58a7cf022d89ccb2f5de75587e3f" dependencies = [ "ethereum-types", "jsonrpc-core 15.1.0", @@ -2350,7 +2376,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "parity-scale-codec", ] @@ -2368,7 +2394,7 @@ dependencies = [ [[package]] name = "fp-consensus" version = "1.0.0" -source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.1#d622fc66c6118897986963631806075fd757ad81" +source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.2#f0f81d04600c58a7cf022d89ccb2f5de75587e3f" dependencies = [ "ethereum", "parity-scale-codec", @@ -2382,7 +2408,7 @@ dependencies = [ [[package]] name = "fp-evm" version = "1.0.1-dev" -source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.1#d622fc66c6118897986963631806075fd757ad81" +source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.2#f0f81d04600c58a7cf022d89ccb2f5de75587e3f" dependencies = [ "evm", "impl-trait-for-tuples 0.1.3", @@ -2395,7 +2421,7 @@ dependencies = [ [[package]] name = "fp-rpc" version = "1.0.1-dev" -source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.1#d622fc66c6118897986963631806075fd757ad81" +source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.2#f0f81d04600c58a7cf022d89ccb2f5de75587e3f" dependencies = [ "ethereum", "ethereum-types", @@ -2411,7 +2437,7 @@ dependencies = [ [[package]] name = "fp-storage" version = "1.0.1-dev" -source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.1#d622fc66c6118897986963631806075fd757ad81" +source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.2#f0f81d04600c58a7cf022d89ccb2f5de75587e3f" dependencies = [ "ethereum", "ethereum-types", @@ -2426,7 +2452,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "3.1.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "frame-system", @@ -2445,7 +2471,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "Inflector", "chrono", @@ -2468,7 +2494,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "frame-system", @@ -2481,7 +2507,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "frame-system", @@ -2496,7 +2522,7 @@ dependencies = [ [[package]] name = "frame-metadata" version = "13.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "parity-scale-codec", "serde", @@ -2507,13 +2533,14 @@ dependencies = [ [[package]] name = "frame-support" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "bitflags", "frame-metadata", "frame-support-procedural", "impl-trait-for-tuples 0.2.1", "log", + "max-encoded-len", "once_cell 1.7.2", "parity-scale-codec", "paste 1.0.5", @@ -2533,7 +2560,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2545,7 +2572,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 1.0.0", @@ -2557,7 +2584,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "proc-macro2", "quote", @@ -2567,7 +2594,7 @@ dependencies = [ [[package]] name = "frame-system" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "impl-trait-for-tuples 0.2.1", @@ -2584,7 +2611,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-benchmarking", "frame-support", @@ -2598,7 +2625,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "parity-scale-codec", "sp-api", @@ -2607,7 +2634,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "parity-scale-codec", @@ -2788,7 +2815,7 @@ checksum = "3a1387e07917c711fb4ee4f48ea0adb04a3c9739e53ef85bf43ae1edc2937a8b" dependencies = [ "futures-io", "rustls 0.19.0", - "webpki", + "webpki 0.21.4", ] [[package]] @@ -2907,6 +2934,12 @@ name = "gimli" version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f6503fe142514ca4799d4c26297c4248239fe8838d827db6bd6065c6ed29a6ce" + +[[package]] +name = "gimli" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e4075386626662786ddb0ec9081e7c7eeb1ba31951f447ca780ef9f5d568189" dependencies = [ "fallible-iterator", "indexmap", @@ -3252,7 +3285,7 @@ dependencies = [ "rustls-native-certs", "tokio 0.2.25", "tokio-rustls", - "webpki", + "webpki 0.21.4", ] [[package]] @@ -3668,25 +3701,6 @@ dependencies = [ "slab", ] -[[package]] -name = "jsonrpsee-http-client" -version = "0.2.0-alpha.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2737440f37efa10e5ef7beeec43d059d29dc92640978be21fcdcef481a2edb0d" -dependencies = [ - "async-trait", - "fnv", - "hyper 0.13.10", - "hyper-rustls", - "jsonrpsee-types", - "jsonrpsee-utils", - "log", - "serde", - "serde_json", - "thiserror", - "url 2.2.1", -] - [[package]] name = "jsonrpsee-proc-macros" version = "0.2.0-alpha.6" @@ -3717,14 +3731,25 @@ dependencies = [ ] [[package]] -name = "jsonrpsee-utils" +name = "jsonrpsee-ws-client" version = "0.2.0-alpha.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d63cf4d423614e71fd144a8691208539d2b23d8373e069e2fbe023c5eba5e922" +checksum = "d6fdb4390bd25358c62e8b778652a564a1723ba07dca0feb3da439c2253fe59f" dependencies = [ - "futures-util", - "hyper 0.13.10", + "async-std", + "async-tls", + "async-trait", + "fnv", + "futures 0.3.14", "jsonrpsee-types", + "log", + "pin-project 1.0.5", + "serde", + "serde_json", + "soketto", + "thiserror", + "url 2.2.1", + "webpki 0.22.0", ] [[package]] @@ -3745,8 +3770,8 @@ dependencies = [ [[package]] name = "kusama-runtime" -version = "0.9.3" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +version = "0.9.4" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "beefy-primitives", "bitvec", @@ -3756,6 +3781,7 @@ dependencies = [ "frame-system-rpc-runtime-api", "frame-try-runtime", "log", + "max-encoded-len", "pallet-authority-discovery", "pallet-authorship", "pallet-babe", @@ -4512,6 +4538,28 @@ dependencies = [ "rawpointer", ] +[[package]] +name = "max-encoded-len" +version = "3.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" +dependencies = [ + "impl-trait-for-tuples 0.2.1", + "max-encoded-len-derive", + "parity-scale-codec", + "primitive-types", +] + +[[package]] +name = "max-encoded-len-derive" +version = "3.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" +dependencies = [ + "proc-macro-crate 1.0.0", + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "maybe-uninit" version = "2.0.0" @@ -4598,7 +4646,7 @@ dependencies = [ [[package]] name = "metered-channel" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "derive_more", "futures 0.3.14", @@ -4741,6 +4789,7 @@ dependencies = [ "hex", "hex-literal", "log", + "max-encoded-len", "moonbeam-core-primitives", "moonbeam-evm-tracer", "moonbeam-rpc-primitives-debug", @@ -5029,6 +5078,7 @@ dependencies = [ "hex", "hex-literal", "log", + "max-encoded-len", "moonbeam-core-primitives", "moonbeam-evm-tracer", "moonbeam-rpc-primitives-debug", @@ -5215,6 +5265,7 @@ dependencies = [ "hex", "hex-literal", "log", + "max-encoded-len", "moonbeam-core-primitives", "moonbeam-evm-tracer", "moonbeam-rpc-primitives-debug", @@ -5280,6 +5331,7 @@ dependencies = [ "hex", "hex-literal", "log", + "max-encoded-len", "moonbeam-core-primitives", "moonbeam-evm-tracer", "moonbeam-rpc-primitives-debug", @@ -5444,7 +5496,7 @@ dependencies = [ [[package]] name = "nimbus-consensus" version = "0.1.0" -source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v9.3#2bade0772106c37d2222dd78945c880edca98e15" +source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v0.9.4#51adcf4d3def6d168423294e2f55f0221dfa9ace" dependencies = [ "async-trait", "cumulus-client-consensus-common", @@ -5473,7 +5525,7 @@ dependencies = [ [[package]] name = "nimbus-primitives" version = "0.1.0" -source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v9.3#2bade0772106c37d2222dd78945c880edca98e15" +source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v0.9.4#51adcf4d3def6d168423294e2f55f0221dfa9ace" dependencies = [ "async-trait", "frame-support", @@ -5646,6 +5698,12 @@ name = "object" version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a9a7ab5d64814df0fe4a4b5ead45ed6c5f181ee3ff04ba344313a6c80446c5d4" + +[[package]] +name = "object" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a5b3dd1c072ee7963717671d1ca129f1048fda25edea6b752bfc71ac8854170" dependencies = [ "crc32fast", "indexmap", @@ -5714,7 +5772,7 @@ dependencies = [ [[package]] name = "pallet-author-inherent" version = "0.1.0" -source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v9.3#2bade0772106c37d2222dd78945c880edca98e15" +source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v0.9.4#51adcf4d3def6d168423294e2f55f0221dfa9ace" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -5750,7 +5808,7 @@ dependencies = [ [[package]] name = "pallet-author-slot-filter" version = "0.1.0" -source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v9.3#2bade0772106c37d2222dd78945c880edca98e15" +source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v0.9.4#51adcf4d3def6d168423294e2f55f0221dfa9ace" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -5768,7 +5826,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "frame-system", @@ -5783,7 +5841,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "frame-system", @@ -5797,7 +5855,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-benchmarking", "frame-support", @@ -5820,12 +5878,13 @@ dependencies = [ [[package]] name = "pallet-balances" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", "log", + "max-encoded-len", "parity-scale-codec", "sp-runtime", "sp-std", @@ -5834,7 +5893,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "0.1.0" -source = "git+https://github.com/paritytech/grandpa-bridge-gadget?branch=polkadot-v0.9.3#063e18a1f82945d5a304906db92bfbb571bac459" +source = "git+https://github.com/paritytech/grandpa-bridge-gadget?branch=polkadot-v0.9.4#527d0c81d30714946ec8863e2043ef93801da361" dependencies = [ "beefy-primitives", "frame-support", @@ -5849,7 +5908,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "frame-system", @@ -5862,7 +5921,7 @@ dependencies = [ [[package]] name = "pallet-bridge-grandpa" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "bp-header-chain", "bp-runtime", @@ -5883,7 +5942,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-benchmarking", "frame-support", @@ -5899,7 +5958,7 @@ dependencies = [ [[package]] name = "pallet-crowdloan-rewards" version = "0.6.0" -source = "git+https://github.com/purestake/crowdloan-rewards#ed7cc2231899f377ef9a31a7e726f5022a775c66" +source = "git+https://github.com/purestake/crowdloan-rewards#eccfaaa5b266f56460e445cbe65933f1938e95c1" dependencies = [ "cumulus-pallet-parachain-system", "cumulus-primitives-core", @@ -5921,7 +5980,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-benchmarking", "frame-support", @@ -5936,7 +5995,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-election-provider-support", "frame-support", @@ -5955,7 +6014,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "frame-system", @@ -5971,7 +6030,7 @@ dependencies = [ [[package]] name = "pallet-ethereum" version = "1.0.1-dev" -source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.1#d622fc66c6118897986963631806075fd757ad81" +source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.2#f0f81d04600c58a7cf022d89ccb2f5de75587e3f" dependencies = [ "ethereum", "ethereum-types", @@ -6009,7 +6068,7 @@ dependencies = [ [[package]] name = "pallet-evm" version = "3.0.1-dev" -source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.1#d622fc66c6118897986963631806075fd757ad81" +source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.2#f0f81d04600c58a7cf022d89ccb2f5de75587e3f" dependencies = [ "evm", "evm-gasometer", @@ -6034,7 +6093,7 @@ dependencies = [ [[package]] name = "pallet-evm-precompile-bn128" version = "2.0.0-dev" -source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.1#d622fc66c6118897986963631806075fd757ad81" +source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.2#f0f81d04600c58a7cf022d89ccb2f5de75587e3f" dependencies = [ "evm", "fp-evm", @@ -6046,7 +6105,7 @@ dependencies = [ [[package]] name = "pallet-evm-precompile-dispatch" version = "1.0.1-dev" -source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.1#d622fc66c6118897986963631806075fd757ad81" +source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.2#f0f81d04600c58a7cf022d89ccb2f5de75587e3f" dependencies = [ "evm", "fp-evm", @@ -6060,7 +6119,7 @@ dependencies = [ [[package]] name = "pallet-evm-precompile-modexp" version = "1.1.0-dev" -source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.1#d622fc66c6118897986963631806075fd757ad81" +source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.2#f0f81d04600c58a7cf022d89ccb2f5de75587e3f" dependencies = [ "evm", "fp-evm", @@ -6072,7 +6131,7 @@ dependencies = [ [[package]] name = "pallet-evm-precompile-sha3fips" version = "1.0.1-dev" -source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.1#d622fc66c6118897986963631806075fd757ad81" +source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.2#f0f81d04600c58a7cf022d89ccb2f5de75587e3f" dependencies = [ "evm", "fp-evm", @@ -6084,7 +6143,7 @@ dependencies = [ [[package]] name = "pallet-evm-precompile-simple" version = "1.0.1-dev" -source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.1#d622fc66c6118897986963631806075fd757ad81" +source = "git+https://github.com/purestake/frontier?branch=moonbeam-v0.8.2#f0f81d04600c58a7cf022d89ccb2f5de75587e3f" dependencies = [ "evm", "fp-evm", @@ -6096,7 +6155,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-benchmarking", "frame-support", @@ -6109,8 +6168,8 @@ dependencies = [ [[package]] name = "pallet-grandpa" -version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +version = "3.1.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-benchmarking", "frame-support", @@ -6122,6 +6181,7 @@ dependencies = [ "sp-application-crypto", "sp-core", "sp-finality-grandpa", + "sp-io", "sp-runtime", "sp-session", "sp-staking", @@ -6131,7 +6191,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "enumflags2", "frame-benchmarking", @@ -6146,7 +6206,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "frame-system", @@ -6164,7 +6224,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "frame-system", @@ -6179,7 +6239,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-benchmarking", "frame-support", @@ -6194,7 +6254,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -6211,7 +6271,7 @@ dependencies = [ [[package]] name = "pallet-mmr-primitives" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "frame-system", @@ -6227,7 +6287,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "jsonrpc-core 15.1.0", "jsonrpc-core-client 15.1.0", @@ -6245,7 +6305,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "frame-system", @@ -6259,7 +6319,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "frame-system", @@ -6272,7 +6332,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "frame-system", @@ -6288,10 +6348,11 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "frame-system", + "max-encoded-len", "parity-scale-codec", "sp-core", "sp-io", @@ -6302,7 +6363,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "frame-system", @@ -6315,7 +6376,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "enumflags2", "frame-support", @@ -6329,7 +6390,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-benchmarking", "frame-support", @@ -6344,7 +6405,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "frame-system", @@ -6363,7 +6424,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "frame-system", @@ -6376,7 +6437,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-election-provider-support", "frame-support", @@ -6398,7 +6459,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -6409,7 +6470,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "log", "sp-arithmetic", @@ -6418,7 +6479,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "frame-system", @@ -6431,7 +6492,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-benchmarking", "frame-support", @@ -6449,7 +6510,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "frame-system", @@ -6463,7 +6524,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "frame-system", @@ -6479,7 +6540,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "jsonrpc-core 15.1.0", "jsonrpc-core-client 15.1.0", @@ -6496,7 +6557,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6507,7 +6568,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "frame-system", @@ -6522,7 +6583,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-support", "frame-system", @@ -6536,7 +6597,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "enumflags2", "frame-support", @@ -6549,7 +6610,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "frame-support", "frame-system", @@ -6564,7 +6625,7 @@ dependencies = [ [[package]] name = "parachain-info" version = "0.1.0" -source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v9.3#2bade0772106c37d2222dd78945c880edca98e15" +source = "git+https://github.com/purestake/cumulus?branch=nimbus-polkadot-v0.9.4#51adcf4d3def6d168423294e2f55f0221dfa9ace" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -6717,9 +6778,9 @@ dependencies = [ [[package]] name = "parity-wasm" -version = "0.41.0" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ddfc878dac00da22f8f61e7af3157988424567ab01d9920b962ef7dcbd7cd865" +checksum = "be5e13c266502aadf83426d87d81a0f5d1ef45b8027f5a471c360abfe4bfae92" [[package]] name = "parity-ws" @@ -7037,7 +7098,7 @@ checksum = "989d43012e2ca1c4a02507c67282691a0a3207f9dc67cec596b43fe925b3d325" [[package]] name = "polkadot-approval-distribution" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "futures 0.3.14", "polkadot-node-network-protocol", @@ -7051,7 +7112,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "futures 0.3.14", "polkadot-node-network-protocol", @@ -7064,7 +7125,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "futures 0.3.14", "lru", @@ -7087,7 +7148,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "futures 0.3.14", "lru", @@ -7105,8 +7166,8 @@ dependencies = [ [[package]] name = "polkadot-cli" -version = "0.9.3" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +version = "0.9.4" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "frame-benchmarking-cli", "futures 0.3.14", @@ -7126,7 +7187,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "always-assert", "futures 0.3.14", @@ -7145,8 +7206,8 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" -version = "0.9.3" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +version = "0.9.4" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7157,8 +7218,8 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" -version = "0.9.3" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +version = "0.9.4" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7172,7 +7233,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "futures 0.3.14", "polkadot-node-network-protocol", @@ -7187,7 +7248,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "async-trait", "futures 0.3.14", @@ -7207,7 +7268,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "futures 0.3.14", "parity-scale-codec", @@ -7225,7 +7286,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "bitvec", "derive_more", @@ -7254,7 +7315,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "bitvec", "futures 0.3.14", @@ -7274,7 +7335,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "bitvec", "futures 0.3.14", @@ -7292,7 +7353,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "futures 0.3.14", "polkadot-node-subsystem", @@ -7307,7 +7368,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-selection" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "futures 0.3.14", "polkadot-node-primitives", @@ -7322,7 +7383,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "async-trait", "futures 0.3.14", @@ -7340,7 +7401,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "futures 0.3.14", "polkadot-node-subsystem", @@ -7353,7 +7414,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "async-trait", "futures 0.3.14", @@ -7371,7 +7432,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "bitvec", "futures 0.3.14", @@ -7386,7 +7447,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "always-assert", "assert_matches", @@ -7414,7 +7475,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "futures 0.3.14", "memory-lru", @@ -7432,7 +7493,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "async-std", "lazy_static", @@ -7450,7 +7511,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "futures 0.3.14", "parity-scale-codec", @@ -7465,7 +7526,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "futures 0.3.14", "parity-scale-codec", @@ -7487,7 +7548,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "async-std", "async-trait", @@ -7517,7 +7578,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "async-trait", "futures 0.3.14", @@ -7545,11 +7606,12 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "async-trait", "futures 0.3.14", "futures-timer 3.0.2", + "lru", "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", @@ -7562,8 +7624,8 @@ dependencies = [ [[package]] name = "polkadot-parachain" -version = "0.9.3" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +version = "0.9.4" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "derive_more", "parity-scale-codec", @@ -7577,8 +7639,8 @@ dependencies = [ [[package]] name = "polkadot-primitives" -version = "0.9.3" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +version = "0.9.4" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "bitvec", "frame-system", @@ -7592,6 +7654,7 @@ dependencies = [ "sp-application-crypto", "sp-arithmetic", "sp-authority-discovery", + "sp-consensus-slots", "sp-core", "sp-inherents", "sp-io", @@ -7607,7 +7670,7 @@ dependencies = [ [[package]] name = "polkadot-procmacro-overseer-subsystems-gen" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "assert_matches", "proc-macro2", @@ -7618,7 +7681,7 @@ dependencies = [ [[package]] name = "polkadot-procmacro-subsystem-dispatch-gen" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "assert_matches", "proc-macro2", @@ -7628,8 +7691,8 @@ dependencies = [ [[package]] name = "polkadot-rpc" -version = "0.9.3" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +version = "0.9.4" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7661,8 +7724,8 @@ dependencies = [ [[package]] name = "polkadot-runtime" -version = "0.9.3" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +version = "0.9.4" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "beefy-primitives", "bitvec", @@ -7672,6 +7735,7 @@ dependencies = [ "frame-system-rpc-runtime-api", "frame-try-runtime", "log", + "max-encoded-len", "pallet-authority-discovery", "pallet-authorship", "pallet-babe", @@ -7731,8 +7795,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" -version = "0.9.3" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +version = "0.9.4" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "beefy-primitives", "bitvec", @@ -7773,8 +7837,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" -version = "0.9.3" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +version = "0.9.4" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "bitvec", "derive_more", @@ -7810,8 +7874,8 @@ dependencies = [ [[package]] name = "polkadot-service" -version = "0.9.3" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +version = "0.9.4" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -7903,7 +7967,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "arrayvec 0.5.2", "futures 0.3.14", @@ -7923,8 +7987,8 @@ dependencies = [ [[package]] name = "polkadot-statement-table" -version = "0.9.3" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +version = "0.9.4" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -7933,8 +7997,8 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" -version = "0.9.3" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +version = "0.9.4" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "beefy-primitives", "bitvec", @@ -7990,8 +8054,8 @@ dependencies = [ [[package]] name = "polkadot-test-service" -version = "0.9.3" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +version = "0.9.4" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "frame-benchmarking", "frame-system", @@ -8282,13 +8346,13 @@ dependencies = [ [[package]] name = "pwasm-utils" -version = "0.14.0" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f53bc2558e8376358ebdc28301546471d67336584f6438ed4b7c7457a055fd7" +checksum = "a0e517f47d9964362883182404b68d0b6949382c0baa40aa5ffca94f5f1e3481" dependencies = [ "byteorder", "log", - "parity-wasm 0.41.0", + "parity-wasm 0.42.2", ] [[package]] @@ -8721,14 +8785,15 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "env_logger 0.8.3", - "hex-literal", - "jsonrpsee-http-client", + "hex", "jsonrpsee-proc-macros", + "jsonrpsee-ws-client", "log", "parity-scale-codec", + "serde_json", "sp-core", "sp-io", "sp-runtime", @@ -8755,9 +8820,9 @@ dependencies = [ [[package]] name = "retain_mut" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53552c6c49e1e13f1a203ef0080ab3bbef0beb570a528993e83df057a9d9bba1" +checksum = "e9c17925a9027d298a4603d286befe3f9dc0e8ed02523141914eb628798d6e5b" [[package]] name = "ring" @@ -8818,8 +8883,8 @@ dependencies = [ [[package]] name = "rococo-runtime" -version = "0.9.3" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +version = "0.9.4" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "beefy-primitives", "bp-rococo", @@ -8830,6 +8895,7 @@ dependencies = [ "frame-system-rpc-runtime-api", "hex-literal", "log", + "max-encoded-len", "pallet-authority-discovery", "pallet-authorship", "pallet-babe", @@ -8941,7 +9007,7 @@ dependencies = [ "log", "ring", "sct", - "webpki", + "webpki 0.21.4", ] [[package]] @@ -8954,7 +9020,7 @@ dependencies = [ "log", "ring", "sct", - "webpki", + "webpki 0.21.4", ] [[package]] @@ -9026,7 +9092,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "async-trait", "derive_more", @@ -9055,7 +9121,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "futures 0.3.14", "futures-timer 3.0.2", @@ -9078,7 +9144,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9094,7 +9160,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "impl-trait-for-tuples 0.2.1", "parity-scale-codec", @@ -9115,7 +9181,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -9126,7 +9192,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "chrono", "fdlimit", @@ -9164,7 +9230,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "derive_more", "fnv", @@ -9198,7 +9264,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "blake2-rfc", "hash-db", @@ -9228,7 +9294,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "parking_lot 0.11.1", "sc-client-api", @@ -9240,7 +9306,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "async-trait", "derive_more", @@ -9286,7 +9352,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "derive_more", "futures 0.3.14", @@ -9310,7 +9376,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9323,7 +9389,7 @@ dependencies = [ [[package]] name = "sc-consensus-manual-seal" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "assert_matches", "async-trait", @@ -9358,7 +9424,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "async-trait", "futures 0.3.14", @@ -9386,7 +9452,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "sc-client-api", "sp-authorship", @@ -9397,14 +9463,14 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "derive_more", "lazy_static", "libsecp256k1", "log", "parity-scale-codec", - "parity-wasm 0.41.0", + "parity-wasm 0.42.2", "parking_lot 0.11.1", "sc-executor-common", "sc-executor-wasmi", @@ -9426,11 +9492,10 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "derive_more", "parity-scale-codec", - "parity-wasm 0.41.0", "pwasm-utils", "sp-allocator", "sp-core", @@ -9444,7 +9509,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "log", "parity-scale-codec", @@ -9459,12 +9524,11 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "log", "parity-scale-codec", - "parity-wasm 0.41.0", - "pwasm-utils", + "parity-wasm 0.42.2", "sc-executor-common", "scoped-tls", "sp-allocator", @@ -9477,7 +9541,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "async-trait", "derive_more", @@ -9512,12 +9576,13 @@ dependencies = [ "sp-runtime", "sp-utils", "substrate-prometheus-endpoint", + "wasm-timer", ] [[package]] name = "sc-finality-grandpa-rpc" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "derive_more", "finality-grandpa", @@ -9541,7 +9606,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-warp-sync" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "derive_more", "futures 0.3.14", @@ -9562,10 +9627,11 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "ansi_term 0.12.1", "futures 0.3.14", + "futures-timer 3.0.2", "log", "parity-util-mem", "sc-client-api", @@ -9573,14 +9639,13 @@ dependencies = [ "sp-blockchain", "sp-runtime", "sp-transaction-pool", - "sp-utils", "wasm-timer", ] [[package]] name = "sc-keystore" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "async-trait", "derive_more", @@ -9600,7 +9665,7 @@ dependencies = [ [[package]] name = "sc-light" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "hash-db", "lazy_static", @@ -9619,7 +9684,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "async-std", "async-trait", @@ -9672,7 +9737,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "futures 0.3.14", "futures-timer 3.0.2", @@ -9689,7 +9754,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "bytes 0.5.6", "fnv", @@ -9717,7 +9782,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "futures 0.3.14", "libp2p", @@ -9730,7 +9795,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9739,7 +9804,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "futures 0.3.14", "hash-db", @@ -9774,7 +9839,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "derive_more", "futures 0.3.14", @@ -9799,7 +9864,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "futures 0.1.31", "jsonrpc-core 15.1.0", @@ -9817,7 +9882,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "async-trait", "directories", @@ -9881,7 +9946,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "log", "parity-scale-codec", @@ -9896,7 +9961,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "jsonrpc-core 15.1.0", "jsonrpc-core-client 15.1.0", @@ -9916,7 +9981,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "chrono", "futures 0.3.14", @@ -9936,7 +10001,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "ansi_term 0.12.1", "atty", @@ -9973,7 +10038,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -9984,7 +10049,7 @@ dependencies = [ [[package]] name = "sc-transaction-graph" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "derive_more", "futures 0.3.14", @@ -10006,7 +10071,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "futures 0.3.14", "futures-diagnose", @@ -10183,18 +10248,18 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.125" +version = "1.0.126" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "558dc50e1a5a5fa7112ca2ce4effcb321b0300c0d4ccf0776a9f60cd89031171" +checksum = "ec7505abeacaec74ae4778d9d9328fe5a5d04253220a85c4ee022239fc996d03" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.125" +version = "1.0.126" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b093b7a2bb58203b5da3056c05b4ec1fed827dcfdb37347a8841695263b3d06d" +checksum = "963a7dbc9895aeac7ac90e74f34a5d5261828f79df35cbed41e10189d3804d43" dependencies = [ "proc-macro2", "quote", @@ -10356,8 +10421,8 @@ dependencies = [ [[package]] name = "slot-range-helper" -version = "0.9.3" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +version = "0.9.4" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "enumn", "parity-scale-codec", @@ -10448,7 +10513,7 @@ dependencies = [ [[package]] name = "sp-allocator" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "log", "sp-core", @@ -10460,7 +10525,7 @@ dependencies = [ [[package]] name = "sp-api" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "hash-db", "log", @@ -10477,7 +10542,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "blake2-rfc", "proc-macro-crate 1.0.0", @@ -10489,8 +10554,9 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ + "max-encoded-len", "parity-scale-codec", "serde", "sp-core", @@ -10501,7 +10567,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "integer-sqrt", "num-traits", @@ -10515,7 +10581,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "parity-scale-codec", "sp-api", @@ -10527,7 +10593,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "async-trait", "parity-scale-codec", @@ -10539,7 +10605,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "parity-scale-codec", "sp-api", @@ -10551,7 +10617,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "futures 0.3.14", "log", @@ -10569,7 +10635,7 @@ dependencies = [ [[package]] name = "sp-chain-spec" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "serde", "serde_json", @@ -10578,7 +10644,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "async-trait", "futures 0.3.14", @@ -10605,7 +10671,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "async-trait", "parity-scale-codec", @@ -10622,7 +10688,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "async-trait", "merlin", @@ -10644,7 +10710,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "parity-scale-codec", "sp-arithmetic", @@ -10654,7 +10720,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -10666,7 +10732,7 @@ dependencies = [ [[package]] name = "sp-core" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "base58", "blake2-rfc", @@ -10681,6 +10747,7 @@ dependencies = [ "lazy_static", "libsecp256k1", "log", + "max-encoded-len", "merlin", "num-traits", "parity-scale-codec", @@ -10710,7 +10777,7 @@ dependencies = [ [[package]] name = "sp-database" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "kvdb", "parking_lot 0.11.1", @@ -10719,7 +10786,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "proc-macro2", "quote", @@ -10729,7 +10796,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "environmental", "parity-scale-codec", @@ -10740,7 +10807,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "finality-grandpa", "log", @@ -10757,7 +10824,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "async-trait", "impl-trait-for-tuples 0.2.1", @@ -10771,7 +10838,7 @@ dependencies = [ [[package]] name = "sp-io" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "futures 0.3.14", "hash-db", @@ -10796,7 +10863,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "lazy_static", "sp-core", @@ -10807,7 +10874,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "async-trait", "derive_more", @@ -10824,7 +10891,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "ruzstd", "zstd", @@ -10833,7 +10900,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "parity-scale-codec", "serde", @@ -10846,7 +10913,7 @@ dependencies = [ [[package]] name = "sp-npos-elections-compact" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -10857,7 +10924,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "sp-api", "sp-core", @@ -10867,7 +10934,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "backtrace", ] @@ -10875,7 +10942,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "rustc-hash", "serde", @@ -10886,12 +10953,13 @@ dependencies = [ [[package]] name = "sp-runtime" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "either", "hash256-std-hasher", "impl-trait-for-tuples 0.2.1", "log", + "max-encoded-len", "parity-scale-codec", "parity-util-mem", "paste 1.0.5", @@ -10907,7 +10975,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "impl-trait-for-tuples 0.2.1", "parity-scale-codec", @@ -10924,7 +10992,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "Inflector", "proc-macro-crate 1.0.0", @@ -10936,7 +11004,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "serde", "serde_json", @@ -10945,7 +11013,7 @@ dependencies = [ [[package]] name = "sp-session" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "parity-scale-codec", "sp-api", @@ -10958,7 +11026,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "parity-scale-codec", "sp-runtime", @@ -10968,7 +11036,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "hash-db", "log", @@ -10991,12 +11059,12 @@ dependencies = [ [[package]] name = "sp-std" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" [[package]] name = "sp-storage" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11009,7 +11077,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "log", "sp-core", @@ -11022,7 +11090,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "async-trait", "futures-timer 3.0.2", @@ -11039,7 +11107,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "erased-serde", "log", @@ -11057,7 +11125,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "derive_more", "futures 0.3.14", @@ -11073,7 +11141,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "hash-db", "memory-db", @@ -11087,7 +11155,7 @@ dependencies = [ [[package]] name = "sp-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "futures 0.3.14", "futures-core", @@ -11099,7 +11167,7 @@ dependencies = [ [[package]] name = "sp-version" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11112,7 +11180,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "parity-scale-codec", "proc-macro-crate 1.0.0", @@ -11124,7 +11192,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "impl-trait-for-tuples 0.2.1", "parity-scale-codec", @@ -11301,7 +11369,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "platforms", ] @@ -11318,7 +11386,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.14", @@ -11341,7 +11409,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "async-std", "derive_more", @@ -11355,7 +11423,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "async-trait", "futures 0.1.31", @@ -11384,7 +11452,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "cfg-if 1.0.0", "frame-support", @@ -11425,7 +11493,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime-client" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "futures 0.3.14", "parity-scale-codec", @@ -11462,7 +11530,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "ansi_term 0.12.1", "atty", @@ -11524,9 +11592,9 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "target-lexicon" -version = "0.11.2" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "422045212ea98508ae3d28025bc5aaa2bd4a9cdaecd442a08da2ee620ee9ea95" +checksum = "64ae3b39281e4b14b8123bdbaddd472b7dfe215e444181f2f9d2443c2444f834" [[package]] name = "tempfile" @@ -11864,7 +11932,7 @@ dependencies = [ "futures-core", "rustls 0.18.1", "tokio 0.2.25", - "webpki", + "webpki 0.21.4", ] [[package]] @@ -11993,9 +12061,9 @@ checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6" [[package]] name = "tracing" -version = "0.1.25" +version = "0.1.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01ebdc2bb4498ab1ab5f5b73c5803825e60199229ccba0698170e3be0e7f959f" +checksum = "09adeb8c97449311ccd28a427f96fb563e7fd31aabf994189879d9da2394b89d" dependencies = [ "cfg-if 1.0.0", "log", @@ -12017,9 +12085,9 @@ dependencies = [ [[package]] name = "tracing-core" -version = "0.1.17" +version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f50de3927f93d202783f4513cda820ab47ef17f624b03c096e86ef00c67e6b5f" +checksum = "a9ff14f98b1a4b289c6248a023c1c2fa1491062964e9fed67ab29c4e4da4a052" dependencies = [ "lazy_static", ] @@ -12176,7 +12244,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.3#85fa0ab80c3ceccf4bb98380d7833578aaf8815e" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.4#1d04678e20555e623c974ee1127bc8a45abcf3d6" dependencies = [ "frame-try-runtime", "log", @@ -12202,7 +12270,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "04f8ab788026715fa63b31960869617cba39117e520eb415b0139543e325ab59" dependencies = [ "cfg-if 0.1.10", - "rand 0.6.5", + "rand 0.7.3", "static_assertions", ] @@ -12536,38 +12604,39 @@ dependencies = [ [[package]] name = "wasmi" -version = "0.6.2" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf617d864d25af3587aa745529f7aaa541066c876d57e050c0d0c85c61c92aff" +checksum = "d2ee05bba3d1d994652079893941a2ef9324d2b58a63c31b40678fb7eddd7a5a" dependencies = [ + "downcast-rs", "libc", "memory_units", "num-rational 0.2.4", "num-traits", - "parity-wasm 0.41.0", + "parity-wasm 0.42.2", "wasmi-validation", ] [[package]] name = "wasmi-validation" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea78c597064ba73596099281e2f4cfc019075122a65cdda3205af94f0b264d93" +checksum = "a2eb8e860796d8be48efef530b60eebf84e74a88bce107374fffb0da97d504b8" dependencies = [ - "parity-wasm 0.41.0", + "parity-wasm 0.42.2", ] [[package]] name = "wasmparser" -version = "0.76.0" +version = "0.78.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "755a9a4afe3f6cccbbe6d7e965eef44cf260b001f93e547eba84255c1d0187d8" +checksum = "52144d4c78e5cf8b055ceab8e5fa22814ce4315d6002ad32cfd914f37c12fd65" [[package]] name = "wasmtime" -version = "0.24.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "718cb52a9fdb7ab12471e9b9d051c9adfa6b5c504e0a1fea045e5eabc81eedd9" +checksum = "b310b9d20fcf59385761d1ade7a3ef06aecc380e3d3172035b919eaf7465d9f7" dependencies = [ "anyhow", "backtrace", @@ -12575,9 +12644,11 @@ dependencies = [ "cfg-if 1.0.0", "cpp_demangle", "indexmap", + "lazy_static", "libc", "log", "paste 1.0.5", + "psm", "region", "rustc-demangle", "serde", @@ -12596,9 +12667,9 @@ dependencies = [ [[package]] name = "wasmtime-cache" -version = "0.24.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f984df56c4adeba91540f9052db9f7a8b3b00cfaac1a023bee50a972f588b0c" +checksum = "d14d500d5c3dc5f5c097158feee123d64b3097f0d836a2a27dff9c761c73c843" dependencies = [ "anyhow", "base64 0.13.0", @@ -12617,28 +12688,29 @@ dependencies = [ [[package]] name = "wasmtime-cranelift" -version = "0.24.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a05abbf94e03c2c8ee02254b1949320c4d45093de5d9d6ed4d9351d536075c9" +checksum = "c525b39f062eada7db3c1298287b96dcb6e472b9f6b22501300b28d9fa7582f6" dependencies = [ "cranelift-codegen", "cranelift-entity", "cranelift-frontend", "cranelift-wasm", + "target-lexicon", "wasmparser", "wasmtime-environ", ] [[package]] name = "wasmtime-debug" -version = "0.24.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "382eecd6281c6c1d1f3c904c3c143e671fc1a9573820cbfa777fba45ce2eda9c" +checksum = "c5d2a763e7a6fc734218e0e463196762a4f409c483063d81e0e85f96343b2e0a" dependencies = [ "anyhow", - "gimli", + "gimli 0.24.0", "more-asserts", - "object", + "object 0.24.0", "target-lexicon", "thiserror", "wasmparser", @@ -12647,16 +12719,15 @@ dependencies = [ [[package]] name = "wasmtime-environ" -version = "0.24.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81011b2b833663d7e0ce34639459a0e301e000fc7331e0298b3a27c78d0cec60" +checksum = "f64d0c2d881c31b0d65c1f2695e022d71eb60b9fbdd336aacca28208b58eac90" dependencies = [ - "anyhow", "cfg-if 1.0.0", "cranelift-codegen", "cranelift-entity", "cranelift-wasm", - "gimli", + "gimli 0.24.0", "indexmap", "log", "more-asserts", @@ -12667,9 +12738,9 @@ dependencies = [ [[package]] name = "wasmtime-fiber" -version = "0.24.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d92da32e31af2e3d828f485f5f24651ed4d3b7f03a46ea6555eae6940d1402cd" +checksum = "a089d44cd7e2465d41a53b840a5b4fca1bf6d1ecfebc970eac9592b34ea5f0b3" dependencies = [ "cc", "libc", @@ -12678,11 +12749,11 @@ dependencies = [ [[package]] name = "wasmtime-jit" -version = "0.24.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b5f649623859a12d361fe4cc4793de44f7c3ff34c322c5714289787e89650bb" +checksum = "4d4539ea734422b7c868107e2187d7746d8affbcaa71916d72639f53757ad707" dependencies = [ - "addr2line", + "addr2line 0.15.2", "anyhow", "cfg-if 1.0.0", "cranelift-codegen", @@ -12690,10 +12761,10 @@ dependencies = [ "cranelift-frontend", "cranelift-native", "cranelift-wasm", - "gimli", + "gimli 0.24.0", "log", "more-asserts", - "object", + "object 0.24.0", "rayon", "region", "serde", @@ -12711,13 +12782,13 @@ dependencies = [ [[package]] name = "wasmtime-obj" -version = "0.24.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef2e99cd9858f57fd062e9351e07881cedfc8597928385e02a48d9333b9e15a1" +checksum = "8e1a8ff85246d091828e2225af521a6208ed28c997bb5c39eb697366dc2e2f2b" dependencies = [ "anyhow", "more-asserts", - "object", + "object 0.24.0", "target-lexicon", "wasmtime-debug", "wasmtime-environ", @@ -12725,16 +12796,16 @@ dependencies = [ [[package]] name = "wasmtime-profiling" -version = "0.24.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e46c0a590e49278ba7f79ef217af9db4ecc671b50042c185093e22d73524abb2" +checksum = "e24364d522dcd67c897c8fffc42e5bdfc57207bbb6d7eeade0da9d4a7d70105b" dependencies = [ "anyhow", "cfg-if 1.0.0", - "gimli", + "gimli 0.24.0", "lazy_static", "libc", - "object", + "object 0.24.0", "scroll", "serde", "target-lexicon", @@ -12744,10 +12815,11 @@ dependencies = [ [[package]] name = "wasmtime-runtime" -version = "0.24.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1438a09185fc7ca067caf1a80d7e5b398eefd4fb7630d94841448ade60feb3d0" +checksum = "c51e57976e8a19a18a18e002c6eb12e5769554204238e47ff155fda1809ef0f7" dependencies = [ + "anyhow", "backtrace", "cc", "cfg-if 1.0.0", @@ -12755,12 +12827,14 @@ dependencies = [ "lazy_static", "libc", "log", + "mach", "memoffset 0.6.1", "more-asserts", - "psm", + "rand 0.8.3", "region", "thiserror", "wasmtime-environ", + "wasmtime-fiber", "winapi 0.3.9", ] @@ -12775,9 +12849,9 @@ dependencies = [ [[package]] name = "wat" -version = "1.0.36" +version = "1.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b0fa059022c5dabe129f02b429d67086400deb8277f89c975555dacc1dadbcc" +checksum = "8ec280a739b69173e0ffd12c1658507996836ba4e992ed9bc1e5385a0bd72a02" dependencies = [ "wast", ] @@ -12802,13 +12876,23 @@ dependencies = [ "untrusted", ] +[[package]] +name = "webpki" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" +dependencies = [ + "ring", + "untrusted", +] + [[package]] name = "webpki-roots" version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "82015b7e0b8bad8185994674a13a93306bea76cf5a16c5a181382fd3a5ec2376" dependencies = [ - "webpki", + "webpki 0.21.4", ] [[package]] @@ -12822,8 +12906,8 @@ dependencies = [ [[package]] name = "westend-runtime" -version = "0.9.3" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +version = "0.9.4" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "beefy-primitives", "bitvec", @@ -12833,6 +12917,7 @@ dependencies = [ "frame-system-rpc-runtime-api", "frame-try-runtime", "log", + "max-encoded-len", "pallet-authority-discovery", "pallet-authorship", "pallet-babe", @@ -13003,8 +13088,8 @@ dependencies = [ [[package]] name = "xcm" -version = "0.9.3" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +version = "0.9.4" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "derivative", "impl-trait-for-tuples 0.2.1", @@ -13013,8 +13098,8 @@ dependencies = [ [[package]] name = "xcm-builder" -version = "0.9.3" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +version = "0.9.4" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "frame-support", "frame-system", @@ -13032,8 +13117,8 @@ dependencies = [ [[package]] name = "xcm-executor" -version = "0.9.3" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.3#aa386760948574af4078c59decf558d16efe15e2" +version = "0.9.4" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.4#2f28561a09aab0613b5f8a68fbabf723d5fc197e" dependencies = [ "frame-support", "impl-trait-for-tuples 0.2.1", diff --git a/client/rpc-core/debug/Cargo.toml b/client/rpc-core/debug/Cargo.toml index 6bb2dd4d83..789a1e203e 100644 --- a/client/rpc-core/debug/Cargo.toml +++ b/client/rpc-core/debug/Cargo.toml @@ -17,6 +17,6 @@ jsonrpc-core-client = "14.0.3" jsonrpc-derive = "14.0.3" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } moonbeam-rpc-primitives-debug = { path = "../../../primitives/rpc/debug" } #evm = { version = "0.20.0", default-features = false, features = ["with-codec"] } diff --git a/client/rpc-core/txpool/Cargo.toml b/client/rpc-core/txpool/Cargo.toml index eb5a111281..612bc4c738 100644 --- a/client/rpc-core/txpool/Cargo.toml +++ b/client/rpc-core/txpool/Cargo.toml @@ -16,4 +16,4 @@ jsonrpc-derive = "14.0.3" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -fc-rpc-core = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } +fc-rpc-core = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } diff --git a/client/rpc/debug/Cargo.toml b/client/rpc/debug/Cargo.toml index 72380d4028..210a738dab 100644 --- a/client/rpc/debug/Cargo.toml +++ b/client/rpc/debug/Cargo.toml @@ -14,18 +14,18 @@ jsonrpc-core = "15.0.0" ethereum = { version = "0.7.1", default-features = false, features = ["with-codec"] } ethereum-types = "0.11.0" -sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } moonbeam-rpc-core-debug = { path = "../../rpc-core/debug" } moonbeam-rpc-primitives-debug = { path = "../../../primitives/rpc/debug" } -fc-consensus = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } -fc-db = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } -fc-rpc = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } -fp-rpc = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } +fc-consensus = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } +fc-db = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } +fc-rpc = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } +fp-rpc = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } diff --git a/client/rpc/trace/Cargo.toml b/client/rpc/trace/Cargo.toml index 5ad0679680..45c8f059ce 100644 --- a/client/rpc/trace/Cargo.toml +++ b/client/rpc/trace/Cargo.toml @@ -20,23 +20,23 @@ futures = { version = "0.3", features = ["compat"] } tracing = "0.1.25" # Primitives -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -fp-rpc = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +fp-rpc = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } moonbeam-rpc-primitives-debug = { path = "../../../primitives/rpc/debug" } # Client and RPC jsonrpc-core = "15.0.0" -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-transaction-graph = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -fc-rpc = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } -fc-consensus = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } -fc-rpc-core = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-transaction-graph = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +fc-rpc = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } +fc-consensus = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } +fc-rpc-core = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } moonbeam-rpc-core-trace = { path = "../../rpc-core/trace" } diff --git a/client/rpc/txpool/Cargo.toml b/client/rpc/txpool/Cargo.toml index c498bd92f7..0f833020da 100644 --- a/client/rpc/txpool/Cargo.toml +++ b/client/rpc/txpool/Cargo.toml @@ -13,15 +13,15 @@ jsonrpc-core = "15.0.0" ethereum-types = "0.11.0" ethereum = { version = "0.7.1", default-features = false, features = ["with-codec"] } moonbeam-rpc-core-txpool = { path = "../../rpc-core/txpool" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-transaction-graph = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-transaction-graph = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } serde = { version = "1.0", features = ["derive"] } moonbeam-rpc-primitives-txpool = { path = "../../../primitives/rpc/txpool" } -fc-rpc = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } +fc-rpc = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } diff --git a/core-primitives/Cargo.toml b/core-primitives/Cargo.toml index 8b488e8f23..d4aa676383 100644 --- a/core-primitives/Cargo.toml +++ b/core-primitives/Cargo.toml @@ -8,8 +8,8 @@ repository = 'https://github.com/PureStake/moonbeam/' version = '0.1.1' [dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", default-features = false } account = { path = "../primitives/account", default-features = false } [features] diff --git a/node/cli/Cargo.toml b/node/cli/Cargo.toml index 3adb6b46b6..33efa05215 100644 --- a/node/cli/Cargo.toml +++ b/node/cli/Cargo.toml @@ -9,30 +9,30 @@ log = "0.4.8" structopt = "0.3.8" parity-scale-codec = '2.0.0' -sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } -cumulus-client-cli = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3" } -cumulus-client-service = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3" } -cumulus-primitives-core = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3" } -nimbus-primitives = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3" } +cumulus-client-cli = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4" } +cumulus-client-service = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4" } +cumulus-primitives-core = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4" } +nimbus-primitives = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.3" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.3" } -polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.3" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.3" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.4" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.4" } +polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.4" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.4" } service = { package = "moonbeam-service", path = "../service", default-features = false } cli-opt = { package = "moonbeam-cli-opt", path = "../cli-opt", default-features = false } [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } +substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } [features] default = [ "wasmtime" ] diff --git a/node/service/Cargo.toml b/node/service/Cargo.toml index 00b3b6680f..1071e98987 100644 --- a/node/service/Cargo.toml +++ b/node/service/Cargo.toml @@ -44,84 +44,84 @@ moonbeam-rpc-trace = { path = "../../client/rpc/trace" } moonbeam-core-primitives = { path = "../../core-primitives" } # Substrate dependencies -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", features = ["wasmtime"] } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", features = ["wasmtime"] } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-transaction-graph = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-informant = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-storage = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -sc-consensus-manual-seal = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } - -evm = { package = "pallet-evm", git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } -ethereum = { package = "pallet-ethereum", git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", features = ["wasmtime"] } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", features = ["wasmtime"] } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-transaction-graph = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-informant = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-storage = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +sc-consensus-manual-seal = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } + +evm = { package = "pallet-evm", git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } +ethereum = { package = "pallet-ethereum", git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } ethereum-primitives = { package = "ethereum", version = "0.7.1", default-features = false, features = ["with-codec"] } -fc-consensus = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } -fp-consensus = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } -fc-rpc-core = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } -fc-rpc = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } -fp-rpc = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } -fc-db = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } -fc-mapping-sync = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } +fc-consensus = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } +fp-consensus = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } +fc-rpc-core = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } +fc-rpc = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } +fp-rpc = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } +fc-db = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } +fc-mapping-sync = { git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } # Cumulus dependencies -cumulus-client-cli = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3" } -cumulus-client-collator = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3" } -cumulus-client-network = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3" } -cumulus-primitives-core = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3" } -cumulus-client-service = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3" } -cumulus-client-consensus-relay-chain = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3" } -cumulus-test-relay-sproof-builder = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3" } -cumulus-primitives-parachain-inherent = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3" } +cumulus-client-cli = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4" } +cumulus-client-collator = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4" } +cumulus-client-network = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4" } +cumulus-primitives-core = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4" } +cumulus-client-service = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4" } +cumulus-client-consensus-relay-chain = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4" } +cumulus-test-relay-sproof-builder = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4" } +cumulus-primitives-parachain-inherent = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4" } # Nimbus dependencies -nimbus-consensus = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3" } -pallet-author-inherent = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3" } +nimbus-consensus = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4" } +pallet-author-inherent = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4" } # TODO we should be able to depend only on the primitives crate once we move the inherent data provider there. -nimbus-primitives = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3" } +nimbus-primitives = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4" } # Polkadot dependencies -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.3" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.3" } -polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.3" } -polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.3" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.3" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.4" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.4" } +polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.4" } +polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.4" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.4" } # benchmarking dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } +substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } [dev-dependencies] assert_cmd = "0.12" @@ -129,14 +129,14 @@ nix = "0.17" rand = "0.7.3" # Polkadot dev-dependencies -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.3" } -polkadot-test-runtime = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.3" } -polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.3" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.4" } +polkadot-test-runtime = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.4" } +polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.4" } # Substrate dev-dependencies -pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } -substrate-test-runtime-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } +substrate-test-runtime-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } [features] diff --git a/node/service/src/chain_spec/moonbase.rs b/node/service/src/chain_spec/moonbase.rs index b758077dab..d15bb75618 100644 --- a/node/service/src/chain_spec/moonbase.rs +++ b/node/service/src/chain_spec/moonbase.rs @@ -214,7 +214,7 @@ pub fn testnet_genesis( .collect(), }, pallet_ethereum: EthereumConfig {}, - pallet_democracy: DemocracyConfig {}, + pallet_democracy: DemocracyConfig::default(), pallet_scheduler: SchedulerConfig {}, parachain_staking: ParachainStakingConfig { candidates: candidates diff --git a/node/service/src/chain_spec/moonbeam.rs b/node/service/src/chain_spec/moonbeam.rs index 7cd53009a0..0291d31f20 100644 --- a/node/service/src/chain_spec/moonbeam.rs +++ b/node/service/src/chain_spec/moonbeam.rs @@ -213,7 +213,7 @@ pub fn testnet_genesis( .collect(), }, pallet_ethereum: EthereumConfig {}, - pallet_democracy: DemocracyConfig {}, + pallet_democracy: DemocracyConfig::default(), pallet_scheduler: SchedulerConfig {}, parachain_staking: ParachainStakingConfig { candidates: candidates diff --git a/node/service/src/chain_spec/moonriver.rs b/node/service/src/chain_spec/moonriver.rs index bf02bd3148..05214b4056 100644 --- a/node/service/src/chain_spec/moonriver.rs +++ b/node/service/src/chain_spec/moonriver.rs @@ -213,7 +213,7 @@ pub fn testnet_genesis( .collect(), }, pallet_ethereum: EthereumConfig {}, - pallet_democracy: DemocracyConfig {}, + pallet_democracy: DemocracyConfig::default(), pallet_scheduler: SchedulerConfig {}, parachain_staking: ParachainStakingConfig { candidates: candidates diff --git a/node/service/src/chain_spec/moonshadow.rs b/node/service/src/chain_spec/moonshadow.rs index 9c6c533409..9727647488 100644 --- a/node/service/src/chain_spec/moonshadow.rs +++ b/node/service/src/chain_spec/moonshadow.rs @@ -213,7 +213,7 @@ pub fn testnet_genesis( .collect(), }, pallet_ethereum: EthereumConfig {}, - pallet_democracy: DemocracyConfig {}, + pallet_democracy: DemocracyConfig::default(), pallet_scheduler: SchedulerConfig {}, parachain_staking: ParachainStakingConfig { candidates: candidates diff --git a/node/service/src/lib.rs b/node/service/src/lib.rs index 7273dab086..d05578fb0f 100644 --- a/node/service/src/lib.rs +++ b/node/service/src/lib.rs @@ -42,9 +42,7 @@ use cumulus_client_network::build_block_announce_validator; use cumulus_client_service::{ prepare_node_config, start_collator, start_full_node, StartCollatorParams, StartFullNodeParams, }; -use nimbus_consensus::{ - build_filtering_consensus as build_nimbus_consensus, BuildNimbusConsensusParams, -}; +use nimbus_consensus::{build_nimbus_consensus, BuildNimbusConsensusParams}; use nimbus_primitives::NimbusId; // use inherents::build_inherent_data_providers; @@ -440,15 +438,12 @@ where frontier_backend, ) = params.other; - let relay_chain_full_node = cumulus_client_service::build_polkadot_full_node( - polkadot_config, - collator_key.clone(), - telemetry_worker_handle, - ) - .map_err(|e| match e { - polkadot_service::Error::Sub(x) => x, - s => format!("{}", s).into(), - })?; + let relay_chain_full_node = + cumulus_client_service::build_polkadot_full_node(polkadot_config, telemetry_worker_handle) + .map_err(|e| match e { + polkadot_service::Error::Sub(x) => x, + s => format!("{}", s).into(), + })?; let client = params.client.clone(); let backend = params.backend.clone(); @@ -464,7 +459,7 @@ where let transaction_pool = params.transaction_pool.clone(); let mut task_manager = params.task_manager; let import_queue = cumulus_client_service::SharedImportQueue::new(params.import_queue); - let (network, network_status_sinks, system_rpc_tx, start_network) = + let (network, system_rpc_tx, start_network) = sc_service::build_network(sc_service::BuildNetworkParams { config: ¶chain_config, client: client.clone(), @@ -551,7 +546,6 @@ where keystore: params.keystore_container.sync_keystore(), backend: backend.clone(), network: network.clone(), - network_status_sinks, system_rpc_tx, telemetry: telemetry.as_mut(), })?; @@ -615,7 +609,6 @@ where announce_block, client: client.clone(), task_manager: &mut task_manager, - collator_key, spawner, relay_chain_full_node, parachain_consensus, @@ -697,7 +690,7 @@ pub fn new_dev( ), } = new_partial::(&config, true)?; - let (network, network_status_sinks, system_rpc_tx, network_starter) = + let (network, system_rpc_tx, network_starter) = sc_service::build_network(sc_service::BuildNetworkParams { config: &config, client: client.clone(), @@ -894,7 +887,6 @@ pub fn new_dev( on_demand: None, remote_blockchain: None, backend: backend.clone(), - network_status_sinks, system_rpc_tx, config, telemetry: None, diff --git a/pallets/author-mapping/Cargo.toml b/pallets/author-mapping/Cargo.toml index 97817a8e32..c5a43f3c0f 100644 --- a/pallets/author-mapping/Cargo.toml +++ b/pallets/author-mapping/Cargo.toml @@ -7,18 +7,18 @@ description = "Maps AuthorIds to AccountIds Useful for associating consensus aut [dependencies] log = { version = "0.4", default-features = false } -nimbus-primitives = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", default-features = false } +nimbus-primitives = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", default-features = false } parity-scale-codec = { version = "2.0.0", default-features = false, features = ["derive"] } serde = { version = "1.0.101", optional = true } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", default-features = false } [dev-dependencies] -sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", default-features = false } [features] default = ["std"] diff --git a/pallets/ethereum-chain-id/Cargo.toml b/pallets/ethereum-chain-id/Cargo.toml index a7a85cc23a..c968422033 100644 --- a/pallets/ethereum-chain-id/Cargo.toml +++ b/pallets/ethereum-chain-id/Cargo.toml @@ -8,8 +8,8 @@ version = "1.0.0" parity-scale-codec = { version = "2.0.0", default-features = false, features = ["derive"] } serde = { version = "1.0.101", optional = true, features = ["derive"] } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } [features] default = ["std"] diff --git a/pallets/parachain-staking/Cargo.toml b/pallets/parachain-staking/Cargo.toml index 5f85869ae5..a7d818c339 100644 --- a/pallets/parachain-staking/Cargo.toml +++ b/pallets/parachain-staking/Cargo.toml @@ -6,21 +6,21 @@ edition = "2018" description = "parachain staking pallet for collator selection and reward distribution" [dependencies] -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", default-features = false, optional = true } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", default-features = false } +nimbus-primitives = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", default-features = false } log = "0.4" -nimbus-primitives = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", default-features = false } parity-scale-codec = { version = "2.0.0", default-features = false, features = ["derive"] } serde = { version = "1.0.101", optional = true } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", default-features = false } substrate-fixed = { default-features = false, git = "https://github.com/encointer/substrate-fixed" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", default-features = false, optional = true } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", default-features = false } [features] default = ["std"] diff --git a/primitives/account/Cargo.toml b/primitives/account/Cargo.toml index bb85a9681e..bdcabbbcf1 100644 --- a/primitives/account/Cargo.toml +++ b/primitives/account/Cargo.toml @@ -18,13 +18,13 @@ hex = { version = "0.4", default-features = false } sha3 = { version = "0.8", default-features = false } blake2-rfc = { version = "0.2.18", default-features = false, optional = true } -sp-runtime-interface = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } +sp-runtime-interface = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-evm = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.1" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-evm = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.2" } libsecp256k1 = { version = "0.3.2", default-features = false, features = ["hmac"] } [dev-dependencies] diff --git a/primitives/rpc/debug/Cargo.toml b/primitives/rpc/debug/Cargo.toml index e163104548..0d88beb232 100644 --- a/primitives/rpc/debug/Cargo.toml +++ b/primitives/rpc/debug/Cargo.toml @@ -13,11 +13,11 @@ repository = 'https://github.com/PureStake/moonbeam/' codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } ethereum = { version = "0.7.1", default-features = false, features = ["with-codec"] } ethereum-types = { version = "0.11.0", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.3", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.3", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.3", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.3", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.3", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.4", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.4", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.4", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.4", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.4", default-features = false } serde = { version = "1.0", features = ["derive"], optional = true } serde_json = { version = "1.0", optional = true } hex = { version = "0.4", features = ["serde"], optional = true} diff --git a/primitives/rpc/txpool/Cargo.toml b/primitives/rpc/txpool/Cargo.toml index f39a014135..a1d8f016f2 100644 --- a/primitives/rpc/txpool/Cargo.toml +++ b/primitives/rpc/txpool/Cargo.toml @@ -10,10 +10,10 @@ repository = 'https://github.com/PureStake/moonbeam/' [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } ethereum = { version = "0.7.1", default-features = false, features = ["with-codec"] } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", default-features = false } [features] default = ["std"] diff --git a/runtime/evm_tracer/Cargo.toml b/runtime/evm_tracer/Cargo.toml index 4e8302e684..e0ff9c1f35 100644 --- a/runtime/evm_tracer/Cargo.toml +++ b/runtime/evm_tracer/Cargo.toml @@ -8,15 +8,15 @@ license = 'GPL-3.0-only' repository = 'https://github.com/PureStake/moonbeam/' [dependencies] -fp-evm = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.1" } -pallet-evm = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.1" } +fp-evm = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.2" } +pallet-evm = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.2" } evm = { version = "0.27.0", default-features = false, features = ["with-codec", "tracing"] } evm-runtime = { version = "0.27.0", default-features = false, features = ["tracing"] } evm-gasometer = { version = "0.27.0", default-features = false, features = ["tracing"] } -sp-core = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.3" } -sp-std = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.3" } -sp-io = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.3" } -sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.3" } +sp-core = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.4" } +sp-std = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.4" } +sp-io = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.4" } +sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.4" } moonbeam-rpc-primitives-debug = { path = "../../primitives/rpc/debug", default-features = false } ethereum-types = { version = "0.11.0", default-features = false } diff --git a/runtime/moonbase/Cargo.toml b/runtime/moonbase/Cargo.toml index 805bae8d83..ae21c96483 100644 --- a/runtime/moonbase/Cargo.toml +++ b/runtime/moonbase/Cargo.toml @@ -14,77 +14,78 @@ parity-scale-codec = { version = "2.0.0", default-features = false, features = [ log = "0.4" hex-literal = "0.3.1" -pallet-author-inherent = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3", default-features = false } +pallet-author-inherent = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4", default-features = false } precompiles = { path = "../precompiles/", default-features = false } account = { path = "../../primitives/account/", default-features = false } moonbeam-core-primitives = { path = "../../core-primitives", default-features = false } pallet-ethereum-chain-id = { path = "../../pallets/ethereum-chain-id", default-features = false } parachain-staking = { path = "../../pallets/parachain-staking", default-features = false } -pallet-author-slot-filter = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3", default-features = false } -nimbus-primitives = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3", default-features = false } +pallet-author-slot-filter = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4", default-features = false } +nimbus-primitives = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4", default-features = false } pallet-author-mapping = { path = "../../pallets/author-mapping", default-features = false } # Substrate dependencies -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } - -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } - -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-evm = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.1" } -pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } - -pallet-ethereum = { default-features = false, git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } -fp-rpc = { default-features = false, git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } - -pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } - -pallet-crowdloan-rewards = { git = "https://github.com/purestake/crowdloan-rewards", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +max-encoded-len = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4", features = [ "derive" ] } + +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } + +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-evm = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.2" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } + +pallet-ethereum = { default-features = false, git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } +fp-rpc = { default-features = false, git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } + +pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } + +pallet-crowdloan-rewards = { git = "https://github.com/purestake/crowdloan-rewards", default-features = false} moonbeam-evm-tracer = { path = "../evm_tracer", default-features = false } moonbeam-rpc-primitives-debug = { path = "../../primitives/rpc/debug", default-features = false } moonbeam-rpc-primitives-txpool = { path = "../../primitives/rpc/txpool", default-features = false } # Cumulus dependencies -cumulus-pallet-parachain-system = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v9.3" } -cumulus-primitives-core = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v9.3" } -parachain-info = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v9.3" } +cumulus-pallet-parachain-system = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v0.9.4" } +cumulus-primitives-core = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v0.9.4" } +parachain-info = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v0.9.4" } # Benchmarking dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3", optional = true } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3", optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4", optional = true } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4", optional = true } [dev-dependencies] -cumulus-test-relay-sproof-builder = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v9.3" } -cumulus-primitives-parachain-inherent = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v9.3" } +cumulus-test-relay-sproof-builder = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v0.9.4" } +cumulus-primitives-parachain-inherent = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v0.9.4" } evm = { version = "0.27.0", default-features = false, features = ["with-codec"] } rlp = "0.5" hex = "0.4" [build-dependencies] -substrate-wasm-builder = { version = "4.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } +substrate-wasm-builder = { version = "4.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } [features] default = ["std"] @@ -138,6 +139,7 @@ std = [ "pallet-proxy/std", "nimbus-primitives/std", "pallet-author-mapping/std", + "max-encoded-len/std", ] # Will be enabled by the `wasm-builder` when building the runtime for WASM. diff --git a/runtime/moonbase/src/lib.rs b/runtime/moonbase/src/lib.rs index adf54caf47..208c72d87d 100644 --- a/runtime/moonbase/src/lib.rs +++ b/runtime/moonbase/src/lib.rs @@ -119,8 +119,8 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("moonbase"), impl_name: create_runtime_str!("moonbase"), authoring_version: 3, - spec_version: 47, - impl_version: 2, + spec_version: 48, + impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 2, }; @@ -614,7 +614,18 @@ parameter_types! { } /// The type used to represent the kinds of proxying allowed. -#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Encode, Decode, Debug)] +#[derive( + Copy, + Clone, + Eq, + PartialEq, + Ord, + PartialOrd, + Encode, + Decode, + Debug, + max_encoded_len::MaxEncodedLen, +)] pub enum ProxyType { /// All calls can be proxied. This is the trivial/most permissive filter. Any, @@ -712,7 +723,7 @@ construct_runtime! { Ethereum: pallet_ethereum::{Pallet, Call, Storage, Event, Config, ValidateUnsigned}, ParachainStaking: parachain_staking::{Pallet, Call, Storage, Event, Config}, Scheduler: pallet_scheduler::{Pallet, Storage, Config, Event, Call}, - Democracy: pallet_democracy::{Pallet, Storage, Config, Event, Call}, + Democracy: pallet_democracy::{Pallet, Storage, Config, Event, Call}, CouncilCollective: pallet_collective::::{Pallet, Call, Storage, Event, Origin, Config}, TechComitteeCollective: diff --git a/runtime/moonbeam/Cargo.toml b/runtime/moonbeam/Cargo.toml index 03821fcd31..52d7eb554e 100644 --- a/runtime/moonbeam/Cargo.toml +++ b/runtime/moonbeam/Cargo.toml @@ -14,77 +14,78 @@ parity-scale-codec = { version = "2.0.0", default-features = false, features = [ log = "0.4" hex-literal = "0.3.1" -pallet-author-inherent = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3", default-features = false } +pallet-author-inherent = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4", default-features = false } precompiles = { path = "../precompiles/", default-features = false } account = { path = "../../primitives/account/", default-features = false } moonbeam-core-primitives = { path = "../../core-primitives", default-features = false } pallet-ethereum-chain-id = { path = "../../pallets/ethereum-chain-id", default-features = false } parachain-staking = { path = "../../pallets/parachain-staking", default-features = false } -pallet-author-slot-filter = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3", default-features = false } -nimbus-primitives = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3", default-features = false } +pallet-author-slot-filter = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4", default-features = false } +nimbus-primitives = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4", default-features = false } pallet-author-mapping = { path = "../../pallets/author-mapping", default-features = false } # Substrate dependencies -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } - -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } - -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-evm = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.1" } -pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } - -pallet-ethereum = { default-features = false, git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } -fp-rpc = { default-features = false, git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } - -pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } - -pallet-crowdloan-rewards = { git = "https://github.com/purestake/crowdloan-rewards", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +max-encoded-len = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4", features = [ "derive" ] } + +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } + +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-evm = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.2" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } + +pallet-ethereum = { default-features = false, git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } +fp-rpc = { default-features = false, git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } + +pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } + +pallet-crowdloan-rewards = { git = "https://github.com/purestake/crowdloan-rewards", default-features = false} moonbeam-evm-tracer = { path = "../evm_tracer", default-features = false } moonbeam-rpc-primitives-debug = { path = "../../primitives/rpc/debug", default-features = false } moonbeam-rpc-primitives-txpool = { path = "../../primitives/rpc/txpool", default-features = false } # Cumulus dependencies -cumulus-pallet-parachain-system = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v9.3" } -cumulus-primitives-core = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v9.3" } -parachain-info = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v9.3" } +cumulus-pallet-parachain-system = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v0.9.4" } +cumulus-primitives-core = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v0.9.4" } +parachain-info = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v0.9.4" } # Benchmarking dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3", optional = true } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3", optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4", optional = true, version = '3.0.0' } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4", optional = true } [dev-dependencies] -cumulus-test-relay-sproof-builder = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v9.3" } -cumulus-primitives-parachain-inherent = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v9.3" } +cumulus-test-relay-sproof-builder = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v0.9.4" } +cumulus-primitives-parachain-inherent = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v0.9.4" } evm = { version = "0.27.0", default-features = false, features = ["with-codec"] } rlp = "0.5" hex = "0.4" [build-dependencies] -substrate-wasm-builder = { version = "4.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } +substrate-wasm-builder = { version = "4.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } [features] default = ["std"] @@ -138,6 +139,7 @@ std = [ "nimbus-primitives/std", "pallet-author-mapping/std", "pallet-treasury/std", + "max-encoded-len/std" ] # Will be enabled by the `wasm-builder` when building the runtime for WASM. diff --git a/runtime/moonbeam/src/lib.rs b/runtime/moonbeam/src/lib.rs index 02e7904a11..016e067207 100644 --- a/runtime/moonbeam/src/lib.rs +++ b/runtime/moonbeam/src/lib.rs @@ -120,8 +120,8 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("moonbeam"), impl_name: create_runtime_str!("moonbeam"), authoring_version: 3, - spec_version: 48, - impl_version: 2, + spec_version: 49, + impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 2, }; @@ -629,7 +629,18 @@ parameter_types! { } /// The type used to represent the kinds of proxying allowed. -#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Encode, Decode, Debug)] +#[derive( + Copy, + Clone, + Eq, + PartialEq, + Ord, + PartialOrd, + Encode, + Decode, + Debug, + max_encoded_len::MaxEncodedLen, +)] pub enum ProxyType { /// All calls can be proxied. This is the trivial/most permissive filter. Any, @@ -727,7 +738,7 @@ construct_runtime! { Ethereum: pallet_ethereum::{Pallet, Call, Storage, Event, Config, ValidateUnsigned}, ParachainStaking: parachain_staking::{Pallet, Call, Storage, Event, Config}, Scheduler: pallet_scheduler::{Pallet, Storage, Config, Event, Call}, - Democracy: pallet_democracy::{Pallet, Storage, Config, Event, Call}, + Democracy: pallet_democracy::{Pallet, Storage, Config, Event, Call}, CouncilCollective: pallet_collective::::{Pallet, Call, Storage, Event, Origin, Config}, TechComitteeCollective: diff --git a/runtime/moonriver/Cargo.toml b/runtime/moonriver/Cargo.toml index 69f681deeb..50da9ecae9 100644 --- a/runtime/moonriver/Cargo.toml +++ b/runtime/moonriver/Cargo.toml @@ -14,77 +14,78 @@ parity-scale-codec = { version = "2.0.0", default-features = false, features = [ log = "0.4" hex-literal = "0.3.1" -pallet-author-inherent = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3", default-features = false } +pallet-author-inherent = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4", default-features = false } precompiles = { path = "../precompiles/", default-features = false } account = { path = "../../primitives/account/", default-features = false } moonbeam-core-primitives = { path = "../../core-primitives", default-features = false } pallet-ethereum-chain-id = { path = "../../pallets/ethereum-chain-id", default-features = false } parachain-staking = { path = "../../pallets/parachain-staking", default-features = false } -pallet-author-slot-filter = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3", default-features = false } -nimbus-primitives = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3", default-features = false } +pallet-author-slot-filter = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4", default-features = false } +nimbus-primitives = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4", default-features = false } pallet-author-mapping = { path = "../../pallets/author-mapping", default-features = false } # Substrate dependencies -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } - -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } - -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-evm = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.1" } -pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } - -pallet-ethereum = { default-features = false, git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } -fp-rpc = { default-features = false, git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } - -pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } - -pallet-crowdloan-rewards = { git = "https://github.com/purestake/crowdloan-rewards", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +max-encoded-len = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4", features = [ "derive" ] } + +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } + +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-evm = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.2" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } + +pallet-ethereum = { default-features = false, git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } +fp-rpc = { default-features = false, git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } + +pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } + +pallet-crowdloan-rewards = { git = "https://github.com/purestake/crowdloan-rewards", default-features = false} moonbeam-evm-tracer = { path = "../evm_tracer", default-features = false } moonbeam-rpc-primitives-debug = { path = "../../primitives/rpc/debug", default-features = false } moonbeam-rpc-primitives-txpool = { path = "../../primitives/rpc/txpool", default-features = false } # Cumulus dependencies -cumulus-pallet-parachain-system = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v9.3" } -cumulus-primitives-core = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v9.3" } -parachain-info = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v9.3" } +cumulus-pallet-parachain-system = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v0.9.4" } +cumulus-primitives-core = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v0.9.4" } +parachain-info = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v0.9.4" } # Benchmarking dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3", optional = true } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3", optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4", optional = true } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4", optional = true } [dev-dependencies] -cumulus-test-relay-sproof-builder = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v9.3" } -cumulus-primitives-parachain-inherent = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v9.3" } +cumulus-test-relay-sproof-builder = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v0.9.4" } +cumulus-primitives-parachain-inherent = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v0.9.4" } evm = { version = "0.27.0", default-features = false, features = ["with-codec"] } rlp = "0.5" hex = "0.4" [build-dependencies] -substrate-wasm-builder = { version = "4.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } +substrate-wasm-builder = { version = "4.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } [features] default = ["std"] @@ -138,6 +139,7 @@ std = [ "nimbus-primitives/std", "pallet-author-mapping/std", "pallet-treasury/std", + "max-encoded-len/std" ] # Will be enabled by the `wasm-builder` when building the runtime for WASM. diff --git a/runtime/moonriver/src/lib.rs b/runtime/moonriver/src/lib.rs index e376bc95bd..2baf6d7331 100644 --- a/runtime/moonriver/src/lib.rs +++ b/runtime/moonriver/src/lib.rs @@ -122,8 +122,8 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("moonriver"), impl_name: create_runtime_str!("moonriver"), authoring_version: 3, - spec_version: 49, - impl_version: 2, + spec_version: 50, + impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 2, }; @@ -632,7 +632,18 @@ parameter_types! { } /// The type used to represent the kinds of proxying allowed. -#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Encode, Decode, Debug)] +#[derive( + Copy, + Clone, + Eq, + PartialEq, + Ord, + PartialOrd, + Encode, + Decode, + Debug, + max_encoded_len::MaxEncodedLen, +)] pub enum ProxyType { /// All calls can be proxied. This is the trivial/most permissive filter. Any, @@ -747,7 +758,7 @@ construct_runtime! { // Governance stuff. Scheduler: pallet_scheduler::{Pallet, Storage, Config, Event, Call} = 60, - Democracy: pallet_democracy::{Pallet, Storage, Config, Event, Call} = 61, + Democracy: pallet_democracy::{Pallet, Storage, Config, Event, Call} = 61, // Council stuff. CouncilCollective: diff --git a/runtime/moonshadow/Cargo.toml b/runtime/moonshadow/Cargo.toml index 6adf2e6703..ae96540be7 100644 --- a/runtime/moonshadow/Cargo.toml +++ b/runtime/moonshadow/Cargo.toml @@ -14,52 +14,53 @@ parity-scale-codec = { version = "2.0.0", default-features = false, features = [ log = "0.4" hex-literal = "0.3.1" -pallet-author-inherent = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3", default-features = false } +pallet-author-inherent = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4", default-features = false } precompiles = { path = "../precompiles/", default-features = false } account = { path = "../../primitives/account/", default-features = false } moonbeam-core-primitives = { path = "../../core-primitives", default-features = false } pallet-ethereum-chain-id = { path = "../../pallets/ethereum-chain-id", default-features = false } parachain-staking = { path = "../../pallets/parachain-staking", default-features = false } -pallet-author-slot-filter = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3", default-features = false } -nimbus-primitives = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v9.3", default-features = false } +pallet-author-slot-filter = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4", default-features = false } +nimbus-primitives = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.4", default-features = false } pallet-author-mapping = { path = "../../pallets/author-mapping", default-features = false } # Substrate dependencies -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } - -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } - -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-evm = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.1" } -pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } - -pallet-ethereum = { default-features = false, git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } -fp-rpc = { default-features = false, git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.1" } - -pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +max-encoded-len = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4", features = [ "derive" ] } + +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } + +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-evm = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.2" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } + +pallet-ethereum = { default-features = false, git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } +fp-rpc = { default-features = false, git = "https://github.com/purestake/frontier", branch = "moonbeam-v0.8.2" } + +pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } pallet-crowdloan-rewards = { git = "https://github.com/purestake/crowdloan-rewards", default-features = false} @@ -68,23 +69,23 @@ moonbeam-rpc-primitives-debug = { path = "../../primitives/rpc/debug", default-f moonbeam-rpc-primitives-txpool = { path = "../../primitives/rpc/txpool", default-features = false } # Cumulus dependencies -cumulus-pallet-parachain-system = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v9.3" } -cumulus-primitives-core = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v9.3" } -parachain-info = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v9.3" } +cumulus-pallet-parachain-system = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v0.9.4" } +cumulus-primitives-core = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v0.9.4" } +parachain-info = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v0.9.4" } # Benchmarking dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3", optional = true } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3", optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4", optional = true } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4", optional = true } [dev-dependencies] -cumulus-test-relay-sproof-builder = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v9.3" } -cumulus-primitives-parachain-inherent = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v9.3" } +cumulus-test-relay-sproof-builder = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v0.9.4" } +cumulus-primitives-parachain-inherent = { git = "https://github.com/purestake/cumulus", default-features = false, branch = "nimbus-polkadot-v0.9.4" } evm = { version = "0.27.0", default-features = false, features = ["with-codec"] } rlp = "0.5" hex = "0.4" [build-dependencies] -substrate-wasm-builder = { version = "4.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3" } +substrate-wasm-builder = { version = "4.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4" } [features] default = ["std"] @@ -138,6 +139,7 @@ std = [ "nimbus-primitives/std", "pallet-author-mapping/std", "pallet-treasury/std", + "max-encoded-len/std" ] # Will be enabled by the `wasm-builder` when building the runtime for WASM. diff --git a/runtime/moonshadow/src/lib.rs b/runtime/moonshadow/src/lib.rs index dce54a2cde..a0f7643458 100644 --- a/runtime/moonshadow/src/lib.rs +++ b/runtime/moonshadow/src/lib.rs @@ -119,8 +119,8 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("moonshadow"), impl_name: create_runtime_str!("moonshadow"), authoring_version: 3, - spec_version: 48, - impl_version: 2, + spec_version: 49, + impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 2, }; @@ -628,7 +628,18 @@ parameter_types! { } /// The type used to represent the kinds of proxying allowed. -#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Encode, Decode, Debug)] +#[derive( + Copy, + Clone, + Eq, + PartialEq, + Ord, + PartialOrd, + Encode, + Decode, + Debug, + max_encoded_len::MaxEncodedLen, +)] pub enum ProxyType { /// All calls can be proxied. This is the trivial/most permissive filter. Any, @@ -726,7 +737,7 @@ construct_runtime! { Ethereum: pallet_ethereum::{Pallet, Call, Storage, Event, Config, ValidateUnsigned}, ParachainStaking: parachain_staking::{Pallet, Call, Storage, Event, Config}, Scheduler: pallet_scheduler::{Pallet, Storage, Config, Event, Call}, - Democracy: pallet_democracy::{Pallet, Storage, Config, Event, Call}, + Democracy: pallet_democracy::{Pallet, Storage, Config, Event, Call}, CouncilCollective: pallet_collective::::{Pallet, Call, Storage, Event, Origin, Config}, TechComitteeCollective: diff --git a/runtime/precompiles/Cargo.toml b/runtime/precompiles/Cargo.toml index b14c73cc43..b535d7ba24 100644 --- a/runtime/precompiles/Cargo.toml +++ b/runtime/precompiles/Cargo.toml @@ -9,19 +9,19 @@ log = "0.4" rustc-hex = { version = "2.0.1", default-features = false } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.3", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.4", default-features = false } evm = { version = "0.27.0", default-features = false, features = ["with-codec"] } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } -pallet-evm = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.1" } -pallet-evm-precompile-bn128 = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.1" } -pallet-evm-precompile-dispatch = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.1" } -pallet-evm-precompile-modexp = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.1" } -pallet-evm-precompile-simple = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.1" } -pallet-evm-precompile-sha3fips = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.1" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } +pallet-evm = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.2" } +pallet-evm-precompile-bn128 = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.2" } +pallet-evm-precompile-dispatch = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.2" } +pallet-evm-precompile-modexp = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.2" } +pallet-evm-precompile-simple = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.2" } +pallet-evm-precompile-sha3fips = { git = "https://github.com/purestake/frontier", default-features = false, branch = "moonbeam-v0.8.2" } parachain-staking = { path = "../../pallets/parachain-staking", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.3" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.4" } [dev-dependencies] hex = "0.4" diff --git a/rust-toolchain b/rust-toolchain index 726f81ab67..ae16315aa3 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -1,5 +1,5 @@ [toolchain] -channel = "nightly-2021-01-13" +channel = "nightly-2021-02-24" components = [ "rustfmt", "clippy" ] targets = [ "wasm32-unknown-unknown" ] profile = "minimal" diff --git a/specs/alphanet/parachain-specs-template.json b/specs/alphanet/parachain-specs-template.json index 836490912a..8076a8d1cf 100644 --- a/specs/alphanet/parachain-specs-template.json +++ b/specs/alphanet/parachain-specs-template.json @@ -149,7 +149,9 @@ ], "nominations": [] }, - "palletDemocracy": {}, + "palletDemocracy": { + "phantom": null + }, "palletCollectiveInstance1": { "phantom": null, "members": [ diff --git a/tests/tests/test-fork-chain.ts b/tests/tests/test-fork-chain.ts index c263c4ecf8..a3e81bf1de 100644 --- a/tests/tests/test-fork-chain.ts +++ b/tests/tests/test-fork-chain.ts @@ -44,19 +44,12 @@ describeDevMoonbeam("Fork", (context) => { // Fork 4 blocks 0-1-2-3-4 let parentHash = await context.polkadotApi.rpc.chain.getBlockHash(0); - parentHash = (await context.createBlock({ parentHash, finalize: false })).block.hash; - parentHash = (await context.createBlock({ parentHash, finalize: false })).block.hash; - // This next block defines a new best chain. - // Substrate will insert the retracted block's txs in the tx pool - parentHash = (await context.createBlock({ parentHash, finalize: false })).block.hash; - // All the transactions that were in the pool are now on-chain - parentHash = (await context.createBlock({ parentHash, finalize: true })).block.hash; + // Create enough blocks to ensure the TX is re-scheduled and that chain is new best + for (let i = 0; i < 10; i++) { + parentHash = (await context.createBlock({ parentHash, finalize: false })).block.hash; + } const finalTx = await context.web3.eth.getTransaction(insertedTx); - const currentHeight = await context.web3.eth.getBlockNumber(); - // The Tx should have been inserted in the last block - expect(finalTx.blockNumber).to.equal(currentHeight); - // The Tx should have the hash of the latest canonical chain - expect(finalTx.blockHash).to.not.equal(retractedTx.blockHash); - expect(finalTx.blockHash).to.equal((await context.web3.eth.getBlock(currentHeight)).hash); + // The Tx should have been inserted in the new best chain + expect(finalTx.blockNumber).to.be.greaterThan(retractedTx.blockNumber); }); });