From e1f6893ee827a1a4f9039fbf85694d56e7d1226a Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Mon, 27 Nov 2023 20:03:51 +0100 Subject: [PATCH 01/15] metamask integration - ExtendedCall trait --- Cargo.lock | 874 ++++++++++++++++++++---------- Cargo.toml | 844 +++++++++++++++++++---------- runtime/mangata-kusama/src/lib.rs | 7 + runtime/mangata-rococo/src/lib.rs | 7 + 4 files changed, 1156 insertions(+), 576 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0cefda0f47..360e4d1d36 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -494,7 +494,7 @@ dependencies = [ "ark-std", "digest 0.10.7", "rand_core 0.6.4", - "sha3", + "sha3 0.10.8", ] [[package]] @@ -787,6 +787,17 @@ dependencies = [ "syn 2.0.39", ] +[[package]] +name = "async_io_stream" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6d7b9decdf35d8908a7e3ef02f64c5e9b1695e230154c0e8de3969142d9b94c" +dependencies = [ + "futures", + "pharos", + "rustc_version", +] + [[package]] name = "asynchronous-codec" version = "0.6.2" @@ -823,6 +834,18 @@ dependencies = [ "winapi", ] +[[package]] +name = "auto_impl" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fee3da8ef1276b0bee5dd1c7258010d8fffd31801447323115a25560e1327b89" +dependencies = [ + "proc-macro-error", + "proc-macro2", + "quote", + "syn 1.0.109", +] + [[package]] name = "autocfg" version = "1.1.0" @@ -914,7 +937,6 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "hash-db", "log", @@ -1061,6 +1083,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" dependencies = [ + "block-padding 0.2.1", "generic-array 0.14.7", ] @@ -1215,6 +1238,9 @@ name = "bytes" version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" +dependencies = [ + "serde", +] [[package]] name = "bzip2-sys" @@ -1259,6 +1285,20 @@ dependencies = [ "thiserror", ] +[[package]] +name = "cargo_metadata" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037" +dependencies = [ + "camino", + "cargo-platform", + "semver 1.0.20", + "serde", + "serde_json", + "thiserror", +] + [[package]] name = "cc" version = "1.0.83" @@ -1639,6 +1679,19 @@ dependencies = [ "windows-sys 0.45.0", ] +[[package]] +name = "const-hex" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5104de16b218eddf8e34ffe2f86f74bfa4e61e95a1b89732fccf6325efd0557" +dependencies = [ + "cfg-if", + "cpufeatures", + "hex", + "proptest", + "serde", +] + [[package]] name = "const-oid" version = "0.9.5" @@ -1983,7 +2036,6 @@ dependencies = [ [[package]] name = "cumulus-client-cli" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "clap", "parity-scale-codec", @@ -1999,7 +2051,6 @@ dependencies = [ [[package]] name = "cumulus-client-collator" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "cumulus-client-consensus-common", "cumulus-client-network", @@ -2022,7 +2073,6 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-aura" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "cumulus-client-collator", @@ -2065,7 +2115,6 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-common" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "cumulus-client-pov-recovery", @@ -2094,7 +2143,6 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-proposer" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "anyhow", "async-trait", @@ -2109,7 +2157,6 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-relay-chain" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "cumulus-client-consensus-common", @@ -2132,7 +2179,6 @@ dependencies = [ [[package]] name = "cumulus-client-network" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "cumulus-relay-chain-interface", @@ -2155,7 +2201,6 @@ dependencies = [ [[package]] name = "cumulus-client-pov-recovery" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2179,7 +2224,6 @@ dependencies = [ [[package]] name = "cumulus-client-service" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "cumulus-client-cli", "cumulus-client-collator", @@ -2214,7 +2258,6 @@ dependencies = [ [[package]] name = "cumulus-pallet-aura-ext" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -2232,7 +2275,6 @@ dependencies = [ [[package]] name = "cumulus-pallet-dmp-queue" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2250,7 +2292,6 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "bytes", "cumulus-pallet-parachain-system-proc-macro", @@ -2281,7 +2322,6 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system-proc-macro" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2292,7 +2332,6 @@ dependencies = [ [[package]] name = "cumulus-pallet-session-benchmarking" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -2306,7 +2345,6 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcm" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2322,7 +2360,6 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcmp-queue" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "cumulus-primitives-core", "frame-benchmarking", @@ -2344,7 +2381,6 @@ dependencies = [ [[package]] name = "cumulus-primitives-aura" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2358,7 +2394,6 @@ dependencies = [ [[package]] name = "cumulus-primitives-core" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2375,7 +2410,6 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2398,7 +2432,6 @@ dependencies = [ [[package]] name = "cumulus-primitives-timestamp" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "cumulus-primitives-core", "futures", @@ -2411,7 +2444,6 @@ dependencies = [ [[package]] name = "cumulus-primitives-utility" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2429,7 +2461,6 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-inprocess-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2453,7 +2484,6 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2471,7 +2501,6 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-minimal-node" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "array-bytes", "async-trait", @@ -2506,7 +2535,6 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-rpc-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2544,7 +2572,6 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", @@ -3001,6 +3028,12 @@ version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653" +[[package]] +name = "dunce" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b" + [[package]] name = "dyn-clonable" version = "0.9.0" @@ -3183,6 +3216,33 @@ version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" +[[package]] +name = "encoding_rs" +version = "0.8.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "enr" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe81b5c06ecfdbc71dd845216f225f53b62a10cb8a16c946836a3467f701d05b" +dependencies = [ + "base64 0.21.5", + "bytes", + "hex", + "k256", + "log", + "rand 0.8.5", + "rlp", + "serde", + "sha3 0.10.8", + "zeroize", +] + [[package]] name = "enum-as-inner" version = "0.5.1" @@ -3274,6 +3334,177 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "ethabi" +version = "18.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7413c5f74cc903ea37386a8965a936cbeb334bd270862fdece542c1b2dcbc898" +dependencies = [ + "ethereum-types", + "hex", + "once_cell", + "regex", + "serde", + "serde_json", + "sha3 0.10.8", + "thiserror", + "uint", +] + +[[package]] +name = "ethbloom" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c22d4b5885b6aa2fe5e8b9329fb8d232bf739e434e6b87347c63bdd00c120f60" +dependencies = [ + "crunchy", + "fixed-hash", + "impl-codec", + "impl-rlp", + "impl-serde", + "scale-info", + "tiny-keccak", +] + +[[package]] +name = "ethereum-types" +version = "0.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02d215cbf040552efcbe99a38372fe80ab9d00268e20012b79fcd0f073edd8ee" +dependencies = [ + "ethbloom", + "fixed-hash", + "impl-codec", + "impl-rlp", + "impl-serde", + "primitive-types", + "scale-info", + "uint", +] + +[[package]] +name = "ethers-contract" +version = "2.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0111ead599d17a7bff6985fd5756f39ca7033edc79a31b23026a8d5d64fa95cd" +dependencies = [ + "const-hex", + "ethers-contract-abigen", + "ethers-contract-derive", + "ethers-core", + "ethers-providers", + "futures-util", + "once_cell", + "pin-project", + "serde", + "serde_json", + "thiserror", +] + +[[package]] +name = "ethers-contract-abigen" +version = "2.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51258120c6b47ea9d9bec0d90f9e8af71c977fbefbef8213c91bfed385fe45eb" +dependencies = [ + "Inflector", + "const-hex", + "dunce", + "ethers-core", + "eyre", + "prettyplease 0.2.15", + "proc-macro2", + "quote", + "regex", + "serde", + "serde_json", + "syn 2.0.39", + "toml 0.8.8", + "walkdir", +] + +[[package]] +name = "ethers-contract-derive" +version = "2.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "936e7a0f1197cee2b62dc89f63eff3201dbf87c283ff7e18d86d38f83b845483" +dependencies = [ + "Inflector", + "const-hex", + "ethers-contract-abigen", + "ethers-core", + "proc-macro2", + "quote", + "serde_json", + "syn 2.0.39", +] + +[[package]] +name = "ethers-core" +version = "2.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f03e0bdc216eeb9e355b90cf610ef6c5bb8aca631f97b5ae9980ce34ea7878d" +dependencies = [ + "arrayvec 0.7.4", + "bytes", + "cargo_metadata 0.18.1", + "chrono", + "const-hex", + "elliptic-curve 0.13.8", + "ethabi", + "generic-array 0.14.7", + "k256", + "num_enum", + "once_cell", + "open-fastrlp", + "rand 0.8.5", + "rlp", + "serde", + "serde_json", + "strum 0.25.0", + "syn 2.0.39", + "tempfile", + "thiserror", + "tiny-keccak", + "unicode-xid", +] + +[[package]] +name = "ethers-providers" +version = "2.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25d6c0c9455d93d4990c06e049abf9b30daf148cf461ee939c11d88907c60816" +dependencies = [ + "async-trait", + "auto_impl", + "base64 0.21.5", + "bytes", + "const-hex", + "enr", + "ethers-core", + "futures-core", + "futures-timer", + "futures-util", + "hashers", + "http", + "instant", + "jsonwebtoken", + "once_cell", + "pin-project", + "reqwest", + "serde", + "serde_json", + "thiserror", + "tokio", + "tracing", + "tracing-futures", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "ws_stream_wasm", +] + [[package]] name = "event-listener" version = "2.5.3" @@ -3350,7 +3581,6 @@ dependencies = [ [[package]] name = "extrinsic-shuffler" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "derive_more", "log", @@ -3363,6 +3593,16 @@ dependencies = [ "ver-api", ] +[[package]] +name = "eyre" +version = "0.6.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "80f656be11ddf91bd709454d15d5bd896fbaf4cc3314e69349e4d1569f5b46cd" +dependencies = [ + "indenter", + "once_cell", +] + [[package]] name = "fake-simd" version = "0.1.2" @@ -3548,7 +3788,6 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "parity-scale-codec", ] @@ -3571,7 +3810,6 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-support", "frame-support-procedural", @@ -3596,7 +3834,6 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "Inflector", "array-bytes", @@ -3650,7 +3887,6 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -3661,7 +3897,6 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -3678,7 +3913,6 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -3712,7 +3946,6 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-recursion", "futures", @@ -3734,7 +3967,6 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "aquamarine 0.3.2", "bitflags 1.3.2", @@ -3775,7 +4007,6 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "Inflector", "cfg-expr", @@ -3793,7 +4024,6 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3805,7 +4035,6 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "proc-macro2", "quote", @@ -3815,7 +4044,6 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "cfg-if", "extrinsic-shuffler", @@ -3836,7 +4064,6 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -3851,7 +4078,6 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "parity-scale-codec", "sp-api", @@ -3860,7 +4086,6 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-support", "parity-scale-codec", @@ -4021,6 +4246,10 @@ name = "futures-timer" version = "3.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c" +dependencies = [ + "gloo-timers", + "send_wrapper 0.4.0", +] [[package]] name = "futures-util" @@ -4157,6 +4386,18 @@ dependencies = [ "regex", ] +[[package]] +name = "gloo-timers" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" +dependencies = [ + "futures-channel", + "futures-core", + "js-sys", + "wasm-bindgen", +] + [[package]] name = "group" version = "0.12.1" @@ -4256,6 +4497,15 @@ dependencies = [ "serde", ] +[[package]] +name = "hashers" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2bca93b15ea5a746f220e56587f71e73c6165eab783df9e26590069953e3c30" +dependencies = [ + "fxhash", +] + [[package]] name = "heck" version = "0.4.1" @@ -4539,6 +4789,15 @@ dependencies = [ "parity-scale-codec", ] +[[package]] +name = "impl-rlp" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f28220f89297a075ddc7245cd538076ee98b01f2a9c23a53a4f1105d5a322808" +dependencies = [ + "rlp", +] + [[package]] name = "impl-serde" version = "0.4.0" @@ -4578,6 +4837,12 @@ dependencies = [ "quote", ] +[[package]] +name = "indenter" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683" + [[package]] name = "indexmap" version = "1.9.3" @@ -4920,6 +5185,20 @@ dependencies = [ "jsonrpsee-types", ] +[[package]] +name = "jsonwebtoken" +version = "8.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6971da4d9c3aa03c3d8f3ff0f4155b534aad021292003895a469716b2a230378" +dependencies = [ + "base64 0.21.5", + "pem", + "ring 0.16.20", + "serde", + "serde_json", + "simple_asn1", +] + [[package]] name = "k256" version = "0.13.2" @@ -4931,6 +5210,7 @@ dependencies = [ "elliptic-curve 0.13.8", "once_cell", "sha2 0.10.8", + "signature 2.2.0", ] [[package]] @@ -4945,7 +5225,6 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-support", "polkadot-primitives", @@ -5992,7 +6271,6 @@ dependencies = [ [[package]] name = "mangata-support" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-support", "mangata-types", @@ -6005,7 +6283,6 @@ dependencies = [ [[package]] name = "mangata-types" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "parity-scale-codec", "scale-info", @@ -6156,6 +6433,12 @@ dependencies = [ "thrift", ] +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + [[package]] name = "minimal-lexical" version = "0.2.1" @@ -6185,7 +6468,6 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "futures", "log", @@ -6204,7 +6486,6 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "anyhow", "jsonrpsee", @@ -6287,7 +6568,7 @@ dependencies = [ "digest 0.10.7", "multihash-derive", "sha2 0.10.8", - "sha3", + "sha3 0.10.8", "unsigned-varint", ] @@ -6538,6 +6819,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" dependencies = [ "autocfg", + "libm 0.2.8", ] [[package]] @@ -6550,6 +6832,27 @@ dependencies = [ "libc", ] +[[package]] +name = "num_enum" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "683751d591e6d81200c39fb0d1032608b77724f34114db54f571ff1317b337c0" +dependencies = [ + "num_enum_derive", +] + +[[package]] +name = "num_enum_derive" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c11e44798ad209ccdd91fc192f0526a369a01234f7373e1b141c96d7cee4f0e" +dependencies = [ + "proc-macro-crate", + "proc-macro2", + "quote", + "syn 2.0.39", +] + [[package]] name = "number_prefix" version = "0.4.0" @@ -6613,6 +6916,31 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" +[[package]] +name = "open-fastrlp" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "786393f80485445794f6043fd3138854dd109cc6c4bd1a6383db304c9ce9b9ce" +dependencies = [ + "arrayvec 0.7.4", + "auto_impl", + "bytes", + "ethereum-types", + "open-fastrlp-derive", +] + +[[package]] +name = "open-fastrlp-derive" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "003b2be5c6c53c1cfeb0a238b8a1c3915cd410feb684457a36c10038f764bb1c" +dependencies = [ + "bytes", + "proc-macro2", + "quote", + "syn 1.0.109", +] + [[package]] name = "openssl-probe" version = "0.1.5" @@ -6826,7 +7154,6 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -6844,7 +7171,6 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -6860,7 +7186,6 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-support", "frame-system", @@ -6877,7 +7202,6 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-support", "frame-system", @@ -6893,7 +7217,6 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-support", "frame-system", @@ -6907,7 +7230,6 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -6931,7 +7253,6 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "aquamarine 0.3.2", "docify", @@ -6953,7 +7274,6 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -6968,7 +7288,6 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-support", "frame-system", @@ -6988,7 +7307,6 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -7045,7 +7363,6 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7063,7 +7380,6 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7082,7 +7398,6 @@ dependencies = [ [[package]] name = "pallet-collator-selection" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7101,7 +7416,6 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7118,7 +7432,6 @@ dependencies = [ [[package]] name = "pallet-collective-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7135,7 +7448,6 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7176,7 +7488,6 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7194,7 +7505,6 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7217,7 +7527,6 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7231,7 +7540,6 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7250,7 +7558,6 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "docify", "frame-benchmarking", @@ -7298,7 +7605,6 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7321,7 +7627,6 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7337,7 +7642,6 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7357,7 +7661,6 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7426,7 +7729,6 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7443,7 +7745,6 @@ dependencies = [ [[package]] name = "pallet-message-queue" version = "7.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7462,7 +7763,6 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7510,7 +7810,6 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7526,7 +7825,6 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7542,7 +7840,6 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-support", "frame-system", @@ -7561,7 +7858,6 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7581,7 +7877,6 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -7592,7 +7887,6 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-support", "frame-system", @@ -7609,7 +7903,6 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7633,7 +7926,6 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7685,7 +7977,6 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7700,7 +7991,6 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7718,7 +8008,6 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7733,7 +8022,6 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7752,7 +8040,6 @@ dependencies = [ [[package]] name = "pallet-root-testing" version = "1.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-support", "frame-system", @@ -7767,7 +8054,6 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "docify", "frame-benchmarking", @@ -7785,7 +8071,6 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-support", "frame-system", @@ -7807,7 +8092,6 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7824,7 +8108,6 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7842,7 +8125,6 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7865,7 +8147,6 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -7876,7 +8157,6 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "log", "sp-arithmetic", @@ -7885,7 +8165,6 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "parity-scale-codec", "sp-api", @@ -7894,7 +8173,6 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7911,7 +8189,6 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7926,7 +8203,6 @@ dependencies = [ [[package]] name = "pallet-sudo-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7959,7 +8235,6 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7978,7 +8253,6 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -7997,7 +8271,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-support", "frame-system", @@ -8013,7 +8286,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-support", "frame-system", @@ -8029,7 +8301,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "jsonrpsee", "pallet-transaction-payment-mangata-rpc-runtime-api", @@ -8045,7 +8316,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "pallet-transaction-payment-mangata", "parity-scale-codec", @@ -8057,7 +8327,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -8073,7 +8342,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -8085,7 +8353,6 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -8102,7 +8369,6 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -8118,7 +8384,6 @@ dependencies = [ [[package]] name = "pallet-utility-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -8134,7 +8399,6 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -8149,7 +8413,6 @@ dependencies = [ [[package]] name = "pallet-vesting-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -8164,7 +8427,6 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -8179,7 +8441,6 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "bounded-collections", "frame-benchmarking", @@ -8200,7 +8461,6 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-benchmarking", "frame-support", @@ -8255,7 +8515,6 @@ dependencies = [ [[package]] name = "parachain-info" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -8300,7 +8559,6 @@ dependencies = [ [[package]] name = "parachains-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-utility", @@ -8595,6 +8853,16 @@ dependencies = [ "indexmap 2.1.0", ] +[[package]] +name = "pharos" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9567389417feee6ce15dd6527a8a1ecac205ef62c2932bcf3d9f6fc5b78b414" +dependencies = [ + "futures", + "rustc_version", +] + [[package]] name = "pin-project" version = "1.1.3" @@ -8679,7 +8947,6 @@ checksum = "14e6ab3f592e6fb464fc9712d8d6e6912de6473954635fd76a589d832cffcbb0" [[package]] name = "polkadot-approval-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "futures", "futures-timer", @@ -8697,7 +8964,6 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "always-assert", "futures", @@ -8713,7 +8979,6 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "derive_more", "fatality", @@ -8736,7 +9001,6 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "fatality", "futures", @@ -8757,7 +9021,6 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "clap", "frame-benchmarking-cli", @@ -8784,7 +9047,6 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "bitvec", "fatality", @@ -8806,7 +9068,6 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "parity-scale-codec", "scale-info", @@ -8818,7 +9079,6 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "derive_more", "fatality", @@ -8843,7 +9103,6 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -8857,7 +9116,6 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "futures", "futures-timer", @@ -8878,7 +9136,6 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "always-assert", "async-trait", @@ -8901,7 +9158,6 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "futures", "parity-scale-codec", @@ -8919,7 +9175,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "bitvec", "derive_more", @@ -8948,7 +9203,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "bitvec", "futures", @@ -8970,7 +9224,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "bitvec", "fatality", @@ -8989,7 +9242,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "futures", "polkadot-node-subsystem", @@ -9004,7 +9256,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "futures", @@ -9025,7 +9276,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "futures", "polkadot-node-metrics", @@ -9040,7 +9290,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "futures", "futures-timer", @@ -9057,7 +9306,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "fatality", "futures", @@ -9076,7 +9324,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "futures", @@ -9093,7 +9340,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-prospective-parachains" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "bitvec", "fatality", @@ -9110,7 +9356,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "bitvec", "fatality", @@ -9127,7 +9372,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "always-assert", "futures", @@ -9155,7 +9399,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "futures", "polkadot-node-primitives", @@ -9171,7 +9414,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "cpu-time", "futures", @@ -9194,7 +9436,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-prepare-worker" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "futures", "libc", @@ -9217,7 +9458,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "futures", "polkadot-node-metrics", @@ -9232,7 +9472,6 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "lazy_static", "log", @@ -9250,7 +9489,6 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "bs58 0.5.0", "futures", @@ -9269,7 +9507,6 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-channel 1.9.0", "async-trait", @@ -9293,7 +9530,6 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "bounded-vec", "futures", @@ -9315,7 +9551,6 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -9325,7 +9560,6 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "derive_more", @@ -9349,7 +9583,6 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "derive_more", @@ -9382,7 +9615,6 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "futures", @@ -9405,7 +9637,6 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "bounded-collections", "derive_more", @@ -9422,7 +9653,6 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "env_logger 0.9.3", "log", @@ -9440,7 +9670,6 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "bitvec", "hex-literal 0.4.1", @@ -9466,7 +9695,6 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "jsonrpsee", "mmr-rpc", @@ -9498,7 +9726,6 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "bitvec", "frame-benchmarking", @@ -9595,7 +9822,6 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "bitvec", "frame-benchmarking", @@ -9641,7 +9867,6 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-support", "polkadot-primitives", @@ -9655,7 +9880,6 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "bs58 0.5.0", "frame-benchmarking", @@ -9668,7 +9892,6 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "bitflags 1.3.2", "bitvec", @@ -9714,7 +9937,6 @@ dependencies = [ [[package]] name = "polkadot-service" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "frame-benchmarking", @@ -9835,7 +10057,6 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "arrayvec 0.7.4", "bitvec", @@ -9859,7 +10080,6 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -10007,6 +10227,7 @@ checksum = "0b34d9fd68ae0b74a41b21c03c2f62847aa0ffea044eee893b4c140b37e244e2" dependencies = [ "fixed-hash", "impl-codec", + "impl-rlp", "impl-serde", "scale-info", "uint", @@ -10035,7 +10256,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" dependencies = [ "once_cell", - "toml_edit", + "toml_edit 0.19.15", ] [[package]] @@ -10119,6 +10340,22 @@ dependencies = [ "syn 2.0.39", ] +[[package]] +name = "proptest" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31b476131c3c86cb68032fdc5cb6d5a1045e3e42d96b69fa599fd77701e1f5bf" +dependencies = [ + "bitflags 2.4.1", + "lazy_static", + "num-traits", + "rand 0.8.5", + "rand_chacha 0.3.1", + "rand_xorshift", + "regex-syntax 0.8.2", + "unarray", +] + [[package]] name = "prost" version = "0.11.9" @@ -10334,6 +10571,15 @@ dependencies = [ "rand_core 0.6.4", ] +[[package]] +name = "rand_xorshift" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" +dependencies = [ + "rand_core 0.6.4", +] + [[package]] name = "rawpointer" version = "0.2.1" @@ -10512,6 +10758,41 @@ version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" +[[package]] +name = "reqwest" +version = "0.11.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b" +dependencies = [ + "base64 0.21.5", + "bytes", + "encoding_rs", + "futures-core", + "futures-util", + "h2", + "http", + "http-body", + "hyper", + "ipnet", + "js-sys", + "log", + "mime", + "once_cell", + "percent-encoding", + "pin-project-lite 0.2.13", + "serde", + "serde_json", + "serde_urlencoded", + "system-configuration", + "tokio", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "winreg", +] + [[package]] name = "resolv-conf" version = "0.7.0" @@ -10587,6 +10868,28 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "rlp" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb919243f34364b6bd2fc10ef797edbfa75f33c252e7998527479c6d6b47e1ec" +dependencies = [ + "bytes", + "rlp-derive", + "rustc-hex", +] + +[[package]] +name = "rlp-derive" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e33d7b2abe0c340d8797fe2907d3f20d3b5ea5908683618bfe80df7f621f672a" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + [[package]] name = "rocksdb" version = "0.21.0" @@ -10600,7 +10903,6 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "binary-merkle-tree", "frame-benchmarking", @@ -10688,7 +10990,6 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-support", "polkadot-primitives", @@ -11009,7 +11310,6 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "log", "sp-core", @@ -11020,7 +11320,6 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "futures", @@ -11048,7 +11347,6 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "futures", "futures-timer", @@ -11071,7 +11369,6 @@ dependencies = [ [[package]] name = "sc-basic-authorship-ver" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "aquamarine 0.3.2", "futures", @@ -11097,7 +11394,6 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -11112,7 +11408,6 @@ dependencies = [ [[package]] name = "sc-block-builder-ver" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -11132,7 +11427,6 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -11151,7 +11445,6 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11162,7 +11455,6 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "array-bytes", "chrono", @@ -11201,7 +11493,6 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "fnv", "futures", @@ -11227,7 +11518,6 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "hash-db", "kvdb", @@ -11253,7 +11543,6 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "futures", @@ -11278,7 +11567,6 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "futures", @@ -11307,7 +11595,6 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "fork-tree", @@ -11343,7 +11630,6 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "futures", "jsonrpsee", @@ -11365,7 +11651,6 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11399,7 +11684,6 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "futures", "jsonrpsee", @@ -11418,7 +11702,6 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "fork-tree", "parity-scale-codec", @@ -11431,7 +11714,6 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "ahash 0.8.6", "array-bytes", @@ -11472,7 +11754,6 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "finality-grandpa", "futures", @@ -11492,7 +11773,6 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "futures", @@ -11517,7 +11797,6 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -11539,7 +11818,6 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -11551,7 +11829,6 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "anyhow", "cfg-if", @@ -11568,7 +11845,6 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "ansi_term", "futures", @@ -11584,7 +11860,6 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "array-bytes", "parking_lot 0.12.1", @@ -11598,7 +11873,6 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11639,7 +11913,6 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-channel 1.9.0", "cid", @@ -11659,7 +11932,6 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -11676,7 +11948,6 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "ahash 0.8.6", "futures", @@ -11694,7 +11965,6 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11715,7 +11985,6 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11749,7 +12018,6 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "array-bytes", "futures", @@ -11767,7 +12035,6 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "array-bytes", "bytes", @@ -11801,7 +12068,6 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -11810,7 +12076,6 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "futures", "jsonrpsee", @@ -11841,7 +12106,6 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -11860,7 +12124,6 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "http", "jsonrpsee", @@ -11875,7 +12138,6 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "array-bytes", "futures", @@ -11903,7 +12165,6 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "directories", @@ -11969,7 +12230,6 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "log", "parity-scale-codec", @@ -11980,7 +12240,6 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "clap", "fs4", @@ -11994,7 +12253,6 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12013,7 +12271,6 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "futures", "libc", @@ -12032,7 +12289,6 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "chrono", "futures", @@ -12051,7 +12307,6 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "ansi_term", "atty", @@ -12080,7 +12335,6 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12091,7 +12345,6 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "futures", @@ -12117,7 +12370,6 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "futures", @@ -12133,7 +12385,6 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-channel 1.9.0", "futures", @@ -12371,6 +12622,18 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" +[[package]] +name = "send_wrapper" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f638d531eccd6e23b980caf34876660d38e265409d8e99b397ab71eb3612fad0" + +[[package]] +name = "send_wrapper" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" + [[package]] name = "serde" version = "1.0.193" @@ -12411,6 +12674,18 @@ dependencies = [ "serde", ] +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + [[package]] name = "serial_test" version = "0.6.0" @@ -12495,6 +12770,18 @@ dependencies = [ "digest 0.10.7", ] +[[package]] +name = "sha3" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809" +dependencies = [ + "block-buffer 0.9.0", + "digest 0.9.0", + "keccak", + "opaque-debug 0.3.0", +] + [[package]] name = "sha3" version = "0.10.8" @@ -12582,6 +12869,18 @@ dependencies = [ "similar", ] +[[package]] +name = "simple_asn1" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" +dependencies = [ + "num-bigint", + "num-traits", + "thiserror", + "time", +] + [[package]] name = "siphasher" version = "0.3.11" @@ -12606,7 +12905,6 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" [[package]] name = "slot-range-helper" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "enumn", "parity-scale-codec", @@ -12690,7 +12988,7 @@ dependencies = [ "serde", "serde_json", "sha2 0.10.8", - "sha3", + "sha3 0.10.8", "siphasher", "slab", "smallvec", @@ -12800,7 +13098,6 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "hash-db", "log", @@ -12821,7 +13118,6 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "Inflector", "blake2", @@ -12835,7 +13131,6 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "23.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "parity-scale-codec", "scale-info", @@ -12848,7 +13143,6 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "16.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "integer-sqrt", "num-traits", @@ -12862,7 +13156,6 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "parity-scale-codec", "scale-info", @@ -12875,7 +13168,6 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "sp-api", "sp-inherents", @@ -12886,7 +13178,6 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "futures", "log", @@ -12904,7 +13195,6 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "futures", @@ -12919,7 +13209,6 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "parity-scale-codec", @@ -12936,7 +13225,6 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "parity-scale-codec", @@ -12955,7 +13243,6 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "lazy_static", "parity-scale-codec", @@ -12974,7 +13261,6 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "finality-grandpa", "log", @@ -12992,7 +13278,6 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "parity-scale-codec", "scale-info", @@ -13004,7 +13289,6 @@ dependencies = [ [[package]] name = "sp-core" version = "21.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "array-bytes", "arrayvec 0.7.4", @@ -13034,6 +13318,7 @@ dependencies = [ "secp256k1", "secrecy", "serde", + "sha3 0.9.1", "sp-core-hashing", "sp-debug-derive", "sp-externalities", @@ -13051,20 +13336,18 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "9.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "blake2b_simd", "byteorder", "digest 0.10.7", "sha2 0.10.8", - "sha3", + "sha3 0.10.8", "twox-hash", ] [[package]] name = "sp-core-hashing-proc-macro" version = "9.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "quote", "sp-core-hashing", @@ -13074,7 +13357,6 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -13083,7 +13365,6 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "proc-macro2", "quote", @@ -13093,7 +13374,6 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.19.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "environmental", "parity-scale-codec", @@ -13104,7 +13384,6 @@ dependencies = [ [[package]] name = "sp-genesis-builder" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "serde_json", "sp-api", @@ -13115,7 +13394,6 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -13129,7 +13407,6 @@ dependencies = [ [[package]] name = "sp-io" version = "23.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "bytes", "ed25519-dalek 2.1.0", @@ -13153,7 +13430,6 @@ dependencies = [ [[package]] name = "sp-keyring" version = "24.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "lazy_static", "sp-core", @@ -13164,7 +13440,6 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.27.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -13176,7 +13451,6 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "thiserror", "zstd 0.12.4", @@ -13185,7 +13459,6 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-metadata", "parity-scale-codec", @@ -13196,7 +13469,6 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -13214,7 +13486,6 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "parity-scale-codec", "scale-info", @@ -13228,7 +13499,6 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "sp-api", "sp-core", @@ -13238,7 +13508,6 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "backtrace", "lazy_static", @@ -13248,7 +13517,6 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "rustc-hash", "serde", @@ -13258,9 +13526,10 @@ dependencies = [ [[package]] name = "sp-runtime" version = "24.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "either", + "ethers-contract", + "ethers-core", "hash256-std-hasher", "impl-trait-for-tuples", "log", @@ -13281,7 +13550,6 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "17.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -13299,7 +13567,6 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "11.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "Inflector", "proc-macro-crate", @@ -13311,7 +13578,6 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "parity-scale-codec", "scale-info", @@ -13326,7 +13592,6 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -13340,7 +13605,6 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.28.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "hash-db", "log", @@ -13361,7 +13625,6 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "aes-gcm 0.10.3", "curve25519-dalek 4.1.1", @@ -13385,12 +13648,10 @@ dependencies = [ [[package]] name = "sp-std" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" [[package]] name = "sp-storage" version = "13.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13403,7 +13664,6 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "parity-scale-codec", @@ -13416,7 +13676,6 @@ dependencies = [ [[package]] name = "sp-tracing" version = "10.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "parity-scale-codec", "sp-std", @@ -13428,7 +13687,6 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "sp-api", "sp-runtime", @@ -13437,7 +13695,6 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "parity-scale-codec", @@ -13452,7 +13709,6 @@ dependencies = [ [[package]] name = "sp-trie" version = "22.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "ahash 0.8.6", "hash-db", @@ -13475,7 +13731,6 @@ dependencies = [ [[package]] name = "sp-ver" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "parity-scale-codec", @@ -13492,7 +13747,6 @@ dependencies = [ [[package]] name = "sp-version" version = "22.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13509,7 +13763,6 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -13520,7 +13773,6 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "14.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -13533,7 +13785,6 @@ dependencies = [ [[package]] name = "sp-weights" version = "20.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "parity-scale-codec", "scale-info", @@ -13612,7 +13863,6 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "staging-kusama-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "binary-merkle-tree", "bitvec", @@ -13718,7 +13968,6 @@ dependencies = [ [[package]] name = "staging-xcm" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "bounded-collections", "derivative", @@ -13735,7 +13984,6 @@ dependencies = [ [[package]] name = "staging-xcm-builder" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-support", "frame-system", @@ -13757,7 +14005,6 @@ dependencies = [ [[package]] name = "staging-xcm-executor" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "environmental", "frame-benchmarking", @@ -13828,6 +14075,9 @@ name = "strum" version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" +dependencies = [ + "strum_macros 0.25.3", +] [[package]] name = "strum_macros" @@ -13890,12 +14140,10 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -13914,7 +14162,6 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "hyper", "log", @@ -13926,7 +14173,6 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "jsonrpsee", @@ -13939,7 +14185,6 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -13956,11 +14201,10 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "ansi_term", "build-helper", - "cargo_metadata", + "cargo_metadata 0.15.4", "filetime", "parity-wasm", "sp-maybe-compressed-blob", @@ -14386,7 +14630,19 @@ dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit", + "toml_edit 0.19.15", +] + +[[package]] +name = "toml" +version = "0.8.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35" +dependencies = [ + "serde", + "serde_spanned", + "toml_datetime", + "toml_edit 0.21.0", ] [[package]] @@ -14411,6 +14667,19 @@ dependencies = [ "winnow", ] +[[package]] +name = "toml_edit" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03" +dependencies = [ + "indexmap 2.1.0", + "serde", + "serde_spanned", + "toml_datetime", + "winnow", +] + [[package]] name = "tower" version = "0.4.13" @@ -14498,7 +14767,6 @@ dependencies = [ [[package]] name = "tracing-gum" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "coarsetime", "polkadot-node-jaeger", @@ -14510,7 +14778,6 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "expander 2.0.0", "proc-macro-crate", @@ -14640,7 +14907,6 @@ checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "async-trait", "clap", @@ -14734,6 +15000,12 @@ dependencies = [ "static_assertions", ] +[[package]] +name = "unarray" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" + [[package]] name = "unicode-bidi" version = "0.3.13" @@ -14858,7 +15130,6 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "ver-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "derive_more", "futures", @@ -15562,7 +15833,6 @@ dependencies = [ [[package]] name = "westend-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "binary-merkle-tree", "bitvec", @@ -15661,7 +15931,6 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "frame-support", "polkadot-primitives", @@ -15901,6 +16170,25 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "ws_stream_wasm" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7999f5f4217fe3818726b66257a4475f71e74ffd190776ad053fa159e50737f5" +dependencies = [ + "async_io_stream", + "futures", + "js-sys", + "log", + "pharos", + "rustc_version", + "send_wrapper 0.6.0", + "thiserror", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + [[package]] name = "wyz" version = "0.5.1" @@ -15973,7 +16261,6 @@ dependencies = [ [[package]] name = "xcm-emulator" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "cumulus-pallet-parachain-system", "cumulus-primitives-core", @@ -16005,7 +16292,6 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#2efab3ddc56a2ed1cec346cd6f79e85e895e8444" dependencies = [ "Inflector", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index 527947f1ec..37dbc83fa4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,288 +25,288 @@ members = [ 'runtime/mangata-rococo', 'runtime/integration-test', ] - -# `orml/develop` & `crowdloan/develop` points to versioned `polkadot-sdk/release-mangata-v*`, -# but mangata-node uses `polkadot-sdk/develop` so we need to patch to use the same refs -# patch generated by './scripts/dev_manifest.sh ../polkadot-sdk' & replaced local path with `develop` branch on polkadot-sdk -[patch."https://github.com/mangata-finance/polkadot-sdk"] -pallet-whitelist = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-referenda = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-indices = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-offences = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-transaction-payment = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-asset-tx-payment = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-transaction-payment-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-collective-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-proxy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-identity = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-conviction-voting = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-sudo-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -mangata-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-child-bounties = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-beefy-mmr = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-collective = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-recovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-preimage = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-multisig = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-scheduler = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-nomination-pools = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-nomination-pools-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-society = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-utility-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-authorship = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-bounties = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-fast-unstake = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-transaction-payment-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-transaction-payment-mangata-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-transaction-payment-mangata-rpc-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-grandpa = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-ranked-collective = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-vesting-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -frame-system = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -frame-system-benchmarking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -frame-system-rpc-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-mmr = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-vesting = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -frame-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -frame-support-procedural = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -frame-support-procedural-tools = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -frame-support-procedural-tools-derive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-authority-discovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-im-online = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-staking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-staking-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-staking-reward-fn = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-bags-list = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -frame-election-provider-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -frame-election-provider-solution-type = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-tips = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-balances = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-message-queue = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-nis = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-state-trie-migration = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-beefy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-sudo = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -frame-benchmarking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-treasury = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -frame-try-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-timestamp = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-babe = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-elections-phragmen = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-assets = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-election-provider-multi-phase = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-democracy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-membership = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-root-testing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-utility = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -frame-executive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-session = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -substrate-wasm-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -fork-tree = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -substrate-build-script-utils = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -frame-remote-externalities = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -frame-benchmarking-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -try-runtime-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -substrate-frame-rpc-system = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -substrate-state-trie-migration-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -substrate-rpc-client = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -binary-merkle-tree = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -substrate-prometheus-endpoint = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-database = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-runtime-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-runtime-interface-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-consensus-grandpa = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-consensus = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-consensus-beefy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-consensus-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-consensus-babe = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-consensus-slots = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-tracing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-ver = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-maybe-compressed-blob = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-core = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-core-hashing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-core-hashing-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-state-machine = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-keystore = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-metadata-ir = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-statement-store = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-weights = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-io = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-inherents = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-transaction-pool = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-std = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-storage = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-panic-handler = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-debug-derive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-blockchain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-externalities = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-trie = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-mmr-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -mangata-types = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-version = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-version-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-authority-discovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-block-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-keyring = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-staking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-wasm-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-transaction-storage-proof = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -extrinsic-shuffler = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-arithmetic = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-api-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-offchain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-timestamp = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-application-crypto = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -ver-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-npos-elections = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-genesis-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sp-session = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-consensus-grandpa = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-consensus-grandpa-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-consensus = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-consensus-epochs = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-consensus-beefy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-consensus-beefy-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-consensus-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-consensus-babe = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-consensus-babe-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-consensus-slots = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-tracing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-tracing-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-rpc-spec-v2 = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-state-db = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-proposer-metrics = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-keystore = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-basic-authorship-ver = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-rpc-server = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-network = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-network-bitswap = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-network-transactions = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-network-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-network-light = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-network-sync = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-informant = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-transaction-pool = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-transaction-pool-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-utils = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-chain-spec = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-chain-spec-derive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-sync-state-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-basic-authorship = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-block-builder-ver = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -mmr-gadget = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -mmr-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-storage-monitor = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-authority-discovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-block-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-allocator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-network-gossip = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-client-db = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-client-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-sysinfo = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-executor = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-executor-wasmtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-executor-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-telemetry = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-offchain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-service = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -sc-rpc-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -xcm-emulator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-test-relay-sproof-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-primitives-core = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-primitives-parachain-inherent = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-primitives-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-primitives-timestamp = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-primitives-utility = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-pallet-xcm = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-pallet-dmp-queue = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-pallet-xcmp-queue = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-pallet-aura-ext = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-pallet-session-benchmarking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-pallet-parachain-system = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-pallet-parachain-system-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-collator-selection = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-client-consensus-proposer = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-client-consensus-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-client-consensus-relay-chain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-client-consensus-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-relay-chain-minimal-node = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-relay-chain-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-client-network = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-client-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-relay-chain-inprocess-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-client-pov-recovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-client-collator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-client-service = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -cumulus-relay-chain-rpc-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -parachains-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -parachain-info = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-parachain-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -staging-xcm = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -staging-xcm-executor = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -staging-xcm-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -xcm-procedural = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -pallet-xcm = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-statement-table = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-erasure-coding = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-runtime-metrics = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -rococo-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -rococo-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -staging-kusama-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -kusama-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-runtime-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -slot-range-helper = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -westend-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-runtime-parachains = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-node-metrics = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -tracing-gum = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -tracing-gum-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-node-core-candidate-validation = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-node-core-prospective-parachains = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-node-core-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-node-core-parachains-inherent = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-node-core-av-store = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-node-core-approval-voting = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-node-core-pvf = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-node-core-pvf-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-node-core-dispute-coordinator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-node-core-chain-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-node-core-backing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-node-core-provisioner = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-node-core-chain-selection = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-node-core-bitfield-signing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-node-core-pvf-checker = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-node-subsystem-types = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-node-collation-generation = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-node-jaeger = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-availability-bitfield-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-gossip-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-network-bridge = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-node-network-protocol = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-approval-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-statement-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-availability-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-availability-recovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-collator-protocol = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-dispute-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-node-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-node-subsystem = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-node-subsystem-util = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-service = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-overseer = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -polkadot-core-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# +# # `orml/develop` & `crowdloan/develop` points to versioned `polkadot-sdk/release-mangata-v*`, +# # but mangata-node uses `polkadot-sdk/develop` so we need to patch to use the same refs +# # patch generated by './scripts/dev_manifest.sh ../polkadot-sdk' & replaced local path with `develop` branch on polkadot-sdk +# [patch."https://github.com/mangata-finance/polkadot-sdk"] +# pallet-whitelist = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-referenda = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-indices = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-offences = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-transaction-payment = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-asset-tx-payment = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-transaction-payment-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-collective-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-proxy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-identity = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-conviction-voting = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-sudo-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# mangata-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-child-bounties = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-beefy-mmr = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-collective = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-recovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-preimage = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-multisig = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-scheduler = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-nomination-pools = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-nomination-pools-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-society = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-utility-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-authorship = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-bounties = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-fast-unstake = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-transaction-payment-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-transaction-payment-mangata-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-transaction-payment-mangata-rpc-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-grandpa = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-ranked-collective = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-vesting-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# frame-system = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# frame-system-benchmarking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# frame-system-rpc-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-mmr = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-vesting = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# frame-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# frame-support-procedural = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# frame-support-procedural-tools = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# frame-support-procedural-tools-derive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-authority-discovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-im-online = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-staking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-staking-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-staking-reward-fn = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-bags-list = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# frame-election-provider-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# frame-election-provider-solution-type = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-tips = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-balances = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-message-queue = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-nis = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-state-trie-migration = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-beefy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-sudo = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# frame-benchmarking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-treasury = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# frame-try-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-timestamp = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-babe = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-elections-phragmen = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-assets = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-election-provider-multi-phase = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-democracy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-membership = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-root-testing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-utility = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# frame-executive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-session = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# substrate-wasm-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# fork-tree = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# substrate-build-script-utils = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# frame-remote-externalities = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# frame-benchmarking-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# try-runtime-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# substrate-frame-rpc-system = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# substrate-state-trie-migration-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# substrate-rpc-client = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# binary-merkle-tree = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# substrate-prometheus-endpoint = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-database = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-runtime-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-runtime-interface-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-consensus-grandpa = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-consensus = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-consensus-beefy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-consensus-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-consensus-babe = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-consensus-slots = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-tracing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-ver = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-maybe-compressed-blob = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-core = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-core-hashing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-core-hashing-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-state-machine = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-keystore = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-metadata-ir = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-statement-store = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-weights = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-io = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-inherents = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-transaction-pool = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-std = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-storage = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-panic-handler = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-debug-derive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-blockchain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-externalities = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-trie = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-mmr-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# mangata-types = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-version = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-version-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-authority-discovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-block-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-keyring = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-staking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-wasm-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-transaction-storage-proof = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# extrinsic-shuffler = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-arithmetic = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-api-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-offchain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-timestamp = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-application-crypto = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# ver-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-npos-elections = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-genesis-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sp-session = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-consensus-grandpa = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-consensus-grandpa-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-consensus = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-consensus-epochs = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-consensus-beefy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-consensus-beefy-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-consensus-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-consensus-babe = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-consensus-babe-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-consensus-slots = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-tracing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-tracing-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-rpc-spec-v2 = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-state-db = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-proposer-metrics = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-keystore = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-basic-authorship-ver = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-rpc-server = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-network = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-network-bitswap = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-network-transactions = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-network-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-network-light = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-network-sync = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-informant = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-transaction-pool = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-transaction-pool-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-utils = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-chain-spec = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-chain-spec-derive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-sync-state-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-basic-authorship = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-block-builder-ver = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# mmr-gadget = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# mmr-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-storage-monitor = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-authority-discovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-block-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-allocator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-network-gossip = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-client-db = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-client-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-sysinfo = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-executor = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-executor-wasmtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-executor-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-telemetry = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-offchain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-service = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# sc-rpc-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# xcm-emulator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-test-relay-sproof-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-primitives-core = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-primitives-parachain-inherent = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-primitives-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-primitives-timestamp = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-primitives-utility = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-pallet-xcm = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-pallet-dmp-queue = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-pallet-xcmp-queue = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-pallet-aura-ext = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-pallet-session-benchmarking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-pallet-parachain-system = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-pallet-parachain-system-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-collator-selection = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-client-consensus-proposer = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-client-consensus-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-client-consensus-relay-chain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-client-consensus-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-relay-chain-minimal-node = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-relay-chain-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-client-network = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-client-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-relay-chain-inprocess-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-client-pov-recovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-client-collator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-client-service = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# cumulus-relay-chain-rpc-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# parachains-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# parachain-info = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-parachain-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# staging-xcm = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# staging-xcm-executor = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# staging-xcm-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# xcm-procedural = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# pallet-xcm = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-statement-table = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-erasure-coding = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-runtime-metrics = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# rococo-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# rococo-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# staging-kusama-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# kusama-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-runtime-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# slot-range-helper = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# westend-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-runtime-parachains = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-node-metrics = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# tracing-gum = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# tracing-gum-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-node-core-candidate-validation = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-node-core-prospective-parachains = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-node-core-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-node-core-parachains-inherent = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-node-core-av-store = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-node-core-approval-voting = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-node-core-pvf = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-node-core-pvf-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-node-core-dispute-coordinator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-node-core-chain-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-node-core-backing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-node-core-provisioner = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-node-core-chain-selection = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-node-core-bitfield-signing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-node-core-pvf-checker = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-node-subsystem-types = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-node-collation-generation = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-node-jaeger = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-availability-bitfield-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-gossip-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-network-bridge = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-node-network-protocol = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-approval-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-statement-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-availability-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-availability-recovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-collator-protocol = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-dispute-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-node-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-node-subsystem = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-node-subsystem-util = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-service = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-overseer = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +# polkadot-core-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } # patch generated by './scripts/dev_manifest.sh ../open-runtime-module-library' [patch."https://github.com/mangata-finance/open-runtime-module-library"] @@ -318,3 +318,283 @@ orml-xcm-support = { git = "https://github.com/mangata-finance//open-runtime-mod orml-utilities = { git = "https://github.com/mangata-finance//open-runtime-module-library", branch = "develop" } orml-unknown-tokens = { git = "https://github.com/mangata-finance//open-runtime-module-library", branch = "develop" } orml-tokens = { git = "https://github.com/mangata-finance//open-runtime-module-library", branch = "develop" } + +# patch generated by './scripts/dev_manifest.sh ../polkadot-sdk' +[patch."https://github.com/mangata-finance/polkadot-sdk"] +polkadot-primitives = { path = "../polkadot-sdk/polkadot/primitives" } +polkadot-rpc = { path = "../polkadot-sdk/polkadot/rpc" } +polkadot-statement-table = { path = "../polkadot-sdk/polkadot/statement-table" } +polkadot-node-primitives = { path = "../polkadot-sdk/polkadot/node/primitives" } +polkadot-node-subsystem = { path = "../polkadot-sdk/polkadot/node/subsystem" } +polkadot-node-subsystem-util = { path = "../polkadot-sdk/polkadot/node/subsystem-util" } +polkadot-node-core-runtime-api = { path = "../polkadot-sdk/polkadot/node/core/runtime-api" } +polkadot-node-core-chain-api = { path = "../polkadot-sdk/polkadot/node/core/chain-api" } +polkadot-node-core-bitfield-signing = { path = "../polkadot-sdk/polkadot/node/core/bitfield-signing" } +polkadot-node-core-candidate-validation = { path = "../polkadot-sdk/polkadot/node/core/candidate-validation" } +polkadot-node-core-parachains-inherent = { path = "../polkadot-sdk/polkadot/node/core/parachains-inherent" } +polkadot-node-core-chain-selection = { path = "../polkadot-sdk/polkadot/node/core/chain-selection" } +polkadot-node-core-prospective-parachains = { path = "../polkadot-sdk/polkadot/node/core/prospective-parachains" } +polkadot-node-core-approval-voting = { path = "../polkadot-sdk/polkadot/node/core/approval-voting" } +polkadot-node-core-pvf-checker = { path = "../polkadot-sdk/polkadot/node/core/pvf-checker" } +polkadot-node-core-dispute-coordinator = { path = "../polkadot-sdk/polkadot/node/core/dispute-coordinator" } +polkadot-node-core-av-store = { path = "../polkadot-sdk/polkadot/node/core/av-store" } +polkadot-node-core-pvf = { path = "../polkadot-sdk/polkadot/node/core/pvf" } +polkadot-node-core-pvf-common = { path = "../polkadot-sdk/polkadot/node/core/pvf/common" } +polkadot-node-core-provisioner = { path = "../polkadot-sdk/polkadot/node/core/provisioner" } +polkadot-node-core-backing = { path = "../polkadot-sdk/polkadot/node/core/backing" } +polkadot-service = { path = "../polkadot-sdk/polkadot/node/service" } +polkadot-node-subsystem-types = { path = "../polkadot-sdk/polkadot/node/subsystem-types" } +polkadot-overseer = { path = "../polkadot-sdk/polkadot/node/overseer" } +polkadot-node-jaeger = { path = "../polkadot-sdk/polkadot/node/jaeger" } +polkadot-node-collation-generation = { path = "../polkadot-sdk/polkadot/node/collation-generation" } +polkadot-availability-recovery = { path = "../polkadot-sdk/polkadot/node/network/availability-recovery" } +polkadot-statement-distribution = { path = "../polkadot-sdk/polkadot/node/network/statement-distribution" } +polkadot-approval-distribution = { path = "../polkadot-sdk/polkadot/node/network/approval-distribution" } +polkadot-node-network-protocol = { path = "../polkadot-sdk/polkadot/node/network/protocol" } +polkadot-dispute-distribution = { path = "../polkadot-sdk/polkadot/node/network/dispute-distribution" } +polkadot-collator-protocol = { path = "../polkadot-sdk/polkadot/node/network/collator-protocol" } +polkadot-gossip-support = { path = "../polkadot-sdk/polkadot/node/network/gossip-support" } +polkadot-availability-distribution = { path = "../polkadot-sdk/polkadot/node/network/availability-distribution" } +polkadot-network-bridge = { path = "../polkadot-sdk/polkadot/node/network/bridge" } +polkadot-availability-bitfield-distribution = { path = "../polkadot-sdk/polkadot/node/network/bitfield-distribution" } +polkadot-node-metrics = { path = "../polkadot-sdk/polkadot/node/metrics" } +tracing-gum = { path = "../polkadot-sdk/polkadot/node/gum" } +tracing-gum-proc-macro = { path = "../polkadot-sdk/polkadot/node/gum/proc-macro" } +polkadot-runtime-parachains = { path = "../polkadot-sdk/polkadot/runtime/parachains" } +rococo-runtime-constants = { path = "../polkadot-sdk/polkadot/runtime/rococo/constants" } +rococo-runtime = { path = "../polkadot-sdk/polkadot/runtime/rococo" } +polkadot-runtime-constants = { path = "../polkadot-sdk/polkadot/runtime/polkadot/constants" } +kusama-runtime-constants = { path = "../polkadot-sdk/polkadot/runtime/kusama/constants" } +staging-kusama-runtime = { path = "../polkadot-sdk/polkadot/runtime/kusama" } +polkadot-runtime-metrics = { path = "../polkadot-sdk/polkadot/runtime/metrics" } +polkadot-runtime-common = { path = "../polkadot-sdk/polkadot/runtime/common" } +slot-range-helper = { path = "../polkadot-sdk/polkadot/runtime/common/slot_range_helper" } +westend-runtime-constants = { path = "../polkadot-sdk/polkadot/runtime/westend/constants" } +polkadot-erasure-coding = { path = "../polkadot-sdk/polkadot/erasure-coding" } +staging-xcm-executor = { path = "../polkadot-sdk/polkadot/xcm/xcm-executor" } +xcm-procedural = { path = "../polkadot-sdk/polkadot/xcm/procedural" } +staging-xcm = { path = "../polkadot-sdk/polkadot/xcm" } +staging-xcm-builder = { path = "../polkadot-sdk/polkadot/xcm/xcm-builder" } +pallet-xcm = { path = "../polkadot-sdk/polkadot/xcm/pallet-xcm" } +polkadot-parachain-primitives = { path = "../polkadot-sdk/polkadot/parachain" } +polkadot-cli = { path = "../polkadot-sdk/polkadot/cli" } +polkadot-core-primitives = { path = "../polkadot-sdk/polkadot/core-primitives" } +cumulus-test-relay-sproof-builder = { path = "../polkadot-sdk/cumulus/test/relay-sproof-builder" } +cumulus-primitives-timestamp = { path = "../polkadot-sdk/cumulus/primitives/timestamp" } +cumulus-primitives-core = { path = "../polkadot-sdk/cumulus/primitives/core" } +cumulus-primitives-utility = { path = "../polkadot-sdk/cumulus/primitives/utility" } +cumulus-primitives-aura = { path = "../polkadot-sdk/cumulus/primitives/aura" } +cumulus-primitives-parachain-inherent = { path = "../polkadot-sdk/cumulus/primitives/parachain-inherent" } +parachain-info = { path = "../polkadot-sdk/cumulus/parachains/pallets/parachain-info" } +parachains-common = { path = "../polkadot-sdk/cumulus/parachains/common" } +cumulus-pallet-dmp-queue = { path = "../polkadot-sdk/cumulus/pallets/dmp-queue" } +cumulus-pallet-session-benchmarking = { path = "../polkadot-sdk/cumulus/pallets/session-benchmarking" } +cumulus-pallet-xcmp-queue = { path = "../polkadot-sdk/cumulus/pallets/xcmp-queue" } +cumulus-pallet-parachain-system = { path = "../polkadot-sdk/cumulus/pallets/parachain-system" } +cumulus-pallet-parachain-system-proc-macro = { path = "../polkadot-sdk/cumulus/pallets/parachain-system/proc-macro" } +pallet-collator-selection = { path = "../polkadot-sdk/cumulus/pallets/collator-selection" } +cumulus-pallet-xcm = { path = "../polkadot-sdk/cumulus/pallets/xcm" } +cumulus-pallet-aura-ext = { path = "../polkadot-sdk/cumulus/pallets/aura-ext" } +cumulus-relay-chain-inprocess-interface = { path = "../polkadot-sdk/cumulus/client/relay-chain-inprocess-interface" } +cumulus-relay-chain-interface = { path = "../polkadot-sdk/cumulus/client/relay-chain-interface" } +cumulus-client-collator = { path = "../polkadot-sdk/cumulus/client/collator" } +cumulus-client-service = { path = "../polkadot-sdk/cumulus/client/service" } +cumulus-client-network = { path = "../polkadot-sdk/cumulus/client/network" } +cumulus-relay-chain-rpc-interface = { path = "../polkadot-sdk/cumulus/client/relay-chain-rpc-interface" } +cumulus-client-cli = { path = "../polkadot-sdk/cumulus/client/cli" } +cumulus-relay-chain-minimal-node = { path = "../polkadot-sdk/cumulus/client/relay-chain-minimal-node" } +cumulus-client-pov-recovery = { path = "../polkadot-sdk/cumulus/client/pov-recovery" } +cumulus-client-consensus-aura = { path = "../polkadot-sdk/cumulus/client/consensus/aura" } +cumulus-client-consensus-proposer = { path = "../polkadot-sdk/cumulus/client/consensus/proposer" } +cumulus-client-consensus-relay-chain = { path = "../polkadot-sdk/cumulus/client/consensus/relay-chain" } +cumulus-client-consensus-common = { path = "../polkadot-sdk/cumulus/client/consensus/common" } +xcm-emulator = { path = "../polkadot-sdk/cumulus/xcm/xcm-emulator" } +sp-storage = { path = "../polkadot-sdk/substrate/primitives/storage" } +sp-std = { path = "../polkadot-sdk/substrate/primitives/std" } +sp-maybe-compressed-blob = { path = "../polkadot-sdk/substrate/primitives/maybe-compressed-blob" } +sp-database = { path = "../polkadot-sdk/substrate/primitives/database" } +sp-state-machine = { path = "../polkadot-sdk/substrate/primitives/state-machine" } +sp-rpc = { path = "../polkadot-sdk/substrate/primitives/rpc" } +sp-blockchain = { path = "../polkadot-sdk/substrate/primitives/blockchain" } +sp-api = { path = "../polkadot-sdk/substrate/primitives/api" } +sp-api-proc-macro = { path = "../polkadot-sdk/substrate/primitives/api/proc-macro" } +sp-externalities = { path = "../polkadot-sdk/substrate/primitives/externalities" } +extrinsic-shuffler = { path = "../polkadot-sdk/substrate/primitives/shuffler" } +sp-transaction-pool = { path = "../polkadot-sdk/substrate/primitives/transaction-pool" } +sp-session = { path = "../polkadot-sdk/substrate/primitives/session" } +sp-timestamp = { path = "../polkadot-sdk/substrate/primitives/timestamp" } +sp-inherents = { path = "../polkadot-sdk/substrate/primitives/inherents" } +sp-io = { path = "../polkadot-sdk/substrate/primitives/io" } +sp-transaction-storage-proof = { path = "../polkadot-sdk/substrate/primitives/transaction-storage-proof" } +sp-ver = { path = "../polkadot-sdk/substrate/primitives/ver" } +sp-tracing = { path = "../polkadot-sdk/substrate/primitives/tracing" } +sp-mmr-primitives = { path = "../polkadot-sdk/substrate/primitives/merkle-mountain-range" } +sp-application-crypto = { path = "../polkadot-sdk/substrate/primitives/application-crypto" } +sp-panic-handler = { path = "../polkadot-sdk/substrate/primitives/panic-handler" } +sp-core-hashing = { path = "../polkadot-sdk/substrate/primitives/core/hashing" } +sp-core-hashing-proc-macro = { path = "../polkadot-sdk/substrate/primitives/core/hashing/proc-macro" } +sp-core = { path = "../polkadot-sdk/substrate/primitives/core" } +sp-offchain = { path = "../polkadot-sdk/substrate/primitives/offchain" } +sp-weights = { path = "../polkadot-sdk/substrate/primitives/weights" } +sp-npos-elections = { path = "../polkadot-sdk/substrate/primitives/npos-elections" } +sp-keystore = { path = "../polkadot-sdk/substrate/primitives/keystore" } +mangata-types = { path = "../polkadot-sdk/substrate/primitives/mangata-types" } +sp-version = { path = "../polkadot-sdk/substrate/primitives/version" } +sp-version-proc-macro = { path = "../polkadot-sdk/substrate/primitives/version/proc-macro" } +sp-runtime = { path = "../polkadot-sdk/substrate/primitives/runtime" } +sp-wasm-interface = { path = "../polkadot-sdk/substrate/primitives/wasm-interface" } +sp-authority-discovery = { path = "../polkadot-sdk/substrate/primitives/authority-discovery" } +sp-genesis-builder = { path = "../polkadot-sdk/substrate/primitives/genesis-builder" } +sp-block-builder = { path = "../polkadot-sdk/substrate/primitives/block-builder" } +ver-api = { path = "../polkadot-sdk/substrate/primitives/ver-api" } +sp-runtime-interface = { path = "../polkadot-sdk/substrate/primitives/runtime-interface" } +sp-runtime-interface-proc-macro = { path = "../polkadot-sdk/substrate/primitives/runtime-interface/proc-macro" } +sp-debug-derive = { path = "../polkadot-sdk/substrate/primitives/debug-derive" } +sp-statement-store = { path = "../polkadot-sdk/substrate/primitives/statement-store" } +sp-staking = { path = "../polkadot-sdk/substrate/primitives/staking" } +sp-trie = { path = "../polkadot-sdk/substrate/primitives/trie" } +sp-metadata-ir = { path = "../polkadot-sdk/substrate/primitives/metadata-ir" } +sp-keyring = { path = "../polkadot-sdk/substrate/primitives/keyring" } +sp-consensus-slots = { path = "../polkadot-sdk/substrate/primitives/consensus/slots" } +sp-consensus-grandpa = { path = "../polkadot-sdk/substrate/primitives/consensus/grandpa" } +sp-consensus-aura = { path = "../polkadot-sdk/substrate/primitives/consensus/aura" } +sp-consensus-beefy = { path = "../polkadot-sdk/substrate/primitives/consensus/beefy" } +sp-consensus = { path = "../polkadot-sdk/substrate/primitives/consensus/common" } +sp-consensus-babe = { path = "../polkadot-sdk/substrate/primitives/consensus/babe" } +sp-arithmetic = { path = "../polkadot-sdk/substrate/primitives/arithmetic" } +sc-rpc = { path = "../polkadot-sdk/substrate/client/rpc" } +sc-client-api = { path = "../polkadot-sdk/substrate/client/api" } +sc-chain-spec-derive = { path = "../polkadot-sdk/substrate/client/chain-spec/derive" } +sc-chain-spec = { path = "../polkadot-sdk/substrate/client/chain-spec" } +sc-basic-authorship-ver = { path = "../polkadot-sdk/substrate/client/basic-authorship-ver" } +sc-transaction-pool-api = { path = "../polkadot-sdk/substrate/client/transaction-pool/api" } +sc-transaction-pool = { path = "../polkadot-sdk/substrate/client/transaction-pool" } +sc-storage-monitor = { path = "../polkadot-sdk/substrate/client/storage-monitor" } +sc-tracing = { path = "../polkadot-sdk/substrate/client/tracing" } +sc-tracing-proc-macro = { path = "../polkadot-sdk/substrate/client/tracing/proc-macro" } +sc-telemetry = { path = "../polkadot-sdk/substrate/client/telemetry" } +mmr-rpc = { path = "../polkadot-sdk/substrate/client/merkle-mountain-range/rpc" } +mmr-gadget = { path = "../polkadot-sdk/substrate/client/merkle-mountain-range" } +sc-service = { path = "../polkadot-sdk/substrate/client/service" } +sc-offchain = { path = "../polkadot-sdk/substrate/client/offchain" } +sc-allocator = { path = "../polkadot-sdk/substrate/client/allocator" } +sc-rpc-server = { path = "../polkadot-sdk/substrate/client/rpc-servers" } +sc-keystore = { path = "../polkadot-sdk/substrate/client/keystore" } +sc-executor = { path = "../polkadot-sdk/substrate/client/executor" } +sc-executor-common = { path = "../polkadot-sdk/substrate/client/executor/common" } +sc-executor-wasmtime = { path = "../polkadot-sdk/substrate/client/executor/wasmtime" } +sc-informant = { path = "../polkadot-sdk/substrate/client/informant" } +sc-rpc-spec-v2 = { path = "../polkadot-sdk/substrate/client/rpc-spec-v2" } +sc-sync-state-rpc = { path = "../polkadot-sdk/substrate/client/sync-state-rpc" } +sc-network-transactions = { path = "../polkadot-sdk/substrate/client/network/transactions" } +sc-network-sync = { path = "../polkadot-sdk/substrate/client/network/sync" } +sc-network-bitswap = { path = "../polkadot-sdk/substrate/client/network/bitswap" } +sc-network-light = { path = "../polkadot-sdk/substrate/client/network/light" } +sc-network = { path = "../polkadot-sdk/substrate/client/network" } +sc-network-common = { path = "../polkadot-sdk/substrate/client/network/common" } +sc-authority-discovery = { path = "../polkadot-sdk/substrate/client/authority-discovery" } +sc-basic-authorship = { path = "../polkadot-sdk/substrate/client/basic-authorship" } +sc-block-builder = { path = "../polkadot-sdk/substrate/client/block-builder" } +sc-utils = { path = "../polkadot-sdk/substrate/client/utils" } +sc-proposer-metrics = { path = "../polkadot-sdk/substrate/client/proposer-metrics" } +sc-cli = { path = "../polkadot-sdk/substrate/client/cli" } +sc-block-builder-ver = { path = "../polkadot-sdk/substrate/client/block-builder-ver" } +sc-sysinfo = { path = "../polkadot-sdk/substrate/client/sysinfo" } +sc-client-db = { path = "../polkadot-sdk/substrate/client/db" } +sc-state-db = { path = "../polkadot-sdk/substrate/client/state-db" } +sc-rpc-api = { path = "../polkadot-sdk/substrate/client/rpc-api" } +sc-consensus-slots = { path = "../polkadot-sdk/substrate/client/consensus/slots" } +sc-consensus-grandpa-rpc = { path = "../polkadot-sdk/substrate/client/consensus/grandpa/rpc" } +sc-consensus-grandpa = { path = "../polkadot-sdk/substrate/client/consensus/grandpa" } +sc-consensus-epochs = { path = "../polkadot-sdk/substrate/client/consensus/epochs" } +sc-consensus-aura = { path = "../polkadot-sdk/substrate/client/consensus/aura" } +sc-consensus-beefy-rpc = { path = "../polkadot-sdk/substrate/client/consensus/beefy/rpc" } +sc-consensus-beefy = { path = "../polkadot-sdk/substrate/client/consensus/beefy" } +sc-consensus = { path = "../polkadot-sdk/substrate/client/consensus/common" } +sc-consensus-babe-rpc = { path = "../polkadot-sdk/substrate/client/consensus/babe/rpc" } +sc-consensus-babe = { path = "../polkadot-sdk/substrate/client/consensus/babe" } +sc-network-gossip = { path = "../polkadot-sdk/substrate/client/network-gossip" } +pallet-asset-tx-payment = { path = "../polkadot-sdk/substrate/frame/transaction-payment/asset-tx-payment" } +pallet-transaction-payment-rpc-runtime-api = { path = "../polkadot-sdk/substrate/frame/transaction-payment/rpc/runtime-api" } +pallet-transaction-payment-rpc = { path = "../polkadot-sdk/substrate/frame/transaction-payment/rpc" } +pallet-transaction-payment = { path = "../polkadot-sdk/substrate/frame/transaction-payment" } +pallet-democracy = { path = "../polkadot-sdk/substrate/frame/democracy" } +pallet-multisig = { path = "../polkadot-sdk/substrate/frame/multisig" } +pallet-election-provider-multi-phase = { path = "../polkadot-sdk/substrate/frame/election-provider-multi-phase" } +frame-system-rpc-runtime-api = { path = "../polkadot-sdk/substrate/frame/system/rpc/runtime-api" } +frame-system = { path = "../polkadot-sdk/substrate/frame/system" } +frame-system-benchmarking = { path = "../polkadot-sdk/substrate/frame/system/benchmarking" } +pallet-state-trie-migration = { path = "../polkadot-sdk/substrate/frame/state-trie-migration" } +pallet-vesting = { path = "../polkadot-sdk/substrate/frame/vesting" } +pallet-recovery = { path = "../polkadot-sdk/substrate/frame/recovery" } +pallet-society = { path = "../polkadot-sdk/substrate/frame/society" } +pallet-child-bounties = { path = "../polkadot-sdk/substrate/frame/child-bounties" } +pallet-proxy = { path = "../polkadot-sdk/substrate/frame/proxy" } +pallet-scheduler = { path = "../polkadot-sdk/substrate/frame/scheduler" } +pallet-tips = { path = "../polkadot-sdk/substrate/frame/tips" } +pallet-session = { path = "../polkadot-sdk/substrate/frame/session" } +pallet-message-queue = { path = "../polkadot-sdk/substrate/frame/message-queue" } +pallet-timestamp = { path = "../polkadot-sdk/substrate/frame/timestamp" } +pallet-preimage = { path = "../polkadot-sdk/substrate/frame/preimage" } +frame-election-provider-support = { path = "../polkadot-sdk/substrate/frame/election-provider-support" } +frame-election-provider-solution-type = { path = "../polkadot-sdk/substrate/frame/election-provider-support/solution-type" } +pallet-bounties = { path = "../polkadot-sdk/substrate/frame/bounties" } +pallet-grandpa = { path = "../polkadot-sdk/substrate/frame/grandpa" } +pallet-identity = { path = "../polkadot-sdk/substrate/frame/identity" } +pallet-beefy-mmr = { path = "../polkadot-sdk/substrate/frame/beefy-mmr" } +pallet-treasury = { path = "../polkadot-sdk/substrate/frame/treasury" } +pallet-indices = { path = "../polkadot-sdk/substrate/frame/indices" } +pallet-ranked-collective = { path = "../polkadot-sdk/substrate/frame/ranked-collective" } +pallet-mmr = { path = "../polkadot-sdk/substrate/frame/merkle-mountain-range" } +pallet-offences = { path = "../polkadot-sdk/substrate/frame/offences" } +frame-try-runtime = { path = "../polkadot-sdk/substrate/frame/try-runtime" } +pallet-assets = { path = "../polkadot-sdk/substrate/frame/assets" } +pallet-im-online = { path = "../polkadot-sdk/substrate/frame/im-online" } +pallet-conviction-voting = { path = "../polkadot-sdk/substrate/frame/conviction-voting" } +pallet-fast-unstake = { path = "../polkadot-sdk/substrate/frame/fast-unstake" } +pallet-root-testing = { path = "../polkadot-sdk/substrate/frame/root-testing" } +pallet-vesting-mangata = { path = "../polkadot-sdk/substrate/frame/vesting-mangata" } +pallet-utility = { path = "../polkadot-sdk/substrate/frame/utility" } +pallet-balances = { path = "../polkadot-sdk/substrate/frame/balances" } +pallet-aura = { path = "../polkadot-sdk/substrate/frame/aura" } +pallet-referenda = { path = "../polkadot-sdk/substrate/frame/referenda" } +pallet-whitelist = { path = "../polkadot-sdk/substrate/frame/whitelist" } +pallet-collective-mangata = { path = "../polkadot-sdk/substrate/frame/collective-mangata" } +frame-support-procedural-tools-derive = { path = "../polkadot-sdk/substrate/frame/support/procedural/tools/derive" } +frame-support-procedural-tools = { path = "../polkadot-sdk/substrate/frame/support/procedural/tools" } +frame-support-procedural = { path = "../polkadot-sdk/substrate/frame/support/procedural" } +frame-support = { path = "../polkadot-sdk/substrate/frame/support" } +pallet-authority-discovery = { path = "../polkadot-sdk/substrate/frame/authority-discovery" } +pallet-beefy = { path = "../polkadot-sdk/substrate/frame/beefy" } +pallet-collective = { path = "../polkadot-sdk/substrate/frame/collective" } +pallet-membership = { path = "../polkadot-sdk/substrate/frame/membership" } +pallet-nomination-pools-runtime-api = { path = "../polkadot-sdk/substrate/frame/nomination-pools/runtime-api" } +pallet-nomination-pools = { path = "../polkadot-sdk/substrate/frame/nomination-pools" } +pallet-babe = { path = "../polkadot-sdk/substrate/frame/babe" } +frame-executive = { path = "../polkadot-sdk/substrate/frame/executive" } +frame-benchmarking = { path = "../polkadot-sdk/substrate/frame/benchmarking" } +pallet-sudo-mangata = { path = "../polkadot-sdk/substrate/frame/sudo-mangata" } +pallet-nis = { path = "../polkadot-sdk/substrate/frame/nis" } +pallet-elections-phragmen = { path = "../polkadot-sdk/substrate/frame/elections-phragmen" } +pallet-utility-mangata = { path = "../polkadot-sdk/substrate/frame/utility-mangata" } +pallet-bags-list = { path = "../polkadot-sdk/substrate/frame/bags-list" } +pallet-staking-runtime-api = { path = "../polkadot-sdk/substrate/frame/staking/runtime-api" } +pallet-staking-reward-fn = { path = "../polkadot-sdk/substrate/frame/staking/reward-fn" } +pallet-staking = { path = "../polkadot-sdk/substrate/frame/staking" } +pallet-transaction-payment-mangata-rpc-runtime-api = { path = "../polkadot-sdk/substrate/frame/transaction-payment-mangata/rpc/runtime-api" } +pallet-transaction-payment-mangata-rpc = { path = "../polkadot-sdk/substrate/frame/transaction-payment-mangata/rpc" } +pallet-transaction-payment-mangata = { path = "../polkadot-sdk/substrate/frame/transaction-payment-mangata" } +pallet-authorship = { path = "../polkadot-sdk/substrate/frame/authorship" } +mangata-support = { path = "../polkadot-sdk/substrate/frame/mangata-support" } +pallet-sudo = { path = "../polkadot-sdk/substrate/frame/sudo" } +binary-merkle-tree = { path = "../polkadot-sdk/substrate/utils/binary-merkle-tree" } +substrate-build-script-utils = { path = "../polkadot-sdk/substrate/utils/build-script-utils" } +substrate-wasm-builder = { path = "../polkadot-sdk/substrate/utils/wasm-builder" } +fork-tree = { path = "../polkadot-sdk/substrate/utils/fork-tree" } +substrate-frame-rpc-system = { path = "../polkadot-sdk/substrate/utils/frame/rpc/system" } +substrate-rpc-client = { path = "../polkadot-sdk/substrate/utils/frame/rpc/client" } +substrate-state-trie-migration-rpc = { path = "../polkadot-sdk/substrate/utils/frame/rpc/state-trie-migration-rpc" } +try-runtime-cli = { path = "../polkadot-sdk/substrate/utils/frame/try-runtime/cli" } +frame-remote-externalities = { path = "../polkadot-sdk/substrate/utils/frame/remote-externalities" } +frame-benchmarking-cli = { path = "../polkadot-sdk/substrate/utils/frame/benchmarking-cli" } +substrate-prometheus-endpoint = { path = "../polkadot-sdk/substrate/utils/prometheus" } diff --git a/runtime/mangata-kusama/src/lib.rs b/runtime/mangata-kusama/src/lib.rs index 97363c575a..a0bd1a8b39 100644 --- a/runtime/mangata-kusama/src/lib.rs +++ b/runtime/mangata-kusama/src/lib.rs @@ -367,6 +367,13 @@ impl Into for RuntimeCall { } } +use sp_runtime::generic::ExtendedCall; +impl ExtendedCall for RuntimeCall { + fn context(&self) -> Option<(String, String)> { + Some(("dummy_call".to_string(), "dummy_params".to_string())) + } +} + pub type OnChargeTransactionHandler = ThreeCurrencyOnChargeAdapter< orml_tokens::MultiTokenCurrencyAdapter, ToAuthor, diff --git a/runtime/mangata-rococo/src/lib.rs b/runtime/mangata-rococo/src/lib.rs index aded02d3ee..c0638b384c 100644 --- a/runtime/mangata-rococo/src/lib.rs +++ b/runtime/mangata-rococo/src/lib.rs @@ -72,6 +72,13 @@ pub type UncheckedExtrinsic = runtime_types::UncheckedExtrinsic; +use sp_runtime::generic::ExtendedCall; +impl ExtendedCall for RuntimeCall { + fn context(&self) -> Option<(String, String)> { + Some(("dummy_call".to_string(), "dummy_params".to_string())) + } +} + /// Executive: handles dispatch to the various modules. pub type Executive = frame_executive::Executive< Runtime, From 4fcbb65fd41a6a3cd1349a2a22961185e0b2bbc6 Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Thu, 30 Nov 2023 22:35:23 +0100 Subject: [PATCH 02/15] workign example --- Cargo.lock | 844 ++++++++++---------------- devops/parachain-launch/config.yml | 58 +- runtime/integration-test/src/setup.rs | 2 +- runtime/integration-test/src/xyk.rs | 7 + runtime/mangata-kusama/src/lib.rs | 4 +- runtime/mangata-rococo/src/lib.rs | 4 +- 6 files changed, 346 insertions(+), 573 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 360e4d1d36..8b10789757 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -186,6 +186,67 @@ version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" +[[package]] +name = "alloy-primitives" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f5def4b5e1bb8fe7ea37eeac1063246d4ef26f56cbdccf864a5a6bdcb80e91f4" +dependencies = [ + "alloy-rlp", + "bytes", + "cfg-if", + "const-hex", + "derive_more", + "hex-literal 0.4.1", + "itoa", + "proptest", + "rand 0.8.5", + "ruint", + "serde", + "tiny-keccak", +] + +[[package]] +name = "alloy-rlp" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc0fac0fc16baf1f63f78b47c3d24718f3619b0714076f6a02957d808d52cbef" +dependencies = [ + "arrayvec 0.7.4", + "bytes", + "smol_str", +] + +[[package]] +name = "alloy-sol-macro" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0acd5b8d2699b095a57a0ecea6a6a2045b8e5ed6f2607bfa3382961d2889e82" +dependencies = [ + "const-hex", + "dunce", + "heck", + "indexmap 2.1.0", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.39", + "syn-solidity", + "tiny-keccak", +] + +[[package]] +name = "alloy-sol-types" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97d483e9c6db659cdb24fc736684ef68b743705fbdb0677c6404815361871b92" +dependencies = [ + "alloy-primitives", + "alloy-sol-macro", + "const-hex", + "serde", +] + [[package]] name = "always-assert" version = "0.1.3" @@ -319,9 +380,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c775f0d12169cba7aae4caeb547bb6a50781c7449a8aa53793827c9ec4abf488" dependencies = [ "ark-ec", - "ark-ff", - "ark-serialize", - "ark-std", + "ark-ff 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", ] [[package]] @@ -330,10 +391,10 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "defd9a439d56ac24968cca0571f598a61bc8c55f71d50a89cda591cb750670ba" dependencies = [ - "ark-ff", + "ark-ff 0.4.2", "ark-poly", - "ark-serialize", - "ark-std", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "derivative", "hashbrown 0.13.2", "itertools 0.10.5", @@ -349,8 +410,26 @@ checksum = "f9cde0f2aa063a2a5c28d39b47761aa102bda7c13c84fc118a61b87c7b2f785c" dependencies = [ "ark-bls12-381", "ark-ec", - "ark-ff", - "ark-std", + "ark-ff 0.4.2", + "ark-std 0.4.0", +] + +[[package]] +name = "ark-ff" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b3235cc41ee7a12aaaf2c575a2ad7b46713a8a50bda2fc3b003a04845c05dd6" +dependencies = [ + "ark-ff-asm 0.3.0", + "ark-ff-macros 0.3.0", + "ark-serialize 0.3.0", + "ark-std 0.3.0", + "derivative", + "num-bigint", + "num-traits", + "paste", + "rustc_version 0.3.3", + "zeroize", ] [[package]] @@ -359,20 +438,30 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec847af850f44ad29048935519032c33da8aa03340876d351dfab5660d2966ba" dependencies = [ - "ark-ff-asm", - "ark-ff-macros", - "ark-serialize", - "ark-std", + "ark-ff-asm 0.4.2", + "ark-ff-macros 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "derivative", "digest 0.10.7", "itertools 0.10.5", "num-bigint", "num-traits", "paste", - "rustc_version", + "rustc_version 0.4.0", "zeroize", ] +[[package]] +name = "ark-ff-asm" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db02d390bf6643fb404d3d22d31aee1c4bc4459600aef9113833d17e786c6e44" +dependencies = [ + "quote", + "syn 1.0.109", +] + [[package]] name = "ark-ff-asm" version = "0.4.2" @@ -383,6 +472,18 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "ark-ff-macros" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db2fd794a08ccb318058009eefdf15bcaaaaf6f8161eb3345f907222bac38b20" +dependencies = [ + "num-bigint", + "num-traits", + "quote", + "syn 1.0.109", +] + [[package]] name = "ark-ff-macros" version = "0.4.2" @@ -402,9 +503,9 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d320bfc44ee185d899ccbadfa8bc31aab923ce1558716e1997a1e74057fe86bf" dependencies = [ - "ark-ff", - "ark-serialize", - "ark-std", + "ark-ff 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "derivative", "hashbrown 0.13.2", ] @@ -416,9 +517,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49b08346a3e38e2be792ef53ee168623c9244d968ff00cd70fb9932f6fe36393" dependencies = [ "ark-ec", - "ark-ff", - "ark-serialize", - "ark-std", + "ark-ff 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "parity-scale-codec", ] @@ -429,9 +530,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51bd73bb6ddb72630987d37fa963e99196896c0d0ea81b7c894567e74a2f83af" dependencies = [ "ark-ec", - "ark-ff", - "ark-serialize", - "ark-std", + "ark-ff 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "parity-scale-codec", "scale-info", ] @@ -442,15 +543,25 @@ version = "0.0.2" source = "git+https://github.com/w3f/ring-vrf?rev=3119f51#3119f51b54b69308abfb0671f6176cb125ae1bf1" dependencies = [ "ark-ec", - "ark-ff", - "ark-serialize", - "ark-std", + "ark-ff 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "ark-transcript", "digest 0.10.7", "rand_core 0.6.4", "zeroize", ] +[[package]] +name = "ark-serialize" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d6c2b318ee6e10f8c2853e73a83adc0ccb88995aa978d8a3408d492ab2ee671" +dependencies = [ + "ark-std 0.3.0", + "digest 0.9.0", +] + [[package]] name = "ark-serialize" version = "0.4.2" @@ -458,7 +569,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "adb7b85a02b83d2f22f89bd5cac66c9c89474240cb6207cb1efc16d098e822a5" dependencies = [ "ark-serialize-derive", - "ark-std", + "ark-std 0.4.0", "digest 0.10.7", "num-bigint", ] @@ -474,6 +585,16 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "ark-std" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1df2c09229cbc5a028b1d70e00fdb2acee28b1055dfb5ca73eea49c5a25c4e7c" +dependencies = [ + "num-traits", + "rand 0.8.5", +] + [[package]] name = "ark-std" version = "0.4.0" @@ -489,9 +610,9 @@ name = "ark-transcript" version = "0.0.2" source = "git+https://github.com/w3f/ring-vrf?rev=3119f51#3119f51b54b69308abfb0671f6176cb125ae1bf1" dependencies = [ - "ark-ff", - "ark-serialize", - "ark-std", + "ark-ff 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "digest 0.10.7", "rand_core 0.6.4", "sha3 0.10.8", @@ -787,17 +908,6 @@ dependencies = [ "syn 2.0.39", ] -[[package]] -name = "async_io_stream" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6d7b9decdf35d8908a7e3ef02f64c5e9b1695e230154c0e8de3969142d9b94c" -dependencies = [ - "futures", - "pharos", - "rustc_version", -] - [[package]] name = "asynchronous-codec" version = "0.6.2" @@ -875,10 +985,10 @@ dependencies = [ "ark-bls12-381", "ark-ec", "ark-ed-on-bls12-381-bandersnatch", - "ark-ff", + "ark-ff 0.4.2", "ark-scale 0.0.11", - "ark-serialize", - "ark-std", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "dleq_vrf", "fflonk", "merlin 3.0.0", @@ -981,6 +1091,21 @@ dependencies = [ "bitcoin_hashes", ] +[[package]] +name = "bit-set" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" +dependencies = [ + "bit-vec", +] + +[[package]] +name = "bit-vec" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" + [[package]] name = "bitcoin_hashes" version = "0.11.0" @@ -1238,9 +1363,6 @@ name = "bytes" version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" -dependencies = [ - "serde", -] [[package]] name = "bzip2-sys" @@ -1285,20 +1407,6 @@ dependencies = [ "thiserror", ] -[[package]] -name = "cargo_metadata" -version = "0.18.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037" -dependencies = [ - "camino", - "cargo-platform", - "semver 1.0.20", - "serde", - "serde_json", - "thiserror", -] - [[package]] name = "cc" version = "1.0.83" @@ -1556,10 +1664,10 @@ version = "0.1.0" source = "git+https://github.com/w3f/ring-proof?rev=0e948f3#0e948f3c28cbacecdd3020403c4841c0eb339213" dependencies = [ "ark-ec", - "ark-ff", + "ark-ff 0.4.2", "ark-poly", - "ark-serialize", - "ark-std", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "fflonk", "merlin 3.0.0", ] @@ -2620,7 +2728,7 @@ dependencies = [ "digest 0.10.7", "fiat-crypto", "platforms", - "rustc_version", + "rustc_version 0.4.0", "subtle", "zeroize", ] @@ -2874,7 +2982,7 @@ dependencies = [ "convert_case", "proc-macro2", "quote", - "rustc_version", + "rustc_version 0.4.0", "syn 1.0.109", ] @@ -2972,11 +3080,11 @@ version = "0.0.2" source = "git+https://github.com/w3f/ring-vrf?rev=3119f51#3119f51b54b69308abfb0671f6176cb125ae1bf1" dependencies = [ "ark-ec", - "ark-ff", + "ark-ff 0.4.2", "ark-scale 0.0.10", "ark-secret-scalar", - "ark-serialize", - "ark-std", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "ark-transcript", "arrayvec 0.7.4", "rand_core 0.6.4", @@ -3216,33 +3324,6 @@ version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" -[[package]] -name = "encoding_rs" -version = "0.8.33" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" -dependencies = [ - "cfg-if", -] - -[[package]] -name = "enr" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe81b5c06ecfdbc71dd845216f225f53b62a10cb8a16c946836a3467f701d05b" -dependencies = [ - "base64 0.21.5", - "bytes", - "hex", - "k256", - "log", - "rand 0.8.5", - "rlp", - "serde", - "sha3 0.10.8", - "zeroize", -] - [[package]] name = "enum-as-inner" version = "0.5.1" @@ -3334,177 +3415,6 @@ dependencies = [ "windows-sys 0.48.0", ] -[[package]] -name = "ethabi" -version = "18.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7413c5f74cc903ea37386a8965a936cbeb334bd270862fdece542c1b2dcbc898" -dependencies = [ - "ethereum-types", - "hex", - "once_cell", - "regex", - "serde", - "serde_json", - "sha3 0.10.8", - "thiserror", - "uint", -] - -[[package]] -name = "ethbloom" -version = "0.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c22d4b5885b6aa2fe5e8b9329fb8d232bf739e434e6b87347c63bdd00c120f60" -dependencies = [ - "crunchy", - "fixed-hash", - "impl-codec", - "impl-rlp", - "impl-serde", - "scale-info", - "tiny-keccak", -] - -[[package]] -name = "ethereum-types" -version = "0.14.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02d215cbf040552efcbe99a38372fe80ab9d00268e20012b79fcd0f073edd8ee" -dependencies = [ - "ethbloom", - "fixed-hash", - "impl-codec", - "impl-rlp", - "impl-serde", - "primitive-types", - "scale-info", - "uint", -] - -[[package]] -name = "ethers-contract" -version = "2.0.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0111ead599d17a7bff6985fd5756f39ca7033edc79a31b23026a8d5d64fa95cd" -dependencies = [ - "const-hex", - "ethers-contract-abigen", - "ethers-contract-derive", - "ethers-core", - "ethers-providers", - "futures-util", - "once_cell", - "pin-project", - "serde", - "serde_json", - "thiserror", -] - -[[package]] -name = "ethers-contract-abigen" -version = "2.0.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51258120c6b47ea9d9bec0d90f9e8af71c977fbefbef8213c91bfed385fe45eb" -dependencies = [ - "Inflector", - "const-hex", - "dunce", - "ethers-core", - "eyre", - "prettyplease 0.2.15", - "proc-macro2", - "quote", - "regex", - "serde", - "serde_json", - "syn 2.0.39", - "toml 0.8.8", - "walkdir", -] - -[[package]] -name = "ethers-contract-derive" -version = "2.0.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "936e7a0f1197cee2b62dc89f63eff3201dbf87c283ff7e18d86d38f83b845483" -dependencies = [ - "Inflector", - "const-hex", - "ethers-contract-abigen", - "ethers-core", - "proc-macro2", - "quote", - "serde_json", - "syn 2.0.39", -] - -[[package]] -name = "ethers-core" -version = "2.0.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f03e0bdc216eeb9e355b90cf610ef6c5bb8aca631f97b5ae9980ce34ea7878d" -dependencies = [ - "arrayvec 0.7.4", - "bytes", - "cargo_metadata 0.18.1", - "chrono", - "const-hex", - "elliptic-curve 0.13.8", - "ethabi", - "generic-array 0.14.7", - "k256", - "num_enum", - "once_cell", - "open-fastrlp", - "rand 0.8.5", - "rlp", - "serde", - "serde_json", - "strum 0.25.0", - "syn 2.0.39", - "tempfile", - "thiserror", - "tiny-keccak", - "unicode-xid", -] - -[[package]] -name = "ethers-providers" -version = "2.0.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25d6c0c9455d93d4990c06e049abf9b30daf148cf461ee939c11d88907c60816" -dependencies = [ - "async-trait", - "auto_impl", - "base64 0.21.5", - "bytes", - "const-hex", - "enr", - "ethers-core", - "futures-core", - "futures-timer", - "futures-util", - "hashers", - "http", - "instant", - "jsonwebtoken", - "once_cell", - "pin-project", - "reqwest", - "serde", - "serde_json", - "thiserror", - "tokio", - "tracing", - "tracing-futures", - "url", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", - "ws_stream_wasm", -] - [[package]] name = "event-listener" version = "2.5.3" @@ -3593,16 +3503,6 @@ dependencies = [ "ver-api", ] -[[package]] -name = "eyre" -version = "0.6.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80f656be11ddf91bd709454d15d5bd896fbaf4cc3314e69349e4d1569f5b46cd" -dependencies = [ - "indenter", - "once_cell", -] - [[package]] name = "fake-simd" version = "0.1.2" @@ -3630,6 +3530,17 @@ version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" +[[package]] +name = "fastrlp" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "139834ddba373bbdd213dffe02c8d110508dcf1726c2be27e8d1f7d7e1856418" +dependencies = [ + "arrayvec 0.7.4", + "auto_impl", + "bytes", +] + [[package]] name = "fatality" version = "0.0.6" @@ -3690,10 +3601,10 @@ version = "0.1.0" source = "git+https://github.com/w3f/fflonk#1beb0585e1c8488956fac7f05da061f9b41e8948" dependencies = [ "ark-ec", - "ark-ff", + "ark-ff 0.4.2", "ark-poly", - "ark-serialize", - "ark-std", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "merlin 3.0.0", ] @@ -4246,10 +4157,6 @@ name = "futures-timer" version = "3.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c" -dependencies = [ - "gloo-timers", - "send_wrapper 0.4.0", -] [[package]] name = "futures-util" @@ -4379,23 +4286,11 @@ version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d" dependencies = [ - "aho-corasick", - "bstr 1.8.0", - "fnv", - "log", - "regex", -] - -[[package]] -name = "gloo-timers" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" -dependencies = [ - "futures-channel", - "futures-core", - "js-sys", - "wasm-bindgen", + "aho-corasick", + "bstr 1.8.0", + "fnv", + "log", + "regex", ] [[package]] @@ -4497,15 +4392,6 @@ dependencies = [ "serde", ] -[[package]] -name = "hashers" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2bca93b15ea5a746f220e56587f71e73c6165eab783df9e26590069953e3c30" -dependencies = [ - "fxhash", -] - [[package]] name = "heck" version = "0.4.1" @@ -4789,15 +4675,6 @@ dependencies = [ "parity-scale-codec", ] -[[package]] -name = "impl-rlp" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f28220f89297a075ddc7245cd538076ee98b01f2a9c23a53a4f1105d5a322808" -dependencies = [ - "rlp", -] - [[package]] name = "impl-serde" version = "0.4.0" @@ -4837,12 +4714,6 @@ dependencies = [ "quote", ] -[[package]] -name = "indenter" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683" - [[package]] name = "indexmap" version = "1.9.3" @@ -5185,20 +5056,6 @@ dependencies = [ "jsonrpsee-types", ] -[[package]] -name = "jsonwebtoken" -version = "8.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6971da4d9c3aa03c3d8f3ff0f4155b534aad021292003895a469716b2a230378" -dependencies = [ - "base64 0.21.5", - "pem", - "ring 0.16.20", - "serde", - "serde_json", - "simple_asn1", -] - [[package]] name = "k256" version = "0.13.2" @@ -5210,7 +5067,6 @@ dependencies = [ "elliptic-curve 0.13.8", "once_cell", "sha2 0.10.8", - "signature 2.2.0", ] [[package]] @@ -6433,12 +6289,6 @@ dependencies = [ "thrift", ] -[[package]] -name = "mime" -version = "0.3.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" - [[package]] name = "minimal-lexical" version = "0.2.1" @@ -6832,27 +6682,6 @@ dependencies = [ "libc", ] -[[package]] -name = "num_enum" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "683751d591e6d81200c39fb0d1032608b77724f34114db54f571ff1317b337c0" -dependencies = [ - "num_enum_derive", -] - -[[package]] -name = "num_enum_derive" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c11e44798ad209ccdd91fc192f0526a369a01234f7373e1b141c96d7cee4f0e" -dependencies = [ - "proc-macro-crate", - "proc-macro2", - "quote", - "syn 2.0.39", -] - [[package]] name = "number_prefix" version = "0.4.0" @@ -6916,31 +6745,6 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" -[[package]] -name = "open-fastrlp" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "786393f80485445794f6043fd3138854dd109cc6c4bd1a6383db304c9ce9b9ce" -dependencies = [ - "arrayvec 0.7.4", - "auto_impl", - "bytes", - "ethereum-types", - "open-fastrlp-derive", -] - -[[package]] -name = "open-fastrlp-derive" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "003b2be5c6c53c1cfeb0a238b8a1c3915cd410feb684457a36c10038f764bb1c" -dependencies = [ - "bytes", - "proc-macro2", - "quote", - "syn 1.0.109", -] - [[package]] name = "openssl-probe" version = "0.1.5" @@ -8853,16 +8657,6 @@ dependencies = [ "indexmap 2.1.0", ] -[[package]] -name = "pharos" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9567389417feee6ce15dd6527a8a1ecac205ef62c2932bcf3d9f6fc5b78b414" -dependencies = [ - "futures", - "rustc_version", -] - [[package]] name = "pin-project" version = "1.1.3" @@ -10227,7 +10021,6 @@ checksum = "0b34d9fd68ae0b74a41b21c03c2f62847aa0ffea044eee893b4c140b37e244e2" dependencies = [ "fixed-hash", "impl-codec", - "impl-rlp", "impl-serde", "scale-info", "uint", @@ -10256,7 +10049,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" dependencies = [ "once_cell", - "toml_edit 0.19.15", + "toml_edit", ] [[package]] @@ -10346,6 +10139,8 @@ version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "31b476131c3c86cb68032fdc5cb6d5a1045e3e42d96b69fa599fd77701e1f5bf" dependencies = [ + "bit-set", + "bit-vec", "bitflags 2.4.1", "lazy_static", "num-traits", @@ -10353,6 +10148,8 @@ dependencies = [ "rand_chacha 0.3.1", "rand_xorshift", "regex-syntax 0.8.2", + "rusty-fork", + "tempfile", "unarray", ] @@ -10758,41 +10555,6 @@ version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" -[[package]] -name = "reqwest" -version = "0.11.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b" -dependencies = [ - "base64 0.21.5", - "bytes", - "encoding_rs", - "futures-core", - "futures-util", - "h2", - "http", - "http-body", - "hyper", - "ipnet", - "js-sys", - "log", - "mime", - "once_cell", - "percent-encoding", - "pin-project-lite 0.2.13", - "serde", - "serde_json", - "serde_urlencoded", - "system-configuration", - "tokio", - "tower-service", - "url", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", - "winreg", -] - [[package]] name = "resolv-conf" version = "0.7.0" @@ -10830,10 +10592,10 @@ version = "0.1.0" source = "git+https://github.com/w3f/ring-proof?rev=0e948f3#0e948f3c28cbacecdd3020403c4841c0eb339213" dependencies = [ "ark-ec", - "ark-ff", + "ark-ff 0.4.2", "ark-poly", - "ark-serialize", - "ark-std", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "common", "fflonk", "merlin 3.0.0", @@ -10875,21 +10637,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bb919243f34364b6bd2fc10ef797edbfa75f33c252e7998527479c6d6b47e1ec" dependencies = [ "bytes", - "rlp-derive", "rustc-hex", ] -[[package]] -name = "rlp-derive" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e33d7b2abe0c340d8797fe2907d3f20d3b5ea5908683618bfe80df7f621f672a" -dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", -] - [[package]] name = "rocksdb" version = "0.21.0" @@ -11061,6 +10811,36 @@ dependencies = [ "webrtc-util", ] +[[package]] +name = "ruint" +version = "1.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "608a5726529f2f0ef81b8fde9873c4bb829d6b5b5ca6be4d97345ddf0749c825" +dependencies = [ + "alloy-rlp", + "ark-ff 0.3.0", + "ark-ff 0.4.2", + "bytes", + "fastrlp", + "num-bigint", + "num-traits", + "parity-scale-codec", + "primitive-types", + "proptest", + "rand 0.8.5", + "rlp", + "ruint-macro", + "serde", + "valuable", + "zeroize", +] + +[[package]] +name = "ruint-macro" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e666a5496a0b2186dbcd0ff6106e29e093c15591bde62c20d3842007c6978a09" + [[package]] name = "runtime-integration-test" version = "0.1.0" @@ -11128,6 +10908,15 @@ version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6" +[[package]] +name = "rustc_version" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee" +dependencies = [ + "semver 0.11.0", +] + [[package]] name = "rustc_version" version = "0.4.0" @@ -11261,6 +11050,18 @@ version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" +[[package]] +name = "rusty-fork" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f" +dependencies = [ + "fnv", + "quick-error", + "tempfile", + "wait-timeout", +] + [[package]] name = "ruzstd" version = "0.4.0" @@ -12604,7 +12405,16 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a3186ec9e65071a2095434b1f5bb24838d4e8e130f584c790f6033c79943537" dependencies = [ - "semver-parser", + "semver-parser 0.7.0", +] + +[[package]] +name = "semver" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6" +dependencies = [ + "semver-parser 0.10.2", ] [[package]] @@ -12623,16 +12433,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" [[package]] -name = "send_wrapper" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f638d531eccd6e23b980caf34876660d38e265409d8e99b397ab71eb3612fad0" - -[[package]] -name = "send_wrapper" -version = "0.6.0" +name = "semver-parser" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" +checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7" +dependencies = [ + "pest", +] [[package]] name = "serde" @@ -12674,18 +12481,6 @@ dependencies = [ "serde", ] -[[package]] -name = "serde_urlencoded" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" -dependencies = [ - "form_urlencoded", - "itoa", - "ryu", - "serde", -] - [[package]] name = "serial_test" version = "0.6.0" @@ -12869,18 +12664,6 @@ dependencies = [ "similar", ] -[[package]] -name = "simple_asn1" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" -dependencies = [ - "num-bigint", - "num-traits", - "thiserror", - "time", -] - [[package]] name = "siphasher" version = "0.3.11" @@ -12945,6 +12728,15 @@ dependencies = [ "futures-lite 1.13.0", ] +[[package]] +name = "smol_str" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "74212e6bbe9a4352329b2f68ba3130c15a3f26fe88ff22dbdc6cdd58fa85e99c" +dependencies = [ + "serde", +] + [[package]] name = "smoldot" version = "0.11.0" @@ -13053,7 +12845,7 @@ dependencies = [ "curve25519-dalek 4.1.1", "rand_core 0.6.4", "ring 0.17.5", - "rustc_version", + "rustc_version 0.4.0", "sha2 0.10.8", "subtle", ] @@ -13527,9 +13319,9 @@ dependencies = [ name = "sp-runtime" version = "24.0.0" dependencies = [ + "alloy-primitives", + "alloy-sol-types", "either", - "ethers-contract", - "ethers-core", "hash256-std-hasher", "impl-trait-for-tuples", "log", @@ -14075,9 +13867,6 @@ name = "strum" version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" -dependencies = [ - "strum_macros 0.25.3", -] [[package]] name = "strum_macros" @@ -14204,7 +13993,7 @@ version = "5.0.0-dev" dependencies = [ "ansi_term", "build-helper", - "cargo_metadata 0.15.4", + "cargo_metadata", "filetime", "parity-wasm", "sp-maybe-compressed-blob", @@ -14258,6 +14047,18 @@ dependencies = [ "unicode-ident", ] +[[package]] +name = "syn-solidity" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e349ed2ca56eff703d7c3ea013771bcbab9ad2ad39dddf863fc51d820329dc41" +dependencies = [ + "paste", + "proc-macro2", + "quote", + "syn 2.0.39", +] + [[package]] name = "synstructure" version = "0.12.6" @@ -14630,19 +14431,7 @@ dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit 0.19.15", -] - -[[package]] -name = "toml" -version = "0.8.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35" -dependencies = [ - "serde", - "serde_spanned", - "toml_datetime", - "toml_edit 0.21.0", + "toml_edit", ] [[package]] @@ -14667,19 +14456,6 @@ dependencies = [ "winnow", ] -[[package]] -name = "toml_edit" -version = "0.21.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03" -dependencies = [ - "indexmap 2.1.0", - "serde", - "serde_spanned", - "toml_datetime", - "winnow", -] - [[package]] name = "tower" version = "0.4.13" @@ -15156,6 +14932,15 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" +[[package]] +name = "wait-timeout" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6" +dependencies = [ + "libc", +] + [[package]] name = "waitgroup" version = "0.1.2" @@ -16170,25 +15955,6 @@ dependencies = [ "windows-sys 0.48.0", ] -[[package]] -name = "ws_stream_wasm" -version = "0.7.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7999f5f4217fe3818726b66257a4475f71e74ffd190776ad053fa159e50737f5" -dependencies = [ - "async_io_stream", - "futures", - "js-sys", - "log", - "pharos", - "rustc_version", - "send_wrapper 0.6.0", - "thiserror", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", -] - [[package]] name = "wyz" version = "0.5.1" diff --git a/devops/parachain-launch/config.yml b/devops/parachain-launch/config.yml index 28bb4d80b9..13615ff50b 100644 --- a/devops/parachain-launch/config.yml +++ b/devops/parachain-launch/config.yml @@ -7,7 +7,7 @@ relaychain: validation_upgrade_cooldown: 10 validation_upgrade_delay: 10 env: - RUST_LOG: parachain::candidate-backing=trace,parachain::candidate-selection=trace,parachain::pvf=trace,parachain::collator-protocol=trace,parachain::provisioner=trace + RUST_LOG: warn flags: - --rpc-methods=unsafe - --wasm-execution=compiled @@ -17,31 +17,31 @@ relaychain: - name: bob parachains: -- image: mangatasolutions/mangata-node:dev - chain: - base: mangata-rococo-local - collators: - - alice - - bob - sudo: alice - skipCollatorSelection: true - skipBalances: true - id: 2110 - parachain: true - flags: - - --rpc-methods=unsafe - - --force-authoring - - --wasm-execution=compiled - - --execution=wasm - relaychainFlags: - - --wasm-execution=compiled - - --execution=wasm - env: - # RUST_LOG: info,block_builder=trace,block_shuffler=trace,runtime::ver=trace,txpool=trace,rpc::nonce=trace - RUST_LOG: info,block_builder=trace - volumePath: /mangata/data - nodes: - - flags: - - --alice - - flags: - - --bob + - image: mangatasolutions/mangata-node:dev + chain: + base: mangata-rococo-local + collators: + - alice + - bob + sudo: alice + skipCollatorSelection: true + skipBalances: true + id: 2110 + parachain: true + flags: + - --rpc-methods=unsafe + - --force-authoring + - --wasm-execution=compiled + - --execution=wasm + relaychainFlags: + - --wasm-execution=compiled + - --execution=wasm + env: + # RUST_LOG: info,block_builder=trace,block_shuffler=trace,runtime::ver=trace,txpool=trace,rpc::nonce=trace + RUST_LOG: warn,metamask=trace + volumePath: /mangata/data + nodes: + - flags: + - --alice + - flags: + - --bob diff --git a/runtime/integration-test/src/setup.rs b/runtime/integration-test/src/setup.rs index 8dad8966da..9939ca3f4e 100644 --- a/runtime/integration-test/src/setup.rs +++ b/runtime/integration-test/src/setup.rs @@ -23,7 +23,7 @@ mod kusama_imports { pub use mangata_kusama_runtime::{ xcm_config::*, AccountId, AssetRegistry, Balance, Bootstrap, CustomMetadata, Identity, PolkadotXcm, ProofOfStake, Proxy, Runtime, RuntimeCall, RuntimeOrigin, System, TokenId, - Tokens, XTokens, XcmMetadata, XcmpQueue, Xyk, XykMetadata, + Tokens, XTokens, XcmMetadata, XcmpQueue, Xyk, XykMetadata, UncheckedExtrinsic, }; pub use xcm::{latest::Weight as XcmWeight, VersionedMultiLocation}; diff --git a/runtime/integration-test/src/xyk.rs b/runtime/integration-test/src/xyk.rs index 97c54acf98..e3979faa7b 100644 --- a/runtime/integration-test/src/xyk.rs +++ b/runtime/integration-test/src/xyk.rs @@ -54,3 +54,10 @@ fn create_pool_disabled_meta_disabled() { assert_err!(create_pool(), pallet_xyk::Error::::FunctionNotAvailableForThisToken); }); } + +#[test] +fn test_decode_extrinsic() { + test_env(None).execute_with(|| { + UncheckedExtrinsic::decode(hex!("121212")); + }); +} diff --git a/runtime/mangata-kusama/src/lib.rs b/runtime/mangata-kusama/src/lib.rs index a0bd1a8b39..0cf3893334 100644 --- a/runtime/mangata-kusama/src/lib.rs +++ b/runtime/mangata-kusama/src/lib.rs @@ -369,8 +369,8 @@ impl Into for RuntimeCall { use sp_runtime::generic::ExtendedCall; impl ExtendedCall for RuntimeCall { - fn context(&self) -> Option<(String, String)> { - Some(("dummy_call".to_string(), "dummy_params".to_string())) + fn context(&self) -> Option<(Vec, Vec)> { + Some(("dummy_call".as_bytes().to_vec(), "dummy_params".as_bytes().to_vec())) } } diff --git a/runtime/mangata-rococo/src/lib.rs b/runtime/mangata-rococo/src/lib.rs index c0638b384c..089c877e3f 100644 --- a/runtime/mangata-rococo/src/lib.rs +++ b/runtime/mangata-rococo/src/lib.rs @@ -74,8 +74,8 @@ pub type CheckedExtrinsic = runtime_types::CheckedExtrinsic Option<(String, String)> { - Some(("dummy_call".to_string(), "dummy_params".to_string())) + fn context(&self) -> Option<(Vec, Vec)> { + Some(("dummy_call".as_bytes().to_vec(), "dummy_params".as_bytes().to_vec())) } } From 9047509bb9b813fb721a2f0caa8886fb6b617afa Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Fri, 1 Dec 2023 18:59:06 +0100 Subject: [PATCH 03/15] rpc interface for metamask signing --- Cargo.lock | 763 ++++++++++-------- pallets/metamask-signature-rpc/Cargo.toml | 40 + pallets/metamask-signature-rpc/src/lib.rs | 63 ++ .../metamask-signature-runtime-api/Cargo.toml | 36 + .../metamask-signature-runtime-api/src/lib.rs | 11 + runtime/mangata-kusama/Cargo.toml | 2 + runtime/mangata-kusama/src/lib.rs | 13 +- 7 files changed, 588 insertions(+), 340 deletions(-) create mode 100644 pallets/metamask-signature-rpc/Cargo.toml create mode 100644 pallets/metamask-signature-rpc/src/lib.rs create mode 100644 pallets/metamask-signature-runtime-api/Cargo.toml create mode 100644 pallets/metamask-signature-runtime-api/src/lib.rs diff --git a/Cargo.lock b/Cargo.lock index 5b94557a34..b3783f49b0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -186,6 +186,67 @@ version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" +[[package]] +name = "alloy-primitives" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08ca2c09d5911548a5cb620382ea0e1af99d3c898ce0efecbbd274a4676cf53e" +dependencies = [ + "alloy-rlp", + "bytes", + "cfg-if", + "const-hex", + "derive_more", + "hex-literal 0.4.1", + "itoa", + "proptest", + "rand 0.8.5", + "ruint", + "serde", + "tiny-keccak", +] + +[[package]] +name = "alloy-rlp" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc0fac0fc16baf1f63f78b47c3d24718f3619b0714076f6a02957d808d52cbef" +dependencies = [ + "arrayvec 0.7.4", + "bytes", + "smol_str", +] + +[[package]] +name = "alloy-sol-macro" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e40cea54ac58080a1b88ea6556866eac1902b321186c77d53ad2b5ebbbf0e038" +dependencies = [ + "const-hex", + "dunce", + "heck", + "indexmap 2.1.0", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.39", + "syn-solidity", + "tiny-keccak", +] + +[[package]] +name = "alloy-sol-types" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f81aa34725607be118c395d62c1d8d97c8a343dd1ada5370ed508ed5232eab6a" +dependencies = [ + "alloy-primitives", + "alloy-sol-macro", + "const-hex", + "serde", +] + [[package]] name = "always-assert" version = "0.1.3" @@ -319,9 +380,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c775f0d12169cba7aae4caeb547bb6a50781c7449a8aa53793827c9ec4abf488" dependencies = [ "ark-ec", - "ark-ff", - "ark-serialize", - "ark-std", + "ark-ff 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", ] [[package]] @@ -330,10 +391,10 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "defd9a439d56ac24968cca0571f598a61bc8c55f71d50a89cda591cb750670ba" dependencies = [ - "ark-ff", + "ark-ff 0.4.2", "ark-poly", - "ark-serialize", - "ark-std", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "derivative", "hashbrown 0.13.2", "itertools 0.10.5", @@ -349,8 +410,26 @@ checksum = "f9cde0f2aa063a2a5c28d39b47761aa102bda7c13c84fc118a61b87c7b2f785c" dependencies = [ "ark-bls12-381", "ark-ec", - "ark-ff", - "ark-std", + "ark-ff 0.4.2", + "ark-std 0.4.0", +] + +[[package]] +name = "ark-ff" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b3235cc41ee7a12aaaf2c575a2ad7b46713a8a50bda2fc3b003a04845c05dd6" +dependencies = [ + "ark-ff-asm 0.3.0", + "ark-ff-macros 0.3.0", + "ark-serialize 0.3.0", + "ark-std 0.3.0", + "derivative", + "num-bigint", + "num-traits", + "paste", + "rustc_version 0.3.3", + "zeroize", ] [[package]] @@ -359,20 +438,30 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec847af850f44ad29048935519032c33da8aa03340876d351dfab5660d2966ba" dependencies = [ - "ark-ff-asm", - "ark-ff-macros", - "ark-serialize", - "ark-std", + "ark-ff-asm 0.4.2", + "ark-ff-macros 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "derivative", "digest 0.10.7", "itertools 0.10.5", "num-bigint", "num-traits", "paste", - "rustc_version", + "rustc_version 0.4.0", "zeroize", ] +[[package]] +name = "ark-ff-asm" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db02d390bf6643fb404d3d22d31aee1c4bc4459600aef9113833d17e786c6e44" +dependencies = [ + "quote", + "syn 1.0.109", +] + [[package]] name = "ark-ff-asm" version = "0.4.2" @@ -383,6 +472,18 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "ark-ff-macros" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db2fd794a08ccb318058009eefdf15bcaaaaf6f8161eb3345f907222bac38b20" +dependencies = [ + "num-bigint", + "num-traits", + "quote", + "syn 1.0.109", +] + [[package]] name = "ark-ff-macros" version = "0.4.2" @@ -402,9 +503,9 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d320bfc44ee185d899ccbadfa8bc31aab923ce1558716e1997a1e74057fe86bf" dependencies = [ - "ark-ff", - "ark-serialize", - "ark-std", + "ark-ff 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "derivative", "hashbrown 0.13.2", ] @@ -416,9 +517,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49b08346a3e38e2be792ef53ee168623c9244d968ff00cd70fb9932f6fe36393" dependencies = [ "ark-ec", - "ark-ff", - "ark-serialize", - "ark-std", + "ark-ff 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "parity-scale-codec", ] @@ -429,9 +530,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51bd73bb6ddb72630987d37fa963e99196896c0d0ea81b7c894567e74a2f83af" dependencies = [ "ark-ec", - "ark-ff", - "ark-serialize", - "ark-std", + "ark-ff 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "parity-scale-codec", "scale-info", ] @@ -442,15 +543,25 @@ version = "0.0.2" source = "git+https://github.com/w3f/ring-vrf?rev=3119f51#3119f51b54b69308abfb0671f6176cb125ae1bf1" dependencies = [ "ark-ec", - "ark-ff", - "ark-serialize", - "ark-std", + "ark-ff 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "ark-transcript", "digest 0.10.7", "rand_core 0.6.4", "zeroize", ] +[[package]] +name = "ark-serialize" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d6c2b318ee6e10f8c2853e73a83adc0ccb88995aa978d8a3408d492ab2ee671" +dependencies = [ + "ark-std 0.3.0", + "digest 0.9.0", +] + [[package]] name = "ark-serialize" version = "0.4.2" @@ -458,7 +569,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "adb7b85a02b83d2f22f89bd5cac66c9c89474240cb6207cb1efc16d098e822a5" dependencies = [ "ark-serialize-derive", - "ark-std", + "ark-std 0.4.0", "digest 0.10.7", "num-bigint", ] @@ -474,6 +585,16 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "ark-std" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1df2c09229cbc5a028b1d70e00fdb2acee28b1055dfb5ca73eea49c5a25c4e7c" +dependencies = [ + "num-traits", + "rand 0.8.5", +] + [[package]] name = "ark-std" version = "0.4.0" @@ -489,12 +610,12 @@ name = "ark-transcript" version = "0.0.2" source = "git+https://github.com/w3f/ring-vrf?rev=3119f51#3119f51b54b69308abfb0671f6176cb125ae1bf1" dependencies = [ - "ark-ff", - "ark-serialize", - "ark-std", + "ark-ff 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "digest 0.10.7", "rand_core 0.6.4", - "sha3", + "sha3 0.10.8", ] [[package]] @@ -822,6 +943,18 @@ dependencies = [ "winapi", ] +[[package]] +name = "auto_impl" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fee3da8ef1276b0bee5dd1c7258010d8fffd31801447323115a25560e1327b89" +dependencies = [ + "proc-macro-error", + "proc-macro2", + "quote", + "syn 1.0.109", +] + [[package]] name = "autocfg" version = "1.1.0" @@ -851,10 +984,10 @@ dependencies = [ "ark-bls12-381", "ark-ec", "ark-ed-on-bls12-381-bandersnatch", - "ark-ff", + "ark-ff 0.4.2", "ark-scale 0.0.11", - "ark-serialize", - "ark-std", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "dleq_vrf", "fflonk", "merlin 3.0.0", @@ -913,7 +1046,6 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "hash-db", "log", @@ -958,6 +1090,21 @@ dependencies = [ "bitcoin_hashes", ] +[[package]] +name = "bit-set" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" +dependencies = [ + "bit-vec", +] + +[[package]] +name = "bit-vec" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" + [[package]] name = "bitcoin_hashes" version = "0.11.0" @@ -1060,6 +1207,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" dependencies = [ + "block-padding 0.2.1", "generic-array 0.14.7", ] @@ -1515,10 +1663,10 @@ version = "0.1.0" source = "git+https://github.com/w3f/ring-proof?rev=0e948f3#0e948f3c28cbacecdd3020403c4841c0eb339213" dependencies = [ "ark-ec", - "ark-ff", + "ark-ff 0.4.2", "ark-poly", - "ark-serialize", - "ark-std", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "fflonk", "merlin 3.0.0", ] @@ -1638,6 +1786,19 @@ dependencies = [ "windows-sys 0.45.0", ] +[[package]] +name = "const-hex" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5104de16b218eddf8e34ffe2f86f74bfa4e61e95a1b89732fccf6325efd0557" +dependencies = [ + "cfg-if", + "cpufeatures", + "hex", + "proptest", + "serde", +] + [[package]] name = "const-oid" version = "0.9.5" @@ -1982,7 +2143,6 @@ dependencies = [ [[package]] name = "cumulus-client-cli" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "clap", "parity-scale-codec", @@ -1998,7 +2158,6 @@ dependencies = [ [[package]] name = "cumulus-client-collator" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "cumulus-client-consensus-common", "cumulus-client-network", @@ -2021,7 +2180,6 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-aura" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "cumulus-client-collator", @@ -2064,7 +2222,6 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-common" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "cumulus-client-pov-recovery", @@ -2093,7 +2250,6 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-proposer" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "anyhow", "async-trait", @@ -2108,7 +2264,6 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-relay-chain" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "cumulus-client-consensus-common", @@ -2131,7 +2286,6 @@ dependencies = [ [[package]] name = "cumulus-client-network" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "cumulus-relay-chain-interface", @@ -2154,7 +2308,6 @@ dependencies = [ [[package]] name = "cumulus-client-pov-recovery" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2178,7 +2331,6 @@ dependencies = [ [[package]] name = "cumulus-client-service" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "cumulus-client-cli", "cumulus-client-collator", @@ -2213,7 +2365,6 @@ dependencies = [ [[package]] name = "cumulus-pallet-aura-ext" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -2231,7 +2382,6 @@ dependencies = [ [[package]] name = "cumulus-pallet-dmp-queue" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2249,7 +2399,6 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "bytes", "cumulus-pallet-parachain-system-proc-macro", @@ -2280,7 +2429,6 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system-proc-macro" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2291,7 +2439,6 @@ dependencies = [ [[package]] name = "cumulus-pallet-session-benchmarking" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -2305,7 +2452,6 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcm" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2321,7 +2467,6 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcmp-queue" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "cumulus-primitives-core", "frame-benchmarking", @@ -2343,7 +2488,6 @@ dependencies = [ [[package]] name = "cumulus-primitives-aura" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2357,7 +2501,6 @@ dependencies = [ [[package]] name = "cumulus-primitives-core" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2374,7 +2517,6 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2397,7 +2539,6 @@ dependencies = [ [[package]] name = "cumulus-primitives-timestamp" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "cumulus-primitives-core", "futures", @@ -2410,7 +2551,6 @@ dependencies = [ [[package]] name = "cumulus-primitives-utility" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2428,7 +2568,6 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-inprocess-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2452,7 +2591,6 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2470,7 +2608,6 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-minimal-node" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "array-bytes", "async-trait", @@ -2505,7 +2642,6 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-rpc-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2543,7 +2679,6 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", @@ -2592,7 +2727,7 @@ dependencies = [ "digest 0.10.7", "fiat-crypto", "platforms", - "rustc_version", + "rustc_version 0.4.0", "subtle", "zeroize", ] @@ -2846,7 +2981,7 @@ dependencies = [ "convert_case", "proc-macro2", "quote", - "rustc_version", + "rustc_version 0.4.0", "syn 1.0.109", ] @@ -2944,11 +3079,11 @@ version = "0.0.2" source = "git+https://github.com/w3f/ring-vrf?rev=3119f51#3119f51b54b69308abfb0671f6176cb125ae1bf1" dependencies = [ "ark-ec", - "ark-ff", + "ark-ff 0.4.2", "ark-scale 0.0.10", "ark-secret-scalar", - "ark-serialize", - "ark-std", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "ark-transcript", "arrayvec 0.7.4", "rand_core 0.6.4", @@ -3000,6 +3135,12 @@ version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653" +[[package]] +name = "dunce" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b" + [[package]] name = "dyn-clonable" version = "0.9.0" @@ -3360,7 +3501,6 @@ dependencies = [ [[package]] name = "extrinsic-shuffler" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "derive_more", "log", @@ -3400,6 +3540,17 @@ version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" +[[package]] +name = "fastrlp" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "139834ddba373bbdd213dffe02c8d110508dcf1726c2be27e8d1f7d7e1856418" +dependencies = [ + "arrayvec 0.7.4", + "auto_impl", + "bytes", +] + [[package]] name = "fatality" version = "0.0.6" @@ -3460,10 +3611,10 @@ version = "0.1.0" source = "git+https://github.com/w3f/fflonk#1beb0585e1c8488956fac7f05da061f9b41e8948" dependencies = [ "ark-ec", - "ark-ff", + "ark-ff 0.4.2", "ark-poly", - "ark-serialize", - "ark-std", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "merlin 3.0.0", ] @@ -3558,7 +3709,6 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "parity-scale-codec", ] @@ -3581,7 +3731,6 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-support", "frame-support-procedural", @@ -3606,7 +3755,6 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "Inflector", "array-bytes", @@ -3660,7 +3808,6 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -3671,7 +3818,6 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -3688,7 +3834,6 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -3722,7 +3867,6 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-recursion", "futures", @@ -3744,7 +3888,6 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "aquamarine 0.3.2", "bitflags 1.3.2", @@ -3785,7 +3928,6 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "Inflector", "cfg-expr", @@ -3803,7 +3945,6 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3815,7 +3956,6 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "proc-macro2", "quote", @@ -3825,7 +3965,6 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "cfg-if", "extrinsic-shuffler", @@ -3846,7 +3985,6 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -3861,7 +3999,6 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "parity-scale-codec", "sp-api", @@ -3870,7 +4007,6 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-support", "parity-scale-codec", @@ -5022,7 +5158,6 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-support", "polkadot-primitives", @@ -5819,6 +5954,7 @@ dependencies = [ "log", "mangata-support", "mangata-types", + "metamask-signature-runtime-api", "orml-asset-registry", "orml-tokens", "orml-traits", @@ -6072,7 +6208,6 @@ dependencies = [ [[package]] name = "mangata-support" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-support", "mangata-types", @@ -6085,7 +6220,6 @@ dependencies = [ [[package]] name = "mangata-types" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "parity-scale-codec", "scale-info", @@ -6225,6 +6359,38 @@ dependencies = [ "zeroize", ] +[[package]] +name = "metamask-signature-rpc" +version = "2.0.0" +dependencies = [ + "jsonrpsee", + "mangata-types", + "metamask-signature-runtime-api", + "parity-scale-codec", + "serde", + "sp-api", + "sp-blockchain", + "sp-core", + "sp-rpc", + "sp-runtime", + "sp-std", +] + +[[package]] +name = "metamask-signature-runtime-api" +version = "2.0.0" +dependencies = [ + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "serde", + "sp-api", + "sp-core", + "sp-runtime", + "sp-std", +] + [[package]] name = "mick-jaeger" version = "0.1.8" @@ -6265,7 +6431,6 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "futures", "log", @@ -6284,7 +6449,6 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "anyhow", "jsonrpsee", @@ -6367,7 +6531,7 @@ dependencies = [ "digest 0.10.7", "multihash-derive", "sha2 0.10.8", - "sha3", + "sha3 0.10.8", "unsigned-varint", ] @@ -6618,6 +6782,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" dependencies = [ "autocfg", + "libm 0.2.8", ] [[package]] @@ -6906,7 +7071,6 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -6924,7 +7088,6 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -6940,7 +7103,6 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-support", "frame-system", @@ -6957,7 +7119,6 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-support", "frame-system", @@ -6973,7 +7134,6 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-support", "frame-system", @@ -6987,7 +7147,6 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7011,7 +7170,6 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "aquamarine 0.3.2", "docify", @@ -7033,7 +7191,6 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7048,7 +7205,6 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-support", "frame-system", @@ -7068,7 +7224,6 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -7125,7 +7280,6 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7143,7 +7297,6 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7162,7 +7315,6 @@ dependencies = [ [[package]] name = "pallet-collator-selection" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7181,7 +7333,6 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7198,7 +7349,6 @@ dependencies = [ [[package]] name = "pallet-collective-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7215,7 +7365,6 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7256,7 +7405,6 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7274,7 +7422,6 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7297,7 +7444,6 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7311,7 +7457,6 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7330,7 +7475,6 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "docify", "frame-benchmarking", @@ -7378,7 +7522,6 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7401,7 +7544,6 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7417,7 +7559,6 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7437,7 +7578,6 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7506,7 +7646,6 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7523,7 +7662,6 @@ dependencies = [ [[package]] name = "pallet-message-queue" version = "7.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7542,7 +7680,6 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7590,7 +7727,6 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7606,7 +7742,6 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7622,7 +7757,6 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-support", "frame-system", @@ -7641,7 +7775,6 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7661,7 +7794,6 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -7672,7 +7804,6 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-support", "frame-system", @@ -7689,7 +7820,6 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7713,7 +7843,6 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7767,7 +7896,6 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7782,7 +7910,6 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7800,7 +7927,6 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7815,7 +7941,6 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7834,7 +7959,6 @@ dependencies = [ [[package]] name = "pallet-root-testing" version = "1.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-support", "frame-system", @@ -7849,7 +7973,6 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "docify", "frame-benchmarking", @@ -7867,7 +7990,6 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-support", "frame-system", @@ -7889,7 +8011,6 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7906,7 +8027,6 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7924,7 +8044,6 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7947,7 +8066,6 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -7958,7 +8076,6 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "log", "sp-arithmetic", @@ -7967,7 +8084,6 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "parity-scale-codec", "sp-api", @@ -7976,7 +8092,6 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7993,7 +8108,6 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8008,7 +8122,6 @@ dependencies = [ [[package]] name = "pallet-sudo-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8041,7 +8154,6 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8060,7 +8172,6 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8079,7 +8190,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-support", "frame-system", @@ -8095,7 +8205,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-support", "frame-system", @@ -8111,7 +8220,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "jsonrpsee", "pallet-transaction-payment-mangata-rpc-runtime-api", @@ -8127,7 +8235,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "pallet-transaction-payment-mangata", "parity-scale-codec", @@ -8139,7 +8246,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -8155,7 +8261,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -8167,7 +8272,6 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8184,7 +8288,6 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8200,7 +8303,6 @@ dependencies = [ [[package]] name = "pallet-utility-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8216,7 +8318,6 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8231,7 +8332,6 @@ dependencies = [ [[package]] name = "pallet-vesting-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8246,7 +8346,6 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8261,7 +8360,6 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "bounded-collections", "frame-benchmarking", @@ -8282,7 +8380,6 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8337,7 +8434,6 @@ dependencies = [ [[package]] name = "parachain-info" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -8382,7 +8478,6 @@ dependencies = [ [[package]] name = "parachains-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-utility", @@ -8761,7 +8856,6 @@ checksum = "14e6ab3f592e6fb464fc9712d8d6e6912de6473954635fd76a589d832cffcbb0" [[package]] name = "polkadot-approval-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "futures", "futures-timer", @@ -8779,7 +8873,6 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "always-assert", "futures", @@ -8795,7 +8888,6 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "derive_more", "fatality", @@ -8818,7 +8910,6 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "fatality", "futures", @@ -8839,7 +8930,6 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "clap", "frame-benchmarking-cli", @@ -8866,7 +8956,6 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "bitvec", "fatality", @@ -8888,7 +8977,6 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "parity-scale-codec", "scale-info", @@ -8900,7 +8988,6 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "derive_more", "fatality", @@ -8925,7 +9012,6 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -8939,7 +9025,6 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "futures", "futures-timer", @@ -8960,7 +9045,6 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "always-assert", "async-trait", @@ -8983,7 +9067,6 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "futures", "parity-scale-codec", @@ -9001,7 +9084,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "bitvec", "derive_more", @@ -9030,7 +9112,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "bitvec", "futures", @@ -9052,7 +9133,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "bitvec", "fatality", @@ -9071,7 +9151,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "futures", "polkadot-node-subsystem", @@ -9086,7 +9165,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "futures", @@ -9107,7 +9185,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "futures", "polkadot-node-metrics", @@ -9122,7 +9199,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "futures", "futures-timer", @@ -9139,7 +9215,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "fatality", "futures", @@ -9158,7 +9233,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "futures", @@ -9175,7 +9249,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-prospective-parachains" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "bitvec", "fatality", @@ -9192,7 +9265,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "bitvec", "fatality", @@ -9209,7 +9281,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "always-assert", "futures", @@ -9237,7 +9308,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "futures", "polkadot-node-primitives", @@ -9253,7 +9323,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "cpu-time", "futures", @@ -9276,7 +9345,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-prepare-worker" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "futures", "libc", @@ -9299,7 +9367,6 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "futures", "polkadot-node-metrics", @@ -9314,7 +9381,6 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "lazy_static", "log", @@ -9332,7 +9398,6 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "bs58 0.5.0", "futures", @@ -9351,7 +9416,6 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-channel 1.9.0", "async-trait", @@ -9375,7 +9439,6 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "bounded-vec", "futures", @@ -9397,7 +9460,6 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -9407,7 +9469,6 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "derive_more", @@ -9431,7 +9492,6 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "derive_more", @@ -9464,7 +9524,6 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "futures", @@ -9487,7 +9546,6 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "bounded-collections", "derive_more", @@ -9504,7 +9562,6 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "env_logger 0.9.3", "log", @@ -9522,7 +9579,6 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "bitvec", "hex-literal 0.4.1", @@ -9548,7 +9604,6 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "jsonrpsee", "mmr-rpc", @@ -9580,7 +9635,6 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "bitvec", "frame-benchmarking", @@ -9677,7 +9731,6 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "bitvec", "frame-benchmarking", @@ -9723,7 +9776,6 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-support", "polkadot-primitives", @@ -9737,7 +9789,6 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "bs58 0.5.0", "frame-benchmarking", @@ -9750,7 +9801,6 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "bitflags 1.3.2", "bitvec", @@ -9796,7 +9846,6 @@ dependencies = [ [[package]] name = "polkadot-service" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "frame-benchmarking", @@ -9917,7 +9966,6 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "arrayvec 0.7.4", "bitvec", @@ -9941,7 +9989,6 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -10233,6 +10280,26 @@ dependencies = [ "sp-std", ] +[[package]] +name = "proptest" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31b476131c3c86cb68032fdc5cb6d5a1045e3e42d96b69fa599fd77701e1f5bf" +dependencies = [ + "bit-set", + "bit-vec", + "bitflags 2.4.1", + "lazy_static", + "num-traits", + "rand 0.8.5", + "rand_chacha 0.3.1", + "rand_xorshift", + "regex-syntax 0.8.2", + "rusty-fork", + "tempfile", + "unarray", +] + [[package]] name = "prost" version = "0.11.9" @@ -10448,6 +10515,15 @@ dependencies = [ "rand_core 0.6.4", ] +[[package]] +name = "rand_xorshift" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" +dependencies = [ + "rand_core 0.6.4", +] + [[package]] name = "rawpointer" version = "0.2.1" @@ -10663,10 +10739,10 @@ version = "0.1.0" source = "git+https://github.com/w3f/ring-proof?rev=0e948f3#0e948f3c28cbacecdd3020403c4841c0eb339213" dependencies = [ "ark-ec", - "ark-ff", + "ark-ff 0.4.2", "ark-poly", - "ark-serialize", - "ark-std", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "common", "fflonk", "merlin 3.0.0", @@ -10701,6 +10777,16 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "rlp" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb919243f34364b6bd2fc10ef797edbfa75f33c252e7998527479c6d6b47e1ec" +dependencies = [ + "bytes", + "rustc-hex", +] + [[package]] name = "rocksdb" version = "0.21.0" @@ -10714,7 +10800,6 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "binary-merkle-tree", "frame-benchmarking", @@ -10802,7 +10887,6 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-support", "polkadot-primitives", @@ -10874,6 +10958,36 @@ dependencies = [ "webrtc-util", ] +[[package]] +name = "ruint" +version = "1.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "608a5726529f2f0ef81b8fde9873c4bb829d6b5b5ca6be4d97345ddf0749c825" +dependencies = [ + "alloy-rlp", + "ark-ff 0.3.0", + "ark-ff 0.4.2", + "bytes", + "fastrlp", + "num-bigint", + "num-traits", + "parity-scale-codec", + "primitive-types", + "proptest", + "rand 0.8.5", + "rlp", + "ruint-macro", + "serde", + "valuable", + "zeroize", +] + +[[package]] +name = "ruint-macro" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e666a5496a0b2186dbcd0ff6106e29e093c15591bde62c20d3842007c6978a09" + [[package]] name = "runtime-integration-test" version = "0.1.0" @@ -10941,6 +11055,15 @@ version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6" +[[package]] +name = "rustc_version" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee" +dependencies = [ + "semver 0.11.0", +] + [[package]] name = "rustc_version" version = "0.4.0" @@ -11074,6 +11197,18 @@ version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" +[[package]] +name = "rusty-fork" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f" +dependencies = [ + "fnv", + "quick-error", + "tempfile", + "wait-timeout", +] + [[package]] name = "ruzstd" version = "0.4.0" @@ -11123,7 +11258,6 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "log", "sp-core", @@ -11134,7 +11268,6 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "futures", @@ -11162,7 +11295,6 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "futures", "futures-timer", @@ -11185,7 +11317,6 @@ dependencies = [ [[package]] name = "sc-basic-authorship-ver" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "aquamarine 0.3.2", "futures", @@ -11211,7 +11342,6 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -11226,7 +11356,6 @@ dependencies = [ [[package]] name = "sc-block-builder-ver" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -11246,7 +11375,6 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -11265,7 +11393,6 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11276,7 +11403,6 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "array-bytes", "chrono", @@ -11315,7 +11441,6 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "fnv", "futures", @@ -11341,7 +11466,6 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "hash-db", "kvdb", @@ -11367,7 +11491,6 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "futures", @@ -11392,7 +11515,6 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "futures", @@ -11421,7 +11543,6 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "fork-tree", @@ -11457,7 +11578,6 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "futures", "jsonrpsee", @@ -11479,7 +11599,6 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11513,7 +11632,6 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "futures", "jsonrpsee", @@ -11532,7 +11650,6 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "fork-tree", "parity-scale-codec", @@ -11545,7 +11662,6 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "ahash 0.8.6", "array-bytes", @@ -11586,7 +11702,6 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "finality-grandpa", "futures", @@ -11606,7 +11721,6 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "futures", @@ -11631,7 +11745,6 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -11653,7 +11766,6 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -11665,7 +11777,6 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "anyhow", "cfg-if", @@ -11682,7 +11793,6 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "ansi_term", "futures", @@ -11698,7 +11808,6 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "array-bytes", "parking_lot 0.12.1", @@ -11712,7 +11821,6 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11753,7 +11861,6 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-channel 1.9.0", "cid", @@ -11773,7 +11880,6 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -11790,7 +11896,6 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "ahash 0.8.6", "futures", @@ -11808,7 +11913,6 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11829,7 +11933,6 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11863,7 +11966,6 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "array-bytes", "futures", @@ -11881,7 +11983,6 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "array-bytes", "bytes", @@ -11915,7 +12016,6 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -11924,7 +12024,6 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "futures", "jsonrpsee", @@ -11955,7 +12054,6 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -11974,7 +12072,6 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "http", "jsonrpsee", @@ -11989,7 +12086,6 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "array-bytes", "futures", @@ -12017,7 +12113,6 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "directories", @@ -12083,7 +12178,6 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "log", "parity-scale-codec", @@ -12094,7 +12188,6 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "clap", "fs4", @@ -12108,7 +12201,6 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12127,7 +12219,6 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "futures", "libc", @@ -12146,7 +12237,6 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "chrono", "futures", @@ -12165,7 +12255,6 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "ansi_term", "atty", @@ -12194,7 +12283,6 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12205,7 +12293,6 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "futures", @@ -12231,7 +12318,6 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "futures", @@ -12247,7 +12333,6 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-channel 1.9.0", "futures", @@ -12467,7 +12552,16 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a3186ec9e65071a2095434b1f5bb24838d4e8e130f584c790f6033c79943537" dependencies = [ - "semver-parser", + "semver-parser 0.7.0", +] + +[[package]] +name = "semver" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6" +dependencies = [ + "semver-parser 0.10.2", ] [[package]] @@ -12485,6 +12579,15 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" +[[package]] +name = "semver-parser" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7" +dependencies = [ + "pest", +] + [[package]] name = "send_wrapper" version = "0.4.0" @@ -12615,6 +12718,18 @@ dependencies = [ "digest 0.10.7", ] +[[package]] +name = "sha3" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809" +dependencies = [ + "block-buffer 0.9.0", + "digest 0.9.0", + "keccak", + "opaque-debug 0.3.0", +] + [[package]] name = "sha3" version = "0.10.8" @@ -12726,7 +12841,6 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" [[package]] name = "slot-range-helper" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "enumn", "parity-scale-codec", @@ -12767,6 +12881,15 @@ dependencies = [ "futures-lite 1.13.0", ] +[[package]] +name = "smol_str" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "74212e6bbe9a4352329b2f68ba3130c15a3f26fe88ff22dbdc6cdd58fa85e99c" +dependencies = [ + "serde", +] + [[package]] name = "smoldot" version = "0.11.0" @@ -12810,7 +12933,7 @@ dependencies = [ "serde", "serde_json", "sha2 0.10.8", - "sha3", + "sha3 0.10.8", "siphasher", "slab", "smallvec", @@ -12875,7 +12998,7 @@ dependencies = [ "curve25519-dalek 4.1.1", "rand_core 0.6.4", "ring 0.17.5", - "rustc_version", + "rustc_version 0.4.0", "sha2 0.10.8", "subtle", ] @@ -12920,7 +13043,6 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "hash-db", "log", @@ -12941,7 +13063,6 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "Inflector", "blake2", @@ -12955,7 +13076,6 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "23.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "parity-scale-codec", "scale-info", @@ -12968,7 +13088,6 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "16.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "integer-sqrt", "num-traits", @@ -12982,7 +13101,6 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "parity-scale-codec", "scale-info", @@ -12995,7 +13113,6 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "sp-api", "sp-inherents", @@ -13006,7 +13123,6 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "futures", "log", @@ -13024,7 +13140,6 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "futures", @@ -13039,7 +13154,6 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "parity-scale-codec", @@ -13056,7 +13170,6 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "parity-scale-codec", @@ -13075,7 +13188,6 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "lazy_static", "parity-scale-codec", @@ -13094,7 +13206,6 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "finality-grandpa", "log", @@ -13112,7 +13223,6 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "parity-scale-codec", "scale-info", @@ -13124,7 +13234,6 @@ dependencies = [ [[package]] name = "sp-core" version = "21.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "array-bytes", "arrayvec 0.7.4", @@ -13154,6 +13263,7 @@ dependencies = [ "secp256k1", "secrecy", "serde", + "sha3 0.9.1", "sp-core-hashing", "sp-debug-derive", "sp-externalities", @@ -13171,20 +13281,18 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "9.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "blake2b_simd", "byteorder", "digest 0.10.7", "sha2 0.10.8", - "sha3", + "sha3 0.10.8", "twox-hash", ] [[package]] name = "sp-core-hashing-proc-macro" version = "9.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "quote", "sp-core-hashing", @@ -13194,7 +13302,6 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -13203,7 +13310,6 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "proc-macro2", "quote", @@ -13213,7 +13319,6 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.19.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "environmental", "parity-scale-codec", @@ -13224,7 +13329,6 @@ dependencies = [ [[package]] name = "sp-genesis-builder" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "serde_json", "sp-api", @@ -13235,7 +13339,6 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -13249,7 +13352,6 @@ dependencies = [ [[package]] name = "sp-io" version = "23.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "bytes", "ed25519-dalek 2.1.0", @@ -13273,7 +13375,6 @@ dependencies = [ [[package]] name = "sp-keyring" version = "24.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "lazy_static", "sp-core", @@ -13284,7 +13385,6 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.27.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -13296,7 +13396,6 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "thiserror", "zstd 0.12.4", @@ -13305,7 +13404,6 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-metadata", "parity-scale-codec", @@ -13316,7 +13414,6 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -13334,7 +13431,6 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "parity-scale-codec", "scale-info", @@ -13348,7 +13444,6 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "sp-api", "sp-core", @@ -13358,7 +13453,6 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "backtrace", "lazy_static", @@ -13368,7 +13462,6 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "rustc-hash", "serde", @@ -13378,8 +13471,9 @@ dependencies = [ [[package]] name = "sp-runtime" version = "24.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ + "alloy-primitives", + "alloy-sol-types", "either", "hash256-std-hasher", "impl-trait-for-tuples", @@ -13401,7 +13495,6 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "17.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -13419,7 +13512,6 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "11.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "Inflector", "proc-macro-crate", @@ -13431,7 +13523,6 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "parity-scale-codec", "scale-info", @@ -13446,7 +13537,6 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -13460,7 +13550,6 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.28.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "hash-db", "log", @@ -13481,7 +13570,6 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "aes-gcm 0.10.3", "curve25519-dalek 4.1.1", @@ -13505,12 +13593,10 @@ dependencies = [ [[package]] name = "sp-std" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" [[package]] name = "sp-storage" version = "13.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13523,7 +13609,6 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "parity-scale-codec", @@ -13536,7 +13621,6 @@ dependencies = [ [[package]] name = "sp-tracing" version = "10.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "parity-scale-codec", "sp-std", @@ -13548,7 +13632,6 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "sp-api", "sp-runtime", @@ -13557,7 +13640,6 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "parity-scale-codec", @@ -13572,7 +13654,6 @@ dependencies = [ [[package]] name = "sp-trie" version = "22.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "ahash 0.8.6", "hash-db", @@ -13595,7 +13676,6 @@ dependencies = [ [[package]] name = "sp-ver" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "parity-scale-codec", @@ -13612,7 +13692,6 @@ dependencies = [ [[package]] name = "sp-version" version = "22.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13629,7 +13708,6 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -13640,7 +13718,6 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "14.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -13653,7 +13730,6 @@ dependencies = [ [[package]] name = "sp-weights" version = "20.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "parity-scale-codec", "scale-info", @@ -13732,7 +13808,6 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "staging-kusama-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "binary-merkle-tree", "bitvec", @@ -13838,7 +13913,6 @@ dependencies = [ [[package]] name = "staging-xcm" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "bounded-collections", "derivative", @@ -13855,7 +13929,6 @@ dependencies = [ [[package]] name = "staging-xcm-builder" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-support", "frame-system", @@ -13877,7 +13950,6 @@ dependencies = [ [[package]] name = "staging-xcm-executor" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "environmental", "frame-benchmarking", @@ -14010,12 +14082,10 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -14034,7 +14104,6 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "hyper", "log", @@ -14046,7 +14115,6 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "jsonrpsee", @@ -14059,7 +14127,6 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -14076,7 +14143,6 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "ansi_term", "build-helper", @@ -14134,6 +14200,18 @@ dependencies = [ "unicode-ident", ] +[[package]] +name = "syn-solidity" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2c7ad08db24862d5b787a94714ff6b047935c3e3f60af944ac969404debd7ff" +dependencies = [ + "paste", + "proc-macro2", + "quote", + "syn 2.0.39", +] + [[package]] name = "synstructure" version = "0.12.6" @@ -14618,7 +14696,6 @@ dependencies = [ [[package]] name = "tracing-gum" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "coarsetime", "polkadot-node-jaeger", @@ -14630,7 +14707,6 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "expander 2.0.0", "proc-macro-crate", @@ -14760,7 +14836,6 @@ checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "async-trait", "clap", @@ -14854,6 +14929,12 @@ dependencies = [ "static_assertions", ] +[[package]] +name = "unarray" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" + [[package]] name = "unicode-bidi" version = "0.3.13" @@ -14978,7 +15059,6 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "ver-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "derive_more", "futures", @@ -15005,6 +15085,15 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" +[[package]] +name = "wait-timeout" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6" +dependencies = [ + "libc", +] + [[package]] name = "waitgroup" version = "0.1.2" @@ -15682,7 +15771,6 @@ dependencies = [ [[package]] name = "westend-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "binary-merkle-tree", "bitvec", @@ -15781,7 +15869,6 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "frame-support", "polkadot-primitives", @@ -16159,7 +16246,6 @@ dependencies = [ [[package]] name = "xcm-emulator" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "cumulus-pallet-parachain-system", "cumulus-primitives-core", @@ -16191,7 +16277,6 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" dependencies = [ "Inflector", "proc-macro2", diff --git a/pallets/metamask-signature-rpc/Cargo.toml b/pallets/metamask-signature-rpc/Cargo.toml new file mode 100644 index 0000000000..dce22ca61a --- /dev/null +++ b/pallets/metamask-signature-rpc/Cargo.toml @@ -0,0 +1,40 @@ +[package] +authors = ['Mangata team'] +name = "metamask-signature-rpc" +version = "2.0.0" +edition = "2018" +description = "RPC calls for Metamask" +license = "GPL-3.0-or-later" + +[dependencies] +codec = { package = "parity-scale-codec", version = "3.0.0" } +jsonrpsee = { version = "0.16.2", features = ["server", "client", "macros"] } +serde = { version = "1.0.126", features = ["derive"], optional = true } + +# Substrate packages + +sp-api = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } +sp-blockchain = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } +sp-rpc = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } +sp-core = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } +sp-std = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } +sp-runtime = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } +mangata-types = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } + +# local packages + +metamask-signature-runtime-api = { version = "2.0.0", path = "../metamask-signature-runtime-api", default-features = false } + +[features] +default = ["std"] + +std = [ + "serde", + "sp-api/std", + "sp-core/std", + "sp-std/std", + "sp-runtime/std", + "metamask-signature-runtime-api/std", + "mangata-types/std", + "codec/std", +] diff --git a/pallets/metamask-signature-rpc/src/lib.rs b/pallets/metamask-signature-rpc/src/lib.rs new file mode 100644 index 0000000000..9eb0ae06a8 --- /dev/null +++ b/pallets/metamask-signature-rpc/src/lib.rs @@ -0,0 +1,63 @@ +// Copyright (C) 2021 Mangata team + +use codec::Codec; +use jsonrpsee::{ + core::{async_trait, Error as JsonRpseeError, RpcResult}, + proc_macros::rpc, + types::error::{CallError, ErrorObject}, +}; +use metamask_signature_runtime_api::MetamaskSignatureRuntimeApi; +use sp_api::ProvideRuntimeApi; +use sp_blockchain::HeaderBackend; +use sp_runtime::traits::Block as BlockT; +use std::sync::Arc; + +#[rpc(client, server)] +pub trait MetamaskSignatureApi { + /// Returns eip712 compatible SignedData V4 struct + /// + #[method(name = "metamask_get_eip712_sign_data")] + fn get_eip712_sign_data( + &self, + encoded_call: Vec, + at: Option, + ) -> RpcResult; +} + +pub struct MetamaskSignature { + client: Arc, + _marker: std::marker::PhantomData, +} + +impl MetamaskSignature { + pub fn new(client: Arc) -> Self { + Self { client, _marker: Default::default() } + } +} + +#[async_trait] +impl MetamaskSignatureApiServer<::Hash> for MetamaskSignature +where + Block: BlockT, + C: Send + Sync + 'static, + C: ProvideRuntimeApi, + C: HeaderBackend, + C::Api: MetamaskSignatureRuntimeApi, +{ + fn get_eip712_sign_data( + &self, + call: Vec, + at: Option<::Hash>, + ) -> RpcResult { + let api = self.client.runtime_api(); + let at = at.unwrap_or(self.client.info().best_hash); + + api.get_eip712_sign_data(at, call).map_err(|e| { + JsonRpseeError::Call(CallError::Custom(ErrorObject::owned( + 0, + "Unable to serve the request", + Some(format!("{:?}", e)), + ))) + }) + } +} diff --git a/pallets/metamask-signature-runtime-api/Cargo.toml b/pallets/metamask-signature-runtime-api/Cargo.toml new file mode 100644 index 0000000000..44cd5d418f --- /dev/null +++ b/pallets/metamask-signature-runtime-api/Cargo.toml @@ -0,0 +1,36 @@ +[package] +authors = ['Mangata team'] +name = "metamask-signature-runtime-api" +version = "2.0.0" +edition = "2018" +license = "GPL-3.0-or-later" + +[dependencies] +codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [ + "derive", +] } +serde = { version = "1.0.126", optional = true, features = ["derive"] } +scale-info = { version = "2.1.1", default-features = false, features = [ + "derive", +] } + +sp-api = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } +sp-std = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } +sp-runtime = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } +frame-support = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } +frame-system = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } +sp-core = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } + +[features] +default = ["std"] + +std = [ + "codec/std", + "frame-support/std", + "frame-system/std", + "serde", + "sp-api/std", + "sp-core/std", + "sp-runtime/std", + "sp-std/std", +] diff --git a/pallets/metamask-signature-runtime-api/src/lib.rs b/pallets/metamask-signature-runtime-api/src/lib.rs new file mode 100644 index 0000000000..c75595797c --- /dev/null +++ b/pallets/metamask-signature-runtime-api/src/lib.rs @@ -0,0 +1,11 @@ +// Copyright (C) 2021 Mangata team +#![cfg_attr(not(feature = "std"), no_std)] + +use codec::alloc::string::String; +use sp_std::vec::Vec; + +sp_api::decl_runtime_apis! { + pub trait MetamaskSignatureRuntimeApi{ + fn get_eip712_sign_data( call: Vec) -> String; + } +} diff --git a/runtime/mangata-kusama/Cargo.toml b/runtime/mangata-kusama/Cargo.toml index 6cca7364c1..16295338f0 100644 --- a/runtime/mangata-kusama/Cargo.toml +++ b/runtime/mangata-kusama/Cargo.toml @@ -37,6 +37,7 @@ pallet-xyk = { path = "../../pallets/xyk", default-features = false, version = " parachain-staking = { path = "../../pallets/parachain-staking", default-features = false } xyk-runtime-api = { path = "../../pallets/xyk/runtime-api", default-features = false, version = "2.0.0" } proof-of-stake-runtime-api = { path = '../../pallets/proof-of-stake/runtime-api', default-features = false } +metamask-signature-runtime-api = { path = '../../pallets/metamask-signature-runtime-api', default-features = false } # Substrate Dependencies ## Substrate Primitive Dependencies @@ -175,6 +176,7 @@ std = [ "polkadot-primitives/std", "polkadot-runtime-common/std", "proof-of-stake-runtime-api/std", + "metamask-signature-runtime-api/std", "scale-info/std", "serde", "sp-api/std", diff --git a/runtime/mangata-kusama/src/lib.rs b/runtime/mangata-kusama/src/lib.rs index 70e5691a68..dbebdb053c 100644 --- a/runtime/mangata-kusama/src/lib.rs +++ b/runtime/mangata-kusama/src/lib.rs @@ -2,7 +2,7 @@ // `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256. #![recursion_limit = "256"] -use codec::Encode; +use codec::{alloc::string::String, Decode, Encode}; pub use common_runtime::{currency::*, deposit, runtime_types, tokens, types::*, CallType}; use frame_support::{ construct_runtime, parameter_types, @@ -781,6 +781,17 @@ mod benches { impl_runtime_apis! { + // impl metamask_signature_runtime_api::MetamaskSignatureRuntimeApi for Runtime { + // fn get_eip712_sign_data(call: Vec) -> String{ + // if let Ok(extrinsic) = UncheckedExtrinsic::decode(& mut call.as_ref()) { + // if let Some((method, params)) = extrinsic.function.context() { + // return "ok".to_string(); + // } + // } + // Default::default() + // } + // } + impl proof_of_stake_runtime_api::ProofOfStakeApi for Runtime{ fn calculate_native_rewards_amount( user: AccountId, From 5b8263dcfe18a4a6fbe4f989f52a2351f6bf8e86 Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Tue, 5 Dec 2023 14:50:03 +0100 Subject: [PATCH 04/15] working example with metamask payloadd fetched through rpc --- Cargo.lock | 7 +++ node/Cargo.toml | 11 ++-- node/src/rpc.rs | 6 +- node/src/service.rs | 2 + pallets/metamask-signature-rpc/Cargo.toml | 1 + pallets/metamask-signature-rpc/src/lib.rs | 32 ++++++++-- .../metamask-signature-runtime-api/Cargo.toml | 8 ++- .../metamask-signature-runtime-api/src/lib.rs | 60 ++++++++++++++++++- runtime/integration-test/Cargo.toml | 2 + runtime/integration-test/src/xyk.rs | 5 +- runtime/mangata-kusama/Cargo.toml | 2 + runtime/mangata-kusama/src/lib.rs | 28 +++++---- runtime/mangata-rococo/Cargo.toml | 16 +++-- runtime/mangata-rococo/src/lib.rs | 26 +++++++- 14 files changed, 170 insertions(+), 36 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b3783f49b0..92d0e0220d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5994,6 +5994,7 @@ dependencies = [ "proof-of-stake-runtime-api", "scale-info", "serde", + "serde_json", "smallvec", "sp-api", "sp-block-builder", @@ -6045,6 +6046,7 @@ dependencies = [ "log", "mangata-kusama-runtime", "mangata-rococo-runtime", + "metamask-signature-rpc", "pallet-transaction-payment-mangata", "pallet-transaction-payment-mangata-rpc", "parity-scale-codec", @@ -6120,6 +6122,7 @@ dependencies = [ "log", "mangata-support", "mangata-types", + "metamask-signature-runtime-api", "orml-asset-registry", "orml-tokens", "orml-traits", @@ -6363,6 +6366,7 @@ dependencies = [ name = "metamask-signature-rpc" version = "2.0.0" dependencies = [ + "array-bytes", "jsonrpsee", "mangata-types", "metamask-signature-runtime-api", @@ -6385,6 +6389,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", + "serde_json", "sp-api", "sp-core", "sp-runtime", @@ -10998,6 +11003,7 @@ dependencies = [ "env_logger 0.9.3", "frame-support", "frame-system", + "hex-literal 0.3.4", "kusama-runtime-constants", "log", "mangata-kusama-runtime", @@ -11023,6 +11029,7 @@ dependencies = [ "pallet-xyk", "parachain-info", "parachain-staking", + "parity-scale-codec", "polkadot-parachain-primitives", "polkadot-primitives", "polkadot-runtime-parachains", diff --git a/node/Cargo.toml b/node/Cargo.toml index 5357153b30..9e4cb7fbdc 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -19,13 +19,14 @@ serde = { version = "1.0.188", features = ["derive"] } serde_json = "1.0.105" # Local -common-runtime = { path = "../runtime/common"} -mangata-kusama-runtime = { path = "../runtime/mangata-kusama"} -mangata-rococo-runtime = { path = "../runtime/mangata-rococo"} +common-runtime = { path = "../runtime/common" } +mangata-kusama-runtime = { path = "../runtime/mangata-kusama" } +mangata-rococo-runtime = { path = "../runtime/mangata-rococo" } xyk-rpc = { path = "../pallets/xyk/rpc" } xyk-runtime-api = { path = "../pallets/xyk/runtime-api" } proof-of-stake-runtime-api = { path = '../pallets/proof-of-stake/runtime-api' } proof-of-stake-rpc = { path = '../pallets/proof-of-stake/rpc' } +metamask-signature-rpc = { path = '../pallets/metamask-signature-rpc/' } # Substrate frame-benchmarking = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop" } @@ -63,7 +64,9 @@ sp-runtime = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = sp-session = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop" } sp-timestamp = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop" } sp-transaction-pool = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop" } -sp-ver = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", features = ["helpers"] } +sp-ver = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", features = [ + "helpers", +] } substrate-frame-rpc-system = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop" } substrate-prometheus-endpoint = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop" } ver-api = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop" } diff --git a/node/src/rpc.rs b/node/src/rpc.rs index cbd8996acb..1dd33fd2c7 100644 --- a/node/src/rpc.rs +++ b/node/src/rpc.rs @@ -25,6 +25,7 @@ use common_runtime::{ types::{AccountId, Balance, Nonce, TokenId}, }; +use metamask_signature_rpc::MetamaskSignatureApiServer; use sc_client_api::AuxStore; pub use sc_rpc::{DenyUnsafe, SubscriptionTaskExecutor}; use sc_transaction_pool_api::TransactionPool; @@ -63,10 +64,12 @@ where C::Api: substrate_frame_rpc_system::AccountNonceApi, C::Api: xyk_rpc::XykRuntimeApi, C::Api: proof_of_stake_rpc::ProofOfStakeRuntimeApi, + C::Api: metamask_signature_rpc::MetamaskSignatureRuntimeApi, C::Api: BlockBuilder, C::Api: VerNonceApi, P: TransactionPool + Sync + Send + 'static, { + use metamask_signature_rpc::MetamaskSignature; use pallet_transaction_payment_mangata_rpc::{TransactionPayment, TransactionPaymentApiServer}; use proof_of_stake_rpc::{ProofOfStake, ProofOfStakeApiServer}; use substrate_frame_rpc_system::{System, SystemApiServer}; @@ -78,7 +81,8 @@ where module.merge(System::new(client.clone(), pool, deny_unsafe).into_rpc())?; module.merge(TransactionPayment::new(client.clone()).into_rpc())?; module.merge(Xyk::new(client.clone()).into_rpc())?; - module.merge(ProofOfStake::new(client).into_rpc())?; + module.merge(ProofOfStake::new(client.clone()).into_rpc())?; + module.merge(MetamaskSignature::new(client).into_rpc())?; Ok(module) } diff --git a/node/src/service.rs b/node/src/service.rs index ad2a907c4d..b561a1089b 100644 --- a/node/src/service.rs +++ b/node/src/service.rs @@ -108,6 +108,7 @@ pub trait RuntimeApiCollection: + ver_api::VerNonceApi + xyk_rpc::XykRuntimeApi + proof_of_stake_rpc::ProofOfStakeRuntimeApi + + metamask_signature_rpc::MetamaskSignatureRuntimeApi { } @@ -126,6 +127,7 @@ impl RuntimeApiCollection for Api where + ver_api::VerNonceApi + xyk_rpc::XykRuntimeApi + proof_of_stake_rpc::ProofOfStakeRuntimeApi + + metamask_signature_rpc::MetamaskSignatureRuntimeApi { } diff --git a/pallets/metamask-signature-rpc/Cargo.toml b/pallets/metamask-signature-rpc/Cargo.toml index dce22ca61a..cdce96602b 100644 --- a/pallets/metamask-signature-rpc/Cargo.toml +++ b/pallets/metamask-signature-rpc/Cargo.toml @@ -20,6 +20,7 @@ sp-core = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "d sp-std = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } sp-runtime = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } mangata-types = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } +array-bytes = { version = "6.2.0" } # local packages diff --git a/pallets/metamask-signature-rpc/src/lib.rs b/pallets/metamask-signature-rpc/src/lib.rs index 9eb0ae06a8..15a8fff369 100644 --- a/pallets/metamask-signature-rpc/src/lib.rs +++ b/pallets/metamask-signature-rpc/src/lib.rs @@ -6,7 +6,7 @@ use jsonrpsee::{ proc_macros::rpc, types::error::{CallError, ErrorObject}, }; -use metamask_signature_runtime_api::MetamaskSignatureRuntimeApi; +pub use metamask_signature_runtime_api::MetamaskSignatureRuntimeApi; use sp_api::ProvideRuntimeApi; use sp_blockchain::HeaderBackend; use sp_runtime::traits::Block as BlockT; @@ -19,7 +19,7 @@ pub trait MetamaskSignatureApi { #[method(name = "metamask_get_eip712_sign_data")] fn get_eip712_sign_data( &self, - encoded_call: Vec, + encoded_call: String, at: Option, ) -> RpcResult; } @@ -35,6 +35,8 @@ impl MetamaskSignature { } } +use array_bytes::hex2bytes; + #[async_trait] impl MetamaskSignatureApiServer<::Hash> for MetamaskSignature where @@ -46,18 +48,38 @@ where { fn get_eip712_sign_data( &self, - call: Vec, + call: String, at: Option<::Hash>, ) -> RpcResult { let api = self.client.runtime_api(); let at = at.unwrap_or(self.client.info().best_hash); - api.get_eip712_sign_data(at, call).map_err(|e| { + let call = hex2bytes(call).map_err(|e| { JsonRpseeError::Call(CallError::Custom(ErrorObject::owned( 0, "Unable to serve the request", Some(format!("{:?}", e)), ))) - }) + })?; + + api.get_eip712_sign_data(at, call) + .map_err(|e| { + JsonRpseeError::Call(CallError::Custom(ErrorObject::owned( + 0, + "Unable to serve the request", + Some(format!("{:?}", e)), + ))) + }) + .and_then(|v| { + if v.is_empty() { + Err(JsonRpseeError::Call(CallError::Custom(ErrorObject::owned( + 0, + "Unable to serve the request", + Some(format!("Empty response")), + )))) + } else { + Ok(v) + } + }) } } diff --git a/pallets/metamask-signature-runtime-api/Cargo.toml b/pallets/metamask-signature-runtime-api/Cargo.toml index 44cd5d418f..c3bf2c1e05 100644 --- a/pallets/metamask-signature-runtime-api/Cargo.toml +++ b/pallets/metamask-signature-runtime-api/Cargo.toml @@ -14,12 +14,13 @@ scale-info = { version = "2.1.1", default-features = false, features = [ "derive", ] } -sp-api = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } -sp-std = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } -sp-runtime = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } frame-support = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } frame-system = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } +serde_json = { version = "1.0.108", default-features = false } +sp-api = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } sp-core = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } +sp-runtime = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } +sp-std = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } [features] default = ["std"] @@ -29,6 +30,7 @@ std = [ "frame-support/std", "frame-system/std", "serde", + "serde_json/std", "sp-api/std", "sp-core/std", "sp-runtime/std", diff --git a/pallets/metamask-signature-runtime-api/src/lib.rs b/pallets/metamask-signature-runtime-api/src/lib.rs index c75595797c..8f5a8d193b 100644 --- a/pallets/metamask-signature-runtime-api/src/lib.rs +++ b/pallets/metamask-signature-runtime-api/src/lib.rs @@ -1,7 +1,7 @@ // Copyright (C) 2021 Mangata team #![cfg_attr(not(feature = "std"), no_std)] -use codec::alloc::string::String; +use codec::alloc::string::{String, ToString}; use sp_std::vec::Vec; sp_api::decl_runtime_apis! { @@ -9,3 +9,61 @@ sp_api::decl_runtime_apis! { fn get_eip712_sign_data( call: Vec) -> String; } } + +pub fn eip712_payload(method: String, params: String) -> String { + let input = r#"{ + "types": { + "EIP712Domain": [ + { + "name": "name", + "type": "string" + }, + { + "name": "version", + "type": "string" + }, + { + "name": "chainId", + "type": "uint256" + }, + { + "name": "verifyingContract", + "type": "address" + } + ], + "Message": [ + { + "name": "method", + "type": "string" + }, + { + "name": "params", + "type": "string" + }, + { + "name": "tx", + "type": "string" + } + ] + }, + "primaryType": "Message", + "domain": { + "name": "Mangata", + "version": "1", + "chainId": "1285", + "verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC" + }, + "message": { + "method": "", + "params": "", + "tx": "" + } + }"#; + if let Ok(ref mut v) = serde_json::from_str::(input) { + v["message"]["method"] = serde_json::Value::String(method); + v["message"]["params"] = serde_json::Value::String(params); + v.to_string() + } else { + Default::default() + } +} diff --git a/runtime/integration-test/Cargo.toml b/runtime/integration-test/Cargo.toml index 14858372d8..7c2fe3e3e7 100644 --- a/runtime/integration-test/Cargo.toml +++ b/runtime/integration-test/Cargo.toml @@ -19,6 +19,8 @@ pallet-session = { git = "https://github.com/mangata-finance/polkadot-sdk", bran sp-io = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop" } sp-runtime = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop" } sp-storage = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop" } +hex-literal = { version = "0.3.4" } +codec = { package = "parity-scale-codec", version = "3.0.0" } # Polkadot kusama-runtime = { package = "staging-kusama-runtime", git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop" } diff --git a/runtime/integration-test/src/xyk.rs b/runtime/integration-test/src/xyk.rs index e3979faa7b..7538b26dea 100644 --- a/runtime/integration-test/src/xyk.rs +++ b/runtime/integration-test/src/xyk.rs @@ -55,9 +55,12 @@ fn create_pool_disabled_meta_disabled() { }); } +use codec::Decode; +use hex_literal::hex; + #[test] fn test_decode_extrinsic() { test_env(None).execute_with(|| { - UncheckedExtrinsic::decode(hex!("121212")); + UncheckedExtrinsic::decode(&mut hex!("b0040a00008eaf04151687736326c9fea17e25fc5287613693c912909cb226aa4794f26a4800000000821a0600").as_ref()).unwrap(); }); } diff --git a/runtime/mangata-kusama/Cargo.toml b/runtime/mangata-kusama/Cargo.toml index 16295338f0..211cb2220f 100644 --- a/runtime/mangata-kusama/Cargo.toml +++ b/runtime/mangata-kusama/Cargo.toml @@ -21,6 +21,7 @@ scale-info = { version = "2.1.1", default-features = false, features = [ "derive", ] } serde = { version = "1.0.137", optional = true, features = ["derive"] } +serde_json = { version = "1.0.108", default-features = false } smallvec = "1.6.1" static_assertions = "1.1.0" @@ -179,6 +180,7 @@ std = [ "metamask-signature-runtime-api/std", "scale-info/std", "serde", + "serde_json/std", "sp-api/std", "sp-block-builder/std", "sp-consensus-aura/std", diff --git a/runtime/mangata-kusama/src/lib.rs b/runtime/mangata-kusama/src/lib.rs index dbebdb053c..db3a4fadff 100644 --- a/runtime/mangata-kusama/src/lib.rs +++ b/runtime/mangata-kusama/src/lib.rs @@ -380,8 +380,8 @@ impl Into for RuntimeCall { use sp_runtime::generic::ExtendedCall; impl ExtendedCall for RuntimeCall { - fn context(&self) -> Option<(Vec, Vec)> { - Some(("dummy_call".as_bytes().to_vec(), "dummy_params".as_bytes().to_vec())) + fn context(&self) -> Option<(String, String)> { + Some(("dummy_call".to_string(), "dummy_params".to_string())) } } @@ -778,19 +778,23 @@ mod benches { [pallet_proof_of_stake, ProofOfStake] ); } +use codec::alloc::string::ToString; impl_runtime_apis! { - // impl metamask_signature_runtime_api::MetamaskSignatureRuntimeApi for Runtime { - // fn get_eip712_sign_data(call: Vec) -> String{ - // if let Ok(extrinsic) = UncheckedExtrinsic::decode(& mut call.as_ref()) { - // if let Some((method, params)) = extrinsic.function.context() { - // return "ok".to_string(); - // } - // } - // Default::default() - // } - // } + impl metamask_signature_runtime_api::MetamaskSignatureRuntimeApi for Runtime { + fn get_eip712_sign_data(call: Vec) -> String{ + if let Ok(extrinsic) = UncheckedExtrinsic::decode(& mut call.as_ref()) { + if let Some((method, params)) = extrinsic.function.context() { + metamask_signature_runtime_api::eip712_payload(method, params) + }else{ + Default::default() + } + }else{ + Default::default() + } + } + } impl proof_of_stake_runtime_api::ProofOfStakeApi for Runtime{ fn calculate_native_rewards_amount( diff --git a/runtime/mangata-rococo/Cargo.toml b/runtime/mangata-rococo/Cargo.toml index 97dcf300ea..37ba1b6ae8 100644 --- a/runtime/mangata-rococo/Cargo.toml +++ b/runtime/mangata-rococo/Cargo.toml @@ -12,10 +12,14 @@ targets = ["x86_64-unknown-linux-gnu"] substrate-wasm-builder = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop" } [dependencies] -codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } +codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [ + "derive", +] } hex-literal = { version = '0.3.1' } log = { version = "0.4.17", default-features = false } -scale-info = { version = "2.1.1", default-features = false, features = ["derive"] } +scale-info = { version = "2.1.1", default-features = false, features = [ + "derive", +] } serde = { version = "1.0.137", optional = true, features = ["derive"] } smallvec = "1.6.1" static_assertions = "1.1.0" @@ -32,7 +36,8 @@ pallet-sudo-origin = { path = '../../pallets/sudo-origin', default-features = fa pallet-xyk = { path = '../../pallets/xyk', default-features = false, version = '0.1.0' } parachain-staking = { path = "../../pallets/parachain-staking", default-features = false } xyk-runtime-api = { path = '../../pallets/xyk/runtime-api', default-features = false, version = '2.0.0' } -proof-of-stake-runtime-api = { path = '../../pallets/proof-of-stake/runtime-api', default-features = false} +proof-of-stake-runtime-api = { path = '../../pallets/proof-of-stake/runtime-api', default-features = false } +metamask-signature-runtime-api = { path = '../../pallets/metamask-signature-runtime-api', default-features = false } # Substrate Dependencies ## Substrate Primitive Dependencies mangata-support = { git = "https://github.com/mangata-finance/polkadot-sdk", branch = "develop", default-features = false } @@ -113,9 +118,7 @@ xcm-executor = { package = "staging-xcm-executor", git = "https://github.com/man pallet-crowdloan-rewards = { git = "https://github.com/mangata-finance/crowdloan-rewards", branch = "develop", default-features = false } [features] -default = [ - "std", -] +default = ["std"] std = [ "codec/std", "cumulus-pallet-aura-ext/std", @@ -193,6 +196,7 @@ std = [ "xcm-executor/std", "xcm/std", "proof-of-stake-runtime-api/std", + "metamask-signature-runtime-api/std", "xyk-runtime-api/std", ] diff --git a/runtime/mangata-rococo/src/lib.rs b/runtime/mangata-rococo/src/lib.rs index 3f242c551e..d911d90b0a 100644 --- a/runtime/mangata-rococo/src/lib.rs +++ b/runtime/mangata-rococo/src/lib.rs @@ -2,7 +2,7 @@ // `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256. #![recursion_limit = "256"] -use codec::Encode; +use codec::{Decode, Encode}; pub use common_runtime::{ consts::DAYS, currency::*, deposit, runtime_types, tokens, types::*, CallType, }; @@ -74,8 +74,12 @@ pub type CheckedExtrinsic = runtime_types::CheckedExtrinsic Option<(Vec, Vec)> { - Some(("dummy_call".as_bytes().to_vec(), "dummy_params".as_bytes().to_vec())) + fn context(&self) -> Option<(String, String)> { + match self { + RuntimeCall::Tokens(orml_tokens::Call::transfer { dest, currency_id, amount }) => + Some(("orml_tokens::transfer".to_string(), "".to_string())), + _ => Some(("todo".to_string(), "todo".to_string())), + } } } @@ -797,9 +801,25 @@ mod benches { ); } +use codec::alloc::string::{String, ToString}; + impl_runtime_apis! { + impl metamask_signature_runtime_api::MetamaskSignatureRuntimeApi for Runtime { + fn get_eip712_sign_data(call: Vec) -> String{ + if let Ok(extrinsic) = UncheckedExtrinsic::decode(& mut call.as_ref()) { + if let Some((method, params)) = extrinsic.function.context() { + metamask_signature_runtime_api::eip712_payload(method, params) + }else{ + Default::default() + } + }else{ + Default::default() + } + } + } + impl proof_of_stake_runtime_api::ProofOfStakeApi for Runtime{ fn calculate_native_rewards_amount( user: AccountId, From 4b9cf3087f866c54951e7c57ce7815bba98a790b Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Fri, 8 Dec 2023 10:52:35 +0100 Subject: [PATCH 05/15] fix args formatting --- .dockerignore | 2 +- Cargo.lock | 1 + runtime/mangata-rococo/Cargo.toml | 3 +++ runtime/mangata-rococo/src/lib.rs | 45 ++++++++++++++++++++++++++++--- 4 files changed, 47 insertions(+), 4 deletions(-) diff --git a/.dockerignore b/.dockerignore index fafe5039bd..09d78d6bf0 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,5 +1,5 @@ * - +./target/ !/target/release/polkadot-collator !/docker-cargo/release/wbuild/mangata-kusama-runtime/mangata_kusama_runtime.compact.compressed.wasm !/docker-cargo/release/wbuild/mangata-kusama-runtime/mangata_kusama_runtime.compact.compressed.wasm.md5 diff --git a/Cargo.lock b/Cargo.lock index 92d0e0220d..0cb4a8895e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6101,6 +6101,7 @@ dependencies = [ name = "mangata-rococo-runtime" version = "4.0.0" dependencies = [ + "bs58 0.5.0", "common-runtime", "cumulus-pallet-aura-ext", "cumulus-pallet-dmp-queue", diff --git a/runtime/mangata-rococo/Cargo.toml b/runtime/mangata-rococo/Cargo.toml index 37ba1b6ae8..3257832c21 100644 --- a/runtime/mangata-rococo/Cargo.toml +++ b/runtime/mangata-rococo/Cargo.toml @@ -23,6 +23,7 @@ scale-info = { version = "2.1.1", default-features = false, features = [ serde = { version = "1.0.137", optional = true, features = ["derive"] } smallvec = "1.6.1" static_assertions = "1.1.0" +bs58 = { version = "0.5.0", default-features = false } # Local Dependencies common-runtime = { path = '../common', default-features = false, version = '4.0.0' } @@ -121,6 +122,8 @@ pallet-crowdloan-rewards = { git = "https://github.com/mangata-finance/crowdloan default = ["std"] std = [ "codec/std", + "bs58/std", + "bs58/alloc", "cumulus-pallet-aura-ext/std", "cumulus-pallet-dmp-queue/std", "cumulus-pallet-parachain-system/std", diff --git a/runtime/mangata-rococo/src/lib.rs b/runtime/mangata-rococo/src/lib.rs index d911d90b0a..752714ac34 100644 --- a/runtime/mangata-rococo/src/lib.rs +++ b/runtime/mangata-rococo/src/lib.rs @@ -24,7 +24,7 @@ pub use pallet_xyk; pub use polkadot_runtime_common::BlockHashCount; use sp_api::impl_runtime_apis; pub use sp_consensus_aura::sr25519::AuthorityId as AuraId; -use sp_core::{crypto::KeyTypeId, ConstBool, OpaqueMetadata}; +use sp_core::{crypto::{KeyTypeId, Ss58Codec}, ConstBool, OpaqueMetadata}; #[cfg(any(feature = "std", test))] pub use sp_runtime::BuildStorage; use sp_runtime::{ @@ -73,11 +73,50 @@ pub type UncheckedExtrinsic = runtime_types::UncheckedExtrinsic; use sp_runtime::generic::ExtendedCall; +use sp_core::hexdisplay::HexDisplay; +use sp_std::prelude::*; +use sp_std::fmt::Write; +use sp_runtime::AccountId32; + + impl ExtendedCall for RuntimeCall { fn context(&self) -> Option<(String, String)> { match self { - RuntimeCall::Tokens(orml_tokens::Call::transfer { dest, currency_id, amount }) => - Some(("orml_tokens::transfer".to_string(), "".to_string())), + RuntimeCall::Xyk(pallet_xyk::Call::sell_asset { + sold_asset_id, + sold_asset_amount, + bought_asset_id, + min_amount_out, + .. + }) => { + let mut buffer = String::new(); + let _ = write!(& mut buffer, "sold_asset_id: {sold_asset_id}\n"); + let _ = write!(& mut buffer, "sold_asset_amount: {sold_asset_amount}\n"); + let _ = write!(& mut buffer, "bought_asset_id: {bought_asset_id}\n"); + let _ = write!(& mut buffer, "min_amount_out: {min_amount_out}\n"); + Some(("xyk::sell_asset".to_string(), buffer)) + }, + RuntimeCall::Xyk(pallet_xyk::Call::buy_asset { + sold_asset_id, + bought_asset_amount, + bought_asset_id, + max_amount_in, + .. + }) => { + let mut buffer = String::new(); + let _ = write!(& mut buffer, "sold_asset_id: {sold_asset_id}\n"); + let _ = write!(& mut buffer, "bought_asset_amount: {bought_asset_amount}\n"); + let _ = write!(& mut buffer, "bought_asset_id: {bought_asset_id}\n"); + let _ = write!(& mut buffer, "max_amount_in: {max_amount_in}\n"); + Some(("xyk::buy_asset".to_string(), buffer)) + }, + RuntimeCall::Tokens(orml_tokens::Call::transfer { dest, currency_id, amount }) =>{ + let mut buffer = String::new(); + let _ = write!(& mut buffer, "dest: {dest:?}\n"); + let _ = write!(& mut buffer, "currency_id: {currency_id}\n"); + let _ = write!(& mut buffer, "amount: {amount}\n"); + Some(("orml_tokens::transfer".to_string(), buffer)) + }, _ => Some(("todo".to_string(), "todo".to_string())), } } From daa2605c673bbc711aca197180666b6f324dd7d8 Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Mon, 11 Dec 2023 09:36:30 +0100 Subject: [PATCH 06/15] impl rpc for kusama --- Cargo.lock | 287 ++++++++ Cargo.toml | 1122 ++++++++++++++--------------- runtime/mangata-kusama/src/lib.rs | 46 +- 3 files changed, 893 insertions(+), 562 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0cb4a8895e..35b8bb0b0b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1046,6 +1046,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "hash-db", "log", @@ -2143,6 +2144,7 @@ dependencies = [ [[package]] name = "cumulus-client-cli" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "clap", "parity-scale-codec", @@ -2158,6 +2160,7 @@ dependencies = [ [[package]] name = "cumulus-client-collator" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "cumulus-client-consensus-common", "cumulus-client-network", @@ -2180,6 +2183,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-aura" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "cumulus-client-collator", @@ -2222,6 +2226,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-common" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "cumulus-client-pov-recovery", @@ -2250,6 +2255,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-proposer" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "anyhow", "async-trait", @@ -2264,6 +2270,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-relay-chain" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "cumulus-client-consensus-common", @@ -2286,6 +2293,7 @@ dependencies = [ [[package]] name = "cumulus-client-network" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "cumulus-relay-chain-interface", @@ -2308,6 +2316,7 @@ dependencies = [ [[package]] name = "cumulus-client-pov-recovery" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2331,6 +2340,7 @@ dependencies = [ [[package]] name = "cumulus-client-service" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "cumulus-client-cli", "cumulus-client-collator", @@ -2365,6 +2375,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-aura-ext" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -2382,6 +2393,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-dmp-queue" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2399,6 +2411,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "bytes", "cumulus-pallet-parachain-system-proc-macro", @@ -2429,6 +2442,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system-proc-macro" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2439,6 +2453,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-session-benchmarking" version = "3.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -2452,6 +2467,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcm" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2467,6 +2483,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcmp-queue" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "cumulus-primitives-core", "frame-benchmarking", @@ -2488,6 +2505,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-aura" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2501,6 +2519,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-core" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2517,6 +2536,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2539,6 +2559,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-timestamp" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "cumulus-primitives-core", "futures", @@ -2551,6 +2572,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-utility" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2568,6 +2590,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-inprocess-interface" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2591,6 +2614,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-interface" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2608,6 +2632,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-minimal-node" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "array-bytes", "async-trait", @@ -2642,6 +2667,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-rpc-interface" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2679,6 +2705,7 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", @@ -3501,6 +3528,7 @@ dependencies = [ [[package]] name = "extrinsic-shuffler" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "derive_more", "log", @@ -3709,6 +3737,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "parity-scale-codec", ] @@ -3731,6 +3760,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-support", "frame-support-procedural", @@ -3755,6 +3785,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "Inflector", "array-bytes", @@ -3808,6 +3839,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -3818,6 +3850,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -3834,6 +3867,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -3867,6 +3901,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-recursion", "futures", @@ -3888,6 +3923,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "aquamarine 0.3.2", "bitflags 1.3.2", @@ -3928,6 +3964,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "Inflector", "cfg-expr", @@ -3945,6 +3982,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3956,6 +3994,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "proc-macro2", "quote", @@ -3965,6 +4004,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "cfg-if", "extrinsic-shuffler", @@ -3985,6 +4025,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -3999,6 +4040,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "parity-scale-codec", "sp-api", @@ -4007,6 +4049,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-support", "parity-scale-codec", @@ -5158,6 +5201,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-support", "polkadot-primitives", @@ -6212,6 +6256,7 @@ dependencies = [ [[package]] name = "mangata-support" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-support", "mangata-types", @@ -6224,6 +6269,7 @@ dependencies = [ [[package]] name = "mangata-types" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "parity-scale-codec", "scale-info", @@ -6437,6 +6483,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "futures", "log", @@ -6455,6 +6502,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "anyhow", "jsonrpsee", @@ -7077,6 +7125,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7094,6 +7143,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7109,6 +7159,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-support", "frame-system", @@ -7125,6 +7176,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-support", "frame-system", @@ -7140,6 +7192,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-support", "frame-system", @@ -7153,6 +7206,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7176,6 +7230,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "aquamarine 0.3.2", "docify", @@ -7197,6 +7252,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7211,6 +7267,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-support", "frame-system", @@ -7230,6 +7287,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -7286,6 +7344,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7303,6 +7362,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7321,6 +7381,7 @@ dependencies = [ [[package]] name = "pallet-collator-selection" version = "3.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7339,6 +7400,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7355,6 +7417,7 @@ dependencies = [ [[package]] name = "pallet-collective-mangata" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7371,6 +7434,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7411,6 +7475,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7428,6 +7493,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7450,6 +7516,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7463,6 +7530,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7481,6 +7549,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "docify", "frame-benchmarking", @@ -7528,6 +7597,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7550,6 +7620,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7565,6 +7636,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7584,6 +7656,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7652,6 +7725,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7668,6 +7742,7 @@ dependencies = [ [[package]] name = "pallet-message-queue" version = "7.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7686,6 +7761,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7733,6 +7809,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7748,6 +7825,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7763,6 +7841,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-support", "frame-system", @@ -7781,6 +7860,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7800,6 +7880,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -7810,6 +7891,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-support", "frame-system", @@ -7826,6 +7908,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7849,6 +7932,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7902,6 +7986,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7916,6 +8001,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7933,6 +8019,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7947,6 +8034,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7965,6 +8053,7 @@ dependencies = [ [[package]] name = "pallet-root-testing" version = "1.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-support", "frame-system", @@ -7979,6 +8068,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "docify", "frame-benchmarking", @@ -7996,6 +8086,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-support", "frame-system", @@ -8017,6 +8108,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8033,6 +8125,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8050,6 +8143,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -8072,6 +8166,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8082,6 +8177,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "log", "sp-arithmetic", @@ -8090,6 +8186,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "parity-scale-codec", "sp-api", @@ -8098,6 +8195,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8114,6 +8212,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8128,6 +8227,7 @@ dependencies = [ [[package]] name = "pallet-sudo-mangata" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8160,6 +8260,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8178,6 +8279,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8196,6 +8298,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-support", "frame-system", @@ -8211,6 +8314,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-support", "frame-system", @@ -8226,6 +8330,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata-rpc" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "jsonrpsee", "pallet-transaction-payment-mangata-rpc-runtime-api", @@ -8241,6 +8346,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata-rpc-runtime-api" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "pallet-transaction-payment-mangata", "parity-scale-codec", @@ -8252,6 +8358,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -8267,6 +8374,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -8278,6 +8386,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8294,6 +8403,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8309,6 +8419,7 @@ dependencies = [ [[package]] name = "pallet-utility-mangata" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8324,6 +8435,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8338,6 +8450,7 @@ dependencies = [ [[package]] name = "pallet-vesting-mangata" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8352,6 +8465,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8366,6 +8480,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "bounded-collections", "frame-benchmarking", @@ -8386,6 +8501,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8440,6 +8556,7 @@ dependencies = [ [[package]] name = "parachain-info" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -8484,6 +8601,7 @@ dependencies = [ [[package]] name = "parachains-common" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-utility", @@ -8862,6 +8980,7 @@ checksum = "14e6ab3f592e6fb464fc9712d8d6e6912de6473954635fd76a589d832cffcbb0" [[package]] name = "polkadot-approval-distribution" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "futures", "futures-timer", @@ -8879,6 +8998,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "always-assert", "futures", @@ -8894,6 +9014,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "derive_more", "fatality", @@ -8916,6 +9037,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "fatality", "futures", @@ -8936,6 +9058,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "clap", "frame-benchmarking-cli", @@ -8962,6 +9085,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "bitvec", "fatality", @@ -8983,6 +9107,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "parity-scale-codec", "scale-info", @@ -8994,6 +9119,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "derive_more", "fatality", @@ -9018,6 +9144,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -9031,6 +9158,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "futures", "futures-timer", @@ -9051,6 +9179,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "always-assert", "async-trait", @@ -9073,6 +9202,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "futures", "parity-scale-codec", @@ -9090,6 +9220,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "bitvec", "derive_more", @@ -9118,6 +9249,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "bitvec", "futures", @@ -9139,6 +9271,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "bitvec", "fatality", @@ -9157,6 +9290,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "futures", "polkadot-node-subsystem", @@ -9171,6 +9305,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "futures", @@ -9191,6 +9326,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "futures", "polkadot-node-metrics", @@ -9205,6 +9341,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "futures", "futures-timer", @@ -9221,6 +9358,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "fatality", "futures", @@ -9239,6 +9377,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "futures", @@ -9255,6 +9394,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-prospective-parachains" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "bitvec", "fatality", @@ -9271,6 +9411,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "bitvec", "fatality", @@ -9287,6 +9428,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "always-assert", "futures", @@ -9314,6 +9456,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "futures", "polkadot-node-primitives", @@ -9329,6 +9472,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-common" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "cpu-time", "futures", @@ -9351,6 +9495,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-prepare-worker" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "futures", "libc", @@ -9373,6 +9518,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "futures", "polkadot-node-metrics", @@ -9387,6 +9533,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "lazy_static", "log", @@ -9404,6 +9551,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "bs58 0.5.0", "futures", @@ -9422,6 +9570,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-channel 1.9.0", "async-trait", @@ -9445,6 +9594,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "bounded-vec", "futures", @@ -9466,6 +9616,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -9475,6 +9626,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "derive_more", @@ -9498,6 +9650,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "derive_more", @@ -9530,6 +9683,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "futures", @@ -9552,6 +9706,7 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "bounded-collections", "derive_more", @@ -9568,6 +9723,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "env_logger 0.9.3", "log", @@ -9585,6 +9741,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "bitvec", "hex-literal 0.4.1", @@ -9610,6 +9767,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "jsonrpsee", "mmr-rpc", @@ -9641,6 +9799,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "bitvec", "frame-benchmarking", @@ -9737,6 +9896,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "bitvec", "frame-benchmarking", @@ -9782,6 +9942,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-support", "polkadot-primitives", @@ -9795,6 +9956,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "bs58 0.5.0", "frame-benchmarking", @@ -9807,6 +9969,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "bitflags 1.3.2", "bitvec", @@ -9852,6 +10015,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "frame-benchmarking", @@ -9972,6 +10136,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "arrayvec 0.7.4", "bitvec", @@ -9995,6 +10160,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -10806,6 +10972,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "binary-merkle-tree", "frame-benchmarking", @@ -10893,6 +11060,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-support", "polkadot-primitives", @@ -11266,6 +11434,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "log", "sp-core", @@ -11276,6 +11445,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "futures", @@ -11303,6 +11473,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "futures", "futures-timer", @@ -11325,6 +11496,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship-ver" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "aquamarine 0.3.2", "futures", @@ -11350,6 +11522,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -11364,6 +11537,7 @@ dependencies = [ [[package]] name = "sc-block-builder-ver" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -11383,6 +11557,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -11401,6 +11576,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11411,6 +11587,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "array-bytes", "chrono", @@ -11449,6 +11626,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "fnv", "futures", @@ -11474,6 +11652,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "hash-db", "kvdb", @@ -11499,6 +11678,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "futures", @@ -11523,6 +11703,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "futures", @@ -11551,6 +11732,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "fork-tree", @@ -11586,6 +11768,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "futures", "jsonrpsee", @@ -11607,6 +11790,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11640,6 +11824,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "futures", "jsonrpsee", @@ -11658,6 +11843,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "fork-tree", "parity-scale-codec", @@ -11670,6 +11856,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "ahash 0.8.6", "array-bytes", @@ -11710,6 +11897,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "finality-grandpa", "futures", @@ -11729,6 +11917,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "futures", @@ -11753,6 +11942,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -11774,6 +11964,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -11785,6 +11976,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "anyhow", "cfg-if", @@ -11801,6 +11993,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "ansi_term", "futures", @@ -11816,6 +12009,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "array-bytes", "parking_lot 0.12.1", @@ -11829,6 +12023,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11869,6 +12064,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-channel 1.9.0", "cid", @@ -11888,6 +12084,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -11904,6 +12101,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "ahash 0.8.6", "futures", @@ -11921,6 +12119,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11941,6 +12140,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11974,6 +12174,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "array-bytes", "futures", @@ -11991,6 +12192,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "array-bytes", "bytes", @@ -12024,6 +12226,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -12032,6 +12235,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "futures", "jsonrpsee", @@ -12062,6 +12266,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12080,6 +12285,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "http", "jsonrpsee", @@ -12094,6 +12300,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "array-bytes", "futures", @@ -12121,6 +12328,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "directories", @@ -12186,6 +12394,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "log", "parity-scale-codec", @@ -12196,6 +12405,7 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "clap", "fs4", @@ -12209,6 +12419,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12227,6 +12438,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "futures", "libc", @@ -12245,6 +12457,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "chrono", "futures", @@ -12263,6 +12476,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "ansi_term", "atty", @@ -12291,6 +12505,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12301,6 +12516,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "futures", @@ -12326,6 +12542,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "futures", @@ -12341,6 +12558,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-channel 1.9.0", "futures", @@ -12849,6 +13067,7 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" [[package]] name = "slot-range-helper" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "enumn", "parity-scale-codec", @@ -13051,6 +13270,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "hash-db", "log", @@ -13071,6 +13291,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "Inflector", "blake2", @@ -13084,6 +13305,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "23.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "parity-scale-codec", "scale-info", @@ -13096,6 +13318,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "16.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "integer-sqrt", "num-traits", @@ -13109,6 +13332,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "parity-scale-codec", "scale-info", @@ -13121,6 +13345,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "sp-api", "sp-inherents", @@ -13131,6 +13356,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "futures", "log", @@ -13148,6 +13374,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "futures", @@ -13162,6 +13389,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "parity-scale-codec", @@ -13178,6 +13406,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "parity-scale-codec", @@ -13196,6 +13425,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "lazy_static", "parity-scale-codec", @@ -13214,6 +13444,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "finality-grandpa", "log", @@ -13231,6 +13462,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "parity-scale-codec", "scale-info", @@ -13242,6 +13474,7 @@ dependencies = [ [[package]] name = "sp-core" version = "21.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "array-bytes", "arrayvec 0.7.4", @@ -13289,6 +13522,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "9.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "blake2b_simd", "byteorder", @@ -13301,6 +13535,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "9.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "quote", "sp-core-hashing", @@ -13310,6 +13545,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -13318,6 +13554,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "8.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "proc-macro2", "quote", @@ -13327,6 +13564,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.19.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "environmental", "parity-scale-codec", @@ -13337,6 +13575,7 @@ dependencies = [ [[package]] name = "sp-genesis-builder" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "serde_json", "sp-api", @@ -13347,6 +13586,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -13360,6 +13600,7 @@ dependencies = [ [[package]] name = "sp-io" version = "23.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "bytes", "ed25519-dalek 2.1.0", @@ -13383,6 +13624,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "24.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "lazy_static", "sp-core", @@ -13393,6 +13635,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.27.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -13404,6 +13647,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "thiserror", "zstd 0.12.4", @@ -13412,6 +13656,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-metadata", "parity-scale-codec", @@ -13422,6 +13667,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -13439,6 +13685,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "parity-scale-codec", "scale-info", @@ -13452,6 +13699,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "sp-api", "sp-core", @@ -13461,6 +13709,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "8.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "backtrace", "lazy_static", @@ -13470,6 +13719,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "rustc-hash", "serde", @@ -13479,6 +13729,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "24.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "alloy-primitives", "alloy-sol-types", @@ -13503,6 +13754,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "17.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -13520,6 +13772,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "11.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "Inflector", "proc-macro-crate", @@ -13531,6 +13784,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "parity-scale-codec", "scale-info", @@ -13545,6 +13799,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -13558,6 +13813,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.28.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "hash-db", "log", @@ -13578,6 +13834,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "aes-gcm 0.10.3", "curve25519-dalek 4.1.1", @@ -13601,10 +13858,12 @@ dependencies = [ [[package]] name = "sp-std" version = "8.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" [[package]] name = "sp-storage" version = "13.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13617,6 +13876,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "parity-scale-codec", @@ -13629,6 +13889,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "10.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "parity-scale-codec", "sp-std", @@ -13640,6 +13901,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "sp-api", "sp-runtime", @@ -13648,6 +13910,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "parity-scale-codec", @@ -13662,6 +13925,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "22.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "ahash 0.8.6", "hash-db", @@ -13684,6 +13948,7 @@ dependencies = [ [[package]] name = "sp-ver" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "parity-scale-codec", @@ -13700,6 +13965,7 @@ dependencies = [ [[package]] name = "sp-version" version = "22.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13716,6 +13982,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "8.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -13726,6 +13993,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "14.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -13738,6 +14006,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "20.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "parity-scale-codec", "scale-info", @@ -13816,6 +14085,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "staging-kusama-runtime" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "binary-merkle-tree", "bitvec", @@ -13921,6 +14191,7 @@ dependencies = [ [[package]] name = "staging-xcm" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "bounded-collections", "derivative", @@ -13937,6 +14208,7 @@ dependencies = [ [[package]] name = "staging-xcm-builder" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-support", "frame-system", @@ -13958,6 +14230,7 @@ dependencies = [ [[package]] name = "staging-xcm-executor" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "environmental", "frame-benchmarking", @@ -14090,10 +14363,12 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -14112,6 +14387,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "hyper", "log", @@ -14123,6 +14399,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "jsonrpsee", @@ -14135,6 +14412,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -14151,6 +14429,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "ansi_term", "build-helper", @@ -14704,6 +14983,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "coarsetime", "polkadot-node-jaeger", @@ -14715,6 +14995,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "expander 2.0.0", "proc-macro-crate", @@ -14844,6 +15125,7 @@ checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "async-trait", "clap", @@ -15067,6 +15349,7 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "ver-api" version = "4.0.0-dev" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "derive_more", "futures", @@ -15779,6 +16062,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "binary-merkle-tree", "bitvec", @@ -15877,6 +16161,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "frame-support", "polkadot-primitives", @@ -16254,6 +16539,7 @@ dependencies = [ [[package]] name = "xcm-emulator" version = "0.1.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "cumulus-pallet-parachain-system", "cumulus-primitives-core", @@ -16285,6 +16571,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "1.0.0" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" dependencies = [ "Inflector", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index 37dbc83fa4..9e5ae9bf20 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,288 +25,288 @@ members = [ 'runtime/mangata-rococo', 'runtime/integration-test', ] -# -# # `orml/develop` & `crowdloan/develop` points to versioned `polkadot-sdk/release-mangata-v*`, -# # but mangata-node uses `polkadot-sdk/develop` so we need to patch to use the same refs -# # patch generated by './scripts/dev_manifest.sh ../polkadot-sdk' & replaced local path with `develop` branch on polkadot-sdk -# [patch."https://github.com/mangata-finance/polkadot-sdk"] -# pallet-whitelist = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-referenda = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-indices = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-offences = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-transaction-payment = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-asset-tx-payment = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-transaction-payment-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-collective-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-proxy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-identity = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-conviction-voting = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-sudo-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# mangata-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-child-bounties = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-beefy-mmr = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-collective = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-recovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-preimage = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-multisig = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-scheduler = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-nomination-pools = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-nomination-pools-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-society = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-utility-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-authorship = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-bounties = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-fast-unstake = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-transaction-payment-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-transaction-payment-mangata-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-transaction-payment-mangata-rpc-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-grandpa = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-ranked-collective = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-vesting-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# frame-system = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# frame-system-benchmarking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# frame-system-rpc-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-mmr = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-vesting = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# frame-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# frame-support-procedural = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# frame-support-procedural-tools = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# frame-support-procedural-tools-derive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-authority-discovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-im-online = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-staking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-staking-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-staking-reward-fn = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-bags-list = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# frame-election-provider-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# frame-election-provider-solution-type = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-tips = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-balances = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-message-queue = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-nis = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-state-trie-migration = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-beefy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-sudo = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# frame-benchmarking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-treasury = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# frame-try-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-timestamp = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-babe = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-elections-phragmen = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-assets = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-election-provider-multi-phase = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-democracy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-membership = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-root-testing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-utility = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# frame-executive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-session = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# substrate-wasm-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# fork-tree = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# substrate-build-script-utils = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# frame-remote-externalities = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# frame-benchmarking-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# try-runtime-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# substrate-frame-rpc-system = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# substrate-state-trie-migration-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# substrate-rpc-client = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# binary-merkle-tree = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# substrate-prometheus-endpoint = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-database = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-runtime-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-runtime-interface-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-consensus-grandpa = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-consensus = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-consensus-beefy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-consensus-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-consensus-babe = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-consensus-slots = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-tracing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-ver = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-maybe-compressed-blob = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-core = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-core-hashing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-core-hashing-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-state-machine = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-keystore = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-metadata-ir = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-statement-store = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-weights = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-io = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-inherents = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-transaction-pool = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-std = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-storage = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-panic-handler = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-debug-derive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-blockchain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-externalities = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-trie = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-mmr-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# mangata-types = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-version = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-version-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-authority-discovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-block-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-keyring = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-staking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-wasm-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-transaction-storage-proof = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# extrinsic-shuffler = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-arithmetic = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-api-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-offchain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-timestamp = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-application-crypto = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# ver-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-npos-elections = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-genesis-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sp-session = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-consensus-grandpa = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-consensus-grandpa-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-consensus = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-consensus-epochs = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-consensus-beefy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-consensus-beefy-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-consensus-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-consensus-babe = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-consensus-babe-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-consensus-slots = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-tracing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-tracing-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-rpc-spec-v2 = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-state-db = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-proposer-metrics = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-keystore = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-basic-authorship-ver = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-rpc-server = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-network = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-network-bitswap = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-network-transactions = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-network-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-network-light = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-network-sync = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-informant = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-transaction-pool = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-transaction-pool-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-utils = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-chain-spec = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-chain-spec-derive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-sync-state-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-basic-authorship = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-block-builder-ver = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# mmr-gadget = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# mmr-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-storage-monitor = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-authority-discovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-block-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-allocator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-network-gossip = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-client-db = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-client-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-sysinfo = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-executor = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-executor-wasmtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-executor-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-telemetry = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-offchain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-service = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# sc-rpc-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# xcm-emulator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-test-relay-sproof-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-primitives-core = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-primitives-parachain-inherent = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-primitives-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-primitives-timestamp = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-primitives-utility = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-pallet-xcm = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-pallet-dmp-queue = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-pallet-xcmp-queue = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-pallet-aura-ext = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-pallet-session-benchmarking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-pallet-parachain-system = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-pallet-parachain-system-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-collator-selection = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-client-consensus-proposer = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-client-consensus-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-client-consensus-relay-chain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-client-consensus-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-relay-chain-minimal-node = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-relay-chain-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-client-network = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-client-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-relay-chain-inprocess-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-client-pov-recovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-client-collator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-client-service = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# cumulus-relay-chain-rpc-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# parachains-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# parachain-info = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-parachain-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# staging-xcm = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# staging-xcm-executor = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# staging-xcm-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# xcm-procedural = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# pallet-xcm = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-statement-table = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-erasure-coding = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-runtime-metrics = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# rococo-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# rococo-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# staging-kusama-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# kusama-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-runtime-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# slot-range-helper = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# westend-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-runtime-parachains = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-node-metrics = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# tracing-gum = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# tracing-gum-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-node-core-candidate-validation = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-node-core-prospective-parachains = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-node-core-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-node-core-parachains-inherent = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-node-core-av-store = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-node-core-approval-voting = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-node-core-pvf = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-node-core-pvf-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-node-core-dispute-coordinator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-node-core-chain-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-node-core-backing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-node-core-provisioner = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-node-core-chain-selection = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-node-core-bitfield-signing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-node-core-pvf-checker = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-node-subsystem-types = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-node-collation-generation = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-node-jaeger = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-availability-bitfield-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-gossip-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-network-bridge = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-node-network-protocol = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-approval-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-statement-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-availability-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-availability-recovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-collator-protocol = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-dispute-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-node-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-node-subsystem = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-node-subsystem-util = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-service = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-overseer = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } -# polkadot-core-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } + +# `orml/develop` & `crowdloan/develop` points to versioned `polkadot-sdk/release-mangata-v*`, +# but mangata-node uses `polkadot-sdk/develop` so we need to patch to use the same refs +# patch generated by './scripts/dev_manifest.sh ../polkadot-sdk' & replaced local path with `develop` branch on polkadot-sdk +[patch."https://github.com/mangata-finance/polkadot-sdk"] +pallet-whitelist = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-referenda = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-indices = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-offences = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-transaction-payment = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-asset-tx-payment = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-transaction-payment-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-collective-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-proxy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-identity = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-conviction-voting = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-sudo-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +mangata-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-child-bounties = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-beefy-mmr = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-collective = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-recovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-preimage = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-multisig = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-scheduler = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-nomination-pools = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-nomination-pools-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-society = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-utility-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-authorship = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-bounties = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-fast-unstake = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-transaction-payment-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-transaction-payment-mangata-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-transaction-payment-mangata-rpc-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-grandpa = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-ranked-collective = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-vesting-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +frame-system = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +frame-system-benchmarking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +frame-system-rpc-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-mmr = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-vesting = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +frame-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +frame-support-procedural = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +frame-support-procedural-tools = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +frame-support-procedural-tools-derive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-authority-discovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-im-online = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-staking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-staking-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-staking-reward-fn = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-bags-list = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +frame-election-provider-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +frame-election-provider-solution-type = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-tips = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-balances = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-message-queue = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-nis = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-state-trie-migration = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-beefy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-sudo = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +frame-benchmarking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-treasury = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +frame-try-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-timestamp = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-babe = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-elections-phragmen = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-assets = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-election-provider-multi-phase = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-democracy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-membership = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-root-testing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-utility = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +frame-executive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-session = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +substrate-wasm-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +fork-tree = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +substrate-build-script-utils = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +frame-remote-externalities = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +frame-benchmarking-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +try-runtime-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +substrate-frame-rpc-system = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +substrate-state-trie-migration-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +substrate-rpc-client = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +binary-merkle-tree = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +substrate-prometheus-endpoint = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-database = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-runtime-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-runtime-interface-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-consensus-grandpa = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-consensus = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-consensus-beefy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-consensus-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-consensus-babe = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-consensus-slots = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-tracing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-ver = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-maybe-compressed-blob = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-core = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-core-hashing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-core-hashing-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-state-machine = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-keystore = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-metadata-ir = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-statement-store = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-weights = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-io = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-inherents = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-transaction-pool = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-std = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-storage = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-panic-handler = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-debug-derive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-blockchain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-externalities = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-trie = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-mmr-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +mangata-types = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-version = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-version-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-authority-discovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-block-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-keyring = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-staking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-wasm-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-transaction-storage-proof = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +extrinsic-shuffler = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-arithmetic = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-api-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-offchain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-timestamp = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-application-crypto = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +ver-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-npos-elections = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-genesis-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sp-session = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-consensus-grandpa = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-consensus-grandpa-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-consensus = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-consensus-epochs = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-consensus-beefy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-consensus-beefy-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-consensus-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-consensus-babe = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-consensus-babe-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-consensus-slots = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-tracing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-tracing-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-rpc-spec-v2 = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-state-db = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-proposer-metrics = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-keystore = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-basic-authorship-ver = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-rpc-server = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-network = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-network-bitswap = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-network-transactions = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-network-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-network-light = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-network-sync = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-informant = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-transaction-pool = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-transaction-pool-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-utils = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-chain-spec = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-chain-spec-derive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-sync-state-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-basic-authorship = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-block-builder-ver = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +mmr-gadget = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +mmr-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-storage-monitor = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-authority-discovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-block-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-allocator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-network-gossip = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-client-db = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-client-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-sysinfo = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-executor = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-executor-wasmtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-executor-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-telemetry = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-offchain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-service = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +sc-rpc-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +xcm-emulator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-test-relay-sproof-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-primitives-core = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-primitives-parachain-inherent = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-primitives-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-primitives-timestamp = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-primitives-utility = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-pallet-xcm = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-pallet-dmp-queue = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-pallet-xcmp-queue = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-pallet-aura-ext = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-pallet-session-benchmarking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-pallet-parachain-system = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-pallet-parachain-system-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-collator-selection = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-client-consensus-proposer = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-client-consensus-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-client-consensus-relay-chain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-client-consensus-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-relay-chain-minimal-node = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-relay-chain-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-client-network = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-client-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-relay-chain-inprocess-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-client-pov-recovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-client-collator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-client-service = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +cumulus-relay-chain-rpc-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +parachains-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +parachain-info = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-parachain-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +staging-xcm = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +staging-xcm-executor = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +staging-xcm-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +xcm-procedural = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-xcm = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-statement-table = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-erasure-coding = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-runtime-metrics = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +rococo-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +rococo-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +staging-kusama-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +kusama-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-runtime-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +slot-range-helper = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +westend-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-runtime-parachains = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-node-metrics = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +tracing-gum = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +tracing-gum-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-node-core-candidate-validation = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-node-core-prospective-parachains = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-node-core-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-node-core-parachains-inherent = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-node-core-av-store = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-node-core-approval-voting = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-node-core-pvf = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-node-core-pvf-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-node-core-dispute-coordinator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-node-core-chain-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-node-core-backing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-node-core-provisioner = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-node-core-chain-selection = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-node-core-bitfield-signing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-node-core-pvf-checker = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-node-subsystem-types = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-node-collation-generation = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-node-jaeger = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-availability-bitfield-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-gossip-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-network-bridge = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-node-network-protocol = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-approval-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-statement-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-availability-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-availability-recovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-collator-protocol = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-dispute-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-node-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-node-subsystem = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-node-subsystem-util = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-service = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-overseer = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +polkadot-core-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } # patch generated by './scripts/dev_manifest.sh ../open-runtime-module-library' [patch."https://github.com/mangata-finance/open-runtime-module-library"] @@ -319,282 +319,282 @@ orml-utilities = { git = "https://github.com/mangata-finance//open-runtime-modul orml-unknown-tokens = { git = "https://github.com/mangata-finance//open-runtime-module-library", branch = "develop" } orml-tokens = { git = "https://github.com/mangata-finance//open-runtime-module-library", branch = "develop" } -# patch generated by './scripts/dev_manifest.sh ../polkadot-sdk' -[patch."https://github.com/mangata-finance/polkadot-sdk"] -polkadot-primitives = { path = "../polkadot-sdk/polkadot/primitives" } -polkadot-rpc = { path = "../polkadot-sdk/polkadot/rpc" } -polkadot-statement-table = { path = "../polkadot-sdk/polkadot/statement-table" } -polkadot-node-primitives = { path = "../polkadot-sdk/polkadot/node/primitives" } -polkadot-node-subsystem = { path = "../polkadot-sdk/polkadot/node/subsystem" } -polkadot-node-subsystem-util = { path = "../polkadot-sdk/polkadot/node/subsystem-util" } -polkadot-node-core-runtime-api = { path = "../polkadot-sdk/polkadot/node/core/runtime-api" } -polkadot-node-core-chain-api = { path = "../polkadot-sdk/polkadot/node/core/chain-api" } -polkadot-node-core-bitfield-signing = { path = "../polkadot-sdk/polkadot/node/core/bitfield-signing" } -polkadot-node-core-candidate-validation = { path = "../polkadot-sdk/polkadot/node/core/candidate-validation" } -polkadot-node-core-parachains-inherent = { path = "../polkadot-sdk/polkadot/node/core/parachains-inherent" } -polkadot-node-core-chain-selection = { path = "../polkadot-sdk/polkadot/node/core/chain-selection" } -polkadot-node-core-prospective-parachains = { path = "../polkadot-sdk/polkadot/node/core/prospective-parachains" } -polkadot-node-core-approval-voting = { path = "../polkadot-sdk/polkadot/node/core/approval-voting" } -polkadot-node-core-pvf-checker = { path = "../polkadot-sdk/polkadot/node/core/pvf-checker" } -polkadot-node-core-dispute-coordinator = { path = "../polkadot-sdk/polkadot/node/core/dispute-coordinator" } -polkadot-node-core-av-store = { path = "../polkadot-sdk/polkadot/node/core/av-store" } -polkadot-node-core-pvf = { path = "../polkadot-sdk/polkadot/node/core/pvf" } -polkadot-node-core-pvf-common = { path = "../polkadot-sdk/polkadot/node/core/pvf/common" } -polkadot-node-core-provisioner = { path = "../polkadot-sdk/polkadot/node/core/provisioner" } -polkadot-node-core-backing = { path = "../polkadot-sdk/polkadot/node/core/backing" } -polkadot-service = { path = "../polkadot-sdk/polkadot/node/service" } -polkadot-node-subsystem-types = { path = "../polkadot-sdk/polkadot/node/subsystem-types" } -polkadot-overseer = { path = "../polkadot-sdk/polkadot/node/overseer" } -polkadot-node-jaeger = { path = "../polkadot-sdk/polkadot/node/jaeger" } -polkadot-node-collation-generation = { path = "../polkadot-sdk/polkadot/node/collation-generation" } -polkadot-availability-recovery = { path = "../polkadot-sdk/polkadot/node/network/availability-recovery" } -polkadot-statement-distribution = { path = "../polkadot-sdk/polkadot/node/network/statement-distribution" } -polkadot-approval-distribution = { path = "../polkadot-sdk/polkadot/node/network/approval-distribution" } -polkadot-node-network-protocol = { path = "../polkadot-sdk/polkadot/node/network/protocol" } -polkadot-dispute-distribution = { path = "../polkadot-sdk/polkadot/node/network/dispute-distribution" } -polkadot-collator-protocol = { path = "../polkadot-sdk/polkadot/node/network/collator-protocol" } -polkadot-gossip-support = { path = "../polkadot-sdk/polkadot/node/network/gossip-support" } -polkadot-availability-distribution = { path = "../polkadot-sdk/polkadot/node/network/availability-distribution" } -polkadot-network-bridge = { path = "../polkadot-sdk/polkadot/node/network/bridge" } -polkadot-availability-bitfield-distribution = { path = "../polkadot-sdk/polkadot/node/network/bitfield-distribution" } -polkadot-node-metrics = { path = "../polkadot-sdk/polkadot/node/metrics" } -tracing-gum = { path = "../polkadot-sdk/polkadot/node/gum" } -tracing-gum-proc-macro = { path = "../polkadot-sdk/polkadot/node/gum/proc-macro" } -polkadot-runtime-parachains = { path = "../polkadot-sdk/polkadot/runtime/parachains" } -rococo-runtime-constants = { path = "../polkadot-sdk/polkadot/runtime/rococo/constants" } -rococo-runtime = { path = "../polkadot-sdk/polkadot/runtime/rococo" } -polkadot-runtime-constants = { path = "../polkadot-sdk/polkadot/runtime/polkadot/constants" } -kusama-runtime-constants = { path = "../polkadot-sdk/polkadot/runtime/kusama/constants" } -staging-kusama-runtime = { path = "../polkadot-sdk/polkadot/runtime/kusama" } -polkadot-runtime-metrics = { path = "../polkadot-sdk/polkadot/runtime/metrics" } -polkadot-runtime-common = { path = "../polkadot-sdk/polkadot/runtime/common" } -slot-range-helper = { path = "../polkadot-sdk/polkadot/runtime/common/slot_range_helper" } -westend-runtime-constants = { path = "../polkadot-sdk/polkadot/runtime/westend/constants" } -polkadot-erasure-coding = { path = "../polkadot-sdk/polkadot/erasure-coding" } -staging-xcm-executor = { path = "../polkadot-sdk/polkadot/xcm/xcm-executor" } -xcm-procedural = { path = "../polkadot-sdk/polkadot/xcm/procedural" } -staging-xcm = { path = "../polkadot-sdk/polkadot/xcm" } -staging-xcm-builder = { path = "../polkadot-sdk/polkadot/xcm/xcm-builder" } -pallet-xcm = { path = "../polkadot-sdk/polkadot/xcm/pallet-xcm" } -polkadot-parachain-primitives = { path = "../polkadot-sdk/polkadot/parachain" } -polkadot-cli = { path = "../polkadot-sdk/polkadot/cli" } -polkadot-core-primitives = { path = "../polkadot-sdk/polkadot/core-primitives" } -cumulus-test-relay-sproof-builder = { path = "../polkadot-sdk/cumulus/test/relay-sproof-builder" } -cumulus-primitives-timestamp = { path = "../polkadot-sdk/cumulus/primitives/timestamp" } -cumulus-primitives-core = { path = "../polkadot-sdk/cumulus/primitives/core" } -cumulus-primitives-utility = { path = "../polkadot-sdk/cumulus/primitives/utility" } -cumulus-primitives-aura = { path = "../polkadot-sdk/cumulus/primitives/aura" } -cumulus-primitives-parachain-inherent = { path = "../polkadot-sdk/cumulus/primitives/parachain-inherent" } -parachain-info = { path = "../polkadot-sdk/cumulus/parachains/pallets/parachain-info" } -parachains-common = { path = "../polkadot-sdk/cumulus/parachains/common" } -cumulus-pallet-dmp-queue = { path = "../polkadot-sdk/cumulus/pallets/dmp-queue" } -cumulus-pallet-session-benchmarking = { path = "../polkadot-sdk/cumulus/pallets/session-benchmarking" } -cumulus-pallet-xcmp-queue = { path = "../polkadot-sdk/cumulus/pallets/xcmp-queue" } -cumulus-pallet-parachain-system = { path = "../polkadot-sdk/cumulus/pallets/parachain-system" } -cumulus-pallet-parachain-system-proc-macro = { path = "../polkadot-sdk/cumulus/pallets/parachain-system/proc-macro" } -pallet-collator-selection = { path = "../polkadot-sdk/cumulus/pallets/collator-selection" } -cumulus-pallet-xcm = { path = "../polkadot-sdk/cumulus/pallets/xcm" } -cumulus-pallet-aura-ext = { path = "../polkadot-sdk/cumulus/pallets/aura-ext" } -cumulus-relay-chain-inprocess-interface = { path = "../polkadot-sdk/cumulus/client/relay-chain-inprocess-interface" } -cumulus-relay-chain-interface = { path = "../polkadot-sdk/cumulus/client/relay-chain-interface" } -cumulus-client-collator = { path = "../polkadot-sdk/cumulus/client/collator" } -cumulus-client-service = { path = "../polkadot-sdk/cumulus/client/service" } -cumulus-client-network = { path = "../polkadot-sdk/cumulus/client/network" } -cumulus-relay-chain-rpc-interface = { path = "../polkadot-sdk/cumulus/client/relay-chain-rpc-interface" } -cumulus-client-cli = { path = "../polkadot-sdk/cumulus/client/cli" } -cumulus-relay-chain-minimal-node = { path = "../polkadot-sdk/cumulus/client/relay-chain-minimal-node" } -cumulus-client-pov-recovery = { path = "../polkadot-sdk/cumulus/client/pov-recovery" } -cumulus-client-consensus-aura = { path = "../polkadot-sdk/cumulus/client/consensus/aura" } -cumulus-client-consensus-proposer = { path = "../polkadot-sdk/cumulus/client/consensus/proposer" } -cumulus-client-consensus-relay-chain = { path = "../polkadot-sdk/cumulus/client/consensus/relay-chain" } -cumulus-client-consensus-common = { path = "../polkadot-sdk/cumulus/client/consensus/common" } -xcm-emulator = { path = "../polkadot-sdk/cumulus/xcm/xcm-emulator" } -sp-storage = { path = "../polkadot-sdk/substrate/primitives/storage" } -sp-std = { path = "../polkadot-sdk/substrate/primitives/std" } -sp-maybe-compressed-blob = { path = "../polkadot-sdk/substrate/primitives/maybe-compressed-blob" } -sp-database = { path = "../polkadot-sdk/substrate/primitives/database" } -sp-state-machine = { path = "../polkadot-sdk/substrate/primitives/state-machine" } -sp-rpc = { path = "../polkadot-sdk/substrate/primitives/rpc" } -sp-blockchain = { path = "../polkadot-sdk/substrate/primitives/blockchain" } -sp-api = { path = "../polkadot-sdk/substrate/primitives/api" } -sp-api-proc-macro = { path = "../polkadot-sdk/substrate/primitives/api/proc-macro" } -sp-externalities = { path = "../polkadot-sdk/substrate/primitives/externalities" } -extrinsic-shuffler = { path = "../polkadot-sdk/substrate/primitives/shuffler" } -sp-transaction-pool = { path = "../polkadot-sdk/substrate/primitives/transaction-pool" } -sp-session = { path = "../polkadot-sdk/substrate/primitives/session" } -sp-timestamp = { path = "../polkadot-sdk/substrate/primitives/timestamp" } -sp-inherents = { path = "../polkadot-sdk/substrate/primitives/inherents" } -sp-io = { path = "../polkadot-sdk/substrate/primitives/io" } -sp-transaction-storage-proof = { path = "../polkadot-sdk/substrate/primitives/transaction-storage-proof" } -sp-ver = { path = "../polkadot-sdk/substrate/primitives/ver" } -sp-tracing = { path = "../polkadot-sdk/substrate/primitives/tracing" } -sp-mmr-primitives = { path = "../polkadot-sdk/substrate/primitives/merkle-mountain-range" } -sp-application-crypto = { path = "../polkadot-sdk/substrate/primitives/application-crypto" } -sp-panic-handler = { path = "../polkadot-sdk/substrate/primitives/panic-handler" } -sp-core-hashing = { path = "../polkadot-sdk/substrate/primitives/core/hashing" } -sp-core-hashing-proc-macro = { path = "../polkadot-sdk/substrate/primitives/core/hashing/proc-macro" } -sp-core = { path = "../polkadot-sdk/substrate/primitives/core" } -sp-offchain = { path = "../polkadot-sdk/substrate/primitives/offchain" } -sp-weights = { path = "../polkadot-sdk/substrate/primitives/weights" } -sp-npos-elections = { path = "../polkadot-sdk/substrate/primitives/npos-elections" } -sp-keystore = { path = "../polkadot-sdk/substrate/primitives/keystore" } -mangata-types = { path = "../polkadot-sdk/substrate/primitives/mangata-types" } -sp-version = { path = "../polkadot-sdk/substrate/primitives/version" } -sp-version-proc-macro = { path = "../polkadot-sdk/substrate/primitives/version/proc-macro" } -sp-runtime = { path = "../polkadot-sdk/substrate/primitives/runtime" } -sp-wasm-interface = { path = "../polkadot-sdk/substrate/primitives/wasm-interface" } -sp-authority-discovery = { path = "../polkadot-sdk/substrate/primitives/authority-discovery" } -sp-genesis-builder = { path = "../polkadot-sdk/substrate/primitives/genesis-builder" } -sp-block-builder = { path = "../polkadot-sdk/substrate/primitives/block-builder" } -ver-api = { path = "../polkadot-sdk/substrate/primitives/ver-api" } -sp-runtime-interface = { path = "../polkadot-sdk/substrate/primitives/runtime-interface" } -sp-runtime-interface-proc-macro = { path = "../polkadot-sdk/substrate/primitives/runtime-interface/proc-macro" } -sp-debug-derive = { path = "../polkadot-sdk/substrate/primitives/debug-derive" } -sp-statement-store = { path = "../polkadot-sdk/substrate/primitives/statement-store" } -sp-staking = { path = "../polkadot-sdk/substrate/primitives/staking" } -sp-trie = { path = "../polkadot-sdk/substrate/primitives/trie" } -sp-metadata-ir = { path = "../polkadot-sdk/substrate/primitives/metadata-ir" } -sp-keyring = { path = "../polkadot-sdk/substrate/primitives/keyring" } -sp-consensus-slots = { path = "../polkadot-sdk/substrate/primitives/consensus/slots" } -sp-consensus-grandpa = { path = "../polkadot-sdk/substrate/primitives/consensus/grandpa" } -sp-consensus-aura = { path = "../polkadot-sdk/substrate/primitives/consensus/aura" } -sp-consensus-beefy = { path = "../polkadot-sdk/substrate/primitives/consensus/beefy" } -sp-consensus = { path = "../polkadot-sdk/substrate/primitives/consensus/common" } -sp-consensus-babe = { path = "../polkadot-sdk/substrate/primitives/consensus/babe" } -sp-arithmetic = { path = "../polkadot-sdk/substrate/primitives/arithmetic" } -sc-rpc = { path = "../polkadot-sdk/substrate/client/rpc" } -sc-client-api = { path = "../polkadot-sdk/substrate/client/api" } -sc-chain-spec-derive = { path = "../polkadot-sdk/substrate/client/chain-spec/derive" } -sc-chain-spec = { path = "../polkadot-sdk/substrate/client/chain-spec" } -sc-basic-authorship-ver = { path = "../polkadot-sdk/substrate/client/basic-authorship-ver" } -sc-transaction-pool-api = { path = "../polkadot-sdk/substrate/client/transaction-pool/api" } -sc-transaction-pool = { path = "../polkadot-sdk/substrate/client/transaction-pool" } -sc-storage-monitor = { path = "../polkadot-sdk/substrate/client/storage-monitor" } -sc-tracing = { path = "../polkadot-sdk/substrate/client/tracing" } -sc-tracing-proc-macro = { path = "../polkadot-sdk/substrate/client/tracing/proc-macro" } -sc-telemetry = { path = "../polkadot-sdk/substrate/client/telemetry" } -mmr-rpc = { path = "../polkadot-sdk/substrate/client/merkle-mountain-range/rpc" } -mmr-gadget = { path = "../polkadot-sdk/substrate/client/merkle-mountain-range" } -sc-service = { path = "../polkadot-sdk/substrate/client/service" } -sc-offchain = { path = "../polkadot-sdk/substrate/client/offchain" } -sc-allocator = { path = "../polkadot-sdk/substrate/client/allocator" } -sc-rpc-server = { path = "../polkadot-sdk/substrate/client/rpc-servers" } -sc-keystore = { path = "../polkadot-sdk/substrate/client/keystore" } -sc-executor = { path = "../polkadot-sdk/substrate/client/executor" } -sc-executor-common = { path = "../polkadot-sdk/substrate/client/executor/common" } -sc-executor-wasmtime = { path = "../polkadot-sdk/substrate/client/executor/wasmtime" } -sc-informant = { path = "../polkadot-sdk/substrate/client/informant" } -sc-rpc-spec-v2 = { path = "../polkadot-sdk/substrate/client/rpc-spec-v2" } -sc-sync-state-rpc = { path = "../polkadot-sdk/substrate/client/sync-state-rpc" } -sc-network-transactions = { path = "../polkadot-sdk/substrate/client/network/transactions" } -sc-network-sync = { path = "../polkadot-sdk/substrate/client/network/sync" } -sc-network-bitswap = { path = "../polkadot-sdk/substrate/client/network/bitswap" } -sc-network-light = { path = "../polkadot-sdk/substrate/client/network/light" } -sc-network = { path = "../polkadot-sdk/substrate/client/network" } -sc-network-common = { path = "../polkadot-sdk/substrate/client/network/common" } -sc-authority-discovery = { path = "../polkadot-sdk/substrate/client/authority-discovery" } -sc-basic-authorship = { path = "../polkadot-sdk/substrate/client/basic-authorship" } -sc-block-builder = { path = "../polkadot-sdk/substrate/client/block-builder" } -sc-utils = { path = "../polkadot-sdk/substrate/client/utils" } -sc-proposer-metrics = { path = "../polkadot-sdk/substrate/client/proposer-metrics" } -sc-cli = { path = "../polkadot-sdk/substrate/client/cli" } -sc-block-builder-ver = { path = "../polkadot-sdk/substrate/client/block-builder-ver" } -sc-sysinfo = { path = "../polkadot-sdk/substrate/client/sysinfo" } -sc-client-db = { path = "../polkadot-sdk/substrate/client/db" } -sc-state-db = { path = "../polkadot-sdk/substrate/client/state-db" } -sc-rpc-api = { path = "../polkadot-sdk/substrate/client/rpc-api" } -sc-consensus-slots = { path = "../polkadot-sdk/substrate/client/consensus/slots" } -sc-consensus-grandpa-rpc = { path = "../polkadot-sdk/substrate/client/consensus/grandpa/rpc" } -sc-consensus-grandpa = { path = "../polkadot-sdk/substrate/client/consensus/grandpa" } -sc-consensus-epochs = { path = "../polkadot-sdk/substrate/client/consensus/epochs" } -sc-consensus-aura = { path = "../polkadot-sdk/substrate/client/consensus/aura" } -sc-consensus-beefy-rpc = { path = "../polkadot-sdk/substrate/client/consensus/beefy/rpc" } -sc-consensus-beefy = { path = "../polkadot-sdk/substrate/client/consensus/beefy" } -sc-consensus = { path = "../polkadot-sdk/substrate/client/consensus/common" } -sc-consensus-babe-rpc = { path = "../polkadot-sdk/substrate/client/consensus/babe/rpc" } -sc-consensus-babe = { path = "../polkadot-sdk/substrate/client/consensus/babe" } -sc-network-gossip = { path = "../polkadot-sdk/substrate/client/network-gossip" } -pallet-asset-tx-payment = { path = "../polkadot-sdk/substrate/frame/transaction-payment/asset-tx-payment" } -pallet-transaction-payment-rpc-runtime-api = { path = "../polkadot-sdk/substrate/frame/transaction-payment/rpc/runtime-api" } -pallet-transaction-payment-rpc = { path = "../polkadot-sdk/substrate/frame/transaction-payment/rpc" } -pallet-transaction-payment = { path = "../polkadot-sdk/substrate/frame/transaction-payment" } -pallet-democracy = { path = "../polkadot-sdk/substrate/frame/democracy" } -pallet-multisig = { path = "../polkadot-sdk/substrate/frame/multisig" } -pallet-election-provider-multi-phase = { path = "../polkadot-sdk/substrate/frame/election-provider-multi-phase" } -frame-system-rpc-runtime-api = { path = "../polkadot-sdk/substrate/frame/system/rpc/runtime-api" } -frame-system = { path = "../polkadot-sdk/substrate/frame/system" } -frame-system-benchmarking = { path = "../polkadot-sdk/substrate/frame/system/benchmarking" } -pallet-state-trie-migration = { path = "../polkadot-sdk/substrate/frame/state-trie-migration" } -pallet-vesting = { path = "../polkadot-sdk/substrate/frame/vesting" } -pallet-recovery = { path = "../polkadot-sdk/substrate/frame/recovery" } -pallet-society = { path = "../polkadot-sdk/substrate/frame/society" } -pallet-child-bounties = { path = "../polkadot-sdk/substrate/frame/child-bounties" } -pallet-proxy = { path = "../polkadot-sdk/substrate/frame/proxy" } -pallet-scheduler = { path = "../polkadot-sdk/substrate/frame/scheduler" } -pallet-tips = { path = "../polkadot-sdk/substrate/frame/tips" } -pallet-session = { path = "../polkadot-sdk/substrate/frame/session" } -pallet-message-queue = { path = "../polkadot-sdk/substrate/frame/message-queue" } -pallet-timestamp = { path = "../polkadot-sdk/substrate/frame/timestamp" } -pallet-preimage = { path = "../polkadot-sdk/substrate/frame/preimage" } -frame-election-provider-support = { path = "../polkadot-sdk/substrate/frame/election-provider-support" } -frame-election-provider-solution-type = { path = "../polkadot-sdk/substrate/frame/election-provider-support/solution-type" } -pallet-bounties = { path = "../polkadot-sdk/substrate/frame/bounties" } -pallet-grandpa = { path = "../polkadot-sdk/substrate/frame/grandpa" } -pallet-identity = { path = "../polkadot-sdk/substrate/frame/identity" } -pallet-beefy-mmr = { path = "../polkadot-sdk/substrate/frame/beefy-mmr" } -pallet-treasury = { path = "../polkadot-sdk/substrate/frame/treasury" } -pallet-indices = { path = "../polkadot-sdk/substrate/frame/indices" } -pallet-ranked-collective = { path = "../polkadot-sdk/substrate/frame/ranked-collective" } -pallet-mmr = { path = "../polkadot-sdk/substrate/frame/merkle-mountain-range" } -pallet-offences = { path = "../polkadot-sdk/substrate/frame/offences" } -frame-try-runtime = { path = "../polkadot-sdk/substrate/frame/try-runtime" } -pallet-assets = { path = "../polkadot-sdk/substrate/frame/assets" } -pallet-im-online = { path = "../polkadot-sdk/substrate/frame/im-online" } -pallet-conviction-voting = { path = "../polkadot-sdk/substrate/frame/conviction-voting" } -pallet-fast-unstake = { path = "../polkadot-sdk/substrate/frame/fast-unstake" } -pallet-root-testing = { path = "../polkadot-sdk/substrate/frame/root-testing" } -pallet-vesting-mangata = { path = "../polkadot-sdk/substrate/frame/vesting-mangata" } -pallet-utility = { path = "../polkadot-sdk/substrate/frame/utility" } -pallet-balances = { path = "../polkadot-sdk/substrate/frame/balances" } -pallet-aura = { path = "../polkadot-sdk/substrate/frame/aura" } -pallet-referenda = { path = "../polkadot-sdk/substrate/frame/referenda" } -pallet-whitelist = { path = "../polkadot-sdk/substrate/frame/whitelist" } -pallet-collective-mangata = { path = "../polkadot-sdk/substrate/frame/collective-mangata" } -frame-support-procedural-tools-derive = { path = "../polkadot-sdk/substrate/frame/support/procedural/tools/derive" } -frame-support-procedural-tools = { path = "../polkadot-sdk/substrate/frame/support/procedural/tools" } -frame-support-procedural = { path = "../polkadot-sdk/substrate/frame/support/procedural" } -frame-support = { path = "../polkadot-sdk/substrate/frame/support" } -pallet-authority-discovery = { path = "../polkadot-sdk/substrate/frame/authority-discovery" } -pallet-beefy = { path = "../polkadot-sdk/substrate/frame/beefy" } -pallet-collective = { path = "../polkadot-sdk/substrate/frame/collective" } -pallet-membership = { path = "../polkadot-sdk/substrate/frame/membership" } -pallet-nomination-pools-runtime-api = { path = "../polkadot-sdk/substrate/frame/nomination-pools/runtime-api" } -pallet-nomination-pools = { path = "../polkadot-sdk/substrate/frame/nomination-pools" } -pallet-babe = { path = "../polkadot-sdk/substrate/frame/babe" } -frame-executive = { path = "../polkadot-sdk/substrate/frame/executive" } -frame-benchmarking = { path = "../polkadot-sdk/substrate/frame/benchmarking" } -pallet-sudo-mangata = { path = "../polkadot-sdk/substrate/frame/sudo-mangata" } -pallet-nis = { path = "../polkadot-sdk/substrate/frame/nis" } -pallet-elections-phragmen = { path = "../polkadot-sdk/substrate/frame/elections-phragmen" } -pallet-utility-mangata = { path = "../polkadot-sdk/substrate/frame/utility-mangata" } -pallet-bags-list = { path = "../polkadot-sdk/substrate/frame/bags-list" } -pallet-staking-runtime-api = { path = "../polkadot-sdk/substrate/frame/staking/runtime-api" } -pallet-staking-reward-fn = { path = "../polkadot-sdk/substrate/frame/staking/reward-fn" } -pallet-staking = { path = "../polkadot-sdk/substrate/frame/staking" } -pallet-transaction-payment-mangata-rpc-runtime-api = { path = "../polkadot-sdk/substrate/frame/transaction-payment-mangata/rpc/runtime-api" } -pallet-transaction-payment-mangata-rpc = { path = "../polkadot-sdk/substrate/frame/transaction-payment-mangata/rpc" } -pallet-transaction-payment-mangata = { path = "../polkadot-sdk/substrate/frame/transaction-payment-mangata" } -pallet-authorship = { path = "../polkadot-sdk/substrate/frame/authorship" } -mangata-support = { path = "../polkadot-sdk/substrate/frame/mangata-support" } -pallet-sudo = { path = "../polkadot-sdk/substrate/frame/sudo" } -binary-merkle-tree = { path = "../polkadot-sdk/substrate/utils/binary-merkle-tree" } -substrate-build-script-utils = { path = "../polkadot-sdk/substrate/utils/build-script-utils" } -substrate-wasm-builder = { path = "../polkadot-sdk/substrate/utils/wasm-builder" } -fork-tree = { path = "../polkadot-sdk/substrate/utils/fork-tree" } -substrate-frame-rpc-system = { path = "../polkadot-sdk/substrate/utils/frame/rpc/system" } -substrate-rpc-client = { path = "../polkadot-sdk/substrate/utils/frame/rpc/client" } -substrate-state-trie-migration-rpc = { path = "../polkadot-sdk/substrate/utils/frame/rpc/state-trie-migration-rpc" } -try-runtime-cli = { path = "../polkadot-sdk/substrate/utils/frame/try-runtime/cli" } -frame-remote-externalities = { path = "../polkadot-sdk/substrate/utils/frame/remote-externalities" } -frame-benchmarking-cli = { path = "../polkadot-sdk/substrate/utils/frame/benchmarking-cli" } -substrate-prometheus-endpoint = { path = "../polkadot-sdk/substrate/utils/prometheus" } +# # patch generated by './scripts/dev_manifest.sh ../polkadot-sdk' +# [patch."https://github.com/mangata-finance/polkadot-sdk"] +# polkadot-primitives = { path = "../polkadot-sdk/polkadot/primitives" } +# polkadot-rpc = { path = "../polkadot-sdk/polkadot/rpc" } +# polkadot-statement-table = { path = "../polkadot-sdk/polkadot/statement-table" } +# polkadot-node-primitives = { path = "../polkadot-sdk/polkadot/node/primitives" } +# polkadot-node-subsystem = { path = "../polkadot-sdk/polkadot/node/subsystem" } +# polkadot-node-subsystem-util = { path = "../polkadot-sdk/polkadot/node/subsystem-util" } +# polkadot-node-core-runtime-api = { path = "../polkadot-sdk/polkadot/node/core/runtime-api" } +# polkadot-node-core-chain-api = { path = "../polkadot-sdk/polkadot/node/core/chain-api" } +# polkadot-node-core-bitfield-signing = { path = "../polkadot-sdk/polkadot/node/core/bitfield-signing" } +# polkadot-node-core-candidate-validation = { path = "../polkadot-sdk/polkadot/node/core/candidate-validation" } +# polkadot-node-core-parachains-inherent = { path = "../polkadot-sdk/polkadot/node/core/parachains-inherent" } +# polkadot-node-core-chain-selection = { path = "../polkadot-sdk/polkadot/node/core/chain-selection" } +# polkadot-node-core-prospective-parachains = { path = "../polkadot-sdk/polkadot/node/core/prospective-parachains" } +# polkadot-node-core-approval-voting = { path = "../polkadot-sdk/polkadot/node/core/approval-voting" } +# polkadot-node-core-pvf-checker = { path = "../polkadot-sdk/polkadot/node/core/pvf-checker" } +# polkadot-node-core-dispute-coordinator = { path = "../polkadot-sdk/polkadot/node/core/dispute-coordinator" } +# polkadot-node-core-av-store = { path = "../polkadot-sdk/polkadot/node/core/av-store" } +# polkadot-node-core-pvf = { path = "../polkadot-sdk/polkadot/node/core/pvf" } +# polkadot-node-core-pvf-common = { path = "../polkadot-sdk/polkadot/node/core/pvf/common" } +# polkadot-node-core-provisioner = { path = "../polkadot-sdk/polkadot/node/core/provisioner" } +# polkadot-node-core-backing = { path = "../polkadot-sdk/polkadot/node/core/backing" } +# polkadot-service = { path = "../polkadot-sdk/polkadot/node/service" } +# polkadot-node-subsystem-types = { path = "../polkadot-sdk/polkadot/node/subsystem-types" } +# polkadot-overseer = { path = "../polkadot-sdk/polkadot/node/overseer" } +# polkadot-node-jaeger = { path = "../polkadot-sdk/polkadot/node/jaeger" } +# polkadot-node-collation-generation = { path = "../polkadot-sdk/polkadot/node/collation-generation" } +# polkadot-availability-recovery = { path = "../polkadot-sdk/polkadot/node/network/availability-recovery" } +# polkadot-statement-distribution = { path = "../polkadot-sdk/polkadot/node/network/statement-distribution" } +# polkadot-approval-distribution = { path = "../polkadot-sdk/polkadot/node/network/approval-distribution" } +# polkadot-node-network-protocol = { path = "../polkadot-sdk/polkadot/node/network/protocol" } +# polkadot-dispute-distribution = { path = "../polkadot-sdk/polkadot/node/network/dispute-distribution" } +# polkadot-collator-protocol = { path = "../polkadot-sdk/polkadot/node/network/collator-protocol" } +# polkadot-gossip-support = { path = "../polkadot-sdk/polkadot/node/network/gossip-support" } +# polkadot-availability-distribution = { path = "../polkadot-sdk/polkadot/node/network/availability-distribution" } +# polkadot-network-bridge = { path = "../polkadot-sdk/polkadot/node/network/bridge" } +# polkadot-availability-bitfield-distribution = { path = "../polkadot-sdk/polkadot/node/network/bitfield-distribution" } +# polkadot-node-metrics = { path = "../polkadot-sdk/polkadot/node/metrics" } +# tracing-gum = { path = "../polkadot-sdk/polkadot/node/gum" } +# tracing-gum-proc-macro = { path = "../polkadot-sdk/polkadot/node/gum/proc-macro" } +# polkadot-runtime-parachains = { path = "../polkadot-sdk/polkadot/runtime/parachains" } +# rococo-runtime-constants = { path = "../polkadot-sdk/polkadot/runtime/rococo/constants" } +# rococo-runtime = { path = "../polkadot-sdk/polkadot/runtime/rococo" } +# polkadot-runtime-constants = { path = "../polkadot-sdk/polkadot/runtime/polkadot/constants" } +# kusama-runtime-constants = { path = "../polkadot-sdk/polkadot/runtime/kusama/constants" } +# staging-kusama-runtime = { path = "../polkadot-sdk/polkadot/runtime/kusama" } +# polkadot-runtime-metrics = { path = "../polkadot-sdk/polkadot/runtime/metrics" } +# polkadot-runtime-common = { path = "../polkadot-sdk/polkadot/runtime/common" } +# slot-range-helper = { path = "../polkadot-sdk/polkadot/runtime/common/slot_range_helper" } +# westend-runtime-constants = { path = "../polkadot-sdk/polkadot/runtime/westend/constants" } +# polkadot-erasure-coding = { path = "../polkadot-sdk/polkadot/erasure-coding" } +# staging-xcm-executor = { path = "../polkadot-sdk/polkadot/xcm/xcm-executor" } +# xcm-procedural = { path = "../polkadot-sdk/polkadot/xcm/procedural" } +# staging-xcm = { path = "../polkadot-sdk/polkadot/xcm" } +# staging-xcm-builder = { path = "../polkadot-sdk/polkadot/xcm/xcm-builder" } +# pallet-xcm = { path = "../polkadot-sdk/polkadot/xcm/pallet-xcm" } +# polkadot-parachain-primitives = { path = "../polkadot-sdk/polkadot/parachain" } +# polkadot-cli = { path = "../polkadot-sdk/polkadot/cli" } +# polkadot-core-primitives = { path = "../polkadot-sdk/polkadot/core-primitives" } +# cumulus-test-relay-sproof-builder = { path = "../polkadot-sdk/cumulus/test/relay-sproof-builder" } +# cumulus-primitives-timestamp = { path = "../polkadot-sdk/cumulus/primitives/timestamp" } +# cumulus-primitives-core = { path = "../polkadot-sdk/cumulus/primitives/core" } +# cumulus-primitives-utility = { path = "../polkadot-sdk/cumulus/primitives/utility" } +# cumulus-primitives-aura = { path = "../polkadot-sdk/cumulus/primitives/aura" } +# cumulus-primitives-parachain-inherent = { path = "../polkadot-sdk/cumulus/primitives/parachain-inherent" } +# parachain-info = { path = "../polkadot-sdk/cumulus/parachains/pallets/parachain-info" } +# parachains-common = { path = "../polkadot-sdk/cumulus/parachains/common" } +# cumulus-pallet-dmp-queue = { path = "../polkadot-sdk/cumulus/pallets/dmp-queue" } +# cumulus-pallet-session-benchmarking = { path = "../polkadot-sdk/cumulus/pallets/session-benchmarking" } +# cumulus-pallet-xcmp-queue = { path = "../polkadot-sdk/cumulus/pallets/xcmp-queue" } +# cumulus-pallet-parachain-system = { path = "../polkadot-sdk/cumulus/pallets/parachain-system" } +# cumulus-pallet-parachain-system-proc-macro = { path = "../polkadot-sdk/cumulus/pallets/parachain-system/proc-macro" } +# pallet-collator-selection = { path = "../polkadot-sdk/cumulus/pallets/collator-selection" } +# cumulus-pallet-xcm = { path = "../polkadot-sdk/cumulus/pallets/xcm" } +# cumulus-pallet-aura-ext = { path = "../polkadot-sdk/cumulus/pallets/aura-ext" } +# cumulus-relay-chain-inprocess-interface = { path = "../polkadot-sdk/cumulus/client/relay-chain-inprocess-interface" } +# cumulus-relay-chain-interface = { path = "../polkadot-sdk/cumulus/client/relay-chain-interface" } +# cumulus-client-collator = { path = "../polkadot-sdk/cumulus/client/collator" } +# cumulus-client-service = { path = "../polkadot-sdk/cumulus/client/service" } +# cumulus-client-network = { path = "../polkadot-sdk/cumulus/client/network" } +# cumulus-relay-chain-rpc-interface = { path = "../polkadot-sdk/cumulus/client/relay-chain-rpc-interface" } +# cumulus-client-cli = { path = "../polkadot-sdk/cumulus/client/cli" } +# cumulus-relay-chain-minimal-node = { path = "../polkadot-sdk/cumulus/client/relay-chain-minimal-node" } +# cumulus-client-pov-recovery = { path = "../polkadot-sdk/cumulus/client/pov-recovery" } +# cumulus-client-consensus-aura = { path = "../polkadot-sdk/cumulus/client/consensus/aura" } +# cumulus-client-consensus-proposer = { path = "../polkadot-sdk/cumulus/client/consensus/proposer" } +# cumulus-client-consensus-relay-chain = { path = "../polkadot-sdk/cumulus/client/consensus/relay-chain" } +# cumulus-client-consensus-common = { path = "../polkadot-sdk/cumulus/client/consensus/common" } +# xcm-emulator = { path = "../polkadot-sdk/cumulus/xcm/xcm-emulator" } +# sp-storage = { path = "../polkadot-sdk/substrate/primitives/storage" } +# sp-std = { path = "../polkadot-sdk/substrate/primitives/std" } +# sp-maybe-compressed-blob = { path = "../polkadot-sdk/substrate/primitives/maybe-compressed-blob" } +# sp-database = { path = "../polkadot-sdk/substrate/primitives/database" } +# sp-state-machine = { path = "../polkadot-sdk/substrate/primitives/state-machine" } +# sp-rpc = { path = "../polkadot-sdk/substrate/primitives/rpc" } +# sp-blockchain = { path = "../polkadot-sdk/substrate/primitives/blockchain" } +# sp-api = { path = "../polkadot-sdk/substrate/primitives/api" } +# sp-api-proc-macro = { path = "../polkadot-sdk/substrate/primitives/api/proc-macro" } +# sp-externalities = { path = "../polkadot-sdk/substrate/primitives/externalities" } +# extrinsic-shuffler = { path = "../polkadot-sdk/substrate/primitives/shuffler" } +# sp-transaction-pool = { path = "../polkadot-sdk/substrate/primitives/transaction-pool" } +# sp-session = { path = "../polkadot-sdk/substrate/primitives/session" } +# sp-timestamp = { path = "../polkadot-sdk/substrate/primitives/timestamp" } +# sp-inherents = { path = "../polkadot-sdk/substrate/primitives/inherents" } +# sp-io = { path = "../polkadot-sdk/substrate/primitives/io" } +# sp-transaction-storage-proof = { path = "../polkadot-sdk/substrate/primitives/transaction-storage-proof" } +# sp-ver = { path = "../polkadot-sdk/substrate/primitives/ver" } +# sp-tracing = { path = "../polkadot-sdk/substrate/primitives/tracing" } +# sp-mmr-primitives = { path = "../polkadot-sdk/substrate/primitives/merkle-mountain-range" } +# sp-application-crypto = { path = "../polkadot-sdk/substrate/primitives/application-crypto" } +# sp-panic-handler = { path = "../polkadot-sdk/substrate/primitives/panic-handler" } +# sp-core-hashing = { path = "../polkadot-sdk/substrate/primitives/core/hashing" } +# sp-core-hashing-proc-macro = { path = "../polkadot-sdk/substrate/primitives/core/hashing/proc-macro" } +# sp-core = { path = "../polkadot-sdk/substrate/primitives/core" } +# sp-offchain = { path = "../polkadot-sdk/substrate/primitives/offchain" } +# sp-weights = { path = "../polkadot-sdk/substrate/primitives/weights" } +# sp-npos-elections = { path = "../polkadot-sdk/substrate/primitives/npos-elections" } +# sp-keystore = { path = "../polkadot-sdk/substrate/primitives/keystore" } +# mangata-types = { path = "../polkadot-sdk/substrate/primitives/mangata-types" } +# sp-version = { path = "../polkadot-sdk/substrate/primitives/version" } +# sp-version-proc-macro = { path = "../polkadot-sdk/substrate/primitives/version/proc-macro" } +# sp-runtime = { path = "../polkadot-sdk/substrate/primitives/runtime" } +# sp-wasm-interface = { path = "../polkadot-sdk/substrate/primitives/wasm-interface" } +# sp-authority-discovery = { path = "../polkadot-sdk/substrate/primitives/authority-discovery" } +# sp-genesis-builder = { path = "../polkadot-sdk/substrate/primitives/genesis-builder" } +# sp-block-builder = { path = "../polkadot-sdk/substrate/primitives/block-builder" } +# ver-api = { path = "../polkadot-sdk/substrate/primitives/ver-api" } +# sp-runtime-interface = { path = "../polkadot-sdk/substrate/primitives/runtime-interface" } +# sp-runtime-interface-proc-macro = { path = "../polkadot-sdk/substrate/primitives/runtime-interface/proc-macro" } +# sp-debug-derive = { path = "../polkadot-sdk/substrate/primitives/debug-derive" } +# sp-statement-store = { path = "../polkadot-sdk/substrate/primitives/statement-store" } +# sp-staking = { path = "../polkadot-sdk/substrate/primitives/staking" } +# sp-trie = { path = "../polkadot-sdk/substrate/primitives/trie" } +# sp-metadata-ir = { path = "../polkadot-sdk/substrate/primitives/metadata-ir" } +# sp-keyring = { path = "../polkadot-sdk/substrate/primitives/keyring" } +# sp-consensus-slots = { path = "../polkadot-sdk/substrate/primitives/consensus/slots" } +# sp-consensus-grandpa = { path = "../polkadot-sdk/substrate/primitives/consensus/grandpa" } +# sp-consensus-aura = { path = "../polkadot-sdk/substrate/primitives/consensus/aura" } +# sp-consensus-beefy = { path = "../polkadot-sdk/substrate/primitives/consensus/beefy" } +# sp-consensus = { path = "../polkadot-sdk/substrate/primitives/consensus/common" } +# sp-consensus-babe = { path = "../polkadot-sdk/substrate/primitives/consensus/babe" } +# sp-arithmetic = { path = "../polkadot-sdk/substrate/primitives/arithmetic" } +# sc-rpc = { path = "../polkadot-sdk/substrate/client/rpc" } +# sc-client-api = { path = "../polkadot-sdk/substrate/client/api" } +# sc-chain-spec-derive = { path = "../polkadot-sdk/substrate/client/chain-spec/derive" } +# sc-chain-spec = { path = "../polkadot-sdk/substrate/client/chain-spec" } +# sc-basic-authorship-ver = { path = "../polkadot-sdk/substrate/client/basic-authorship-ver" } +# sc-transaction-pool-api = { path = "../polkadot-sdk/substrate/client/transaction-pool/api" } +# sc-transaction-pool = { path = "../polkadot-sdk/substrate/client/transaction-pool" } +# sc-storage-monitor = { path = "../polkadot-sdk/substrate/client/storage-monitor" } +# sc-tracing = { path = "../polkadot-sdk/substrate/client/tracing" } +# sc-tracing-proc-macro = { path = "../polkadot-sdk/substrate/client/tracing/proc-macro" } +# sc-telemetry = { path = "../polkadot-sdk/substrate/client/telemetry" } +# mmr-rpc = { path = "../polkadot-sdk/substrate/client/merkle-mountain-range/rpc" } +# mmr-gadget = { path = "../polkadot-sdk/substrate/client/merkle-mountain-range" } +# sc-service = { path = "../polkadot-sdk/substrate/client/service" } +# sc-offchain = { path = "../polkadot-sdk/substrate/client/offchain" } +# sc-allocator = { path = "../polkadot-sdk/substrate/client/allocator" } +# sc-rpc-server = { path = "../polkadot-sdk/substrate/client/rpc-servers" } +# sc-keystore = { path = "../polkadot-sdk/substrate/client/keystore" } +# sc-executor = { path = "../polkadot-sdk/substrate/client/executor" } +# sc-executor-common = { path = "../polkadot-sdk/substrate/client/executor/common" } +# sc-executor-wasmtime = { path = "../polkadot-sdk/substrate/client/executor/wasmtime" } +# sc-informant = { path = "../polkadot-sdk/substrate/client/informant" } +# sc-rpc-spec-v2 = { path = "../polkadot-sdk/substrate/client/rpc-spec-v2" } +# sc-sync-state-rpc = { path = "../polkadot-sdk/substrate/client/sync-state-rpc" } +# sc-network-transactions = { path = "../polkadot-sdk/substrate/client/network/transactions" } +# sc-network-sync = { path = "../polkadot-sdk/substrate/client/network/sync" } +# sc-network-bitswap = { path = "../polkadot-sdk/substrate/client/network/bitswap" } +# sc-network-light = { path = "../polkadot-sdk/substrate/client/network/light" } +# sc-network = { path = "../polkadot-sdk/substrate/client/network" } +# sc-network-common = { path = "../polkadot-sdk/substrate/client/network/common" } +# sc-authority-discovery = { path = "../polkadot-sdk/substrate/client/authority-discovery" } +# sc-basic-authorship = { path = "../polkadot-sdk/substrate/client/basic-authorship" } +# sc-block-builder = { path = "../polkadot-sdk/substrate/client/block-builder" } +# sc-utils = { path = "../polkadot-sdk/substrate/client/utils" } +# sc-proposer-metrics = { path = "../polkadot-sdk/substrate/client/proposer-metrics" } +# sc-cli = { path = "../polkadot-sdk/substrate/client/cli" } +# sc-block-builder-ver = { path = "../polkadot-sdk/substrate/client/block-builder-ver" } +# sc-sysinfo = { path = "../polkadot-sdk/substrate/client/sysinfo" } +# sc-client-db = { path = "../polkadot-sdk/substrate/client/db" } +# sc-state-db = { path = "../polkadot-sdk/substrate/client/state-db" } +# sc-rpc-api = { path = "../polkadot-sdk/substrate/client/rpc-api" } +# sc-consensus-slots = { path = "../polkadot-sdk/substrate/client/consensus/slots" } +# sc-consensus-grandpa-rpc = { path = "../polkadot-sdk/substrate/client/consensus/grandpa/rpc" } +# sc-consensus-grandpa = { path = "../polkadot-sdk/substrate/client/consensus/grandpa" } +# sc-consensus-epochs = { path = "../polkadot-sdk/substrate/client/consensus/epochs" } +# sc-consensus-aura = { path = "../polkadot-sdk/substrate/client/consensus/aura" } +# sc-consensus-beefy-rpc = { path = "../polkadot-sdk/substrate/client/consensus/beefy/rpc" } +# sc-consensus-beefy = { path = "../polkadot-sdk/substrate/client/consensus/beefy" } +# sc-consensus = { path = "../polkadot-sdk/substrate/client/consensus/common" } +# sc-consensus-babe-rpc = { path = "../polkadot-sdk/substrate/client/consensus/babe/rpc" } +# sc-consensus-babe = { path = "../polkadot-sdk/substrate/client/consensus/babe" } +# sc-network-gossip = { path = "../polkadot-sdk/substrate/client/network-gossip" } +# pallet-asset-tx-payment = { path = "../polkadot-sdk/substrate/frame/transaction-payment/asset-tx-payment" } +# pallet-transaction-payment-rpc-runtime-api = { path = "../polkadot-sdk/substrate/frame/transaction-payment/rpc/runtime-api" } +# pallet-transaction-payment-rpc = { path = "../polkadot-sdk/substrate/frame/transaction-payment/rpc" } +# pallet-transaction-payment = { path = "../polkadot-sdk/substrate/frame/transaction-payment" } +# pallet-democracy = { path = "../polkadot-sdk/substrate/frame/democracy" } +# pallet-multisig = { path = "../polkadot-sdk/substrate/frame/multisig" } +# pallet-election-provider-multi-phase = { path = "../polkadot-sdk/substrate/frame/election-provider-multi-phase" } +# frame-system-rpc-runtime-api = { path = "../polkadot-sdk/substrate/frame/system/rpc/runtime-api" } +# frame-system = { path = "../polkadot-sdk/substrate/frame/system" } +# frame-system-benchmarking = { path = "../polkadot-sdk/substrate/frame/system/benchmarking" } +# pallet-state-trie-migration = { path = "../polkadot-sdk/substrate/frame/state-trie-migration" } +# pallet-vesting = { path = "../polkadot-sdk/substrate/frame/vesting" } +# pallet-recovery = { path = "../polkadot-sdk/substrate/frame/recovery" } +# pallet-society = { path = "../polkadot-sdk/substrate/frame/society" } +# pallet-child-bounties = { path = "../polkadot-sdk/substrate/frame/child-bounties" } +# pallet-proxy = { path = "../polkadot-sdk/substrate/frame/proxy" } +# pallet-scheduler = { path = "../polkadot-sdk/substrate/frame/scheduler" } +# pallet-tips = { path = "../polkadot-sdk/substrate/frame/tips" } +# pallet-session = { path = "../polkadot-sdk/substrate/frame/session" } +# pallet-message-queue = { path = "../polkadot-sdk/substrate/frame/message-queue" } +# pallet-timestamp = { path = "../polkadot-sdk/substrate/frame/timestamp" } +# pallet-preimage = { path = "../polkadot-sdk/substrate/frame/preimage" } +# frame-election-provider-support = { path = "../polkadot-sdk/substrate/frame/election-provider-support" } +# frame-election-provider-solution-type = { path = "../polkadot-sdk/substrate/frame/election-provider-support/solution-type" } +# pallet-bounties = { path = "../polkadot-sdk/substrate/frame/bounties" } +# pallet-grandpa = { path = "../polkadot-sdk/substrate/frame/grandpa" } +# pallet-identity = { path = "../polkadot-sdk/substrate/frame/identity" } +# pallet-beefy-mmr = { path = "../polkadot-sdk/substrate/frame/beefy-mmr" } +# pallet-treasury = { path = "../polkadot-sdk/substrate/frame/treasury" } +# pallet-indices = { path = "../polkadot-sdk/substrate/frame/indices" } +# pallet-ranked-collective = { path = "../polkadot-sdk/substrate/frame/ranked-collective" } +# pallet-mmr = { path = "../polkadot-sdk/substrate/frame/merkle-mountain-range" } +# pallet-offences = { path = "../polkadot-sdk/substrate/frame/offences" } +# frame-try-runtime = { path = "../polkadot-sdk/substrate/frame/try-runtime" } +# pallet-assets = { path = "../polkadot-sdk/substrate/frame/assets" } +# pallet-im-online = { path = "../polkadot-sdk/substrate/frame/im-online" } +# pallet-conviction-voting = { path = "../polkadot-sdk/substrate/frame/conviction-voting" } +# pallet-fast-unstake = { path = "../polkadot-sdk/substrate/frame/fast-unstake" } +# pallet-root-testing = { path = "../polkadot-sdk/substrate/frame/root-testing" } +# pallet-vesting-mangata = { path = "../polkadot-sdk/substrate/frame/vesting-mangata" } +# pallet-utility = { path = "../polkadot-sdk/substrate/frame/utility" } +# pallet-balances = { path = "../polkadot-sdk/substrate/frame/balances" } +# pallet-aura = { path = "../polkadot-sdk/substrate/frame/aura" } +# pallet-referenda = { path = "../polkadot-sdk/substrate/frame/referenda" } +# pallet-whitelist = { path = "../polkadot-sdk/substrate/frame/whitelist" } +# pallet-collective-mangata = { path = "../polkadot-sdk/substrate/frame/collective-mangata" } +# frame-support-procedural-tools-derive = { path = "../polkadot-sdk/substrate/frame/support/procedural/tools/derive" } +# frame-support-procedural-tools = { path = "../polkadot-sdk/substrate/frame/support/procedural/tools" } +# frame-support-procedural = { path = "../polkadot-sdk/substrate/frame/support/procedural" } +# frame-support = { path = "../polkadot-sdk/substrate/frame/support" } +# pallet-authority-discovery = { path = "../polkadot-sdk/substrate/frame/authority-discovery" } +# pallet-beefy = { path = "../polkadot-sdk/substrate/frame/beefy" } +# pallet-collective = { path = "../polkadot-sdk/substrate/frame/collective" } +# pallet-membership = { path = "../polkadot-sdk/substrate/frame/membership" } +# pallet-nomination-pools-runtime-api = { path = "../polkadot-sdk/substrate/frame/nomination-pools/runtime-api" } +# pallet-nomination-pools = { path = "../polkadot-sdk/substrate/frame/nomination-pools" } +# pallet-babe = { path = "../polkadot-sdk/substrate/frame/babe" } +# frame-executive = { path = "../polkadot-sdk/substrate/frame/executive" } +# frame-benchmarking = { path = "../polkadot-sdk/substrate/frame/benchmarking" } +# pallet-sudo-mangata = { path = "../polkadot-sdk/substrate/frame/sudo-mangata" } +# pallet-nis = { path = "../polkadot-sdk/substrate/frame/nis" } +# pallet-elections-phragmen = { path = "../polkadot-sdk/substrate/frame/elections-phragmen" } +# pallet-utility-mangata = { path = "../polkadot-sdk/substrate/frame/utility-mangata" } +# pallet-bags-list = { path = "../polkadot-sdk/substrate/frame/bags-list" } +# pallet-staking-runtime-api = { path = "../polkadot-sdk/substrate/frame/staking/runtime-api" } +# pallet-staking-reward-fn = { path = "../polkadot-sdk/substrate/frame/staking/reward-fn" } +# pallet-staking = { path = "../polkadot-sdk/substrate/frame/staking" } +# pallet-transaction-payment-mangata-rpc-runtime-api = { path = "../polkadot-sdk/substrate/frame/transaction-payment-mangata/rpc/runtime-api" } +# pallet-transaction-payment-mangata-rpc = { path = "../polkadot-sdk/substrate/frame/transaction-payment-mangata/rpc" } +# pallet-transaction-payment-mangata = { path = "../polkadot-sdk/substrate/frame/transaction-payment-mangata" } +# pallet-authorship = { path = "../polkadot-sdk/substrate/frame/authorship" } +# mangata-support = { path = "../polkadot-sdk/substrate/frame/mangata-support" } +# pallet-sudo = { path = "../polkadot-sdk/substrate/frame/sudo" } +# binary-merkle-tree = { path = "../polkadot-sdk/substrate/utils/binary-merkle-tree" } +# substrate-build-script-utils = { path = "../polkadot-sdk/substrate/utils/build-script-utils" } +# substrate-wasm-builder = { path = "../polkadot-sdk/substrate/utils/wasm-builder" } +# fork-tree = { path = "../polkadot-sdk/substrate/utils/fork-tree" } +# substrate-frame-rpc-system = { path = "../polkadot-sdk/substrate/utils/frame/rpc/system" } +# substrate-rpc-client = { path = "../polkadot-sdk/substrate/utils/frame/rpc/client" } +# substrate-state-trie-migration-rpc = { path = "../polkadot-sdk/substrate/utils/frame/rpc/state-trie-migration-rpc" } +# try-runtime-cli = { path = "../polkadot-sdk/substrate/utils/frame/try-runtime/cli" } +# frame-remote-externalities = { path = "../polkadot-sdk/substrate/utils/frame/remote-externalities" } +# frame-benchmarking-cli = { path = "../polkadot-sdk/substrate/utils/frame/benchmarking-cli" } +# substrate-prometheus-endpoint = { path = "../polkadot-sdk/substrate/utils/prometheus" } diff --git a/runtime/mangata-kusama/src/lib.rs b/runtime/mangata-kusama/src/lib.rs index db3a4fadff..4086ef123e 100644 --- a/runtime/mangata-kusama/src/lib.rs +++ b/runtime/mangata-kusama/src/lib.rs @@ -379,12 +379,56 @@ impl Into for RuntimeCall { } use sp_runtime::generic::ExtendedCall; +use sp_core::hexdisplay::HexDisplay; +use sp_std::prelude::*; +use sp_std::fmt::Write; +use sp_runtime::AccountId32; + + impl ExtendedCall for RuntimeCall { fn context(&self) -> Option<(String, String)> { - Some(("dummy_call".to_string(), "dummy_params".to_string())) + match self { + RuntimeCall::Xyk(pallet_xyk::Call::sell_asset { + sold_asset_id, + sold_asset_amount, + bought_asset_id, + min_amount_out, + .. + }) => { + let mut buffer = String::new(); + let _ = write!(& mut buffer, "sold_asset_id: {sold_asset_id}\n"); + let _ = write!(& mut buffer, "sold_asset_amount: {sold_asset_amount}\n"); + let _ = write!(& mut buffer, "bought_asset_id: {bought_asset_id}\n"); + let _ = write!(& mut buffer, "min_amount_out: {min_amount_out}\n"); + Some(("xyk::sell_asset".to_string(), buffer)) + }, + RuntimeCall::Xyk(pallet_xyk::Call::buy_asset { + sold_asset_id, + bought_asset_amount, + bought_asset_id, + max_amount_in, + .. + }) => { + let mut buffer = String::new(); + let _ = write!(& mut buffer, "sold_asset_id: {sold_asset_id}\n"); + let _ = write!(& mut buffer, "bought_asset_amount: {bought_asset_amount}\n"); + let _ = write!(& mut buffer, "bought_asset_id: {bought_asset_id}\n"); + let _ = write!(& mut buffer, "max_amount_in: {max_amount_in}\n"); + Some(("xyk::buy_asset".to_string(), buffer)) + }, + RuntimeCall::Tokens(orml_tokens::Call::transfer { dest, currency_id, amount }) =>{ + let mut buffer = String::new(); + let _ = write!(& mut buffer, "dest: {dest:?}\n"); + let _ = write!(& mut buffer, "currency_id: {currency_id}\n"); + let _ = write!(& mut buffer, "amount: {amount}\n"); + Some(("orml_tokens::transfer".to_string(), buffer)) + }, + _ => Some(("todo".to_string(), "todo".to_string())), + } } } + pub type OnChargeTransactionHandler = ThreeCurrencyOnChargeAdapter< orml_tokens::MultiTokenCurrencyAdapter, ToAuthor, From 0dc942718a7f2e2646027092f67ede87e1bbe864 Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Mon, 11 Dec 2023 09:36:44 +0100 Subject: [PATCH 07/15] fix formatting --- runtime/integration-test/src/setup.rs | 2 +- runtime/mangata-kusama/src/lib.rs | 32 +++++++++++------------- runtime/mangata-rococo/src/lib.rs | 36 +++++++++++++-------------- 3 files changed, 33 insertions(+), 37 deletions(-) diff --git a/runtime/integration-test/src/setup.rs b/runtime/integration-test/src/setup.rs index 9939ca3f4e..5816113425 100644 --- a/runtime/integration-test/src/setup.rs +++ b/runtime/integration-test/src/setup.rs @@ -23,7 +23,7 @@ mod kusama_imports { pub use mangata_kusama_runtime::{ xcm_config::*, AccountId, AssetRegistry, Balance, Bootstrap, CustomMetadata, Identity, PolkadotXcm, ProofOfStake, Proxy, Runtime, RuntimeCall, RuntimeOrigin, System, TokenId, - Tokens, XTokens, XcmMetadata, XcmpQueue, Xyk, XykMetadata, UncheckedExtrinsic, + Tokens, UncheckedExtrinsic, XTokens, XcmMetadata, XcmpQueue, Xyk, XykMetadata, }; pub use xcm::{latest::Weight as XcmWeight, VersionedMultiLocation}; diff --git a/runtime/mangata-kusama/src/lib.rs b/runtime/mangata-kusama/src/lib.rs index 4086ef123e..501c138d32 100644 --- a/runtime/mangata-kusama/src/lib.rs +++ b/runtime/mangata-kusama/src/lib.rs @@ -378,12 +378,9 @@ impl Into for RuntimeCall { } } -use sp_runtime::generic::ExtendedCall; use sp_core::hexdisplay::HexDisplay; -use sp_std::prelude::*; -use sp_std::fmt::Write; -use sp_runtime::AccountId32; - +use sp_runtime::{generic::ExtendedCall, AccountId32}; +use sp_std::{fmt::Write, prelude::*}; impl ExtendedCall for RuntimeCall { fn context(&self) -> Option<(String, String)> { @@ -396,10 +393,10 @@ impl ExtendedCall for RuntimeCall { .. }) => { let mut buffer = String::new(); - let _ = write!(& mut buffer, "sold_asset_id: {sold_asset_id}\n"); - let _ = write!(& mut buffer, "sold_asset_amount: {sold_asset_amount}\n"); - let _ = write!(& mut buffer, "bought_asset_id: {bought_asset_id}\n"); - let _ = write!(& mut buffer, "min_amount_out: {min_amount_out}\n"); + let _ = write!(&mut buffer, "sold_asset_id: {sold_asset_id}\n"); + let _ = write!(&mut buffer, "sold_asset_amount: {sold_asset_amount}\n"); + let _ = write!(&mut buffer, "bought_asset_id: {bought_asset_id}\n"); + let _ = write!(&mut buffer, "min_amount_out: {min_amount_out}\n"); Some(("xyk::sell_asset".to_string(), buffer)) }, RuntimeCall::Xyk(pallet_xyk::Call::buy_asset { @@ -410,17 +407,17 @@ impl ExtendedCall for RuntimeCall { .. }) => { let mut buffer = String::new(); - let _ = write!(& mut buffer, "sold_asset_id: {sold_asset_id}\n"); - let _ = write!(& mut buffer, "bought_asset_amount: {bought_asset_amount}\n"); - let _ = write!(& mut buffer, "bought_asset_id: {bought_asset_id}\n"); - let _ = write!(& mut buffer, "max_amount_in: {max_amount_in}\n"); + let _ = write!(&mut buffer, "sold_asset_id: {sold_asset_id}\n"); + let _ = write!(&mut buffer, "bought_asset_amount: {bought_asset_amount}\n"); + let _ = write!(&mut buffer, "bought_asset_id: {bought_asset_id}\n"); + let _ = write!(&mut buffer, "max_amount_in: {max_amount_in}\n"); Some(("xyk::buy_asset".to_string(), buffer)) }, - RuntimeCall::Tokens(orml_tokens::Call::transfer { dest, currency_id, amount }) =>{ + RuntimeCall::Tokens(orml_tokens::Call::transfer { dest, currency_id, amount }) => { let mut buffer = String::new(); - let _ = write!(& mut buffer, "dest: {dest:?}\n"); - let _ = write!(& mut buffer, "currency_id: {currency_id}\n"); - let _ = write!(& mut buffer, "amount: {amount}\n"); + let _ = write!(&mut buffer, "dest: {dest:?}\n"); + let _ = write!(&mut buffer, "currency_id: {currency_id}\n"); + let _ = write!(&mut buffer, "amount: {amount}\n"); Some(("orml_tokens::transfer".to_string(), buffer)) }, _ => Some(("todo".to_string(), "todo".to_string())), @@ -428,7 +425,6 @@ impl ExtendedCall for RuntimeCall { } } - pub type OnChargeTransactionHandler = ThreeCurrencyOnChargeAdapter< orml_tokens::MultiTokenCurrencyAdapter, ToAuthor, diff --git a/runtime/mangata-rococo/src/lib.rs b/runtime/mangata-rococo/src/lib.rs index 752714ac34..53d7f22678 100644 --- a/runtime/mangata-rococo/src/lib.rs +++ b/runtime/mangata-rococo/src/lib.rs @@ -24,7 +24,10 @@ pub use pallet_xyk; pub use polkadot_runtime_common::BlockHashCount; use sp_api::impl_runtime_apis; pub use sp_consensus_aura::sr25519::AuthorityId as AuraId; -use sp_core::{crypto::{KeyTypeId, Ss58Codec}, ConstBool, OpaqueMetadata}; +use sp_core::{ + crypto::{KeyTypeId, Ss58Codec}, + ConstBool, OpaqueMetadata, +}; #[cfg(any(feature = "std", test))] pub use sp_runtime::BuildStorage; use sp_runtime::{ @@ -72,12 +75,9 @@ pub type UncheckedExtrinsic = runtime_types::UncheckedExtrinsic; -use sp_runtime::generic::ExtendedCall; use sp_core::hexdisplay::HexDisplay; -use sp_std::prelude::*; -use sp_std::fmt::Write; -use sp_runtime::AccountId32; - +use sp_runtime::{generic::ExtendedCall, AccountId32}; +use sp_std::{fmt::Write, prelude::*}; impl ExtendedCall for RuntimeCall { fn context(&self) -> Option<(String, String)> { @@ -90,10 +90,10 @@ impl ExtendedCall for RuntimeCall { .. }) => { let mut buffer = String::new(); - let _ = write!(& mut buffer, "sold_asset_id: {sold_asset_id}\n"); - let _ = write!(& mut buffer, "sold_asset_amount: {sold_asset_amount}\n"); - let _ = write!(& mut buffer, "bought_asset_id: {bought_asset_id}\n"); - let _ = write!(& mut buffer, "min_amount_out: {min_amount_out}\n"); + let _ = write!(&mut buffer, "sold_asset_id: {sold_asset_id}\n"); + let _ = write!(&mut buffer, "sold_asset_amount: {sold_asset_amount}\n"); + let _ = write!(&mut buffer, "bought_asset_id: {bought_asset_id}\n"); + let _ = write!(&mut buffer, "min_amount_out: {min_amount_out}\n"); Some(("xyk::sell_asset".to_string(), buffer)) }, RuntimeCall::Xyk(pallet_xyk::Call::buy_asset { @@ -104,17 +104,17 @@ impl ExtendedCall for RuntimeCall { .. }) => { let mut buffer = String::new(); - let _ = write!(& mut buffer, "sold_asset_id: {sold_asset_id}\n"); - let _ = write!(& mut buffer, "bought_asset_amount: {bought_asset_amount}\n"); - let _ = write!(& mut buffer, "bought_asset_id: {bought_asset_id}\n"); - let _ = write!(& mut buffer, "max_amount_in: {max_amount_in}\n"); + let _ = write!(&mut buffer, "sold_asset_id: {sold_asset_id}\n"); + let _ = write!(&mut buffer, "bought_asset_amount: {bought_asset_amount}\n"); + let _ = write!(&mut buffer, "bought_asset_id: {bought_asset_id}\n"); + let _ = write!(&mut buffer, "max_amount_in: {max_amount_in}\n"); Some(("xyk::buy_asset".to_string(), buffer)) }, - RuntimeCall::Tokens(orml_tokens::Call::transfer { dest, currency_id, amount }) =>{ + RuntimeCall::Tokens(orml_tokens::Call::transfer { dest, currency_id, amount }) => { let mut buffer = String::new(); - let _ = write!(& mut buffer, "dest: {dest:?}\n"); - let _ = write!(& mut buffer, "currency_id: {currency_id}\n"); - let _ = write!(& mut buffer, "amount: {amount}\n"); + let _ = write!(&mut buffer, "dest: {dest:?}\n"); + let _ = write!(&mut buffer, "currency_id: {currency_id}\n"); + let _ = write!(&mut buffer, "amount: {amount}\n"); Some(("orml_tokens::transfer".to_string(), buffer)) }, _ => Some(("todo".to_string(), "todo".to_string())), From 2e78f33d73d7d2147262cc5439ef839990fb2226 Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Tue, 12 Dec 2023 07:46:50 +0100 Subject: [PATCH 08/15] impl ExtendedCall for all runtimes --- Cargo.lock | 576 ++++++++++++++--------------- devops/parachain-launch/config.yml | 2 +- 2 files changed, 289 insertions(+), 289 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 35b8bb0b0b..232c47f2dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1046,7 +1046,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "hash-db", "log", @@ -2144,7 +2144,7 @@ dependencies = [ [[package]] name = "cumulus-client-cli" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "clap", "parity-scale-codec", @@ -2160,7 +2160,7 @@ dependencies = [ [[package]] name = "cumulus-client-collator" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "cumulus-client-consensus-common", "cumulus-client-network", @@ -2183,7 +2183,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-aura" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "cumulus-client-collator", @@ -2226,7 +2226,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-common" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "cumulus-client-pov-recovery", @@ -2255,7 +2255,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-proposer" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "anyhow", "async-trait", @@ -2270,7 +2270,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-relay-chain" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "cumulus-client-consensus-common", @@ -2293,7 +2293,7 @@ dependencies = [ [[package]] name = "cumulus-client-network" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "cumulus-relay-chain-interface", @@ -2316,7 +2316,7 @@ dependencies = [ [[package]] name = "cumulus-client-pov-recovery" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2340,7 +2340,7 @@ dependencies = [ [[package]] name = "cumulus-client-service" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "cumulus-client-cli", "cumulus-client-collator", @@ -2375,7 +2375,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-aura-ext" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -2393,7 +2393,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-dmp-queue" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2411,7 +2411,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "bytes", "cumulus-pallet-parachain-system-proc-macro", @@ -2442,7 +2442,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system-proc-macro" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2453,7 +2453,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-session-benchmarking" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -2467,7 +2467,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcm" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2483,7 +2483,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcmp-queue" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "cumulus-primitives-core", "frame-benchmarking", @@ -2505,7 +2505,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-aura" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2519,7 +2519,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-core" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2536,7 +2536,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2559,7 +2559,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-timestamp" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "cumulus-primitives-core", "futures", @@ -2572,7 +2572,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-utility" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2590,7 +2590,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-inprocess-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2614,7 +2614,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2632,7 +2632,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-minimal-node" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "array-bytes", "async-trait", @@ -2667,7 +2667,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-rpc-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2705,7 +2705,7 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", @@ -3528,7 +3528,7 @@ dependencies = [ [[package]] name = "extrinsic-shuffler" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "derive_more", "log", @@ -3636,7 +3636,7 @@ dependencies = [ [[package]] name = "fflonk" version = "0.1.0" -source = "git+https://github.com/w3f/fflonk#1beb0585e1c8488956fac7f05da061f9b41e8948" +source = "git+https://github.com/w3f/fflonk#1e854f35e9a65d08b11a86291405cdc95baa0a35" dependencies = [ "ark-ec", "ark-ff 0.4.2", @@ -3737,7 +3737,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "parity-scale-codec", ] @@ -3760,7 +3760,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-support", "frame-support-procedural", @@ -3785,7 +3785,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "Inflector", "array-bytes", @@ -3839,7 +3839,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -3850,7 +3850,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -3867,7 +3867,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -3901,7 +3901,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-recursion", "futures", @@ -3923,7 +3923,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "aquamarine 0.3.2", "bitflags 1.3.2", @@ -3964,7 +3964,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "Inflector", "cfg-expr", @@ -3982,7 +3982,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3994,7 +3994,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "proc-macro2", "quote", @@ -4004,7 +4004,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "cfg-if", "extrinsic-shuffler", @@ -4025,7 +4025,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -4040,7 +4040,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "parity-scale-codec", "sp-api", @@ -4049,7 +4049,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-support", "parity-scale-codec", @@ -5201,7 +5201,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-support", "polkadot-primitives", @@ -6256,7 +6256,7 @@ dependencies = [ [[package]] name = "mangata-support" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-support", "mangata-types", @@ -6269,7 +6269,7 @@ dependencies = [ [[package]] name = "mangata-types" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "parity-scale-codec", "scale-info", @@ -6483,7 +6483,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "futures", "log", @@ -6502,7 +6502,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "anyhow", "jsonrpsee", @@ -7125,7 +7125,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -7143,7 +7143,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -7159,7 +7159,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-support", "frame-system", @@ -7176,7 +7176,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-support", "frame-system", @@ -7192,7 +7192,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-support", "frame-system", @@ -7206,7 +7206,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -7230,7 +7230,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "aquamarine 0.3.2", "docify", @@ -7252,7 +7252,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -7267,7 +7267,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-support", "frame-system", @@ -7287,7 +7287,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -7344,7 +7344,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -7362,7 +7362,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -7381,7 +7381,7 @@ dependencies = [ [[package]] name = "pallet-collator-selection" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -7400,7 +7400,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -7417,7 +7417,7 @@ dependencies = [ [[package]] name = "pallet-collective-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -7434,7 +7434,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7475,7 +7475,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -7493,7 +7493,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7516,7 +7516,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7530,7 +7530,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -7549,7 +7549,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "docify", "frame-benchmarking", @@ -7597,7 +7597,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -7620,7 +7620,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7636,7 +7636,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -7656,7 +7656,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -7725,7 +7725,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -7742,7 +7742,7 @@ dependencies = [ [[package]] name = "pallet-message-queue" version = "7.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -7761,7 +7761,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -7809,7 +7809,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -7825,7 +7825,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -7841,7 +7841,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-support", "frame-system", @@ -7860,7 +7860,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7880,7 +7880,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -7891,7 +7891,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-support", "frame-system", @@ -7908,7 +7908,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7932,7 +7932,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -7986,7 +7986,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -8001,7 +8001,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -8019,7 +8019,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -8034,7 +8034,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "assert_matches", "frame-benchmarking", @@ -8053,7 +8053,7 @@ dependencies = [ [[package]] name = "pallet-root-testing" version = "1.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-support", "frame-system", @@ -8068,7 +8068,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "docify", "frame-benchmarking", @@ -8086,7 +8086,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-support", "frame-system", @@ -8108,7 +8108,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -8125,7 +8125,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -8143,7 +8143,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -8166,7 +8166,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8177,7 +8177,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "log", "sp-arithmetic", @@ -8186,7 +8186,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "parity-scale-codec", "sp-api", @@ -8195,7 +8195,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -8212,7 +8212,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -8227,7 +8227,7 @@ dependencies = [ [[package]] name = "pallet-sudo-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -8260,7 +8260,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -8279,7 +8279,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -8298,7 +8298,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-support", "frame-system", @@ -8314,7 +8314,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-support", "frame-system", @@ -8330,7 +8330,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "jsonrpsee", "pallet-transaction-payment-mangata-rpc-runtime-api", @@ -8346,7 +8346,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "pallet-transaction-payment-mangata", "parity-scale-codec", @@ -8358,7 +8358,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -8374,7 +8374,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -8386,7 +8386,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -8403,7 +8403,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -8419,7 +8419,7 @@ dependencies = [ [[package]] name = "pallet-utility-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -8435,7 +8435,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -8450,7 +8450,7 @@ dependencies = [ [[package]] name = "pallet-vesting-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -8465,7 +8465,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -8480,7 +8480,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "bounded-collections", "frame-benchmarking", @@ -8501,7 +8501,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-benchmarking", "frame-support", @@ -8556,7 +8556,7 @@ dependencies = [ [[package]] name = "parachain-info" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -8601,7 +8601,7 @@ dependencies = [ [[package]] name = "parachains-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-utility", @@ -8980,7 +8980,7 @@ checksum = "14e6ab3f592e6fb464fc9712d8d6e6912de6473954635fd76a589d832cffcbb0" [[package]] name = "polkadot-approval-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "futures", "futures-timer", @@ -8998,7 +8998,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "always-assert", "futures", @@ -9014,7 +9014,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "derive_more", "fatality", @@ -9037,7 +9037,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "fatality", "futures", @@ -9058,7 +9058,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "clap", "frame-benchmarking-cli", @@ -9085,7 +9085,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "bitvec", "fatality", @@ -9107,7 +9107,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "parity-scale-codec", "scale-info", @@ -9119,7 +9119,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "derive_more", "fatality", @@ -9144,7 +9144,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -9158,7 +9158,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "futures", "futures-timer", @@ -9179,7 +9179,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "always-assert", "async-trait", @@ -9202,7 +9202,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "futures", "parity-scale-codec", @@ -9220,7 +9220,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "bitvec", "derive_more", @@ -9249,7 +9249,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "bitvec", "futures", @@ -9271,7 +9271,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "bitvec", "fatality", @@ -9290,7 +9290,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "futures", "polkadot-node-subsystem", @@ -9305,7 +9305,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "futures", @@ -9326,7 +9326,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "futures", "polkadot-node-metrics", @@ -9341,7 +9341,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "futures", "futures-timer", @@ -9358,7 +9358,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "fatality", "futures", @@ -9377,7 +9377,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "futures", @@ -9394,7 +9394,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-prospective-parachains" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "bitvec", "fatality", @@ -9411,7 +9411,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "bitvec", "fatality", @@ -9428,7 +9428,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "always-assert", "futures", @@ -9456,7 +9456,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "futures", "polkadot-node-primitives", @@ -9472,7 +9472,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "cpu-time", "futures", @@ -9495,7 +9495,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-prepare-worker" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "futures", "libc", @@ -9518,7 +9518,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "futures", "polkadot-node-metrics", @@ -9533,7 +9533,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "lazy_static", "log", @@ -9551,7 +9551,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "bs58 0.5.0", "futures", @@ -9570,7 +9570,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-channel 1.9.0", "async-trait", @@ -9594,7 +9594,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "bounded-vec", "futures", @@ -9616,7 +9616,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -9626,7 +9626,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "derive_more", @@ -9650,7 +9650,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "derive_more", @@ -9683,7 +9683,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "futures", @@ -9706,7 +9706,7 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "bounded-collections", "derive_more", @@ -9723,7 +9723,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "env_logger 0.9.3", "log", @@ -9741,7 +9741,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "bitvec", "hex-literal 0.4.1", @@ -9767,7 +9767,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "jsonrpsee", "mmr-rpc", @@ -9799,7 +9799,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "bitvec", "frame-benchmarking", @@ -9896,7 +9896,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "bitvec", "frame-benchmarking", @@ -9942,7 +9942,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-support", "polkadot-primitives", @@ -9956,7 +9956,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "bs58 0.5.0", "frame-benchmarking", @@ -9969,7 +9969,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "bitflags 1.3.2", "bitvec", @@ -10015,7 +10015,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "frame-benchmarking", @@ -10136,7 +10136,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "arrayvec 0.7.4", "bitvec", @@ -10160,7 +10160,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -10972,7 +10972,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "binary-merkle-tree", "frame-benchmarking", @@ -11060,7 +11060,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-support", "polkadot-primitives", @@ -11434,7 +11434,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "log", "sp-core", @@ -11445,7 +11445,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "futures", @@ -11473,7 +11473,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "futures", "futures-timer", @@ -11496,7 +11496,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship-ver" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "aquamarine 0.3.2", "futures", @@ -11522,7 +11522,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -11537,7 +11537,7 @@ dependencies = [ [[package]] name = "sc-block-builder-ver" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -11557,7 +11557,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -11576,7 +11576,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11587,7 +11587,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "array-bytes", "chrono", @@ -11626,7 +11626,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "fnv", "futures", @@ -11652,7 +11652,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "hash-db", "kvdb", @@ -11678,7 +11678,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "futures", @@ -11703,7 +11703,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "futures", @@ -11732,7 +11732,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "fork-tree", @@ -11768,7 +11768,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "futures", "jsonrpsee", @@ -11790,7 +11790,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11824,7 +11824,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "futures", "jsonrpsee", @@ -11843,7 +11843,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "fork-tree", "parity-scale-codec", @@ -11856,7 +11856,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "ahash 0.8.6", "array-bytes", @@ -11897,7 +11897,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "finality-grandpa", "futures", @@ -11917,7 +11917,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "futures", @@ -11942,7 +11942,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -11964,7 +11964,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -11976,7 +11976,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "anyhow", "cfg-if", @@ -11993,7 +11993,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "ansi_term", "futures", @@ -12009,7 +12009,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "array-bytes", "parking_lot 0.12.1", @@ -12023,7 +12023,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -12064,7 +12064,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-channel 1.9.0", "cid", @@ -12084,7 +12084,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -12101,7 +12101,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "ahash 0.8.6", "futures", @@ -12119,7 +12119,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -12140,7 +12140,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -12174,7 +12174,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "array-bytes", "futures", @@ -12192,7 +12192,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "array-bytes", "bytes", @@ -12226,7 +12226,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -12235,7 +12235,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "futures", "jsonrpsee", @@ -12266,7 +12266,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12285,7 +12285,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "http", "jsonrpsee", @@ -12300,7 +12300,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "array-bytes", "futures", @@ -12328,7 +12328,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "directories", @@ -12394,7 +12394,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "log", "parity-scale-codec", @@ -12405,7 +12405,7 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "clap", "fs4", @@ -12419,7 +12419,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12438,7 +12438,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "futures", "libc", @@ -12457,7 +12457,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "chrono", "futures", @@ -12476,7 +12476,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "ansi_term", "atty", @@ -12505,7 +12505,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12516,7 +12516,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "futures", @@ -12542,7 +12542,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "futures", @@ -12558,7 +12558,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-channel 1.9.0", "futures", @@ -13067,7 +13067,7 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" [[package]] name = "slot-range-helper" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "enumn", "parity-scale-codec", @@ -13270,7 +13270,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "hash-db", "log", @@ -13291,7 +13291,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "Inflector", "blake2", @@ -13305,7 +13305,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "23.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "parity-scale-codec", "scale-info", @@ -13318,7 +13318,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "16.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "integer-sqrt", "num-traits", @@ -13332,7 +13332,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "parity-scale-codec", "scale-info", @@ -13345,7 +13345,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "sp-api", "sp-inherents", @@ -13356,7 +13356,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "futures", "log", @@ -13374,7 +13374,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "futures", @@ -13389,7 +13389,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "parity-scale-codec", @@ -13406,7 +13406,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "parity-scale-codec", @@ -13425,7 +13425,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "lazy_static", "parity-scale-codec", @@ -13444,7 +13444,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "finality-grandpa", "log", @@ -13462,7 +13462,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "parity-scale-codec", "scale-info", @@ -13474,7 +13474,7 @@ dependencies = [ [[package]] name = "sp-core" version = "21.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "array-bytes", "arrayvec 0.7.4", @@ -13522,7 +13522,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "9.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "blake2b_simd", "byteorder", @@ -13535,7 +13535,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "9.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "quote", "sp-core-hashing", @@ -13545,7 +13545,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -13554,7 +13554,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "proc-macro2", "quote", @@ -13564,7 +13564,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.19.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "environmental", "parity-scale-codec", @@ -13575,7 +13575,7 @@ dependencies = [ [[package]] name = "sp-genesis-builder" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "serde_json", "sp-api", @@ -13586,7 +13586,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -13600,7 +13600,7 @@ dependencies = [ [[package]] name = "sp-io" version = "23.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "bytes", "ed25519-dalek 2.1.0", @@ -13624,7 +13624,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "24.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "lazy_static", "sp-core", @@ -13635,7 +13635,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.27.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -13647,7 +13647,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "thiserror", "zstd 0.12.4", @@ -13656,7 +13656,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-metadata", "parity-scale-codec", @@ -13667,7 +13667,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -13685,7 +13685,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "parity-scale-codec", "scale-info", @@ -13699,7 +13699,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "sp-api", "sp-core", @@ -13709,7 +13709,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "backtrace", "lazy_static", @@ -13719,7 +13719,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "rustc-hash", "serde", @@ -13729,7 +13729,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "24.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "alloy-primitives", "alloy-sol-types", @@ -13754,7 +13754,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "17.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -13772,7 +13772,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "11.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "Inflector", "proc-macro-crate", @@ -13784,7 +13784,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "parity-scale-codec", "scale-info", @@ -13799,7 +13799,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -13813,7 +13813,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.28.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "hash-db", "log", @@ -13834,7 +13834,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "aes-gcm 0.10.3", "curve25519-dalek 4.1.1", @@ -13858,12 +13858,12 @@ dependencies = [ [[package]] name = "sp-std" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" [[package]] name = "sp-storage" version = "13.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13876,7 +13876,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "parity-scale-codec", @@ -13889,7 +13889,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "10.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "parity-scale-codec", "sp-std", @@ -13901,7 +13901,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "sp-api", "sp-runtime", @@ -13910,7 +13910,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "parity-scale-codec", @@ -13925,7 +13925,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "22.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "ahash 0.8.6", "hash-db", @@ -13948,7 +13948,7 @@ dependencies = [ [[package]] name = "sp-ver" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "parity-scale-codec", @@ -13965,7 +13965,7 @@ dependencies = [ [[package]] name = "sp-version" version = "22.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13982,7 +13982,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -13993,7 +13993,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "14.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -14006,7 +14006,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "20.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "parity-scale-codec", "scale-info", @@ -14085,7 +14085,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "staging-kusama-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "binary-merkle-tree", "bitvec", @@ -14191,7 +14191,7 @@ dependencies = [ [[package]] name = "staging-xcm" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "bounded-collections", "derivative", @@ -14208,7 +14208,7 @@ dependencies = [ [[package]] name = "staging-xcm-builder" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-support", "frame-system", @@ -14230,7 +14230,7 @@ dependencies = [ [[package]] name = "staging-xcm-executor" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "environmental", "frame-benchmarking", @@ -14363,12 +14363,12 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -14387,7 +14387,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "hyper", "log", @@ -14399,7 +14399,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "jsonrpsee", @@ -14412,7 +14412,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -14429,7 +14429,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "ansi_term", "build-helper", @@ -14983,7 +14983,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "coarsetime", "polkadot-node-jaeger", @@ -14995,7 +14995,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "expander 2.0.0", "proc-macro-crate", @@ -15125,7 +15125,7 @@ checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "async-trait", "clap", @@ -15349,7 +15349,7 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "ver-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "derive_more", "futures", @@ -16062,7 +16062,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "binary-merkle-tree", "bitvec", @@ -16161,7 +16161,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "frame-support", "polkadot-primitives", @@ -16539,7 +16539,7 @@ dependencies = [ [[package]] name = "xcm-emulator" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "cumulus-pallet-parachain-system", "cumulus-primitives-core", @@ -16571,7 +16571,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#36732601f2386672de1685ab71707e478505542a" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" dependencies = [ "Inflector", "proc-macro2", diff --git a/devops/parachain-launch/config.yml b/devops/parachain-launch/config.yml index 13615ff50b..46f27595c2 100644 --- a/devops/parachain-launch/config.yml +++ b/devops/parachain-launch/config.yml @@ -17,7 +17,7 @@ relaychain: - name: bob parachains: - - image: mangatasolutions/mangata-node:dev + - image: mangatasolutions/mangata-node:matamask chain: base: mangata-rococo-local collators: From 72a5369dfdca3404f285cfe96e838842eb6efffe Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Tue, 12 Dec 2023 09:41:50 +0100 Subject: [PATCH 09/15] fix features --- Cargo.lock | 574 +++++++++--------- .../metamask-signature-runtime-api/Cargo.toml | 1 + runtime/mangata-rococo/Cargo.toml | 4 + 3 files changed, 292 insertions(+), 287 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 232c47f2dc..d13ccda194 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1046,7 +1046,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "hash-db", "log", @@ -2144,7 +2144,7 @@ dependencies = [ [[package]] name = "cumulus-client-cli" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "clap", "parity-scale-codec", @@ -2160,7 +2160,7 @@ dependencies = [ [[package]] name = "cumulus-client-collator" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "cumulus-client-consensus-common", "cumulus-client-network", @@ -2183,7 +2183,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-aura" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "cumulus-client-collator", @@ -2226,7 +2226,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-common" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "cumulus-client-pov-recovery", @@ -2255,7 +2255,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-proposer" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "anyhow", "async-trait", @@ -2270,7 +2270,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-relay-chain" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "cumulus-client-consensus-common", @@ -2293,7 +2293,7 @@ dependencies = [ [[package]] name = "cumulus-client-network" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "cumulus-relay-chain-interface", @@ -2316,7 +2316,7 @@ dependencies = [ [[package]] name = "cumulus-client-pov-recovery" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2340,7 +2340,7 @@ dependencies = [ [[package]] name = "cumulus-client-service" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "cumulus-client-cli", "cumulus-client-collator", @@ -2375,7 +2375,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-aura-ext" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -2393,7 +2393,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-dmp-queue" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2411,7 +2411,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "bytes", "cumulus-pallet-parachain-system-proc-macro", @@ -2442,7 +2442,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system-proc-macro" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2453,7 +2453,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-session-benchmarking" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -2467,7 +2467,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcm" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2483,7 +2483,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcmp-queue" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "cumulus-primitives-core", "frame-benchmarking", @@ -2505,7 +2505,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-aura" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2519,7 +2519,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-core" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2536,7 +2536,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2559,7 +2559,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-timestamp" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "cumulus-primitives-core", "futures", @@ -2572,7 +2572,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-utility" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2590,7 +2590,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-inprocess-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2614,7 +2614,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2632,7 +2632,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-minimal-node" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "array-bytes", "async-trait", @@ -2667,7 +2667,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-rpc-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2705,7 +2705,7 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", @@ -3528,7 +3528,7 @@ dependencies = [ [[package]] name = "extrinsic-shuffler" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "derive_more", "log", @@ -3737,7 +3737,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "parity-scale-codec", ] @@ -3760,7 +3760,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-support", "frame-support-procedural", @@ -3785,7 +3785,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "Inflector", "array-bytes", @@ -3839,7 +3839,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -3850,7 +3850,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -3867,7 +3867,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -3901,7 +3901,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-recursion", "futures", @@ -3923,7 +3923,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "aquamarine 0.3.2", "bitflags 1.3.2", @@ -3964,7 +3964,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "Inflector", "cfg-expr", @@ -3982,7 +3982,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3994,7 +3994,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "proc-macro2", "quote", @@ -4004,7 +4004,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "cfg-if", "extrinsic-shuffler", @@ -4025,7 +4025,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -4040,7 +4040,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "parity-scale-codec", "sp-api", @@ -4049,7 +4049,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-support", "parity-scale-codec", @@ -5201,7 +5201,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-support", "polkadot-primitives", @@ -6256,7 +6256,7 @@ dependencies = [ [[package]] name = "mangata-support" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-support", "mangata-types", @@ -6269,7 +6269,7 @@ dependencies = [ [[package]] name = "mangata-types" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "parity-scale-codec", "scale-info", @@ -6483,7 +6483,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "futures", "log", @@ -6502,7 +6502,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "anyhow", "jsonrpsee", @@ -7125,7 +7125,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7143,7 +7143,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7159,7 +7159,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-support", "frame-system", @@ -7176,7 +7176,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-support", "frame-system", @@ -7192,7 +7192,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-support", "frame-system", @@ -7206,7 +7206,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7230,7 +7230,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "aquamarine 0.3.2", "docify", @@ -7252,7 +7252,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7267,7 +7267,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-support", "frame-system", @@ -7287,7 +7287,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -7344,7 +7344,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7362,7 +7362,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7381,7 +7381,7 @@ dependencies = [ [[package]] name = "pallet-collator-selection" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7400,7 +7400,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7417,7 +7417,7 @@ dependencies = [ [[package]] name = "pallet-collective-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7434,7 +7434,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7475,7 +7475,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7493,7 +7493,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7516,7 +7516,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7530,7 +7530,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7549,7 +7549,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "docify", "frame-benchmarking", @@ -7597,7 +7597,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7620,7 +7620,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7636,7 +7636,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7656,7 +7656,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7725,7 +7725,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7742,7 +7742,7 @@ dependencies = [ [[package]] name = "pallet-message-queue" version = "7.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7761,7 +7761,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7809,7 +7809,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7825,7 +7825,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7841,7 +7841,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-support", "frame-system", @@ -7860,7 +7860,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7880,7 +7880,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -7891,7 +7891,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-support", "frame-system", @@ -7908,7 +7908,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7932,7 +7932,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7986,7 +7986,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8001,7 +8001,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8019,7 +8019,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8034,7 +8034,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "assert_matches", "frame-benchmarking", @@ -8053,7 +8053,7 @@ dependencies = [ [[package]] name = "pallet-root-testing" version = "1.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-support", "frame-system", @@ -8068,7 +8068,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "docify", "frame-benchmarking", @@ -8086,7 +8086,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-support", "frame-system", @@ -8108,7 +8108,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8125,7 +8125,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8143,7 +8143,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -8166,7 +8166,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8177,7 +8177,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "log", "sp-arithmetic", @@ -8186,7 +8186,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "parity-scale-codec", "sp-api", @@ -8195,7 +8195,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8212,7 +8212,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8227,7 +8227,7 @@ dependencies = [ [[package]] name = "pallet-sudo-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8260,7 +8260,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8279,7 +8279,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8298,7 +8298,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-support", "frame-system", @@ -8314,7 +8314,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-support", "frame-system", @@ -8330,7 +8330,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "jsonrpsee", "pallet-transaction-payment-mangata-rpc-runtime-api", @@ -8346,7 +8346,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "pallet-transaction-payment-mangata", "parity-scale-codec", @@ -8358,7 +8358,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -8374,7 +8374,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -8386,7 +8386,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8403,7 +8403,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8419,7 +8419,7 @@ dependencies = [ [[package]] name = "pallet-utility-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8435,7 +8435,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8450,7 +8450,7 @@ dependencies = [ [[package]] name = "pallet-vesting-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8465,7 +8465,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8480,7 +8480,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "bounded-collections", "frame-benchmarking", @@ -8501,7 +8501,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8556,7 +8556,7 @@ dependencies = [ [[package]] name = "parachain-info" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -8601,7 +8601,7 @@ dependencies = [ [[package]] name = "parachains-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-utility", @@ -8980,7 +8980,7 @@ checksum = "14e6ab3f592e6fb464fc9712d8d6e6912de6473954635fd76a589d832cffcbb0" [[package]] name = "polkadot-approval-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "futures", "futures-timer", @@ -8998,7 +8998,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "always-assert", "futures", @@ -9014,7 +9014,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "derive_more", "fatality", @@ -9037,7 +9037,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "fatality", "futures", @@ -9058,7 +9058,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "clap", "frame-benchmarking-cli", @@ -9085,7 +9085,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "bitvec", "fatality", @@ -9107,7 +9107,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "parity-scale-codec", "scale-info", @@ -9119,7 +9119,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "derive_more", "fatality", @@ -9144,7 +9144,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -9158,7 +9158,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "futures", "futures-timer", @@ -9179,7 +9179,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "always-assert", "async-trait", @@ -9202,7 +9202,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "futures", "parity-scale-codec", @@ -9220,7 +9220,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "bitvec", "derive_more", @@ -9249,7 +9249,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "bitvec", "futures", @@ -9271,7 +9271,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "bitvec", "fatality", @@ -9290,7 +9290,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "futures", "polkadot-node-subsystem", @@ -9305,7 +9305,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "futures", @@ -9326,7 +9326,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "futures", "polkadot-node-metrics", @@ -9341,7 +9341,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "futures", "futures-timer", @@ -9358,7 +9358,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "fatality", "futures", @@ -9377,7 +9377,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "futures", @@ -9394,7 +9394,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-prospective-parachains" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "bitvec", "fatality", @@ -9411,7 +9411,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "bitvec", "fatality", @@ -9428,7 +9428,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "always-assert", "futures", @@ -9456,7 +9456,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "futures", "polkadot-node-primitives", @@ -9472,7 +9472,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "cpu-time", "futures", @@ -9495,7 +9495,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-prepare-worker" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "futures", "libc", @@ -9518,7 +9518,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "futures", "polkadot-node-metrics", @@ -9533,7 +9533,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "lazy_static", "log", @@ -9551,7 +9551,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "bs58 0.5.0", "futures", @@ -9570,7 +9570,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-channel 1.9.0", "async-trait", @@ -9594,7 +9594,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "bounded-vec", "futures", @@ -9616,7 +9616,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -9626,7 +9626,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "derive_more", @@ -9650,7 +9650,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "derive_more", @@ -9683,7 +9683,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "futures", @@ -9706,7 +9706,7 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "bounded-collections", "derive_more", @@ -9723,7 +9723,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "env_logger 0.9.3", "log", @@ -9741,7 +9741,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "bitvec", "hex-literal 0.4.1", @@ -9767,7 +9767,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "jsonrpsee", "mmr-rpc", @@ -9799,7 +9799,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "bitvec", "frame-benchmarking", @@ -9896,7 +9896,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "bitvec", "frame-benchmarking", @@ -9942,7 +9942,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-support", "polkadot-primitives", @@ -9956,7 +9956,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "bs58 0.5.0", "frame-benchmarking", @@ -9969,7 +9969,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "bitflags 1.3.2", "bitvec", @@ -10015,7 +10015,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "frame-benchmarking", @@ -10136,7 +10136,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "arrayvec 0.7.4", "bitvec", @@ -10160,7 +10160,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -10972,7 +10972,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "binary-merkle-tree", "frame-benchmarking", @@ -11060,7 +11060,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-support", "polkadot-primitives", @@ -11434,7 +11434,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "log", "sp-core", @@ -11445,7 +11445,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "futures", @@ -11473,7 +11473,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "futures", "futures-timer", @@ -11496,7 +11496,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship-ver" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "aquamarine 0.3.2", "futures", @@ -11522,7 +11522,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -11537,7 +11537,7 @@ dependencies = [ [[package]] name = "sc-block-builder-ver" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -11557,7 +11557,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -11576,7 +11576,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11587,7 +11587,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "array-bytes", "chrono", @@ -11626,7 +11626,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "fnv", "futures", @@ -11652,7 +11652,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "hash-db", "kvdb", @@ -11678,7 +11678,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "futures", @@ -11703,7 +11703,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "futures", @@ -11732,7 +11732,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "fork-tree", @@ -11768,7 +11768,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "futures", "jsonrpsee", @@ -11790,7 +11790,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11824,7 +11824,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "futures", "jsonrpsee", @@ -11843,7 +11843,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "fork-tree", "parity-scale-codec", @@ -11856,7 +11856,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "ahash 0.8.6", "array-bytes", @@ -11897,7 +11897,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "finality-grandpa", "futures", @@ -11917,7 +11917,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "futures", @@ -11942,7 +11942,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -11964,7 +11964,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -11976,7 +11976,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "anyhow", "cfg-if", @@ -11993,7 +11993,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "ansi_term", "futures", @@ -12009,7 +12009,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "array-bytes", "parking_lot 0.12.1", @@ -12023,7 +12023,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -12064,7 +12064,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-channel 1.9.0", "cid", @@ -12084,7 +12084,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -12101,7 +12101,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "ahash 0.8.6", "futures", @@ -12119,7 +12119,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -12140,7 +12140,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -12174,7 +12174,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "array-bytes", "futures", @@ -12192,7 +12192,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "array-bytes", "bytes", @@ -12226,7 +12226,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -12235,7 +12235,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "futures", "jsonrpsee", @@ -12266,7 +12266,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12285,7 +12285,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "http", "jsonrpsee", @@ -12300,7 +12300,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "array-bytes", "futures", @@ -12328,7 +12328,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "directories", @@ -12394,7 +12394,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "log", "parity-scale-codec", @@ -12405,7 +12405,7 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "clap", "fs4", @@ -12419,7 +12419,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12438,7 +12438,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "futures", "libc", @@ -12457,7 +12457,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "chrono", "futures", @@ -12476,7 +12476,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "ansi_term", "atty", @@ -12505,7 +12505,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12516,7 +12516,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "futures", @@ -12542,7 +12542,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "futures", @@ -12558,7 +12558,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-channel 1.9.0", "futures", @@ -13067,7 +13067,7 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" [[package]] name = "slot-range-helper" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "enumn", "parity-scale-codec", @@ -13270,7 +13270,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "hash-db", "log", @@ -13291,7 +13291,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "Inflector", "blake2", @@ -13305,7 +13305,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "23.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "parity-scale-codec", "scale-info", @@ -13318,7 +13318,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "16.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "integer-sqrt", "num-traits", @@ -13332,7 +13332,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "parity-scale-codec", "scale-info", @@ -13345,7 +13345,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "sp-api", "sp-inherents", @@ -13356,7 +13356,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "futures", "log", @@ -13374,7 +13374,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "futures", @@ -13389,7 +13389,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "parity-scale-codec", @@ -13406,7 +13406,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "parity-scale-codec", @@ -13425,7 +13425,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "lazy_static", "parity-scale-codec", @@ -13444,7 +13444,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "finality-grandpa", "log", @@ -13462,7 +13462,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "parity-scale-codec", "scale-info", @@ -13474,7 +13474,7 @@ dependencies = [ [[package]] name = "sp-core" version = "21.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "array-bytes", "arrayvec 0.7.4", @@ -13522,7 +13522,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "9.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "blake2b_simd", "byteorder", @@ -13535,7 +13535,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "9.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "quote", "sp-core-hashing", @@ -13545,7 +13545,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -13554,7 +13554,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "proc-macro2", "quote", @@ -13564,7 +13564,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.19.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "environmental", "parity-scale-codec", @@ -13575,7 +13575,7 @@ dependencies = [ [[package]] name = "sp-genesis-builder" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "serde_json", "sp-api", @@ -13586,7 +13586,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -13600,7 +13600,7 @@ dependencies = [ [[package]] name = "sp-io" version = "23.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "bytes", "ed25519-dalek 2.1.0", @@ -13624,7 +13624,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "24.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "lazy_static", "sp-core", @@ -13635,7 +13635,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.27.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -13647,7 +13647,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "thiserror", "zstd 0.12.4", @@ -13656,7 +13656,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-metadata", "parity-scale-codec", @@ -13667,7 +13667,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -13685,7 +13685,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "parity-scale-codec", "scale-info", @@ -13699,7 +13699,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "sp-api", "sp-core", @@ -13709,7 +13709,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "backtrace", "lazy_static", @@ -13719,7 +13719,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "rustc-hash", "serde", @@ -13729,7 +13729,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "24.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "alloy-primitives", "alloy-sol-types", @@ -13754,7 +13754,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "17.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -13772,7 +13772,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "11.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "Inflector", "proc-macro-crate", @@ -13784,7 +13784,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "parity-scale-codec", "scale-info", @@ -13799,7 +13799,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -13813,7 +13813,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.28.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "hash-db", "log", @@ -13834,7 +13834,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "aes-gcm 0.10.3", "curve25519-dalek 4.1.1", @@ -13858,12 +13858,12 @@ dependencies = [ [[package]] name = "sp-std" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" [[package]] name = "sp-storage" version = "13.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13876,7 +13876,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "parity-scale-codec", @@ -13889,7 +13889,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "10.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "parity-scale-codec", "sp-std", @@ -13901,7 +13901,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "sp-api", "sp-runtime", @@ -13910,7 +13910,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "parity-scale-codec", @@ -13925,7 +13925,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "22.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "ahash 0.8.6", "hash-db", @@ -13948,7 +13948,7 @@ dependencies = [ [[package]] name = "sp-ver" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "parity-scale-codec", @@ -13965,7 +13965,7 @@ dependencies = [ [[package]] name = "sp-version" version = "22.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13982,7 +13982,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -13993,7 +13993,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "14.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -14006,7 +14006,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "20.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "parity-scale-codec", "scale-info", @@ -14085,7 +14085,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "staging-kusama-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "binary-merkle-tree", "bitvec", @@ -14191,7 +14191,7 @@ dependencies = [ [[package]] name = "staging-xcm" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "bounded-collections", "derivative", @@ -14208,7 +14208,7 @@ dependencies = [ [[package]] name = "staging-xcm-builder" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-support", "frame-system", @@ -14230,7 +14230,7 @@ dependencies = [ [[package]] name = "staging-xcm-executor" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "environmental", "frame-benchmarking", @@ -14363,12 +14363,12 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -14387,7 +14387,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "hyper", "log", @@ -14399,7 +14399,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "jsonrpsee", @@ -14412,7 +14412,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -14429,7 +14429,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "ansi_term", "build-helper", @@ -14983,7 +14983,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "coarsetime", "polkadot-node-jaeger", @@ -14995,7 +14995,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "expander 2.0.0", "proc-macro-crate", @@ -15125,7 +15125,7 @@ checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "async-trait", "clap", @@ -15349,7 +15349,7 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "ver-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "derive_more", "futures", @@ -16062,7 +16062,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "binary-merkle-tree", "bitvec", @@ -16161,7 +16161,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "frame-support", "polkadot-primitives", @@ -16539,7 +16539,7 @@ dependencies = [ [[package]] name = "xcm-emulator" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "cumulus-pallet-parachain-system", "cumulus-primitives-core", @@ -16571,7 +16571,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#c3b45d273ffafe0bc6bcff241341ee26aedbb405" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" dependencies = [ "Inflector", "proc-macro2", diff --git a/pallets/metamask-signature-runtime-api/Cargo.toml b/pallets/metamask-signature-runtime-api/Cargo.toml index c3bf2c1e05..0fdd54ea2b 100644 --- a/pallets/metamask-signature-runtime-api/Cargo.toml +++ b/pallets/metamask-signature-runtime-api/Cargo.toml @@ -31,6 +31,7 @@ std = [ "frame-system/std", "serde", "serde_json/std", + "scale-info/std", "sp-api/std", "sp-core/std", "sp-runtime/std", diff --git a/runtime/mangata-rococo/Cargo.toml b/runtime/mangata-rococo/Cargo.toml index 3257832c21..fea9424344 100644 --- a/runtime/mangata-rococo/Cargo.toml +++ b/runtime/mangata-rococo/Cargo.toml @@ -122,6 +122,8 @@ pallet-crowdloan-rewards = { git = "https://github.com/mangata-finance/crowdloan default = ["std"] std = [ "codec/std", + "common-runtime/std", + "pallet-root-testing/std", "bs58/std", "bs58/alloc", "cumulus-pallet-aura-ext/std", @@ -252,6 +254,8 @@ try-runtime = [ fast-runtime = ["common-runtime/fast-runtime"] runtime-benchmarks = [ + "mangata-support/runtime-benchmarks", + "pallet-sudo-mangata/runtime-benchmarks", "common-runtime/runtime-benchmarks", "cumulus-pallet-parachain-system/runtime-benchmarks", "cumulus-pallet-session-benchmarking/runtime-benchmarks", From ea60dab1fb786dcd00dbf68b1e5b3e4b3d828980 Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Tue, 12 Dec 2023 11:21:02 +0100 Subject: [PATCH 10/15] bump refs --- Cargo.lock | 574 ++++++++++++++++++++++++++--------------------------- 1 file changed, 287 insertions(+), 287 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d13ccda194..cfd50605b7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1046,7 +1046,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "hash-db", "log", @@ -2144,7 +2144,7 @@ dependencies = [ [[package]] name = "cumulus-client-cli" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "clap", "parity-scale-codec", @@ -2160,7 +2160,7 @@ dependencies = [ [[package]] name = "cumulus-client-collator" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "cumulus-client-consensus-common", "cumulus-client-network", @@ -2183,7 +2183,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-aura" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "cumulus-client-collator", @@ -2226,7 +2226,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-common" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "cumulus-client-pov-recovery", @@ -2255,7 +2255,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-proposer" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "anyhow", "async-trait", @@ -2270,7 +2270,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-relay-chain" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "cumulus-client-consensus-common", @@ -2293,7 +2293,7 @@ dependencies = [ [[package]] name = "cumulus-client-network" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "cumulus-relay-chain-interface", @@ -2316,7 +2316,7 @@ dependencies = [ [[package]] name = "cumulus-client-pov-recovery" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2340,7 +2340,7 @@ dependencies = [ [[package]] name = "cumulus-client-service" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "cumulus-client-cli", "cumulus-client-collator", @@ -2375,7 +2375,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-aura-ext" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -2393,7 +2393,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-dmp-queue" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2411,7 +2411,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "bytes", "cumulus-pallet-parachain-system-proc-macro", @@ -2442,7 +2442,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system-proc-macro" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2453,7 +2453,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-session-benchmarking" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -2467,7 +2467,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcm" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2483,7 +2483,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcmp-queue" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "cumulus-primitives-core", "frame-benchmarking", @@ -2505,7 +2505,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-aura" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2519,7 +2519,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-core" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2536,7 +2536,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2559,7 +2559,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-timestamp" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "cumulus-primitives-core", "futures", @@ -2572,7 +2572,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-utility" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2590,7 +2590,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-inprocess-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2614,7 +2614,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2632,7 +2632,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-minimal-node" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "array-bytes", "async-trait", @@ -2667,7 +2667,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-rpc-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2705,7 +2705,7 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", @@ -3528,7 +3528,7 @@ dependencies = [ [[package]] name = "extrinsic-shuffler" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "derive_more", "log", @@ -3737,7 +3737,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "parity-scale-codec", ] @@ -3760,7 +3760,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-support", "frame-support-procedural", @@ -3785,7 +3785,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "Inflector", "array-bytes", @@ -3839,7 +3839,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -3850,7 +3850,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -3867,7 +3867,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -3901,7 +3901,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-recursion", "futures", @@ -3923,7 +3923,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "aquamarine 0.3.2", "bitflags 1.3.2", @@ -3964,7 +3964,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "Inflector", "cfg-expr", @@ -3982,7 +3982,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3994,7 +3994,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "proc-macro2", "quote", @@ -4004,7 +4004,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "cfg-if", "extrinsic-shuffler", @@ -4025,7 +4025,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4040,7 +4040,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "parity-scale-codec", "sp-api", @@ -4049,7 +4049,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-support", "parity-scale-codec", @@ -5201,7 +5201,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-support", "polkadot-primitives", @@ -6256,7 +6256,7 @@ dependencies = [ [[package]] name = "mangata-support" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-support", "mangata-types", @@ -6269,7 +6269,7 @@ dependencies = [ [[package]] name = "mangata-types" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "parity-scale-codec", "scale-info", @@ -6483,7 +6483,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "futures", "log", @@ -6502,7 +6502,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "anyhow", "jsonrpsee", @@ -7125,7 +7125,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -7143,7 +7143,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -7159,7 +7159,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-support", "frame-system", @@ -7176,7 +7176,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-support", "frame-system", @@ -7192,7 +7192,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-support", "frame-system", @@ -7206,7 +7206,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -7230,7 +7230,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "aquamarine 0.3.2", "docify", @@ -7252,7 +7252,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -7267,7 +7267,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-support", "frame-system", @@ -7287,7 +7287,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -7344,7 +7344,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -7362,7 +7362,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -7381,7 +7381,7 @@ dependencies = [ [[package]] name = "pallet-collator-selection" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -7400,7 +7400,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -7417,7 +7417,7 @@ dependencies = [ [[package]] name = "pallet-collective-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -7434,7 +7434,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7475,7 +7475,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -7493,7 +7493,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7516,7 +7516,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7530,7 +7530,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -7549,7 +7549,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "docify", "frame-benchmarking", @@ -7597,7 +7597,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -7620,7 +7620,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7636,7 +7636,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -7656,7 +7656,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -7725,7 +7725,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -7742,7 +7742,7 @@ dependencies = [ [[package]] name = "pallet-message-queue" version = "7.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -7761,7 +7761,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -7809,7 +7809,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -7825,7 +7825,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -7841,7 +7841,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-support", "frame-system", @@ -7860,7 +7860,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7880,7 +7880,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -7891,7 +7891,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-support", "frame-system", @@ -7908,7 +7908,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7932,7 +7932,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -7986,7 +7986,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -8001,7 +8001,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -8019,7 +8019,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -8034,7 +8034,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "assert_matches", "frame-benchmarking", @@ -8053,7 +8053,7 @@ dependencies = [ [[package]] name = "pallet-root-testing" version = "1.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-support", "frame-system", @@ -8068,7 +8068,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "docify", "frame-benchmarking", @@ -8086,7 +8086,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-support", "frame-system", @@ -8108,7 +8108,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -8125,7 +8125,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -8143,7 +8143,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -8166,7 +8166,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8177,7 +8177,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "log", "sp-arithmetic", @@ -8186,7 +8186,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "parity-scale-codec", "sp-api", @@ -8195,7 +8195,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -8212,7 +8212,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -8227,7 +8227,7 @@ dependencies = [ [[package]] name = "pallet-sudo-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -8260,7 +8260,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -8279,7 +8279,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -8298,7 +8298,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-support", "frame-system", @@ -8314,7 +8314,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-support", "frame-system", @@ -8330,7 +8330,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "jsonrpsee", "pallet-transaction-payment-mangata-rpc-runtime-api", @@ -8346,7 +8346,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "pallet-transaction-payment-mangata", "parity-scale-codec", @@ -8358,7 +8358,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -8374,7 +8374,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -8386,7 +8386,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -8403,7 +8403,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -8419,7 +8419,7 @@ dependencies = [ [[package]] name = "pallet-utility-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -8435,7 +8435,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -8450,7 +8450,7 @@ dependencies = [ [[package]] name = "pallet-vesting-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -8465,7 +8465,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -8480,7 +8480,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "bounded-collections", "frame-benchmarking", @@ -8501,7 +8501,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-benchmarking", "frame-support", @@ -8556,7 +8556,7 @@ dependencies = [ [[package]] name = "parachain-info" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -8601,7 +8601,7 @@ dependencies = [ [[package]] name = "parachains-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-utility", @@ -8980,7 +8980,7 @@ checksum = "14e6ab3f592e6fb464fc9712d8d6e6912de6473954635fd76a589d832cffcbb0" [[package]] name = "polkadot-approval-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "futures", "futures-timer", @@ -8998,7 +8998,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "always-assert", "futures", @@ -9014,7 +9014,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "derive_more", "fatality", @@ -9037,7 +9037,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "fatality", "futures", @@ -9058,7 +9058,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "clap", "frame-benchmarking-cli", @@ -9085,7 +9085,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "bitvec", "fatality", @@ -9107,7 +9107,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "parity-scale-codec", "scale-info", @@ -9119,7 +9119,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "derive_more", "fatality", @@ -9144,7 +9144,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -9158,7 +9158,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "futures", "futures-timer", @@ -9179,7 +9179,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "always-assert", "async-trait", @@ -9202,7 +9202,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "futures", "parity-scale-codec", @@ -9220,7 +9220,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "bitvec", "derive_more", @@ -9249,7 +9249,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "bitvec", "futures", @@ -9271,7 +9271,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "bitvec", "fatality", @@ -9290,7 +9290,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "futures", "polkadot-node-subsystem", @@ -9305,7 +9305,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "futures", @@ -9326,7 +9326,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "futures", "polkadot-node-metrics", @@ -9341,7 +9341,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "futures", "futures-timer", @@ -9358,7 +9358,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "fatality", "futures", @@ -9377,7 +9377,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "futures", @@ -9394,7 +9394,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-prospective-parachains" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "bitvec", "fatality", @@ -9411,7 +9411,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "bitvec", "fatality", @@ -9428,7 +9428,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "always-assert", "futures", @@ -9456,7 +9456,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "futures", "polkadot-node-primitives", @@ -9472,7 +9472,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "cpu-time", "futures", @@ -9495,7 +9495,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-prepare-worker" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "futures", "libc", @@ -9518,7 +9518,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "futures", "polkadot-node-metrics", @@ -9533,7 +9533,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "lazy_static", "log", @@ -9551,7 +9551,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "bs58 0.5.0", "futures", @@ -9570,7 +9570,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-channel 1.9.0", "async-trait", @@ -9594,7 +9594,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "bounded-vec", "futures", @@ -9616,7 +9616,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -9626,7 +9626,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "derive_more", @@ -9650,7 +9650,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "derive_more", @@ -9683,7 +9683,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "futures", @@ -9706,7 +9706,7 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "bounded-collections", "derive_more", @@ -9723,7 +9723,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "env_logger 0.9.3", "log", @@ -9741,7 +9741,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "bitvec", "hex-literal 0.4.1", @@ -9767,7 +9767,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "jsonrpsee", "mmr-rpc", @@ -9799,7 +9799,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "bitvec", "frame-benchmarking", @@ -9896,7 +9896,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "bitvec", "frame-benchmarking", @@ -9942,7 +9942,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-support", "polkadot-primitives", @@ -9956,7 +9956,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "bs58 0.5.0", "frame-benchmarking", @@ -9969,7 +9969,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "bitflags 1.3.2", "bitvec", @@ -10015,7 +10015,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "frame-benchmarking", @@ -10136,7 +10136,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "arrayvec 0.7.4", "bitvec", @@ -10160,7 +10160,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -10972,7 +10972,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "binary-merkle-tree", "frame-benchmarking", @@ -11060,7 +11060,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-support", "polkadot-primitives", @@ -11434,7 +11434,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "log", "sp-core", @@ -11445,7 +11445,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "futures", @@ -11473,7 +11473,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "futures", "futures-timer", @@ -11496,7 +11496,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship-ver" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "aquamarine 0.3.2", "futures", @@ -11522,7 +11522,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -11537,7 +11537,7 @@ dependencies = [ [[package]] name = "sc-block-builder-ver" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -11557,7 +11557,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -11576,7 +11576,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11587,7 +11587,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "array-bytes", "chrono", @@ -11626,7 +11626,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "fnv", "futures", @@ -11652,7 +11652,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "hash-db", "kvdb", @@ -11678,7 +11678,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "futures", @@ -11703,7 +11703,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "futures", @@ -11732,7 +11732,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "fork-tree", @@ -11768,7 +11768,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "futures", "jsonrpsee", @@ -11790,7 +11790,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11824,7 +11824,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "futures", "jsonrpsee", @@ -11843,7 +11843,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "fork-tree", "parity-scale-codec", @@ -11856,7 +11856,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "ahash 0.8.6", "array-bytes", @@ -11897,7 +11897,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "finality-grandpa", "futures", @@ -11917,7 +11917,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "futures", @@ -11942,7 +11942,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -11964,7 +11964,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -11976,7 +11976,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "anyhow", "cfg-if", @@ -11993,7 +11993,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "ansi_term", "futures", @@ -12009,7 +12009,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "array-bytes", "parking_lot 0.12.1", @@ -12023,7 +12023,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -12064,7 +12064,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-channel 1.9.0", "cid", @@ -12084,7 +12084,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -12101,7 +12101,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "ahash 0.8.6", "futures", @@ -12119,7 +12119,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -12140,7 +12140,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -12174,7 +12174,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "array-bytes", "futures", @@ -12192,7 +12192,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "array-bytes", "bytes", @@ -12226,7 +12226,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -12235,7 +12235,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "futures", "jsonrpsee", @@ -12266,7 +12266,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12285,7 +12285,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "http", "jsonrpsee", @@ -12300,7 +12300,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "array-bytes", "futures", @@ -12328,7 +12328,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "directories", @@ -12394,7 +12394,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "log", "parity-scale-codec", @@ -12405,7 +12405,7 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "clap", "fs4", @@ -12419,7 +12419,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12438,7 +12438,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "futures", "libc", @@ -12457,7 +12457,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "chrono", "futures", @@ -12476,7 +12476,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "ansi_term", "atty", @@ -12505,7 +12505,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12516,7 +12516,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "futures", @@ -12542,7 +12542,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "futures", @@ -12558,7 +12558,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-channel 1.9.0", "futures", @@ -13067,7 +13067,7 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" [[package]] name = "slot-range-helper" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "enumn", "parity-scale-codec", @@ -13270,7 +13270,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "hash-db", "log", @@ -13291,7 +13291,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "Inflector", "blake2", @@ -13305,7 +13305,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "23.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "parity-scale-codec", "scale-info", @@ -13318,7 +13318,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "16.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "integer-sqrt", "num-traits", @@ -13332,7 +13332,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "parity-scale-codec", "scale-info", @@ -13345,7 +13345,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "sp-api", "sp-inherents", @@ -13356,7 +13356,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "futures", "log", @@ -13374,7 +13374,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "futures", @@ -13389,7 +13389,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "parity-scale-codec", @@ -13406,7 +13406,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "parity-scale-codec", @@ -13425,7 +13425,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "lazy_static", "parity-scale-codec", @@ -13444,7 +13444,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "finality-grandpa", "log", @@ -13462,7 +13462,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "parity-scale-codec", "scale-info", @@ -13474,7 +13474,7 @@ dependencies = [ [[package]] name = "sp-core" version = "21.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "array-bytes", "arrayvec 0.7.4", @@ -13522,7 +13522,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "9.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "blake2b_simd", "byteorder", @@ -13535,7 +13535,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "9.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "quote", "sp-core-hashing", @@ -13545,7 +13545,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -13554,7 +13554,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "proc-macro2", "quote", @@ -13564,7 +13564,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.19.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "environmental", "parity-scale-codec", @@ -13575,7 +13575,7 @@ dependencies = [ [[package]] name = "sp-genesis-builder" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "serde_json", "sp-api", @@ -13586,7 +13586,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -13600,7 +13600,7 @@ dependencies = [ [[package]] name = "sp-io" version = "23.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "bytes", "ed25519-dalek 2.1.0", @@ -13624,7 +13624,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "24.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "lazy_static", "sp-core", @@ -13635,7 +13635,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.27.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -13647,7 +13647,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "thiserror", "zstd 0.12.4", @@ -13656,7 +13656,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-metadata", "parity-scale-codec", @@ -13667,7 +13667,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -13685,7 +13685,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "parity-scale-codec", "scale-info", @@ -13699,7 +13699,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "sp-api", "sp-core", @@ -13709,7 +13709,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "backtrace", "lazy_static", @@ -13719,7 +13719,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "rustc-hash", "serde", @@ -13729,7 +13729,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "24.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "alloy-primitives", "alloy-sol-types", @@ -13754,7 +13754,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "17.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -13772,7 +13772,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "11.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "Inflector", "proc-macro-crate", @@ -13784,7 +13784,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "parity-scale-codec", "scale-info", @@ -13799,7 +13799,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -13813,7 +13813,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.28.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "hash-db", "log", @@ -13834,7 +13834,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "aes-gcm 0.10.3", "curve25519-dalek 4.1.1", @@ -13858,12 +13858,12 @@ dependencies = [ [[package]] name = "sp-std" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" [[package]] name = "sp-storage" version = "13.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13876,7 +13876,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "parity-scale-codec", @@ -13889,7 +13889,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "10.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "parity-scale-codec", "sp-std", @@ -13901,7 +13901,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "sp-api", "sp-runtime", @@ -13910,7 +13910,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "parity-scale-codec", @@ -13925,7 +13925,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "22.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "ahash 0.8.6", "hash-db", @@ -13948,7 +13948,7 @@ dependencies = [ [[package]] name = "sp-ver" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "parity-scale-codec", @@ -13965,7 +13965,7 @@ dependencies = [ [[package]] name = "sp-version" version = "22.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13982,7 +13982,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -13993,7 +13993,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "14.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -14006,7 +14006,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "20.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "parity-scale-codec", "scale-info", @@ -14085,7 +14085,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "staging-kusama-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "binary-merkle-tree", "bitvec", @@ -14191,7 +14191,7 @@ dependencies = [ [[package]] name = "staging-xcm" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "bounded-collections", "derivative", @@ -14208,7 +14208,7 @@ dependencies = [ [[package]] name = "staging-xcm-builder" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-support", "frame-system", @@ -14230,7 +14230,7 @@ dependencies = [ [[package]] name = "staging-xcm-executor" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "environmental", "frame-benchmarking", @@ -14363,12 +14363,12 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -14387,7 +14387,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "hyper", "log", @@ -14399,7 +14399,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "jsonrpsee", @@ -14412,7 +14412,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -14429,7 +14429,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "ansi_term", "build-helper", @@ -14983,7 +14983,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "coarsetime", "polkadot-node-jaeger", @@ -14995,7 +14995,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "expander 2.0.0", "proc-macro-crate", @@ -15125,7 +15125,7 @@ checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "async-trait", "clap", @@ -15349,7 +15349,7 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "ver-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "derive_more", "futures", @@ -16062,7 +16062,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "binary-merkle-tree", "bitvec", @@ -16161,7 +16161,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "frame-support", "polkadot-primitives", @@ -16539,7 +16539,7 @@ dependencies = [ [[package]] name = "xcm-emulator" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "cumulus-pallet-parachain-system", "cumulus-primitives-core", @@ -16571,7 +16571,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#b31da5be72bf739d19ba325048730aaa7a81f95c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" dependencies = [ "Inflector", "proc-macro2", From fee576c69158ff458af19e89f6d83d36c4103714 Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Tue, 12 Dec 2023 11:48:30 +0100 Subject: [PATCH 11/15] bump sdk --- Cargo.lock | 574 ++++++++++++++++++++++++++--------------------------- 1 file changed, 287 insertions(+), 287 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cfd50605b7..e1d528a781 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1046,7 +1046,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "hash-db", "log", @@ -2144,7 +2144,7 @@ dependencies = [ [[package]] name = "cumulus-client-cli" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "clap", "parity-scale-codec", @@ -2160,7 +2160,7 @@ dependencies = [ [[package]] name = "cumulus-client-collator" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "cumulus-client-consensus-common", "cumulus-client-network", @@ -2183,7 +2183,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-aura" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "cumulus-client-collator", @@ -2226,7 +2226,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-common" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "cumulus-client-pov-recovery", @@ -2255,7 +2255,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-proposer" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "anyhow", "async-trait", @@ -2270,7 +2270,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-relay-chain" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "cumulus-client-consensus-common", @@ -2293,7 +2293,7 @@ dependencies = [ [[package]] name = "cumulus-client-network" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "cumulus-relay-chain-interface", @@ -2316,7 +2316,7 @@ dependencies = [ [[package]] name = "cumulus-client-pov-recovery" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2340,7 +2340,7 @@ dependencies = [ [[package]] name = "cumulus-client-service" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "cumulus-client-cli", "cumulus-client-collator", @@ -2375,7 +2375,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-aura-ext" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -2393,7 +2393,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-dmp-queue" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2411,7 +2411,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "bytes", "cumulus-pallet-parachain-system-proc-macro", @@ -2442,7 +2442,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system-proc-macro" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2453,7 +2453,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-session-benchmarking" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -2467,7 +2467,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcm" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2483,7 +2483,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcmp-queue" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "cumulus-primitives-core", "frame-benchmarking", @@ -2505,7 +2505,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-aura" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2519,7 +2519,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-core" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2536,7 +2536,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2559,7 +2559,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-timestamp" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "cumulus-primitives-core", "futures", @@ -2572,7 +2572,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-utility" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2590,7 +2590,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-inprocess-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2614,7 +2614,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2632,7 +2632,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-minimal-node" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "array-bytes", "async-trait", @@ -2667,7 +2667,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-rpc-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2705,7 +2705,7 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", @@ -3528,7 +3528,7 @@ dependencies = [ [[package]] name = "extrinsic-shuffler" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "derive_more", "log", @@ -3737,7 +3737,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "parity-scale-codec", ] @@ -3760,7 +3760,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-support", "frame-support-procedural", @@ -3785,7 +3785,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "Inflector", "array-bytes", @@ -3839,7 +3839,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -3850,7 +3850,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -3867,7 +3867,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -3901,7 +3901,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-recursion", "futures", @@ -3923,7 +3923,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "aquamarine 0.3.2", "bitflags 1.3.2", @@ -3964,7 +3964,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "Inflector", "cfg-expr", @@ -3982,7 +3982,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3994,7 +3994,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "proc-macro2", "quote", @@ -4004,7 +4004,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "cfg-if", "extrinsic-shuffler", @@ -4025,7 +4025,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -4040,7 +4040,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "parity-scale-codec", "sp-api", @@ -4049,7 +4049,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-support", "parity-scale-codec", @@ -5201,7 +5201,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-support", "polkadot-primitives", @@ -6256,7 +6256,7 @@ dependencies = [ [[package]] name = "mangata-support" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-support", "mangata-types", @@ -6269,7 +6269,7 @@ dependencies = [ [[package]] name = "mangata-types" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "parity-scale-codec", "scale-info", @@ -6483,7 +6483,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "futures", "log", @@ -6502,7 +6502,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "anyhow", "jsonrpsee", @@ -7125,7 +7125,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -7143,7 +7143,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -7159,7 +7159,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-support", "frame-system", @@ -7176,7 +7176,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-support", "frame-system", @@ -7192,7 +7192,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-support", "frame-system", @@ -7206,7 +7206,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -7230,7 +7230,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "aquamarine 0.3.2", "docify", @@ -7252,7 +7252,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -7267,7 +7267,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-support", "frame-system", @@ -7287,7 +7287,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -7344,7 +7344,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -7362,7 +7362,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -7381,7 +7381,7 @@ dependencies = [ [[package]] name = "pallet-collator-selection" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -7400,7 +7400,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -7417,7 +7417,7 @@ dependencies = [ [[package]] name = "pallet-collective-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -7434,7 +7434,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7475,7 +7475,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -7493,7 +7493,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7516,7 +7516,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7530,7 +7530,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -7549,7 +7549,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "docify", "frame-benchmarking", @@ -7597,7 +7597,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -7620,7 +7620,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7636,7 +7636,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -7656,7 +7656,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -7725,7 +7725,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -7742,7 +7742,7 @@ dependencies = [ [[package]] name = "pallet-message-queue" version = "7.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -7761,7 +7761,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -7809,7 +7809,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -7825,7 +7825,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -7841,7 +7841,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-support", "frame-system", @@ -7860,7 +7860,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7880,7 +7880,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -7891,7 +7891,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-support", "frame-system", @@ -7908,7 +7908,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7932,7 +7932,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -7986,7 +7986,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -8001,7 +8001,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -8019,7 +8019,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -8034,7 +8034,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "assert_matches", "frame-benchmarking", @@ -8053,7 +8053,7 @@ dependencies = [ [[package]] name = "pallet-root-testing" version = "1.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-support", "frame-system", @@ -8068,7 +8068,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "docify", "frame-benchmarking", @@ -8086,7 +8086,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-support", "frame-system", @@ -8108,7 +8108,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -8125,7 +8125,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -8143,7 +8143,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -8166,7 +8166,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8177,7 +8177,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "log", "sp-arithmetic", @@ -8186,7 +8186,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "parity-scale-codec", "sp-api", @@ -8195,7 +8195,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -8212,7 +8212,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -8227,7 +8227,7 @@ dependencies = [ [[package]] name = "pallet-sudo-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -8260,7 +8260,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -8279,7 +8279,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -8298,7 +8298,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-support", "frame-system", @@ -8314,7 +8314,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-support", "frame-system", @@ -8330,7 +8330,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "jsonrpsee", "pallet-transaction-payment-mangata-rpc-runtime-api", @@ -8346,7 +8346,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "pallet-transaction-payment-mangata", "parity-scale-codec", @@ -8358,7 +8358,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -8374,7 +8374,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -8386,7 +8386,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -8403,7 +8403,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -8419,7 +8419,7 @@ dependencies = [ [[package]] name = "pallet-utility-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -8435,7 +8435,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -8450,7 +8450,7 @@ dependencies = [ [[package]] name = "pallet-vesting-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -8465,7 +8465,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -8480,7 +8480,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "bounded-collections", "frame-benchmarking", @@ -8501,7 +8501,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-benchmarking", "frame-support", @@ -8556,7 +8556,7 @@ dependencies = [ [[package]] name = "parachain-info" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -8601,7 +8601,7 @@ dependencies = [ [[package]] name = "parachains-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-utility", @@ -8980,7 +8980,7 @@ checksum = "14e6ab3f592e6fb464fc9712d8d6e6912de6473954635fd76a589d832cffcbb0" [[package]] name = "polkadot-approval-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "futures", "futures-timer", @@ -8998,7 +8998,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "always-assert", "futures", @@ -9014,7 +9014,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "derive_more", "fatality", @@ -9037,7 +9037,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "fatality", "futures", @@ -9058,7 +9058,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "clap", "frame-benchmarking-cli", @@ -9085,7 +9085,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "bitvec", "fatality", @@ -9107,7 +9107,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "parity-scale-codec", "scale-info", @@ -9119,7 +9119,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "derive_more", "fatality", @@ -9144,7 +9144,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -9158,7 +9158,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "futures", "futures-timer", @@ -9179,7 +9179,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "always-assert", "async-trait", @@ -9202,7 +9202,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "futures", "parity-scale-codec", @@ -9220,7 +9220,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "bitvec", "derive_more", @@ -9249,7 +9249,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "bitvec", "futures", @@ -9271,7 +9271,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "bitvec", "fatality", @@ -9290,7 +9290,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "futures", "polkadot-node-subsystem", @@ -9305,7 +9305,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "futures", @@ -9326,7 +9326,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "futures", "polkadot-node-metrics", @@ -9341,7 +9341,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "futures", "futures-timer", @@ -9358,7 +9358,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "fatality", "futures", @@ -9377,7 +9377,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "futures", @@ -9394,7 +9394,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-prospective-parachains" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "bitvec", "fatality", @@ -9411,7 +9411,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "bitvec", "fatality", @@ -9428,7 +9428,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "always-assert", "futures", @@ -9456,7 +9456,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "futures", "polkadot-node-primitives", @@ -9472,7 +9472,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "cpu-time", "futures", @@ -9495,7 +9495,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-prepare-worker" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "futures", "libc", @@ -9518,7 +9518,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "futures", "polkadot-node-metrics", @@ -9533,7 +9533,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "lazy_static", "log", @@ -9551,7 +9551,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "bs58 0.5.0", "futures", @@ -9570,7 +9570,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-channel 1.9.0", "async-trait", @@ -9594,7 +9594,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "bounded-vec", "futures", @@ -9616,7 +9616,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -9626,7 +9626,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "derive_more", @@ -9650,7 +9650,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "derive_more", @@ -9683,7 +9683,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "futures", @@ -9706,7 +9706,7 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "bounded-collections", "derive_more", @@ -9723,7 +9723,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "env_logger 0.9.3", "log", @@ -9741,7 +9741,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "bitvec", "hex-literal 0.4.1", @@ -9767,7 +9767,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "jsonrpsee", "mmr-rpc", @@ -9799,7 +9799,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "bitvec", "frame-benchmarking", @@ -9896,7 +9896,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "bitvec", "frame-benchmarking", @@ -9942,7 +9942,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-support", "polkadot-primitives", @@ -9956,7 +9956,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "bs58 0.5.0", "frame-benchmarking", @@ -9969,7 +9969,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "bitflags 1.3.2", "bitvec", @@ -10015,7 +10015,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "frame-benchmarking", @@ -10136,7 +10136,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "arrayvec 0.7.4", "bitvec", @@ -10160,7 +10160,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -10972,7 +10972,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "binary-merkle-tree", "frame-benchmarking", @@ -11060,7 +11060,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-support", "polkadot-primitives", @@ -11434,7 +11434,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "log", "sp-core", @@ -11445,7 +11445,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "futures", @@ -11473,7 +11473,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "futures", "futures-timer", @@ -11496,7 +11496,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship-ver" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "aquamarine 0.3.2", "futures", @@ -11522,7 +11522,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -11537,7 +11537,7 @@ dependencies = [ [[package]] name = "sc-block-builder-ver" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -11557,7 +11557,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -11576,7 +11576,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11587,7 +11587,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "array-bytes", "chrono", @@ -11626,7 +11626,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "fnv", "futures", @@ -11652,7 +11652,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "hash-db", "kvdb", @@ -11678,7 +11678,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "futures", @@ -11703,7 +11703,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "futures", @@ -11732,7 +11732,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "fork-tree", @@ -11768,7 +11768,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "futures", "jsonrpsee", @@ -11790,7 +11790,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11824,7 +11824,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "futures", "jsonrpsee", @@ -11843,7 +11843,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "fork-tree", "parity-scale-codec", @@ -11856,7 +11856,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "ahash 0.8.6", "array-bytes", @@ -11897,7 +11897,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "finality-grandpa", "futures", @@ -11917,7 +11917,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "futures", @@ -11942,7 +11942,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -11964,7 +11964,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -11976,7 +11976,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "anyhow", "cfg-if", @@ -11993,7 +11993,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "ansi_term", "futures", @@ -12009,7 +12009,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "array-bytes", "parking_lot 0.12.1", @@ -12023,7 +12023,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -12064,7 +12064,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-channel 1.9.0", "cid", @@ -12084,7 +12084,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -12101,7 +12101,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "ahash 0.8.6", "futures", @@ -12119,7 +12119,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -12140,7 +12140,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -12174,7 +12174,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "array-bytes", "futures", @@ -12192,7 +12192,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "array-bytes", "bytes", @@ -12226,7 +12226,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -12235,7 +12235,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "futures", "jsonrpsee", @@ -12266,7 +12266,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12285,7 +12285,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "http", "jsonrpsee", @@ -12300,7 +12300,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "array-bytes", "futures", @@ -12328,7 +12328,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "directories", @@ -12394,7 +12394,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "log", "parity-scale-codec", @@ -12405,7 +12405,7 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "clap", "fs4", @@ -12419,7 +12419,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12438,7 +12438,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "futures", "libc", @@ -12457,7 +12457,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "chrono", "futures", @@ -12476,7 +12476,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "ansi_term", "atty", @@ -12505,7 +12505,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12516,7 +12516,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "futures", @@ -12542,7 +12542,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "futures", @@ -12558,7 +12558,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-channel 1.9.0", "futures", @@ -13067,7 +13067,7 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" [[package]] name = "slot-range-helper" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "enumn", "parity-scale-codec", @@ -13270,7 +13270,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "hash-db", "log", @@ -13291,7 +13291,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "Inflector", "blake2", @@ -13305,7 +13305,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "23.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "parity-scale-codec", "scale-info", @@ -13318,7 +13318,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "16.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "integer-sqrt", "num-traits", @@ -13332,7 +13332,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "parity-scale-codec", "scale-info", @@ -13345,7 +13345,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "sp-api", "sp-inherents", @@ -13356,7 +13356,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "futures", "log", @@ -13374,7 +13374,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "futures", @@ -13389,7 +13389,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "parity-scale-codec", @@ -13406,7 +13406,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "parity-scale-codec", @@ -13425,7 +13425,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "lazy_static", "parity-scale-codec", @@ -13444,7 +13444,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "finality-grandpa", "log", @@ -13462,7 +13462,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "parity-scale-codec", "scale-info", @@ -13474,7 +13474,7 @@ dependencies = [ [[package]] name = "sp-core" version = "21.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "array-bytes", "arrayvec 0.7.4", @@ -13522,7 +13522,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "9.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "blake2b_simd", "byteorder", @@ -13535,7 +13535,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "9.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "quote", "sp-core-hashing", @@ -13545,7 +13545,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -13554,7 +13554,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "proc-macro2", "quote", @@ -13564,7 +13564,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.19.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "environmental", "parity-scale-codec", @@ -13575,7 +13575,7 @@ dependencies = [ [[package]] name = "sp-genesis-builder" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "serde_json", "sp-api", @@ -13586,7 +13586,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -13600,7 +13600,7 @@ dependencies = [ [[package]] name = "sp-io" version = "23.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "bytes", "ed25519-dalek 2.1.0", @@ -13624,7 +13624,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "24.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "lazy_static", "sp-core", @@ -13635,7 +13635,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.27.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -13647,7 +13647,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "thiserror", "zstd 0.12.4", @@ -13656,7 +13656,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-metadata", "parity-scale-codec", @@ -13667,7 +13667,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -13685,7 +13685,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "parity-scale-codec", "scale-info", @@ -13699,7 +13699,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "sp-api", "sp-core", @@ -13709,7 +13709,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "backtrace", "lazy_static", @@ -13719,7 +13719,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "rustc-hash", "serde", @@ -13729,7 +13729,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "24.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "alloy-primitives", "alloy-sol-types", @@ -13754,7 +13754,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "17.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -13772,7 +13772,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "11.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "Inflector", "proc-macro-crate", @@ -13784,7 +13784,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "parity-scale-codec", "scale-info", @@ -13799,7 +13799,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -13813,7 +13813,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.28.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "hash-db", "log", @@ -13834,7 +13834,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "aes-gcm 0.10.3", "curve25519-dalek 4.1.1", @@ -13858,12 +13858,12 @@ dependencies = [ [[package]] name = "sp-std" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" [[package]] name = "sp-storage" version = "13.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13876,7 +13876,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "parity-scale-codec", @@ -13889,7 +13889,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "10.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "parity-scale-codec", "sp-std", @@ -13901,7 +13901,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "sp-api", "sp-runtime", @@ -13910,7 +13910,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "parity-scale-codec", @@ -13925,7 +13925,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "22.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "ahash 0.8.6", "hash-db", @@ -13948,7 +13948,7 @@ dependencies = [ [[package]] name = "sp-ver" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "parity-scale-codec", @@ -13965,7 +13965,7 @@ dependencies = [ [[package]] name = "sp-version" version = "22.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13982,7 +13982,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -13993,7 +13993,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "14.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -14006,7 +14006,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "20.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "parity-scale-codec", "scale-info", @@ -14085,7 +14085,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "staging-kusama-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "binary-merkle-tree", "bitvec", @@ -14191,7 +14191,7 @@ dependencies = [ [[package]] name = "staging-xcm" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "bounded-collections", "derivative", @@ -14208,7 +14208,7 @@ dependencies = [ [[package]] name = "staging-xcm-builder" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-support", "frame-system", @@ -14230,7 +14230,7 @@ dependencies = [ [[package]] name = "staging-xcm-executor" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "environmental", "frame-benchmarking", @@ -14363,12 +14363,12 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -14387,7 +14387,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "hyper", "log", @@ -14399,7 +14399,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "jsonrpsee", @@ -14412,7 +14412,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -14429,7 +14429,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "ansi_term", "build-helper", @@ -14983,7 +14983,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "coarsetime", "polkadot-node-jaeger", @@ -14995,7 +14995,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "expander 2.0.0", "proc-macro-crate", @@ -15125,7 +15125,7 @@ checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "async-trait", "clap", @@ -15349,7 +15349,7 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "ver-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "derive_more", "futures", @@ -16062,7 +16062,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "binary-merkle-tree", "bitvec", @@ -16161,7 +16161,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "frame-support", "polkadot-primitives", @@ -16539,7 +16539,7 @@ dependencies = [ [[package]] name = "xcm-emulator" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "cumulus-pallet-parachain-system", "cumulus-primitives-core", @@ -16571,7 +16571,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#d0e08ab06f13d0d957945016b70827b285d9bde4" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" dependencies = [ "Inflector", "proc-macro2", From 74c370863fa07997b0dd713d22d9df26d5517337 Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Thu, 1 Feb 2024 20:01:47 +0100 Subject: [PATCH 12/15] change chain id to goerly --- Cargo.lock | 574 ++++++++++++++++++++++++++--------------------------- 1 file changed, 287 insertions(+), 287 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e1d528a781..625bcc2201 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1046,7 +1046,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "hash-db", "log", @@ -2144,7 +2144,7 @@ dependencies = [ [[package]] name = "cumulus-client-cli" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "clap", "parity-scale-codec", @@ -2160,7 +2160,7 @@ dependencies = [ [[package]] name = "cumulus-client-collator" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "cumulus-client-consensus-common", "cumulus-client-network", @@ -2183,7 +2183,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-aura" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "cumulus-client-collator", @@ -2226,7 +2226,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-common" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "cumulus-client-pov-recovery", @@ -2255,7 +2255,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-proposer" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "anyhow", "async-trait", @@ -2270,7 +2270,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-relay-chain" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "cumulus-client-consensus-common", @@ -2293,7 +2293,7 @@ dependencies = [ [[package]] name = "cumulus-client-network" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "cumulus-relay-chain-interface", @@ -2316,7 +2316,7 @@ dependencies = [ [[package]] name = "cumulus-client-pov-recovery" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2340,7 +2340,7 @@ dependencies = [ [[package]] name = "cumulus-client-service" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "cumulus-client-cli", "cumulus-client-collator", @@ -2375,7 +2375,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-aura-ext" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -2393,7 +2393,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-dmp-queue" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2411,7 +2411,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "bytes", "cumulus-pallet-parachain-system-proc-macro", @@ -2442,7 +2442,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system-proc-macro" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2453,7 +2453,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-session-benchmarking" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -2467,7 +2467,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcm" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2483,7 +2483,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcmp-queue" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "cumulus-primitives-core", "frame-benchmarking", @@ -2505,7 +2505,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-aura" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2519,7 +2519,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-core" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2536,7 +2536,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2559,7 +2559,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-timestamp" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "cumulus-primitives-core", "futures", @@ -2572,7 +2572,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-utility" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2590,7 +2590,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-inprocess-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2614,7 +2614,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2632,7 +2632,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-minimal-node" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "array-bytes", "async-trait", @@ -2667,7 +2667,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-rpc-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2705,7 +2705,7 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", @@ -3528,7 +3528,7 @@ dependencies = [ [[package]] name = "extrinsic-shuffler" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "derive_more", "log", @@ -3737,7 +3737,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "parity-scale-codec", ] @@ -3760,7 +3760,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-support", "frame-support-procedural", @@ -3785,7 +3785,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "Inflector", "array-bytes", @@ -3839,7 +3839,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -3850,7 +3850,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -3867,7 +3867,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -3901,7 +3901,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-recursion", "futures", @@ -3923,7 +3923,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "aquamarine 0.3.2", "bitflags 1.3.2", @@ -3964,7 +3964,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "Inflector", "cfg-expr", @@ -3982,7 +3982,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3994,7 +3994,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "proc-macro2", "quote", @@ -4004,7 +4004,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "cfg-if", "extrinsic-shuffler", @@ -4025,7 +4025,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -4040,7 +4040,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "parity-scale-codec", "sp-api", @@ -4049,7 +4049,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-support", "parity-scale-codec", @@ -5201,7 +5201,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-support", "polkadot-primitives", @@ -6256,7 +6256,7 @@ dependencies = [ [[package]] name = "mangata-support" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-support", "mangata-types", @@ -6269,7 +6269,7 @@ dependencies = [ [[package]] name = "mangata-types" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "parity-scale-codec", "scale-info", @@ -6483,7 +6483,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "futures", "log", @@ -6502,7 +6502,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "anyhow", "jsonrpsee", @@ -7125,7 +7125,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7143,7 +7143,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7159,7 +7159,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-support", "frame-system", @@ -7176,7 +7176,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-support", "frame-system", @@ -7192,7 +7192,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-support", "frame-system", @@ -7206,7 +7206,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7230,7 +7230,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "aquamarine 0.3.2", "docify", @@ -7252,7 +7252,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7267,7 +7267,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-support", "frame-system", @@ -7287,7 +7287,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -7344,7 +7344,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7362,7 +7362,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7381,7 +7381,7 @@ dependencies = [ [[package]] name = "pallet-collator-selection" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7400,7 +7400,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7417,7 +7417,7 @@ dependencies = [ [[package]] name = "pallet-collective-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7434,7 +7434,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7475,7 +7475,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7493,7 +7493,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7516,7 +7516,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7530,7 +7530,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7549,7 +7549,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "docify", "frame-benchmarking", @@ -7597,7 +7597,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7620,7 +7620,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7636,7 +7636,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7656,7 +7656,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7725,7 +7725,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7742,7 +7742,7 @@ dependencies = [ [[package]] name = "pallet-message-queue" version = "7.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7761,7 +7761,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7809,7 +7809,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7825,7 +7825,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7841,7 +7841,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-support", "frame-system", @@ -7860,7 +7860,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7880,7 +7880,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -7891,7 +7891,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-support", "frame-system", @@ -7908,7 +7908,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7932,7 +7932,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -7986,7 +7986,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8001,7 +8001,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8019,7 +8019,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8034,7 +8034,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "assert_matches", "frame-benchmarking", @@ -8053,7 +8053,7 @@ dependencies = [ [[package]] name = "pallet-root-testing" version = "1.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-support", "frame-system", @@ -8068,7 +8068,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "docify", "frame-benchmarking", @@ -8086,7 +8086,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-support", "frame-system", @@ -8108,7 +8108,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8125,7 +8125,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8143,7 +8143,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -8166,7 +8166,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8177,7 +8177,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "log", "sp-arithmetic", @@ -8186,7 +8186,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "parity-scale-codec", "sp-api", @@ -8195,7 +8195,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8212,7 +8212,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8227,7 +8227,7 @@ dependencies = [ [[package]] name = "pallet-sudo-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8260,7 +8260,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8279,7 +8279,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8298,7 +8298,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-support", "frame-system", @@ -8314,7 +8314,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-support", "frame-system", @@ -8330,7 +8330,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "jsonrpsee", "pallet-transaction-payment-mangata-rpc-runtime-api", @@ -8346,7 +8346,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "pallet-transaction-payment-mangata", "parity-scale-codec", @@ -8358,7 +8358,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -8374,7 +8374,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -8386,7 +8386,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8403,7 +8403,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8419,7 +8419,7 @@ dependencies = [ [[package]] name = "pallet-utility-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8435,7 +8435,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8450,7 +8450,7 @@ dependencies = [ [[package]] name = "pallet-vesting-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8465,7 +8465,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8480,7 +8480,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "bounded-collections", "frame-benchmarking", @@ -8501,7 +8501,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8556,7 +8556,7 @@ dependencies = [ [[package]] name = "parachain-info" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -8601,7 +8601,7 @@ dependencies = [ [[package]] name = "parachains-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-utility", @@ -8980,7 +8980,7 @@ checksum = "14e6ab3f592e6fb464fc9712d8d6e6912de6473954635fd76a589d832cffcbb0" [[package]] name = "polkadot-approval-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "futures", "futures-timer", @@ -8998,7 +8998,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "always-assert", "futures", @@ -9014,7 +9014,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "derive_more", "fatality", @@ -9037,7 +9037,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "fatality", "futures", @@ -9058,7 +9058,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "clap", "frame-benchmarking-cli", @@ -9085,7 +9085,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "bitvec", "fatality", @@ -9107,7 +9107,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "parity-scale-codec", "scale-info", @@ -9119,7 +9119,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "derive_more", "fatality", @@ -9144,7 +9144,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -9158,7 +9158,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "futures", "futures-timer", @@ -9179,7 +9179,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "always-assert", "async-trait", @@ -9202,7 +9202,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "futures", "parity-scale-codec", @@ -9220,7 +9220,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "bitvec", "derive_more", @@ -9249,7 +9249,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "bitvec", "futures", @@ -9271,7 +9271,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "bitvec", "fatality", @@ -9290,7 +9290,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "futures", "polkadot-node-subsystem", @@ -9305,7 +9305,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "futures", @@ -9326,7 +9326,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "futures", "polkadot-node-metrics", @@ -9341,7 +9341,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "futures", "futures-timer", @@ -9358,7 +9358,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "fatality", "futures", @@ -9377,7 +9377,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "futures", @@ -9394,7 +9394,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-prospective-parachains" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "bitvec", "fatality", @@ -9411,7 +9411,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "bitvec", "fatality", @@ -9428,7 +9428,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "always-assert", "futures", @@ -9456,7 +9456,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "futures", "polkadot-node-primitives", @@ -9472,7 +9472,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "cpu-time", "futures", @@ -9495,7 +9495,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-prepare-worker" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "futures", "libc", @@ -9518,7 +9518,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "futures", "polkadot-node-metrics", @@ -9533,7 +9533,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "lazy_static", "log", @@ -9551,7 +9551,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "bs58 0.5.0", "futures", @@ -9570,7 +9570,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-channel 1.9.0", "async-trait", @@ -9594,7 +9594,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "bounded-vec", "futures", @@ -9616,7 +9616,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -9626,7 +9626,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "derive_more", @@ -9650,7 +9650,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "derive_more", @@ -9683,7 +9683,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "futures", @@ -9706,7 +9706,7 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "bounded-collections", "derive_more", @@ -9723,7 +9723,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "env_logger 0.9.3", "log", @@ -9741,7 +9741,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "bitvec", "hex-literal 0.4.1", @@ -9767,7 +9767,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "jsonrpsee", "mmr-rpc", @@ -9799,7 +9799,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "bitvec", "frame-benchmarking", @@ -9896,7 +9896,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "bitvec", "frame-benchmarking", @@ -9942,7 +9942,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-support", "polkadot-primitives", @@ -9956,7 +9956,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "bs58 0.5.0", "frame-benchmarking", @@ -9969,7 +9969,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "bitflags 1.3.2", "bitvec", @@ -10015,7 +10015,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "frame-benchmarking", @@ -10136,7 +10136,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "arrayvec 0.7.4", "bitvec", @@ -10160,7 +10160,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -10972,7 +10972,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "binary-merkle-tree", "frame-benchmarking", @@ -11060,7 +11060,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-support", "polkadot-primitives", @@ -11434,7 +11434,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "log", "sp-core", @@ -11445,7 +11445,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "futures", @@ -11473,7 +11473,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "futures", "futures-timer", @@ -11496,7 +11496,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship-ver" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "aquamarine 0.3.2", "futures", @@ -11522,7 +11522,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -11537,7 +11537,7 @@ dependencies = [ [[package]] name = "sc-block-builder-ver" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -11557,7 +11557,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -11576,7 +11576,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11587,7 +11587,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "array-bytes", "chrono", @@ -11626,7 +11626,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "fnv", "futures", @@ -11652,7 +11652,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "hash-db", "kvdb", @@ -11678,7 +11678,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "futures", @@ -11703,7 +11703,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "futures", @@ -11732,7 +11732,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "fork-tree", @@ -11768,7 +11768,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "futures", "jsonrpsee", @@ -11790,7 +11790,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11824,7 +11824,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "futures", "jsonrpsee", @@ -11843,7 +11843,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "fork-tree", "parity-scale-codec", @@ -11856,7 +11856,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "ahash 0.8.6", "array-bytes", @@ -11897,7 +11897,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "finality-grandpa", "futures", @@ -11917,7 +11917,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "futures", @@ -11942,7 +11942,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -11964,7 +11964,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -11976,7 +11976,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "anyhow", "cfg-if", @@ -11993,7 +11993,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "ansi_term", "futures", @@ -12009,7 +12009,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "array-bytes", "parking_lot 0.12.1", @@ -12023,7 +12023,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -12064,7 +12064,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-channel 1.9.0", "cid", @@ -12084,7 +12084,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -12101,7 +12101,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "ahash 0.8.6", "futures", @@ -12119,7 +12119,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -12140,7 +12140,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -12174,7 +12174,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "array-bytes", "futures", @@ -12192,7 +12192,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "array-bytes", "bytes", @@ -12226,7 +12226,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -12235,7 +12235,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "futures", "jsonrpsee", @@ -12266,7 +12266,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12285,7 +12285,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "http", "jsonrpsee", @@ -12300,7 +12300,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "array-bytes", "futures", @@ -12328,7 +12328,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "directories", @@ -12394,7 +12394,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "log", "parity-scale-codec", @@ -12405,7 +12405,7 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "clap", "fs4", @@ -12419,7 +12419,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12438,7 +12438,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "futures", "libc", @@ -12457,7 +12457,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "chrono", "futures", @@ -12476,7 +12476,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "ansi_term", "atty", @@ -12505,7 +12505,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12516,7 +12516,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "futures", @@ -12542,7 +12542,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "futures", @@ -12558,7 +12558,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-channel 1.9.0", "futures", @@ -13067,7 +13067,7 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" [[package]] name = "slot-range-helper" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "enumn", "parity-scale-codec", @@ -13270,7 +13270,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "hash-db", "log", @@ -13291,7 +13291,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "Inflector", "blake2", @@ -13305,7 +13305,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "23.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "parity-scale-codec", "scale-info", @@ -13318,7 +13318,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "16.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "integer-sqrt", "num-traits", @@ -13332,7 +13332,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "parity-scale-codec", "scale-info", @@ -13345,7 +13345,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "sp-api", "sp-inherents", @@ -13356,7 +13356,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "futures", "log", @@ -13374,7 +13374,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "futures", @@ -13389,7 +13389,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "parity-scale-codec", @@ -13406,7 +13406,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "parity-scale-codec", @@ -13425,7 +13425,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "lazy_static", "parity-scale-codec", @@ -13444,7 +13444,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "finality-grandpa", "log", @@ -13462,7 +13462,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "parity-scale-codec", "scale-info", @@ -13474,7 +13474,7 @@ dependencies = [ [[package]] name = "sp-core" version = "21.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "array-bytes", "arrayvec 0.7.4", @@ -13522,7 +13522,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "9.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "blake2b_simd", "byteorder", @@ -13535,7 +13535,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "9.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "quote", "sp-core-hashing", @@ -13545,7 +13545,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -13554,7 +13554,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "proc-macro2", "quote", @@ -13564,7 +13564,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.19.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "environmental", "parity-scale-codec", @@ -13575,7 +13575,7 @@ dependencies = [ [[package]] name = "sp-genesis-builder" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "serde_json", "sp-api", @@ -13586,7 +13586,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -13600,7 +13600,7 @@ dependencies = [ [[package]] name = "sp-io" version = "23.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "bytes", "ed25519-dalek 2.1.0", @@ -13624,7 +13624,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "24.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "lazy_static", "sp-core", @@ -13635,7 +13635,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.27.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -13647,7 +13647,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "thiserror", "zstd 0.12.4", @@ -13656,7 +13656,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-metadata", "parity-scale-codec", @@ -13667,7 +13667,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -13685,7 +13685,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "parity-scale-codec", "scale-info", @@ -13699,7 +13699,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "sp-api", "sp-core", @@ -13709,7 +13709,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "backtrace", "lazy_static", @@ -13719,7 +13719,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "rustc-hash", "serde", @@ -13729,7 +13729,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "24.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "alloy-primitives", "alloy-sol-types", @@ -13754,7 +13754,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "17.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -13772,7 +13772,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "11.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "Inflector", "proc-macro-crate", @@ -13784,7 +13784,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "parity-scale-codec", "scale-info", @@ -13799,7 +13799,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -13813,7 +13813,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.28.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "hash-db", "log", @@ -13834,7 +13834,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "aes-gcm 0.10.3", "curve25519-dalek 4.1.1", @@ -13858,12 +13858,12 @@ dependencies = [ [[package]] name = "sp-std" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" [[package]] name = "sp-storage" version = "13.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13876,7 +13876,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "parity-scale-codec", @@ -13889,7 +13889,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "10.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "parity-scale-codec", "sp-std", @@ -13901,7 +13901,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "sp-api", "sp-runtime", @@ -13910,7 +13910,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "parity-scale-codec", @@ -13925,7 +13925,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "22.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "ahash 0.8.6", "hash-db", @@ -13948,7 +13948,7 @@ dependencies = [ [[package]] name = "sp-ver" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "parity-scale-codec", @@ -13965,7 +13965,7 @@ dependencies = [ [[package]] name = "sp-version" version = "22.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13982,7 +13982,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -13993,7 +13993,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "14.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -14006,7 +14006,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "20.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "parity-scale-codec", "scale-info", @@ -14085,7 +14085,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "staging-kusama-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "binary-merkle-tree", "bitvec", @@ -14191,7 +14191,7 @@ dependencies = [ [[package]] name = "staging-xcm" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "bounded-collections", "derivative", @@ -14208,7 +14208,7 @@ dependencies = [ [[package]] name = "staging-xcm-builder" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-support", "frame-system", @@ -14230,7 +14230,7 @@ dependencies = [ [[package]] name = "staging-xcm-executor" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "environmental", "frame-benchmarking", @@ -14363,12 +14363,12 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -14387,7 +14387,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "hyper", "log", @@ -14399,7 +14399,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "jsonrpsee", @@ -14412,7 +14412,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -14429,7 +14429,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "ansi_term", "build-helper", @@ -14983,7 +14983,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "coarsetime", "polkadot-node-jaeger", @@ -14995,7 +14995,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "expander 2.0.0", "proc-macro-crate", @@ -15125,7 +15125,7 @@ checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "async-trait", "clap", @@ -15349,7 +15349,7 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "ver-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "derive_more", "futures", @@ -16062,7 +16062,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "binary-merkle-tree", "bitvec", @@ -16161,7 +16161,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "frame-support", "polkadot-primitives", @@ -16539,7 +16539,7 @@ dependencies = [ [[package]] name = "xcm-emulator" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "cumulus-pallet-parachain-system", "cumulus-primitives-core", @@ -16571,7 +16571,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#957cad06f51359f7d3cd4b947c2d2ade1417600f" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#eec190000f20deeee159e12df3b3b33d36219a6d" dependencies = [ "Inflector", "proc-macro2", From 5366876206df99bcbcf511dc679b97113108bbc5 Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Fri, 2 Feb 2024 13:19:24 +0100 Subject: [PATCH 13/15] update chain id to goerly --- pallets/metamask-signature-runtime-api/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pallets/metamask-signature-runtime-api/src/lib.rs b/pallets/metamask-signature-runtime-api/src/lib.rs index 8f5a8d193b..e085ce836b 100644 --- a/pallets/metamask-signature-runtime-api/src/lib.rs +++ b/pallets/metamask-signature-runtime-api/src/lib.rs @@ -50,7 +50,7 @@ pub fn eip712_payload(method: String, params: String) -> String { "domain": { "name": "Mangata", "version": "1", - "chainId": "1285", + "chainId": "5", "verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC" }, "message": { From 01bba6c3a0217aaa9fa3a62ad0094e21b1de5873 Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Sun, 4 Feb 2024 18:04:38 +0100 Subject: [PATCH 14/15] apply formatting --- Cargo.lock | 1068 ++++++++++++++++++++--------- runtime/mangata-rococo/src/lib.rs | 10 +- 2 files changed, 736 insertions(+), 342 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f2c7b9f74f..be58ec7c4d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -186,6 +186,67 @@ version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" +[[package]] +name = "alloy-primitives" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c234f92024707f224510ff82419b2be0e1d8e1fd911defcac5a085cd7f83898" +dependencies = [ + "alloy-rlp", + "bytes", + "cfg-if", + "const-hex", + "derive_more", + "hex-literal 0.4.1", + "itoa", + "keccak-asm", + "proptest", + "rand 0.8.5", + "ruint", + "serde", + "tiny-keccak", +] + +[[package]] +name = "alloy-rlp" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d58d9f5da7b40e9bfff0b7e7816700be4019db97d4b6359fe7f94a9e22e42ac" +dependencies = [ + "arrayvec 0.7.4", + "bytes", +] + +[[package]] +name = "alloy-sol-macro" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "970e5cf1ca089e964d4f7f7afc7c9ad642bfb1bdc695a20b0cba3b3c28954774" +dependencies = [ + "const-hex", + "dunce", + "heck", + "indexmap 2.1.0", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.39", + "syn-solidity", + "tiny-keccak", +] + +[[package]] +name = "alloy-sol-types" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a059d4d2c78f8f21e470772c75f9abd9ac6d48c2aaf6b278d1ead06ed9ac664" +dependencies = [ + "alloy-primitives", + "alloy-sol-macro", + "const-hex", + "serde", +] + [[package]] name = "always-assert" version = "0.1.3" @@ -319,9 +380,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c775f0d12169cba7aae4caeb547bb6a50781c7449a8aa53793827c9ec4abf488" dependencies = [ "ark-ec", - "ark-ff", - "ark-serialize", - "ark-std", + "ark-ff 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", ] [[package]] @@ -330,10 +391,10 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "defd9a439d56ac24968cca0571f598a61bc8c55f71d50a89cda591cb750670ba" dependencies = [ - "ark-ff", + "ark-ff 0.4.2", "ark-poly", - "ark-serialize", - "ark-std", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "derivative", "hashbrown 0.13.2", "itertools 0.10.5", @@ -349,8 +410,26 @@ checksum = "f9cde0f2aa063a2a5c28d39b47761aa102bda7c13c84fc118a61b87c7b2f785c" dependencies = [ "ark-bls12-381", "ark-ec", - "ark-ff", - "ark-std", + "ark-ff 0.4.2", + "ark-std 0.4.0", +] + +[[package]] +name = "ark-ff" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b3235cc41ee7a12aaaf2c575a2ad7b46713a8a50bda2fc3b003a04845c05dd6" +dependencies = [ + "ark-ff-asm 0.3.0", + "ark-ff-macros 0.3.0", + "ark-serialize 0.3.0", + "ark-std 0.3.0", + "derivative", + "num-bigint", + "num-traits", + "paste", + "rustc_version 0.3.3", + "zeroize", ] [[package]] @@ -359,20 +438,30 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec847af850f44ad29048935519032c33da8aa03340876d351dfab5660d2966ba" dependencies = [ - "ark-ff-asm", - "ark-ff-macros", - "ark-serialize", - "ark-std", + "ark-ff-asm 0.4.2", + "ark-ff-macros 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "derivative", "digest 0.10.7", "itertools 0.10.5", "num-bigint", "num-traits", "paste", - "rustc_version", + "rustc_version 0.4.0", "zeroize", ] +[[package]] +name = "ark-ff-asm" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db02d390bf6643fb404d3d22d31aee1c4bc4459600aef9113833d17e786c6e44" +dependencies = [ + "quote", + "syn 1.0.109", +] + [[package]] name = "ark-ff-asm" version = "0.4.2" @@ -383,6 +472,18 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "ark-ff-macros" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db2fd794a08ccb318058009eefdf15bcaaaaf6f8161eb3345f907222bac38b20" +dependencies = [ + "num-bigint", + "num-traits", + "quote", + "syn 1.0.109", +] + [[package]] name = "ark-ff-macros" version = "0.4.2" @@ -402,9 +503,9 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d320bfc44ee185d899ccbadfa8bc31aab923ce1558716e1997a1e74057fe86bf" dependencies = [ - "ark-ff", - "ark-serialize", - "ark-std", + "ark-ff 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "derivative", "hashbrown 0.13.2", ] @@ -416,9 +517,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49b08346a3e38e2be792ef53ee168623c9244d968ff00cd70fb9932f6fe36393" dependencies = [ "ark-ec", - "ark-ff", - "ark-serialize", - "ark-std", + "ark-ff 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "parity-scale-codec", ] @@ -429,9 +530,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51bd73bb6ddb72630987d37fa963e99196896c0d0ea81b7c894567e74a2f83af" dependencies = [ "ark-ec", - "ark-ff", - "ark-serialize", - "ark-std", + "ark-ff 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "parity-scale-codec", "scale-info", ] @@ -442,15 +543,25 @@ version = "0.0.2" source = "git+https://github.com/w3f/ring-vrf?rev=3119f51#3119f51b54b69308abfb0671f6176cb125ae1bf1" dependencies = [ "ark-ec", - "ark-ff", - "ark-serialize", - "ark-std", + "ark-ff 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "ark-transcript", "digest 0.10.7", "rand_core 0.6.4", "zeroize", ] +[[package]] +name = "ark-serialize" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d6c2b318ee6e10f8c2853e73a83adc0ccb88995aa978d8a3408d492ab2ee671" +dependencies = [ + "ark-std 0.3.0", + "digest 0.9.0", +] + [[package]] name = "ark-serialize" version = "0.4.2" @@ -458,7 +569,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "adb7b85a02b83d2f22f89bd5cac66c9c89474240cb6207cb1efc16d098e822a5" dependencies = [ "ark-serialize-derive", - "ark-std", + "ark-std 0.4.0", "digest 0.10.7", "num-bigint", ] @@ -474,6 +585,16 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "ark-std" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1df2c09229cbc5a028b1d70e00fdb2acee28b1055dfb5ca73eea49c5a25c4e7c" +dependencies = [ + "num-traits", + "rand 0.8.5", +] + [[package]] name = "ark-std" version = "0.4.0" @@ -489,12 +610,12 @@ name = "ark-transcript" version = "0.0.2" source = "git+https://github.com/w3f/ring-vrf?rev=3119f51#3119f51b54b69308abfb0671f6176cb125ae1bf1" dependencies = [ - "ark-ff", - "ark-serialize", - "ark-std", + "ark-ff 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "digest 0.10.7", "rand_core 0.6.4", - "sha3", + "sha3 0.10.8", ] [[package]] @@ -822,6 +943,17 @@ dependencies = [ "winapi", ] +[[package]] +name = "auto_impl" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "823b8bb275161044e2ac7a25879cb3e2480cb403e3943022c7c769c599b756aa" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.39", +] + [[package]] name = "autocfg" version = "1.1.0" @@ -851,10 +983,10 @@ dependencies = [ "ark-bls12-381", "ark-ec", "ark-ed-on-bls12-381-bandersnatch", - "ark-ff", + "ark-ff 0.4.2", "ark-scale 0.0.11", - "ark-serialize", - "ark-std", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "dleq_vrf", "fflonk", "merlin 3.0.0", @@ -913,7 +1045,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "hash-db", "log", @@ -958,6 +1090,21 @@ dependencies = [ "bitcoin_hashes", ] +[[package]] +name = "bit-set" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" +dependencies = [ + "bit-vec", +] + +[[package]] +name = "bit-vec" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" + [[package]] name = "bitcoin_hashes" version = "0.11.0" @@ -1060,6 +1207,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" dependencies = [ + "block-padding 0.2.1", "generic-array 0.14.7", ] @@ -1515,10 +1663,10 @@ version = "0.1.0" source = "git+https://github.com/w3f/ring-proof?rev=0e948f3#0e948f3c28cbacecdd3020403c4841c0eb339213" dependencies = [ "ark-ec", - "ark-ff", + "ark-ff 0.4.2", "ark-poly", - "ark-serialize", - "ark-std", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "fflonk", "merlin 3.0.0", ] @@ -1638,6 +1786,19 @@ dependencies = [ "windows-sys 0.45.0", ] +[[package]] +name = "const-hex" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5104de16b218eddf8e34ffe2f86f74bfa4e61e95a1b89732fccf6325efd0557" +dependencies = [ + "cfg-if", + "cpufeatures", + "hex", + "proptest", + "serde", +] + [[package]] name = "const-oid" version = "0.9.5" @@ -1982,7 +2143,7 @@ dependencies = [ [[package]] name = "cumulus-client-cli" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "clap", "parity-scale-codec", @@ -1998,7 +2159,7 @@ dependencies = [ [[package]] name = "cumulus-client-collator" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "cumulus-client-consensus-common", "cumulus-client-network", @@ -2021,7 +2182,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-aura" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "cumulus-client-collator", @@ -2064,7 +2225,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-common" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "cumulus-client-pov-recovery", @@ -2093,7 +2254,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-proposer" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "anyhow", "async-trait", @@ -2108,7 +2269,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-relay-chain" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "cumulus-client-consensus-common", @@ -2131,7 +2292,7 @@ dependencies = [ [[package]] name = "cumulus-client-network" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "cumulus-relay-chain-interface", @@ -2154,7 +2315,7 @@ dependencies = [ [[package]] name = "cumulus-client-pov-recovery" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2178,7 +2339,7 @@ dependencies = [ [[package]] name = "cumulus-client-service" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "cumulus-client-cli", "cumulus-client-collator", @@ -2213,7 +2374,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-aura-ext" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -2231,7 +2392,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-dmp-queue" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2249,7 +2410,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "bytes", "cumulus-pallet-parachain-system-proc-macro", @@ -2280,7 +2441,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system-proc-macro" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2291,7 +2452,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-session-benchmarking" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -2305,7 +2466,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcm" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2321,7 +2482,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcmp-queue" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "cumulus-primitives-core", "frame-benchmarking", @@ -2343,7 +2504,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-aura" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2357,7 +2518,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-core" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2374,7 +2535,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2397,7 +2558,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-timestamp" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "cumulus-primitives-core", "futures", @@ -2410,7 +2571,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-utility" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2428,7 +2589,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-inprocess-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2452,7 +2613,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2470,7 +2631,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-minimal-node" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "array-bytes", "async-trait", @@ -2505,7 +2666,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-rpc-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2543,7 +2704,7 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", @@ -2592,7 +2753,7 @@ dependencies = [ "digest 0.10.7", "fiat-crypto", "platforms", - "rustc_version", + "rustc_version 0.4.0", "subtle", "zeroize", ] @@ -2846,7 +3007,7 @@ dependencies = [ "convert_case", "proc-macro2", "quote", - "rustc_version", + "rustc_version 0.4.0", "syn 1.0.109", ] @@ -2944,11 +3105,11 @@ version = "0.0.2" source = "git+https://github.com/w3f/ring-vrf?rev=3119f51#3119f51b54b69308abfb0671f6176cb125ae1bf1" dependencies = [ "ark-ec", - "ark-ff", + "ark-ff 0.4.2", "ark-scale 0.0.10", "ark-secret-scalar", - "ark-serialize", - "ark-std", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "ark-transcript", "arrayvec 0.7.4", "rand_core 0.6.4", @@ -3000,6 +3161,12 @@ version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653" +[[package]] +name = "dunce" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b" + [[package]] name = "dyn-clonable" version = "0.9.0" @@ -3360,7 +3527,7 @@ dependencies = [ [[package]] name = "extrinsic-shuffler" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "derive_more", "log", @@ -3400,6 +3567,17 @@ version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" +[[package]] +name = "fastrlp" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "139834ddba373bbdd213dffe02c8d110508dcf1726c2be27e8d1f7d7e1856418" +dependencies = [ + "arrayvec 0.7.4", + "auto_impl", + "bytes", +] + [[package]] name = "fatality" version = "0.0.6" @@ -3460,10 +3638,10 @@ version = "0.1.0" source = "git+https://github.com/w3f/fflonk#1e854f35e9a65d08b11a86291405cdc95baa0a35" dependencies = [ "ark-ec", - "ark-ff", + "ark-ff 0.4.2", "ark-poly", - "ark-serialize", - "ark-std", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "merlin 3.0.0", ] @@ -3558,7 +3736,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "parity-scale-codec", ] @@ -3581,7 +3759,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-support", "frame-support-procedural", @@ -3606,7 +3784,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "Inflector", "array-bytes", @@ -3660,7 +3838,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -3671,7 +3849,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -3688,7 +3866,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -3722,7 +3900,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-recursion", "futures", @@ -3744,7 +3922,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "aquamarine 0.3.2", "bitflags 1.3.2", @@ -3785,7 +3963,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "Inflector", "cfg-expr", @@ -3803,7 +3981,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3815,7 +3993,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "proc-macro2", "quote", @@ -3825,7 +4003,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "cfg-if", "extrinsic-shuffler", @@ -3846,7 +4024,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -3861,7 +4039,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "parity-scale-codec", "sp-api", @@ -3870,7 +4048,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-support", "parity-scale-codec", @@ -5019,10 +5197,20 @@ dependencies = [ "cpufeatures", ] +[[package]] +name = "keccak-asm" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb8515fff80ed850aea4a1595f2e519c003e2a00a82fe168ebf5269196caf444" +dependencies = [ + "digest 0.10.7", + "sha3-asm", +] + [[package]] name = "kusama-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-support", "polkadot-primitives", @@ -5819,6 +6007,7 @@ dependencies = [ "log", "mangata-support", "mangata-types", + "metamask-signature-runtime-api", "orml-asset-registry", "orml-tokens", "orml-traits", @@ -5858,6 +6047,7 @@ dependencies = [ "proof-of-stake-runtime-api", "scale-info", "serde", + "serde_json", "smallvec", "sp-api", "sp-block-builder", @@ -5909,6 +6099,7 @@ dependencies = [ "log", "mangata-kusama-runtime", "mangata-rococo-runtime", + "metamask-signature-rpc", "pallet-transaction-payment-mangata", "pallet-transaction-payment-mangata-rpc", "parity-scale-codec", @@ -5963,6 +6154,7 @@ dependencies = [ name = "mangata-rococo-runtime" version = "4.0.0" dependencies = [ + "bs58 0.5.0", "common-runtime", "cumulus-pallet-aura-ext", "cumulus-pallet-dmp-queue", @@ -5984,6 +6176,7 @@ dependencies = [ "log", "mangata-support", "mangata-types", + "metamask-signature-runtime-api", "orml-asset-registry", "orml-tokens", "orml-traits", @@ -6072,7 +6265,7 @@ dependencies = [ [[package]] name = "mangata-support" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-support", "mangata-types", @@ -6085,7 +6278,7 @@ dependencies = [ [[package]] name = "mangata-types" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "parity-scale-codec", "scale-info", @@ -6225,6 +6418,40 @@ dependencies = [ "zeroize", ] +[[package]] +name = "metamask-signature-rpc" +version = "2.0.0" +dependencies = [ + "array-bytes", + "jsonrpsee", + "mangata-types", + "metamask-signature-runtime-api", + "parity-scale-codec", + "serde", + "sp-api", + "sp-blockchain", + "sp-core", + "sp-rpc", + "sp-runtime", + "sp-std", +] + +[[package]] +name = "metamask-signature-runtime-api" +version = "2.0.0" +dependencies = [ + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "serde", + "serde_json", + "sp-api", + "sp-core", + "sp-runtime", + "sp-std", +] + [[package]] name = "mick-jaeger" version = "0.1.8" @@ -6265,7 +6492,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "futures", "log", @@ -6284,7 +6511,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "anyhow", "jsonrpsee", @@ -6367,7 +6594,7 @@ dependencies = [ "digest 0.10.7", "multihash-derive", "sha2 0.10.8", - "sha3", + "sha3 0.10.8", "unsigned-varint", ] @@ -6618,6 +6845,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" dependencies = [ "autocfg", + "libm 0.2.8", ] [[package]] @@ -6906,7 +7134,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -6924,7 +7152,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -6940,7 +7168,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-support", "frame-system", @@ -6957,7 +7185,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-support", "frame-system", @@ -6973,7 +7201,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-support", "frame-system", @@ -6987,7 +7215,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7011,7 +7239,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "aquamarine 0.3.2", "docify", @@ -7033,7 +7261,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7048,7 +7276,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-support", "frame-system", @@ -7068,7 +7296,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -7125,7 +7353,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7143,7 +7371,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7162,7 +7390,7 @@ dependencies = [ [[package]] name = "pallet-collator-selection" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7181,7 +7409,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7198,7 +7426,7 @@ dependencies = [ [[package]] name = "pallet-collective-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7215,7 +7443,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7256,7 +7484,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7274,7 +7502,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7297,7 +7525,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7311,7 +7539,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7330,7 +7558,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "docify", "frame-benchmarking", @@ -7378,7 +7606,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7401,7 +7629,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7417,7 +7645,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7437,7 +7665,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7506,7 +7734,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7523,7 +7751,7 @@ dependencies = [ [[package]] name = "pallet-message-queue" version = "7.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7542,7 +7770,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7590,7 +7818,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7606,7 +7834,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7622,7 +7850,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-support", "frame-system", @@ -7641,7 +7869,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7661,7 +7889,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -7672,7 +7900,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-support", "frame-system", @@ -7689,7 +7917,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7713,7 +7941,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7767,7 +7995,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7782,7 +8010,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7800,7 +8028,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7815,7 +8043,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7834,7 +8062,7 @@ dependencies = [ [[package]] name = "pallet-root-testing" version = "1.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-support", "frame-system", @@ -7849,7 +8077,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "docify", "frame-benchmarking", @@ -7867,7 +8095,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-support", "frame-system", @@ -7889,7 +8117,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7906,7 +8134,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7924,7 +8152,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7947,7 +8175,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -7958,7 +8186,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "log", "sp-arithmetic", @@ -7967,7 +8195,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "parity-scale-codec", "sp-api", @@ -7976,7 +8204,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7993,7 +8221,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8008,7 +8236,7 @@ dependencies = [ [[package]] name = "pallet-sudo-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8041,7 +8269,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8060,7 +8288,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8079,7 +8307,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-support", "frame-system", @@ -8095,7 +8323,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-support", "frame-system", @@ -8111,7 +8339,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "jsonrpsee", "pallet-transaction-payment-mangata-rpc-runtime-api", @@ -8127,7 +8355,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "pallet-transaction-payment-mangata", "parity-scale-codec", @@ -8139,7 +8367,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -8155,7 +8383,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -8167,7 +8395,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8184,7 +8412,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8200,7 +8428,7 @@ dependencies = [ [[package]] name = "pallet-utility-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8216,7 +8444,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8231,7 +8459,7 @@ dependencies = [ [[package]] name = "pallet-vesting-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8246,7 +8474,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8261,7 +8489,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "bounded-collections", "frame-benchmarking", @@ -8282,7 +8510,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-benchmarking", "frame-support", @@ -8337,7 +8565,7 @@ dependencies = [ [[package]] name = "parachain-info" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -8382,7 +8610,7 @@ dependencies = [ [[package]] name = "parachains-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-utility", @@ -8761,7 +8989,7 @@ checksum = "14e6ab3f592e6fb464fc9712d8d6e6912de6473954635fd76a589d832cffcbb0" [[package]] name = "polkadot-approval-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "futures", "futures-timer", @@ -8779,7 +9007,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "always-assert", "futures", @@ -8795,7 +9023,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "derive_more", "fatality", @@ -8818,7 +9046,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "fatality", "futures", @@ -8839,7 +9067,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "clap", "frame-benchmarking-cli", @@ -8866,7 +9094,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "bitvec", "fatality", @@ -8888,7 +9116,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "parity-scale-codec", "scale-info", @@ -8900,7 +9128,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "derive_more", "fatality", @@ -8925,7 +9153,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -8939,7 +9167,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "futures", "futures-timer", @@ -8960,7 +9188,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "always-assert", "async-trait", @@ -8983,7 +9211,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "futures", "parity-scale-codec", @@ -9001,7 +9229,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "bitvec", "derive_more", @@ -9030,7 +9258,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "bitvec", "futures", @@ -9052,7 +9280,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "bitvec", "fatality", @@ -9071,7 +9299,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "futures", "polkadot-node-subsystem", @@ -9086,7 +9314,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "futures", @@ -9107,7 +9335,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "futures", "polkadot-node-metrics", @@ -9122,7 +9350,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "futures", "futures-timer", @@ -9139,7 +9367,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "fatality", "futures", @@ -9158,7 +9386,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "futures", @@ -9175,7 +9403,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-prospective-parachains" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "bitvec", "fatality", @@ -9192,7 +9420,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "bitvec", "fatality", @@ -9209,7 +9437,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "always-assert", "futures", @@ -9237,7 +9465,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "futures", "polkadot-node-primitives", @@ -9253,7 +9481,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "cpu-time", "futures", @@ -9276,7 +9504,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-prepare-worker" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "futures", "libc", @@ -9299,7 +9527,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "futures", "polkadot-node-metrics", @@ -9314,7 +9542,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "lazy_static", "log", @@ -9332,7 +9560,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "bs58 0.5.0", "futures", @@ -9351,7 +9579,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-channel 1.9.0", "async-trait", @@ -9375,7 +9603,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "bounded-vec", "futures", @@ -9397,7 +9625,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -9407,7 +9635,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "derive_more", @@ -9431,7 +9659,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "derive_more", @@ -9464,7 +9692,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "futures", @@ -9487,7 +9715,7 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "bounded-collections", "derive_more", @@ -9504,7 +9732,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "env_logger 0.9.3", "log", @@ -9522,7 +9750,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "bitvec", "hex-literal 0.4.1", @@ -9548,7 +9776,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "jsonrpsee", "mmr-rpc", @@ -9580,7 +9808,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "bitvec", "frame-benchmarking", @@ -9677,7 +9905,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "bitvec", "frame-benchmarking", @@ -9723,7 +9951,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-support", "polkadot-primitives", @@ -9737,7 +9965,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "bs58 0.5.0", "frame-benchmarking", @@ -9750,7 +9978,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "bitflags 1.3.2", "bitvec", @@ -9796,7 +10024,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "frame-benchmarking", @@ -9917,7 +10145,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "arrayvec 0.7.4", "bitvec", @@ -9941,7 +10169,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -10233,6 +10461,26 @@ dependencies = [ "sp-std", ] +[[package]] +name = "proptest" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31b476131c3c86cb68032fdc5cb6d5a1045e3e42d96b69fa599fd77701e1f5bf" +dependencies = [ + "bit-set", + "bit-vec", + "bitflags 2.4.1", + "lazy_static", + "num-traits", + "rand 0.8.5", + "rand_chacha 0.3.1", + "rand_xorshift", + "regex-syntax 0.8.2", + "rusty-fork", + "tempfile", + "unarray", +] + [[package]] name = "prost" version = "0.11.9" @@ -10448,6 +10696,15 @@ dependencies = [ "rand_core 0.6.4", ] +[[package]] +name = "rand_xorshift" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" +dependencies = [ + "rand_core 0.6.4", +] + [[package]] name = "rawpointer" version = "0.2.1" @@ -10663,10 +10920,10 @@ version = "0.1.0" source = "git+https://github.com/w3f/ring-proof?rev=0e948f3#0e948f3c28cbacecdd3020403c4841c0eb339213" dependencies = [ "ark-ec", - "ark-ff", + "ark-ff 0.4.2", "ark-poly", - "ark-serialize", - "ark-std", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "common", "fflonk", "merlin 3.0.0", @@ -10701,6 +10958,16 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "rlp" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb919243f34364b6bd2fc10ef797edbfa75f33c252e7998527479c6d6b47e1ec" +dependencies = [ + "bytes", + "rustc-hex", +] + [[package]] name = "rocksdb" version = "0.21.0" @@ -10714,7 +10981,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "binary-merkle-tree", "frame-benchmarking", @@ -10802,7 +11069,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-support", "polkadot-primitives", @@ -10874,6 +11141,36 @@ dependencies = [ "webrtc-util", ] +[[package]] +name = "ruint" +version = "1.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "608a5726529f2f0ef81b8fde9873c4bb829d6b5b5ca6be4d97345ddf0749c825" +dependencies = [ + "alloy-rlp", + "ark-ff 0.3.0", + "ark-ff 0.4.2", + "bytes", + "fastrlp", + "num-bigint", + "num-traits", + "parity-scale-codec", + "primitive-types", + "proptest", + "rand 0.8.5", + "rlp", + "ruint-macro", + "serde", + "valuable", + "zeroize", +] + +[[package]] +name = "ruint-macro" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e666a5496a0b2186dbcd0ff6106e29e093c15591bde62c20d3842007c6978a09" + [[package]] name = "runtime-integration-test" version = "0.1.0" @@ -10884,6 +11181,7 @@ dependencies = [ "env_logger 0.9.3", "frame-support", "frame-system", + "hex-literal 0.3.4", "kusama-runtime-constants", "log", "mangata-kusama-runtime", @@ -10909,6 +11207,7 @@ dependencies = [ "pallet-xyk", "parachain-info", "parachain-staking", + "parity-scale-codec", "polkadot-parachain-primitives", "polkadot-primitives", "polkadot-runtime-parachains", @@ -10941,6 +11240,15 @@ version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6" +[[package]] +name = "rustc_version" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee" +dependencies = [ + "semver 0.11.0", +] + [[package]] name = "rustc_version" version = "0.4.0" @@ -11074,6 +11382,18 @@ version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" +[[package]] +name = "rusty-fork" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f" +dependencies = [ + "fnv", + "quick-error", + "tempfile", + "wait-timeout", +] + [[package]] name = "ruzstd" version = "0.4.0" @@ -11123,7 +11443,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "log", "sp-core", @@ -11134,7 +11454,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "futures", @@ -11162,7 +11482,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "futures", "futures-timer", @@ -11185,7 +11505,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship-ver" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "aquamarine 0.3.2", "futures", @@ -11211,7 +11531,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -11226,7 +11546,7 @@ dependencies = [ [[package]] name = "sc-block-builder-ver" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -11246,7 +11566,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -11265,7 +11585,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11276,7 +11596,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "array-bytes", "chrono", @@ -11315,7 +11635,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "fnv", "futures", @@ -11341,7 +11661,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "hash-db", "kvdb", @@ -11367,7 +11687,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "futures", @@ -11392,7 +11712,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "futures", @@ -11421,7 +11741,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "fork-tree", @@ -11457,7 +11777,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "futures", "jsonrpsee", @@ -11479,7 +11799,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11513,7 +11833,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "futures", "jsonrpsee", @@ -11532,7 +11852,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "fork-tree", "parity-scale-codec", @@ -11545,7 +11865,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "ahash 0.8.6", "array-bytes", @@ -11586,7 +11906,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "finality-grandpa", "futures", @@ -11606,7 +11926,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "futures", @@ -11631,7 +11951,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -11653,7 +11973,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -11665,7 +11985,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "anyhow", "cfg-if", @@ -11682,7 +12002,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "ansi_term", "futures", @@ -11698,7 +12018,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "array-bytes", "parking_lot 0.12.1", @@ -11712,7 +12032,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11753,7 +12073,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-channel 1.9.0", "cid", @@ -11773,7 +12093,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -11790,7 +12110,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "ahash 0.8.6", "futures", @@ -11808,7 +12128,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11829,7 +12149,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11863,7 +12183,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "array-bytes", "futures", @@ -11881,7 +12201,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "array-bytes", "bytes", @@ -11915,7 +12235,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -11924,7 +12244,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "futures", "jsonrpsee", @@ -11955,7 +12275,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -11974,7 +12294,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "http", "jsonrpsee", @@ -11989,7 +12309,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "array-bytes", "futures", @@ -12017,7 +12337,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "directories", @@ -12083,7 +12403,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "log", "parity-scale-codec", @@ -12094,7 +12414,7 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "clap", "fs4", @@ -12108,7 +12428,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12127,7 +12447,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "futures", "libc", @@ -12146,7 +12466,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "chrono", "futures", @@ -12165,7 +12485,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "ansi_term", "atty", @@ -12194,7 +12514,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12205,7 +12525,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "futures", @@ -12231,7 +12551,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "futures", @@ -12247,7 +12567,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-channel 1.9.0", "futures", @@ -12467,7 +12787,16 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a3186ec9e65071a2095434b1f5bb24838d4e8e130f584c790f6033c79943537" dependencies = [ - "semver-parser", + "semver-parser 0.7.0", +] + +[[package]] +name = "semver" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6" +dependencies = [ + "semver-parser 0.10.2", ] [[package]] @@ -12485,6 +12814,15 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" +[[package]] +name = "semver-parser" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7" +dependencies = [ + "pest", +] + [[package]] name = "send_wrapper" version = "0.4.0" @@ -12615,6 +12953,18 @@ dependencies = [ "digest 0.10.7", ] +[[package]] +name = "sha3" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809" +dependencies = [ + "block-buffer 0.9.0", + "digest 0.9.0", + "keccak", + "opaque-debug 0.3.0", +] + [[package]] name = "sha3" version = "0.10.8" @@ -12625,6 +12975,16 @@ dependencies = [ "keccak", ] +[[package]] +name = "sha3-asm" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bac61da6b35ad76b195eb4771210f947734321a8d81d7738e1580d953bc7a15e" +dependencies = [ + "cc", + "cfg-if", +] + [[package]] name = "sharded-slab" version = "0.1.7" @@ -12726,7 +13086,7 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" [[package]] name = "slot-range-helper" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "enumn", "parity-scale-codec", @@ -12810,7 +13170,7 @@ dependencies = [ "serde", "serde_json", "sha2 0.10.8", - "sha3", + "sha3 0.10.8", "siphasher", "slab", "smallvec", @@ -12875,7 +13235,7 @@ dependencies = [ "curve25519-dalek 4.1.1", "rand_core 0.6.4", "ring 0.17.5", - "rustc_version", + "rustc_version 0.4.0", "sha2 0.10.8", "subtle", ] @@ -12920,7 +13280,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "hash-db", "log", @@ -12941,7 +13301,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "Inflector", "blake2", @@ -12955,7 +13315,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "23.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "parity-scale-codec", "scale-info", @@ -12968,7 +13328,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "16.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "integer-sqrt", "num-traits", @@ -12982,7 +13342,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "parity-scale-codec", "scale-info", @@ -12995,7 +13355,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "sp-api", "sp-inherents", @@ -13006,7 +13366,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "futures", "log", @@ -13024,7 +13384,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "futures", @@ -13039,7 +13399,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "parity-scale-codec", @@ -13056,7 +13416,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "parity-scale-codec", @@ -13075,7 +13435,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "lazy_static", "parity-scale-codec", @@ -13094,7 +13454,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "finality-grandpa", "log", @@ -13112,7 +13472,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "parity-scale-codec", "scale-info", @@ -13124,7 +13484,7 @@ dependencies = [ [[package]] name = "sp-core" version = "21.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "array-bytes", "arrayvec 0.7.4", @@ -13154,6 +13514,7 @@ dependencies = [ "secp256k1", "secrecy", "serde", + "sha3 0.9.1", "sp-core-hashing", "sp-debug-derive", "sp-externalities", @@ -13171,20 +13532,20 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "9.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "blake2b_simd", "byteorder", "digest 0.10.7", "sha2 0.10.8", - "sha3", + "sha3 0.10.8", "twox-hash", ] [[package]] name = "sp-core-hashing-proc-macro" version = "9.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "quote", "sp-core-hashing", @@ -13194,7 +13555,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -13203,7 +13564,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "proc-macro2", "quote", @@ -13213,7 +13574,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.19.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "environmental", "parity-scale-codec", @@ -13224,7 +13585,7 @@ dependencies = [ [[package]] name = "sp-genesis-builder" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "serde_json", "sp-api", @@ -13235,7 +13596,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -13249,7 +13610,7 @@ dependencies = [ [[package]] name = "sp-io" version = "23.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "bytes", "ed25519-dalek 2.1.0", @@ -13273,7 +13634,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "24.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "lazy_static", "sp-core", @@ -13284,7 +13645,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.27.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -13296,7 +13657,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "thiserror", "zstd 0.12.4", @@ -13305,7 +13666,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-metadata", "parity-scale-codec", @@ -13316,7 +13677,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -13334,7 +13695,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "parity-scale-codec", "scale-info", @@ -13348,7 +13709,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "sp-api", "sp-core", @@ -13358,7 +13719,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "backtrace", "lazy_static", @@ -13368,7 +13729,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "rustc-hash", "serde", @@ -13378,8 +13739,10 @@ dependencies = [ [[package]] name = "sp-runtime" version = "24.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ + "alloy-primitives", + "alloy-sol-types", "either", "hash256-std-hasher", "impl-trait-for-tuples", @@ -13401,7 +13764,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "17.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -13419,7 +13782,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "11.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "Inflector", "proc-macro-crate", @@ -13431,7 +13794,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "parity-scale-codec", "scale-info", @@ -13446,7 +13809,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -13460,7 +13823,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.28.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "hash-db", "log", @@ -13481,7 +13844,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "aes-gcm 0.10.3", "curve25519-dalek 4.1.1", @@ -13505,12 +13868,12 @@ dependencies = [ [[package]] name = "sp-std" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" [[package]] name = "sp-storage" version = "13.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13523,7 +13886,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "parity-scale-codec", @@ -13536,7 +13899,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "10.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "parity-scale-codec", "sp-std", @@ -13548,7 +13911,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "sp-api", "sp-runtime", @@ -13557,7 +13920,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "parity-scale-codec", @@ -13572,7 +13935,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "22.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "ahash 0.8.6", "hash-db", @@ -13595,7 +13958,7 @@ dependencies = [ [[package]] name = "sp-ver" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "parity-scale-codec", @@ -13612,7 +13975,7 @@ dependencies = [ [[package]] name = "sp-version" version = "22.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13629,7 +13992,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -13640,7 +14003,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "14.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -13653,7 +14016,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "20.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "parity-scale-codec", "scale-info", @@ -13732,7 +14095,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "staging-kusama-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "binary-merkle-tree", "bitvec", @@ -13838,7 +14201,7 @@ dependencies = [ [[package]] name = "staging-xcm" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "bounded-collections", "derivative", @@ -13855,7 +14218,7 @@ dependencies = [ [[package]] name = "staging-xcm-builder" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-support", "frame-system", @@ -13877,7 +14240,7 @@ dependencies = [ [[package]] name = "staging-xcm-executor" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "environmental", "frame-benchmarking", @@ -14010,12 +14373,12 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -14034,7 +14397,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "hyper", "log", @@ -14046,7 +14409,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "jsonrpsee", @@ -14059,7 +14422,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -14076,7 +14439,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "ansi_term", "build-helper", @@ -14134,6 +14497,18 @@ dependencies = [ "unicode-ident", ] +[[package]] +name = "syn-solidity" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91ede2e5b2c6bfac4bc0ff4499957a11725dc12a7ddb86270e827ef575892553" +dependencies = [ + "paste", + "proc-macro2", + "quote", + "syn 2.0.39", +] + [[package]] name = "synstructure" version = "0.12.6" @@ -14618,7 +14993,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "coarsetime", "polkadot-node-jaeger", @@ -14630,7 +15005,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "expander 2.0.0", "proc-macro-crate", @@ -14760,7 +15135,7 @@ checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "async-trait", "clap", @@ -14854,6 +15229,12 @@ dependencies = [ "static_assertions", ] +[[package]] +name = "unarray" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" + [[package]] name = "unicode-bidi" version = "0.3.13" @@ -14978,7 +15359,7 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "ver-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "derive_more", "frame-support", @@ -15007,6 +15388,15 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" +[[package]] +name = "wait-timeout" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6" +dependencies = [ + "libc", +] + [[package]] name = "waitgroup" version = "0.1.2" @@ -15684,7 +16074,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "binary-merkle-tree", "bitvec", @@ -15783,7 +16173,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "frame-support", "polkadot-primitives", @@ -16161,7 +16551,7 @@ dependencies = [ [[package]] name = "xcm-emulator" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "cumulus-pallet-parachain-system", "cumulus-primitives-core", @@ -16193,7 +16583,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#8bb4b1c9de998f66648f7b642556294cf32d1584" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" dependencies = [ "Inflector", "proc-macro2", diff --git a/runtime/mangata-rococo/src/lib.rs b/runtime/mangata-rococo/src/lib.rs index c0b1d51f74..2f32f1b2a2 100644 --- a/runtime/mangata-rococo/src/lib.rs +++ b/runtime/mangata-rococo/src/lib.rs @@ -2,12 +2,17 @@ // `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256. #![recursion_limit = "256"] -use codec::{Decode, Encode}; +use codec::{ + alloc::string::{String, ToString}, + Decode, Encode, +}; pub use common_runtime::{ consts::DAYS, currency::*, deposit, runtime_types, tokens, types::*, CallType, }; use frame_support::{ - construct_runtime, parameter_types, + construct_runtime, + dispatch::GetDispatchInfo, + parameter_types, traits::{Everything, InstanceFilter}, weights::{constants::RocksDbWeight, Weight}, }; @@ -837,7 +842,6 @@ mod benches { ); } - impl_runtime_apis! { From d8ef5c092c40c6fddb18cb4c10a189482c34f232 Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Mon, 5 Feb 2024 11:20:48 +0100 Subject: [PATCH 15/15] use latest sdk --- Cargo.lock | 574 ++++++++++++++++++++++++++--------------------------- Cargo.toml | 554 +++++++++++++++++++++++++-------------------------- 2 files changed, 564 insertions(+), 564 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index be58ec7c4d..026613b22a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1045,7 +1045,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "hash-db", "log", @@ -2143,7 +2143,7 @@ dependencies = [ [[package]] name = "cumulus-client-cli" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "clap", "parity-scale-codec", @@ -2159,7 +2159,7 @@ dependencies = [ [[package]] name = "cumulus-client-collator" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "cumulus-client-consensus-common", "cumulus-client-network", @@ -2182,7 +2182,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-aura" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "cumulus-client-collator", @@ -2225,7 +2225,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-common" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "cumulus-client-pov-recovery", @@ -2254,7 +2254,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-proposer" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "anyhow", "async-trait", @@ -2269,7 +2269,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-relay-chain" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "cumulus-client-consensus-common", @@ -2292,7 +2292,7 @@ dependencies = [ [[package]] name = "cumulus-client-network" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "cumulus-relay-chain-interface", @@ -2315,7 +2315,7 @@ dependencies = [ [[package]] name = "cumulus-client-pov-recovery" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2339,7 +2339,7 @@ dependencies = [ [[package]] name = "cumulus-client-service" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "cumulus-client-cli", "cumulus-client-collator", @@ -2374,7 +2374,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-aura-ext" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -2392,7 +2392,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-dmp-queue" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2410,7 +2410,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "bytes", "cumulus-pallet-parachain-system-proc-macro", @@ -2441,7 +2441,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system-proc-macro" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2452,7 +2452,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-session-benchmarking" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -2466,7 +2466,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcm" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2482,7 +2482,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcmp-queue" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "cumulus-primitives-core", "frame-benchmarking", @@ -2504,7 +2504,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-aura" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2518,7 +2518,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-core" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2535,7 +2535,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2558,7 +2558,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-timestamp" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "cumulus-primitives-core", "futures", @@ -2571,7 +2571,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-utility" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2589,7 +2589,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-inprocess-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2613,7 +2613,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2631,7 +2631,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-minimal-node" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "array-bytes", "async-trait", @@ -2666,7 +2666,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-rpc-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2704,7 +2704,7 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", @@ -3527,7 +3527,7 @@ dependencies = [ [[package]] name = "extrinsic-shuffler" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "derive_more", "log", @@ -3736,7 +3736,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "parity-scale-codec", ] @@ -3759,7 +3759,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-support", "frame-support-procedural", @@ -3784,7 +3784,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "Inflector", "array-bytes", @@ -3838,7 +3838,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -3849,7 +3849,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -3866,7 +3866,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -3900,7 +3900,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-recursion", "futures", @@ -3922,7 +3922,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "aquamarine 0.3.2", "bitflags 1.3.2", @@ -3963,7 +3963,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "Inflector", "cfg-expr", @@ -3981,7 +3981,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3993,7 +3993,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "proc-macro2", "quote", @@ -4003,7 +4003,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "cfg-if", "extrinsic-shuffler", @@ -4024,7 +4024,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -4039,7 +4039,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "parity-scale-codec", "sp-api", @@ -4048,7 +4048,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-support", "parity-scale-codec", @@ -5210,7 +5210,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-support", "polkadot-primitives", @@ -6265,7 +6265,7 @@ dependencies = [ [[package]] name = "mangata-support" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-support", "mangata-types", @@ -6278,7 +6278,7 @@ dependencies = [ [[package]] name = "mangata-types" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "parity-scale-codec", "scale-info", @@ -6492,7 +6492,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "futures", "log", @@ -6511,7 +6511,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "anyhow", "jsonrpsee", @@ -7134,7 +7134,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -7152,7 +7152,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -7168,7 +7168,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-support", "frame-system", @@ -7185,7 +7185,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-support", "frame-system", @@ -7201,7 +7201,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-support", "frame-system", @@ -7215,7 +7215,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -7239,7 +7239,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "aquamarine 0.3.2", "docify", @@ -7261,7 +7261,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -7276,7 +7276,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-support", "frame-system", @@ -7296,7 +7296,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -7353,7 +7353,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -7371,7 +7371,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -7390,7 +7390,7 @@ dependencies = [ [[package]] name = "pallet-collator-selection" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -7409,7 +7409,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -7426,7 +7426,7 @@ dependencies = [ [[package]] name = "pallet-collective-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -7443,7 +7443,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7484,7 +7484,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -7502,7 +7502,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7525,7 +7525,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7539,7 +7539,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -7558,7 +7558,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "docify", "frame-benchmarking", @@ -7606,7 +7606,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -7629,7 +7629,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7645,7 +7645,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -7665,7 +7665,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -7734,7 +7734,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -7751,7 +7751,7 @@ dependencies = [ [[package]] name = "pallet-message-queue" version = "7.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -7770,7 +7770,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -7818,7 +7818,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -7834,7 +7834,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -7850,7 +7850,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-support", "frame-system", @@ -7869,7 +7869,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7889,7 +7889,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -7900,7 +7900,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-support", "frame-system", @@ -7917,7 +7917,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7941,7 +7941,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -7995,7 +7995,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -8010,7 +8010,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -8028,7 +8028,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -8043,7 +8043,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "assert_matches", "frame-benchmarking", @@ -8062,7 +8062,7 @@ dependencies = [ [[package]] name = "pallet-root-testing" version = "1.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-support", "frame-system", @@ -8077,7 +8077,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "docify", "frame-benchmarking", @@ -8095,7 +8095,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-support", "frame-system", @@ -8117,7 +8117,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -8134,7 +8134,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -8152,7 +8152,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -8175,7 +8175,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8186,7 +8186,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "log", "sp-arithmetic", @@ -8195,7 +8195,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "parity-scale-codec", "sp-api", @@ -8204,7 +8204,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -8221,7 +8221,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -8236,7 +8236,7 @@ dependencies = [ [[package]] name = "pallet-sudo-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -8269,7 +8269,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -8288,7 +8288,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -8307,7 +8307,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-support", "frame-system", @@ -8323,7 +8323,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-support", "frame-system", @@ -8339,7 +8339,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "jsonrpsee", "pallet-transaction-payment-mangata-rpc-runtime-api", @@ -8355,7 +8355,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "pallet-transaction-payment-mangata", "parity-scale-codec", @@ -8367,7 +8367,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -8383,7 +8383,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -8395,7 +8395,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -8412,7 +8412,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -8428,7 +8428,7 @@ dependencies = [ [[package]] name = "pallet-utility-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -8444,7 +8444,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -8459,7 +8459,7 @@ dependencies = [ [[package]] name = "pallet-vesting-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -8474,7 +8474,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -8489,7 +8489,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "bounded-collections", "frame-benchmarking", @@ -8510,7 +8510,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -8565,7 +8565,7 @@ dependencies = [ [[package]] name = "parachain-info" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -8610,7 +8610,7 @@ dependencies = [ [[package]] name = "parachains-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-utility", @@ -8989,7 +8989,7 @@ checksum = "14e6ab3f592e6fb464fc9712d8d6e6912de6473954635fd76a589d832cffcbb0" [[package]] name = "polkadot-approval-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "futures", "futures-timer", @@ -9007,7 +9007,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "always-assert", "futures", @@ -9023,7 +9023,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "derive_more", "fatality", @@ -9046,7 +9046,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "fatality", "futures", @@ -9067,7 +9067,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "clap", "frame-benchmarking-cli", @@ -9094,7 +9094,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "bitvec", "fatality", @@ -9116,7 +9116,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "parity-scale-codec", "scale-info", @@ -9128,7 +9128,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "derive_more", "fatality", @@ -9153,7 +9153,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -9167,7 +9167,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "futures", "futures-timer", @@ -9188,7 +9188,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "always-assert", "async-trait", @@ -9211,7 +9211,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "futures", "parity-scale-codec", @@ -9229,7 +9229,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "bitvec", "derive_more", @@ -9258,7 +9258,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "bitvec", "futures", @@ -9280,7 +9280,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "bitvec", "fatality", @@ -9299,7 +9299,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "futures", "polkadot-node-subsystem", @@ -9314,7 +9314,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "futures", @@ -9335,7 +9335,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "futures", "polkadot-node-metrics", @@ -9350,7 +9350,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "futures", "futures-timer", @@ -9367,7 +9367,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "fatality", "futures", @@ -9386,7 +9386,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "futures", @@ -9403,7 +9403,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-prospective-parachains" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "bitvec", "fatality", @@ -9420,7 +9420,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "bitvec", "fatality", @@ -9437,7 +9437,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "always-assert", "futures", @@ -9465,7 +9465,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "futures", "polkadot-node-primitives", @@ -9481,7 +9481,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "cpu-time", "futures", @@ -9504,7 +9504,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-prepare-worker" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "futures", "libc", @@ -9527,7 +9527,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "futures", "polkadot-node-metrics", @@ -9542,7 +9542,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "lazy_static", "log", @@ -9560,7 +9560,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "bs58 0.5.0", "futures", @@ -9579,7 +9579,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-channel 1.9.0", "async-trait", @@ -9603,7 +9603,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "bounded-vec", "futures", @@ -9625,7 +9625,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -9635,7 +9635,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "derive_more", @@ -9659,7 +9659,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "derive_more", @@ -9692,7 +9692,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "futures", @@ -9715,7 +9715,7 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "bounded-collections", "derive_more", @@ -9732,7 +9732,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "env_logger 0.9.3", "log", @@ -9750,7 +9750,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "bitvec", "hex-literal 0.4.1", @@ -9776,7 +9776,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "jsonrpsee", "mmr-rpc", @@ -9808,7 +9808,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "bitvec", "frame-benchmarking", @@ -9905,7 +9905,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "bitvec", "frame-benchmarking", @@ -9951,7 +9951,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-support", "polkadot-primitives", @@ -9965,7 +9965,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "bs58 0.5.0", "frame-benchmarking", @@ -9978,7 +9978,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "bitflags 1.3.2", "bitvec", @@ -10024,7 +10024,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "frame-benchmarking", @@ -10145,7 +10145,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "arrayvec 0.7.4", "bitvec", @@ -10169,7 +10169,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -10981,7 +10981,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "binary-merkle-tree", "frame-benchmarking", @@ -11069,7 +11069,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-support", "polkadot-primitives", @@ -11443,7 +11443,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "log", "sp-core", @@ -11454,7 +11454,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "futures", @@ -11482,7 +11482,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "futures", "futures-timer", @@ -11505,7 +11505,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship-ver" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "aquamarine 0.3.2", "futures", @@ -11531,7 +11531,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -11546,7 +11546,7 @@ dependencies = [ [[package]] name = "sc-block-builder-ver" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -11566,7 +11566,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -11585,7 +11585,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11596,7 +11596,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "array-bytes", "chrono", @@ -11635,7 +11635,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "fnv", "futures", @@ -11661,7 +11661,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "hash-db", "kvdb", @@ -11687,7 +11687,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "futures", @@ -11712,7 +11712,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "futures", @@ -11741,7 +11741,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "fork-tree", @@ -11777,7 +11777,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "futures", "jsonrpsee", @@ -11799,7 +11799,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11833,7 +11833,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "futures", "jsonrpsee", @@ -11852,7 +11852,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "fork-tree", "parity-scale-codec", @@ -11865,7 +11865,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "ahash 0.8.6", "array-bytes", @@ -11906,7 +11906,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "finality-grandpa", "futures", @@ -11926,7 +11926,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "futures", @@ -11951,7 +11951,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -11973,7 +11973,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -11985,7 +11985,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "anyhow", "cfg-if", @@ -12002,7 +12002,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "ansi_term", "futures", @@ -12018,7 +12018,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "array-bytes", "parking_lot 0.12.1", @@ -12032,7 +12032,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -12073,7 +12073,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-channel 1.9.0", "cid", @@ -12093,7 +12093,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -12110,7 +12110,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "ahash 0.8.6", "futures", @@ -12128,7 +12128,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -12149,7 +12149,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -12183,7 +12183,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "array-bytes", "futures", @@ -12201,7 +12201,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "array-bytes", "bytes", @@ -12235,7 +12235,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -12244,7 +12244,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "futures", "jsonrpsee", @@ -12275,7 +12275,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12294,7 +12294,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "http", "jsonrpsee", @@ -12309,7 +12309,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "array-bytes", "futures", @@ -12337,7 +12337,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "directories", @@ -12403,7 +12403,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "log", "parity-scale-codec", @@ -12414,7 +12414,7 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "clap", "fs4", @@ -12428,7 +12428,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12447,7 +12447,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "futures", "libc", @@ -12466,7 +12466,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "chrono", "futures", @@ -12485,7 +12485,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "ansi_term", "atty", @@ -12514,7 +12514,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12525,7 +12525,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "futures", @@ -12551,7 +12551,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "futures", @@ -12567,7 +12567,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-channel 1.9.0", "futures", @@ -13086,7 +13086,7 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" [[package]] name = "slot-range-helper" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "enumn", "parity-scale-codec", @@ -13280,7 +13280,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "hash-db", "log", @@ -13301,7 +13301,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "Inflector", "blake2", @@ -13315,7 +13315,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "23.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "parity-scale-codec", "scale-info", @@ -13328,7 +13328,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "16.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "integer-sqrt", "num-traits", @@ -13342,7 +13342,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "parity-scale-codec", "scale-info", @@ -13355,7 +13355,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "sp-api", "sp-inherents", @@ -13366,7 +13366,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "futures", "log", @@ -13384,7 +13384,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "futures", @@ -13399,7 +13399,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "parity-scale-codec", @@ -13416,7 +13416,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "parity-scale-codec", @@ -13435,7 +13435,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "lazy_static", "parity-scale-codec", @@ -13454,7 +13454,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "finality-grandpa", "log", @@ -13472,7 +13472,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "parity-scale-codec", "scale-info", @@ -13484,7 +13484,7 @@ dependencies = [ [[package]] name = "sp-core" version = "21.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "array-bytes", "arrayvec 0.7.4", @@ -13532,7 +13532,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "9.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "blake2b_simd", "byteorder", @@ -13545,7 +13545,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "9.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "quote", "sp-core-hashing", @@ -13555,7 +13555,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -13564,7 +13564,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "proc-macro2", "quote", @@ -13574,7 +13574,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.19.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "environmental", "parity-scale-codec", @@ -13585,7 +13585,7 @@ dependencies = [ [[package]] name = "sp-genesis-builder" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "serde_json", "sp-api", @@ -13596,7 +13596,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -13610,7 +13610,7 @@ dependencies = [ [[package]] name = "sp-io" version = "23.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "bytes", "ed25519-dalek 2.1.0", @@ -13634,7 +13634,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "24.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "lazy_static", "sp-core", @@ -13645,7 +13645,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.27.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -13657,7 +13657,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "thiserror", "zstd 0.12.4", @@ -13666,7 +13666,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-metadata", "parity-scale-codec", @@ -13677,7 +13677,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -13695,7 +13695,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "parity-scale-codec", "scale-info", @@ -13709,7 +13709,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "sp-api", "sp-core", @@ -13719,7 +13719,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "backtrace", "lazy_static", @@ -13729,7 +13729,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "rustc-hash", "serde", @@ -13739,7 +13739,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "24.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "alloy-primitives", "alloy-sol-types", @@ -13764,7 +13764,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "17.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -13782,7 +13782,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "11.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "Inflector", "proc-macro-crate", @@ -13794,7 +13794,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "parity-scale-codec", "scale-info", @@ -13809,7 +13809,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -13823,7 +13823,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.28.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "hash-db", "log", @@ -13844,7 +13844,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "aes-gcm 0.10.3", "curve25519-dalek 4.1.1", @@ -13868,12 +13868,12 @@ dependencies = [ [[package]] name = "sp-std" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" [[package]] name = "sp-storage" version = "13.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13886,7 +13886,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "parity-scale-codec", @@ -13899,7 +13899,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "10.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "parity-scale-codec", "sp-std", @@ -13911,7 +13911,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "sp-api", "sp-runtime", @@ -13920,7 +13920,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "parity-scale-codec", @@ -13935,7 +13935,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "22.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "ahash 0.8.6", "hash-db", @@ -13958,7 +13958,7 @@ dependencies = [ [[package]] name = "sp-ver" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "parity-scale-codec", @@ -13975,7 +13975,7 @@ dependencies = [ [[package]] name = "sp-version" version = "22.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13992,7 +13992,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -14003,7 +14003,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "14.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -14016,7 +14016,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "20.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "parity-scale-codec", "scale-info", @@ -14095,7 +14095,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "staging-kusama-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "binary-merkle-tree", "bitvec", @@ -14201,7 +14201,7 @@ dependencies = [ [[package]] name = "staging-xcm" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "bounded-collections", "derivative", @@ -14218,7 +14218,7 @@ dependencies = [ [[package]] name = "staging-xcm-builder" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-support", "frame-system", @@ -14240,7 +14240,7 @@ dependencies = [ [[package]] name = "staging-xcm-executor" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "environmental", "frame-benchmarking", @@ -14373,12 +14373,12 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -14397,7 +14397,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "hyper", "log", @@ -14409,7 +14409,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "jsonrpsee", @@ -14422,7 +14422,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -14439,7 +14439,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "ansi_term", "build-helper", @@ -14993,7 +14993,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "coarsetime", "polkadot-node-jaeger", @@ -15005,7 +15005,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "expander 2.0.0", "proc-macro-crate", @@ -15135,7 +15135,7 @@ checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "async-trait", "clap", @@ -15359,7 +15359,7 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "ver-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "derive_more", "frame-support", @@ -16074,7 +16074,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "binary-merkle-tree", "bitvec", @@ -16173,7 +16173,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "frame-support", "polkadot-primitives", @@ -16551,7 +16551,7 @@ dependencies = [ [[package]] name = "xcm-emulator" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "cumulus-pallet-parachain-system", "cumulus-primitives-core", @@ -16583,7 +16583,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=feature/metamask#fa1586411fc9974164366233053f854f179cdf9c" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#bcdfff78b9737d3bb1f9741780e7da68a4e531ec" dependencies = [ "Inflector", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index 9e5ae9bf20..069c0482ff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,283 +30,283 @@ members = [ # but mangata-node uses `polkadot-sdk/develop` so we need to patch to use the same refs # patch generated by './scripts/dev_manifest.sh ../polkadot-sdk' & replaced local path with `develop` branch on polkadot-sdk [patch."https://github.com/mangata-finance/polkadot-sdk"] -pallet-whitelist = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-referenda = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-indices = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-offences = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-transaction-payment = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-asset-tx-payment = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-transaction-payment-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-collective-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-proxy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-identity = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-conviction-voting = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-sudo-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -mangata-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-child-bounties = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-beefy-mmr = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-collective = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-recovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-preimage = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-multisig = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-scheduler = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-nomination-pools = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-nomination-pools-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-society = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-utility-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-authorship = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-bounties = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-fast-unstake = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-transaction-payment-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-transaction-payment-mangata-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-transaction-payment-mangata-rpc-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-grandpa = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-ranked-collective = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-vesting-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -frame-system = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -frame-system-benchmarking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -frame-system-rpc-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-mmr = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-vesting = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -frame-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -frame-support-procedural = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -frame-support-procedural-tools = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -frame-support-procedural-tools-derive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-authority-discovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-im-online = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-staking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-staking-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-staking-reward-fn = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-bags-list = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -frame-election-provider-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -frame-election-provider-solution-type = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-tips = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-balances = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-message-queue = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-nis = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-state-trie-migration = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-beefy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-sudo = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -frame-benchmarking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-treasury = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -frame-try-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-timestamp = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-babe = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-elections-phragmen = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-assets = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-election-provider-multi-phase = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-democracy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-membership = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-root-testing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-utility = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -frame-executive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-session = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -substrate-wasm-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -fork-tree = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -substrate-build-script-utils = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -frame-remote-externalities = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -frame-benchmarking-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -try-runtime-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -substrate-frame-rpc-system = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -substrate-state-trie-migration-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -substrate-rpc-client = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -binary-merkle-tree = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -substrate-prometheus-endpoint = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-database = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-runtime-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-runtime-interface-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-consensus-grandpa = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-consensus = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-consensus-beefy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-consensus-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-consensus-babe = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-consensus-slots = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-tracing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-ver = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-maybe-compressed-blob = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-core = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-core-hashing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-core-hashing-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-state-machine = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-keystore = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-metadata-ir = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-statement-store = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-weights = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-io = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-inherents = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-transaction-pool = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-std = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-storage = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-panic-handler = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-debug-derive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-blockchain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-externalities = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-trie = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-mmr-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -mangata-types = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-version = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-version-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-authority-discovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-block-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-keyring = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-staking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-wasm-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-transaction-storage-proof = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -extrinsic-shuffler = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-arithmetic = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-api-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-offchain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-timestamp = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-application-crypto = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -ver-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-npos-elections = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-genesis-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sp-session = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-consensus-grandpa = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-consensus-grandpa-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-consensus = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-consensus-epochs = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-consensus-beefy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-consensus-beefy-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-consensus-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-consensus-babe = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-consensus-babe-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-consensus-slots = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-tracing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-tracing-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-rpc-spec-v2 = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-state-db = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-proposer-metrics = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-keystore = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-basic-authorship-ver = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-rpc-server = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-network = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-network-bitswap = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-network-transactions = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-network-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-network-light = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-network-sync = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-informant = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-transaction-pool = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-transaction-pool-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-utils = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-chain-spec = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-chain-spec-derive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-sync-state-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-basic-authorship = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-block-builder-ver = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -mmr-gadget = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -mmr-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-storage-monitor = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-authority-discovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-block-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-allocator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-network-gossip = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-client-db = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-client-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-sysinfo = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-executor = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-executor-wasmtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-executor-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-telemetry = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-offchain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-service = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -sc-rpc-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -xcm-emulator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-test-relay-sproof-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-primitives-core = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-primitives-parachain-inherent = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-primitives-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-primitives-timestamp = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-primitives-utility = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-pallet-xcm = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-pallet-dmp-queue = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-pallet-xcmp-queue = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-pallet-aura-ext = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-pallet-session-benchmarking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-pallet-parachain-system = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-pallet-parachain-system-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-collator-selection = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-client-consensus-proposer = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-client-consensus-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-client-consensus-relay-chain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-client-consensus-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-relay-chain-minimal-node = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-relay-chain-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-client-network = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-client-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-relay-chain-inprocess-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-client-pov-recovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-client-collator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-client-service = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -cumulus-relay-chain-rpc-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -parachains-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -parachain-info = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-parachain-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -staging-xcm = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -staging-xcm-executor = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -staging-xcm-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -xcm-procedural = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -pallet-xcm = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-statement-table = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-erasure-coding = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-runtime-metrics = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -rococo-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -rococo-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -staging-kusama-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -kusama-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-runtime-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -slot-range-helper = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -westend-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-runtime-parachains = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-node-metrics = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -tracing-gum = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -tracing-gum-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-node-core-candidate-validation = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-node-core-prospective-parachains = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-node-core-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-node-core-parachains-inherent = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-node-core-av-store = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-node-core-approval-voting = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-node-core-pvf = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-node-core-pvf-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-node-core-dispute-coordinator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-node-core-chain-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-node-core-backing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-node-core-provisioner = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-node-core-chain-selection = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-node-core-bitfield-signing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-node-core-pvf-checker = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-node-subsystem-types = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-node-collation-generation = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-node-jaeger = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-availability-bitfield-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-gossip-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-network-bridge = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-node-network-protocol = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-approval-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-statement-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-availability-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-availability-recovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-collator-protocol = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-dispute-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-node-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-node-subsystem = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-node-subsystem-util = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-service = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-overseer = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } -polkadot-core-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "feature/metamask" } +pallet-whitelist = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-referenda = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-indices = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-offences = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-transaction-payment = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-asset-tx-payment = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-transaction-payment-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-collective-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-proxy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-identity = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-conviction-voting = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-sudo-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +mangata-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-child-bounties = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-beefy-mmr = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-collective = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-recovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-preimage = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-multisig = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-scheduler = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-nomination-pools = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-nomination-pools-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-society = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-utility-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-authorship = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-bounties = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-fast-unstake = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-transaction-payment-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-transaction-payment-mangata-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-transaction-payment-mangata-rpc-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-grandpa = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-ranked-collective = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-vesting-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +frame-system = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +frame-system-benchmarking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +frame-system-rpc-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-mmr = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-vesting = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +frame-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +frame-support-procedural = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +frame-support-procedural-tools = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +frame-support-procedural-tools-derive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-authority-discovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-im-online = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-staking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-staking-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-staking-reward-fn = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-bags-list = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +frame-election-provider-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +frame-election-provider-solution-type = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-tips = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-balances = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-message-queue = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-nis = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-state-trie-migration = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-beefy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-sudo = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +frame-benchmarking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-treasury = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +frame-try-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-timestamp = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-babe = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-elections-phragmen = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-assets = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-election-provider-multi-phase = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-democracy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-membership = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-root-testing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-utility = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +frame-executive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-session = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +substrate-wasm-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +fork-tree = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +substrate-build-script-utils = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +frame-remote-externalities = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +frame-benchmarking-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +try-runtime-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +substrate-frame-rpc-system = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +substrate-state-trie-migration-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +substrate-rpc-client = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +binary-merkle-tree = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +substrate-prometheus-endpoint = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-database = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-runtime-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-runtime-interface-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-consensus-grandpa = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-consensus = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-consensus-beefy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-consensus-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-consensus-babe = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-consensus-slots = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-tracing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-ver = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-maybe-compressed-blob = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-core = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-core-hashing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-core-hashing-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-state-machine = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-keystore = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-metadata-ir = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-statement-store = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-weights = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-io = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-inherents = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-transaction-pool = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-std = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-storage = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-panic-handler = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-debug-derive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-blockchain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-externalities = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-trie = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-mmr-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +mangata-types = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-version = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-version-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-authority-discovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-block-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-keyring = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-staking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-wasm-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-transaction-storage-proof = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +extrinsic-shuffler = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-arithmetic = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-api-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-offchain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-timestamp = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-application-crypto = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +ver-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-npos-elections = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-genesis-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sp-session = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-consensus-grandpa = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-consensus-grandpa-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-consensus = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-consensus-epochs = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-consensus-beefy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-consensus-beefy-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-consensus-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-consensus-babe = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-consensus-babe-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-consensus-slots = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-tracing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-tracing-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-rpc-spec-v2 = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-state-db = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-proposer-metrics = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-keystore = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-basic-authorship-ver = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-rpc-server = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-network = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-network-bitswap = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-network-transactions = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-network-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-network-light = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-network-sync = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-informant = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-transaction-pool = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-transaction-pool-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-utils = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-chain-spec = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-chain-spec-derive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-sync-state-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-basic-authorship = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-block-builder-ver = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +mmr-gadget = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +mmr-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-storage-monitor = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-authority-discovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-block-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-allocator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-network-gossip = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-client-db = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-client-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-sysinfo = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-executor = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-executor-wasmtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-executor-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-telemetry = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-offchain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-service = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +sc-rpc-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +xcm-emulator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-test-relay-sproof-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-primitives-core = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-primitives-parachain-inherent = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-primitives-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-primitives-timestamp = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-primitives-utility = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-pallet-xcm = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-pallet-dmp-queue = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-pallet-xcmp-queue = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-pallet-aura-ext = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-pallet-session-benchmarking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-pallet-parachain-system = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-pallet-parachain-system-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-collator-selection = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-client-consensus-proposer = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-client-consensus-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-client-consensus-relay-chain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-client-consensus-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-relay-chain-minimal-node = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-relay-chain-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-client-network = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-client-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-relay-chain-inprocess-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-client-pov-recovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-client-collator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-client-service = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +cumulus-relay-chain-rpc-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +parachains-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +parachain-info = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-parachain-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +staging-xcm = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +staging-xcm-executor = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +staging-xcm-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +xcm-procedural = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +pallet-xcm = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-statement-table = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-erasure-coding = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-runtime-metrics = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +rococo-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +rococo-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +staging-kusama-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +kusama-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-runtime-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +slot-range-helper = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +westend-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-runtime-parachains = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-node-metrics = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +tracing-gum = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +tracing-gum-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-node-core-candidate-validation = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-node-core-prospective-parachains = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-node-core-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-node-core-parachains-inherent = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-node-core-av-store = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-node-core-approval-voting = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-node-core-pvf = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-node-core-pvf-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-node-core-dispute-coordinator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-node-core-chain-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-node-core-backing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-node-core-provisioner = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-node-core-chain-selection = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-node-core-bitfield-signing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-node-core-pvf-checker = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-node-subsystem-types = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-node-collation-generation = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-node-jaeger = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-availability-bitfield-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-gossip-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-network-bridge = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-node-network-protocol = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-approval-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-statement-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-availability-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-availability-recovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-collator-protocol = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-dispute-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-node-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-node-subsystem = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-node-subsystem-util = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-service = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-overseer = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } +polkadot-core-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" } # patch generated by './scripts/dev_manifest.sh ../open-runtime-module-library' [patch."https://github.com/mangata-finance/open-runtime-module-library"]