git.delta.rocks / unique-network / refs/commits / dc38b79c20db

difftreelog

Merge branch 'develop' into fix/remove-dev-deps-from-fa

Yaroslav Bolyukin2023-01-26parents: #0067fc2 #21098dd.patch.diff
in: master

42 files changed

modifiedCargo.lockdiffbeforeafterboth
27source = "registry+https://github.com/rust-lang/crates.io-index"27source = "registry+https://github.com/rust-lang/crates.io-index"
28checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"28checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
29dependencies = [29dependencies = [
30 "gimli 0.27.0",30 "gimli 0.27.1",
31]31]
3232
33[[package]]33[[package]]
36source = "registry+https://github.com/rust-lang/crates.io-index"36source = "registry+https://github.com/rust-lang/crates.io-index"
37checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"37checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
38
39[[package]]
40name = "aead"
41version = "0.3.2"
42source = "registry+https://github.com/rust-lang/crates.io-index"
43checksum = "7fc95d1bdb8e6666b2b217308eeeb09f2d6728d104be3e31916cc74d15420331"
44dependencies = [
45 "generic-array 0.14.6",
46]
3847
39[[package]]48[[package]]
40name = "aead"49name = "aead"
43checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877"52checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877"
44dependencies = [53dependencies = [
45 "generic-array 0.14.6",54 "generic-array 0.14.6",
55 "rand_core 0.6.4",
46]56]
57
58[[package]]
59name = "aes"
60version = "0.6.0"
61source = "registry+https://github.com/rust-lang/crates.io-index"
62checksum = "884391ef1066acaa41e766ba8f596341b96e93ce34f9a43e7d24bf0a0eaf0561"
63dependencies = [
64 "aes-soft",
65 "aesni",
66 "cipher 0.2.5",
67]
4768
48[[package]]69[[package]]
49name = "aes"70name = "aes"
52checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8"73checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8"
53dependencies = [74dependencies = [
54 "cfg-if",75 "cfg-if",
55 "cipher",76 "cipher 0.3.0",
56 "cpufeatures",77 "cpufeatures",
57 "opaque-debug 0.3.0",78 "opaque-debug 0.3.0",
58]79]
80
81[[package]]
82name = "aes-gcm"
83version = "0.8.0"
84source = "registry+https://github.com/rust-lang/crates.io-index"
85checksum = "5278b5fabbb9bd46e24aa69b2fdea62c99088e0a950a9be40e3e0101298f88da"
86dependencies = [
87 "aead 0.3.2",
88 "aes 0.6.0",
89 "cipher 0.2.5",
90 "ctr 0.6.0",
91 "ghash 0.3.1",
92 "subtle",
93]
5994
60[[package]]95[[package]]
61name = "aes-gcm"96name = "aes-gcm"
62version = "0.9.4"97version = "0.9.4"
63source = "registry+https://github.com/rust-lang/crates.io-index"98source = "registry+https://github.com/rust-lang/crates.io-index"
64checksum = "df5f85a83a7d8b0442b6aa7b504b8212c1733da07b98aae43d4bc21b2cb3cdf6"99checksum = "df5f85a83a7d8b0442b6aa7b504b8212c1733da07b98aae43d4bc21b2cb3cdf6"
65dependencies = [100dependencies = [
66 "aead",101 "aead 0.4.3",
67 "aes",102 "aes 0.7.5",
68 "cipher",103 "cipher 0.3.0",
69 "ctr",104 "ctr 0.8.0",
70 "ghash",105 "ghash 0.4.4",
71 "subtle",106 "subtle",
72]107]
108
109[[package]]
110name = "aes-soft"
111version = "0.6.4"
112source = "registry+https://github.com/rust-lang/crates.io-index"
113checksum = "be14c7498ea50828a38d0e24a765ed2effe92a705885b57d029cd67d45744072"
114dependencies = [
115 "cipher 0.2.5",
116 "opaque-debug 0.3.0",
117]
118
119[[package]]
120name = "aesni"
121version = "0.10.0"
122source = "registry+https://github.com/rust-lang/crates.io-index"
123checksum = "ea2e11f5e94c2f7d386164cc2aa1f97823fed6f259e486940a71c174dd01b0ce"
124dependencies = [
125 "cipher 0.2.5",
126 "opaque-debug 0.3.0",
127]
73128
74[[package]]129[[package]]
75name = "ahash"130name = "ahash"
141 "num-traits",196 "num-traits",
142]197]
198
199[[package]]
200name = "arc-swap"
201version = "1.6.0"
202source = "registry+https://github.com/rust-lang/crates.io-index"
203checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6"
143204
144[[package]]205[[package]]
145name = "array-bytes"206name = "array-bytes"
171source = "registry+https://github.com/rust-lang/crates.io-index"232source = "registry+https://github.com/rust-lang/crates.io-index"
172checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"233checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
234
235[[package]]
236name = "asn1-rs"
237version = "0.3.1"
238source = "registry+https://github.com/rust-lang/crates.io-index"
239checksum = "30ff05a702273012438132f449575dbc804e27b2f3cbe3069aa237d26c98fa33"
240dependencies = [
241 "asn1-rs-derive 0.1.0",
242 "asn1-rs-impl",
243 "displaydoc",
244 "nom",
245 "num-traits",
246 "rusticata-macros",
247 "thiserror",
248 "time 0.3.17",
249]
250
251[[package]]
252name = "asn1-rs"
253version = "0.5.1"
254source = "registry+https://github.com/rust-lang/crates.io-index"
255checksum = "cf6690c370453db30743b373a60ba498fc0d6d83b11f4abfd87a84a075db5dd4"
256dependencies = [
257 "asn1-rs-derive 0.4.0",
258 "asn1-rs-impl",
259 "displaydoc",
260 "nom",
261 "num-traits",
262 "rusticata-macros",
263 "thiserror",
264 "time 0.3.17",
265]
266
267[[package]]
268name = "asn1-rs-derive"
269version = "0.1.0"
270source = "registry+https://github.com/rust-lang/crates.io-index"
271checksum = "db8b7511298d5b7784b40b092d9e9dcd3a627a5707e4b5e507931ab0d44eeebf"
272dependencies = [
273 "proc-macro2",
274 "quote",
275 "syn",
276 "synstructure",
277]
278
279[[package]]
280name = "asn1-rs-derive"
281version = "0.4.0"
282source = "registry+https://github.com/rust-lang/crates.io-index"
283checksum = "726535892e8eae7e70657b4c8ea93d26b8553afb1ce617caee529ef96d7dee6c"
284dependencies = [
285 "proc-macro2",
286 "quote",
287 "syn",
288 "synstructure",
289]
290
291[[package]]
292name = "asn1-rs-impl"
293version = "0.1.0"
294source = "registry+https://github.com/rust-lang/crates.io-index"
295checksum = "2777730b2039ac0f95f093556e61b6d26cebed5393ca6f152717777cec3a42ed"
296dependencies = [
297 "proc-macro2",
298 "quote",
299 "syn",
300]
173301
174[[package]]302[[package]]
175name = "asn1_der"303name = "asn1_der"
183source = "registry+https://github.com/rust-lang/crates.io-index"311source = "registry+https://github.com/rust-lang/crates.io-index"
184checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9"312checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9"
185
186[[package]]
187name = "async-attributes"
188version = "1.1.2"
189source = "registry+https://github.com/rust-lang/crates.io-index"
190checksum = "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5"
191dependencies = [
192 "quote",
193 "syn",
194]
195
196[[package]]
197name = "async-channel"
198version = "1.8.0"
199source = "registry+https://github.com/rust-lang/crates.io-index"
200checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833"
201dependencies = [
202 "concurrent-queue",
203 "event-listener",
204 "futures-core",
205]
206
207[[package]]
208name = "async-executor"
209version = "1.5.0"
210source = "registry+https://github.com/rust-lang/crates.io-index"
211checksum = "17adb73da160dfb475c183343c8cccd80721ea5a605d3eb57125f0a7b7a92d0b"
212dependencies = [
213 "async-lock",
214 "async-task",
215 "concurrent-queue",
216 "fastrand",
217 "futures-lite",
218 "slab",
219]
220
221[[package]]
222name = "async-global-executor"
223version = "2.3.1"
224source = "registry+https://github.com/rust-lang/crates.io-index"
225checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776"
226dependencies = [
227 "async-channel",
228 "async-executor",
229 "async-io",
230 "async-lock",
231 "blocking",
232 "futures-lite",
233 "once_cell",
234]
235313
236[[package]]314[[package]]
237name = "async-io"315name = "async-io"
263 "futures-lite",341 "futures-lite",
264]342]
265
266[[package]]
267name = "async-process"
268version = "1.6.0"
269source = "registry+https://github.com/rust-lang/crates.io-index"
270checksum = "6381ead98388605d0d9ff86371043b5aa922a3905824244de40dc263a14fcba4"
271dependencies = [
272 "async-io",
273 "async-lock",
274 "autocfg",
275 "blocking",
276 "cfg-if",
277 "event-listener",
278 "futures-lite",
279 "libc",
280 "signal-hook",
281 "windows-sys 0.42.0",
282]
283
284[[package]]
285name = "async-std"
286version = "1.12.0"
287source = "registry+https://github.com/rust-lang/crates.io-index"
288checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d"
289dependencies = [
290 "async-attributes",
291 "async-channel",
292 "async-global-executor",
293 "async-io",
294 "async-lock",
295 "crossbeam-utils",
296 "futures-channel",
297 "futures-core",
298 "futures-io",
299 "futures-lite",
300 "gloo-timers",
301 "kv-log-macro",
302 "log",
303 "memchr",
304 "once_cell",
305 "pin-project-lite 0.2.9",
306 "pin-utils",
307 "slab",
308 "wasm-bindgen-futures",
309]
310
311[[package]]
312name = "async-task"
313version = "4.3.0"
314source = "registry+https://github.com/rust-lang/crates.io-index"
315checksum = "7a40729d2133846d9ed0ea60a8b9541bccddab49cd30f0715a1da672fe9a2524"
316343
317[[package]]344[[package]]
318name = "async-trait"345name = "async-trait"
319version = "0.1.61"346version = "0.1.63"
320source = "registry+https://github.com/rust-lang/crates.io-index"347source = "registry+https://github.com/rust-lang/crates.io-index"
321checksum = "705339e0e4a9690e2908d2b3d049d85682cf19fbd5782494498fbf7003a6a282"348checksum = "eff18d764974428cf3a9328e23fc5c986f5fbed46e6cd4cdf42544df5d297ec1"
322dependencies = [349dependencies = [
323 "proc-macro2",350 "proc-macro2",
324 "quote",351 "quote",
384 "cfg-if",411 "cfg-if",
385 "libc",412 "libc",
386 "miniz_oxide",413 "miniz_oxide",
387 "object 0.30.2",414 "object 0.30.3",
388 "rustc-demangle",415 "rustc-demangle",
389]416]
390417
436[[package]]463[[package]]
437name = "beefy-gadget"464name = "beefy-gadget"
438version = "4.0.0-dev"465version = "4.0.0-dev"
439source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"466source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
440dependencies = [467dependencies = [
441 "array-bytes 4.2.0",468 "array-bytes 4.2.0",
442 "async-trait",469 "async-trait",
443 "fnv",470 "fnv",
444 "futures",471 "futures",
445 "futures-timer",
446 "log",472 "log",
447 "parity-scale-codec",473 "parity-scale-codec",
448 "parking_lot 0.12.1",474 "parking_lot 0.12.1",
449 "sc-chain-spec",
450 "sc-client-api",475 "sc-client-api",
451 "sc-consensus",476 "sc-consensus",
452 "sc-finality-grandpa",
453 "sc-keystore",477 "sc-keystore",
454 "sc-network",478 "sc-network",
455 "sc-network-common",479 "sc-network-common",
473[[package]]497[[package]]
474name = "beefy-gadget-rpc"498name = "beefy-gadget-rpc"
475version = "4.0.0-dev"499version = "4.0.0-dev"
476source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"500source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
477dependencies = [501dependencies = [
478 "beefy-gadget",502 "beefy-gadget",
479 "futures",503 "futures",
482 "parity-scale-codec",506 "parity-scale-codec",
483 "parking_lot 0.12.1",507 "parking_lot 0.12.1",
484 "sc-rpc",508 "sc-rpc",
485 "sc-utils",
486 "serde",509 "serde",
487 "sp-beefy",510 "sp-beefy",
488 "sp-core",511 "sp-core",
493[[package]]516[[package]]
494name = "beefy-merkle-tree"517name = "beefy-merkle-tree"
495version = "4.0.0-dev"518version = "4.0.0-dev"
496source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"519source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
497dependencies = [520dependencies = [
498 "sp-api",521 "sp-api",
499 "sp-beefy",522 "sp-beefy",
597source = "registry+https://github.com/rust-lang/crates.io-index"620source = "registry+https://github.com/rust-lang/crates.io-index"
598checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"621checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
599dependencies = [622dependencies = [
600 "block-padding",623 "block-padding 0.1.5",
601 "byte-tools",624 "byte-tools",
602 "byteorder",625 "byteorder",
603 "generic-array 0.12.4",626 "generic-array 0.12.4",
621 "generic-array 0.14.6",644 "generic-array 0.14.6",
622]645]
646
647[[package]]
648name = "block-modes"
649version = "0.7.0"
650source = "registry+https://github.com/rust-lang/crates.io-index"
651checksum = "57a0e8073e8baa88212fb5823574c02ebccb395136ba9a164ab89379ec6072f0"
652dependencies = [
653 "block-padding 0.2.1",
654 "cipher 0.2.5",
655]
623656
624[[package]]657[[package]]
625name = "block-padding"658name = "block-padding"
631]664]
632665
633[[package]]666[[package]]
634name = "blocking"667name = "block-padding"
635version = "1.3.0"668version = "0.2.1"
636source = "registry+https://github.com/rust-lang/crates.io-index"669source = "registry+https://github.com/rust-lang/crates.io-index"
637checksum = "3c67b173a56acffd6d2326fb7ab938ba0b00a71480e14902b2591c87bc5741e8"670checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae"
638dependencies = [
639 "async-channel",
640 "async-lock",
641 "async-task",
642 "atomic-waker",
643 "fastrand",
644 "futures-lite",
645]
646671
647[[package]]672[[package]]
648name = "bondrewd"673name = "bondrewd"
790 "jobserver",815 "jobserver",
791]816]
817
818[[package]]
819name = "ccm"
820version = "0.3.0"
821source = "registry+https://github.com/rust-lang/crates.io-index"
822checksum = "5aca1a8fbc20b50ac9673ff014abfb2b5f4085ee1a850d408f14a159c5853ac7"
823dependencies = [
824 "aead 0.3.2",
825 "cipher 0.2.5",
826 "subtle",
827]
792828
793[[package]]829[[package]]
794name = "cexpr"830name = "cexpr"
827checksum = "5c80e5460aa66fe3b91d40bcbdab953a597b60053e34d684ac6903f863b680a6"863checksum = "5c80e5460aa66fe3b91d40bcbdab953a597b60053e34d684ac6903f863b680a6"
828dependencies = [864dependencies = [
829 "cfg-if",865 "cfg-if",
830 "cipher",866 "cipher 0.3.0",
831 "cpufeatures",867 "cpufeatures",
832 "zeroize",868 "zeroize",
833]869]
838source = "registry+https://github.com/rust-lang/crates.io-index"874source = "registry+https://github.com/rust-lang/crates.io-index"
839checksum = "a18446b09be63d457bbec447509e85f662f32952b035ce892290396bc0b0cff5"875checksum = "a18446b09be63d457bbec447509e85f662f32952b035ce892290396bc0b0cff5"
840dependencies = [876dependencies = [
841 "aead",877 "aead 0.4.3",
842 "chacha20",878 "chacha20",
843 "cipher",879 "cipher 0.3.0",
844 "poly1305",880 "poly1305",
845 "zeroize",881 "zeroize",
846]882]
855 "js-sys",891 "js-sys",
856 "num-integer",892 "num-integer",
857 "num-traits",893 "num-traits",
858 "time",894 "time 0.1.45",
859 "wasm-bindgen",895 "wasm-bindgen",
860 "winapi",896 "winapi",
861]897]
873 "unsigned-varint",909 "unsigned-varint",
874]910]
911
912[[package]]
913name = "cipher"
914version = "0.2.5"
915source = "registry+https://github.com/rust-lang/crates.io-index"
916checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801"
917dependencies = [
918 "generic-array 0.14.6",
919]
875920
876[[package]]921[[package]]
877name = "cipher"922name = "cipher"
904949
905[[package]]950[[package]]
906name = "clap"951name = "clap"
907version = "4.1.1"952version = "4.1.4"
908source = "registry+https://github.com/rust-lang/crates.io-index"953source = "registry+https://github.com/rust-lang/crates.io-index"
909checksum = "4ec7a4128863c188deefe750ac1d1dfe66c236909f845af04beed823638dc1b2"954checksum = "f13b9c79b5d1dd500d20ef541215a6423c75829ef43117e1b4d17fd8af0b5d76"
910dependencies = [955dependencies = [
911 "bitflags",956 "bitflags",
912 "clap_derive",957 "clap_derive",
1070 "libc",1115 "libc",
1071]1116]
1117
1118[[package]]
1119name = "cpuid-bool"
1120version = "0.2.0"
1121source = "registry+https://github.com/rust-lang/crates.io-index"
1122checksum = "dcb25d077389e53838a8158c8e99174c5a9d902dee4904320db714f3c653ffba"
10721123
1073[[package]]1124[[package]]
1074name = "cranelift-bforest"1125name = "cranelift-bforest"
1168 "wasmtime-types",1219 "wasmtime-types",
1169]1220]
1221
1222[[package]]
1223name = "crc"
1224version = "3.0.0"
1225source = "registry+https://github.com/rust-lang/crates.io-index"
1226checksum = "53757d12b596c16c78b83458d732a5d1a17ab3f53f2f7412f6fb57cc8a140ab3"
1227dependencies = [
1228 "crc-catalog",
1229]
1230
1231[[package]]
1232name = "crc-catalog"
1233version = "2.2.0"
1234source = "registry+https://github.com/rust-lang/crates.io-index"
1235checksum = "9cace84e55f07e7301bae1c519df89cdad8cc3cd868413d3fdbdeca9ff3db484"
11701236
1171[[package]]1237[[package]]
1172name = "crc32fast"1238name = "crc32fast"
1268 "subtle",1334 "subtle",
1269]1335]
1336
1337[[package]]
1338name = "crypto-mac"
1339version = "0.10.1"
1340source = "registry+https://github.com/rust-lang/crates.io-index"
1341checksum = "bff07008ec701e8028e2ceb8f83f0e4274ee62bd2dbdc4fefff2e9a91824081a"
1342dependencies = [
1343 "generic-array 0.14.6",
1344 "subtle",
1345]
12701346
1271[[package]]1347[[package]]
1272name = "crypto-mac"1348name = "crypto-mac"
1288 "syn",1364 "syn",
1289]1365]
1366
1367[[package]]
1368name = "ctr"
1369version = "0.6.0"
1370source = "registry+https://github.com/rust-lang/crates.io-index"
1371checksum = "fb4a30d54f7443bf3d6191dcd486aca19e67cb3c49fa7a06a319966346707e7f"
1372dependencies = [
1373 "cipher 0.2.5",
1374]
12901375
1291[[package]]1376[[package]]
1292name = "ctr"1377name = "ctr"
1293version = "0.8.0"1378version = "0.8.0"
1294source = "registry+https://github.com/rust-lang/crates.io-index"1379source = "registry+https://github.com/rust-lang/crates.io-index"
1295checksum = "049bb91fb4aaf0e3c7efa6cd5ef877dbbbd15b39dad06d9948de4ec8a75761ea"1380checksum = "049bb91fb4aaf0e3c7efa6cd5ef877dbbbd15b39dad06d9948de4ec8a75761ea"
1296dependencies = [1381dependencies = [
1297 "cipher",1382 "cipher 0.3.0",
1298]1383]
12991384
1300[[package]]1385[[package]]
1301name = "cumulus-client-cli"1386name = "cumulus-client-cli"
1302version = "0.1.0"1387version = "0.1.0"
1303source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0"1388source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b"
1304dependencies = [1389dependencies = [
1305 "clap",1390 "clap",
1306 "parity-scale-codec",1391 "parity-scale-codec",
1315[[package]]1400[[package]]
1316name = "cumulus-client-collator"1401name = "cumulus-client-collator"
1317version = "0.1.0"1402version = "0.1.0"
1318source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0"1403source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b"
1319dependencies = [1404dependencies = [
1320 "cumulus-client-consensus-common",1405 "cumulus-client-consensus-common",
1321 "cumulus-client-network",1406 "cumulus-client-network",
1338[[package]]1423[[package]]
1339name = "cumulus-client-consensus-aura"1424name = "cumulus-client-consensus-aura"
1340version = "0.1.0"1425version = "0.1.0"
1341source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0"1426source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b"
1342dependencies = [1427dependencies = [
1343 "async-trait",1428 "async-trait",
1344 "cumulus-client-consensus-common",1429 "cumulus-client-consensus-common",
1367[[package]]1452[[package]]
1368name = "cumulus-client-consensus-common"1453name = "cumulus-client-consensus-common"
1369version = "0.1.0"1454version = "0.1.0"
1370source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0"1455source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b"
1371dependencies = [1456dependencies = [
1372 "async-trait",1457 "async-trait",
1373 "cumulus-client-pov-recovery",1458 "cumulus-client-pov-recovery",
1390[[package]]1475[[package]]
1391name = "cumulus-client-network"1476name = "cumulus-client-network"
1392version = "0.1.0"1477version = "0.1.0"
1393source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0"1478source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b"
1394dependencies = [1479dependencies = [
1395 "async-trait",1480 "async-trait",
1396 "cumulus-relay-chain-interface",1481 "cumulus-relay-chain-interface",
1413[[package]]1498[[package]]
1414name = "cumulus-client-pov-recovery"1499name = "cumulus-client-pov-recovery"
1415version = "0.1.0"1500version = "0.1.0"
1416source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0"1501source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b"
1417dependencies = [1502dependencies = [
1418 "cumulus-primitives-core",1503 "cumulus-primitives-core",
1419 "cumulus-relay-chain-interface",1504 "cumulus-relay-chain-interface",
1436[[package]]1521[[package]]
1437name = "cumulus-client-service"1522name = "cumulus-client-service"
1438version = "0.1.0"1523version = "0.1.0"
1439source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0"1524source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b"
1440dependencies = [1525dependencies = [
1441 "cumulus-client-cli",1526 "cumulus-client-cli",
1442 "cumulus-client-collator",1527 "cumulus-client-collator",
1464[[package]]1549[[package]]
1465name = "cumulus-pallet-aura-ext"1550name = "cumulus-pallet-aura-ext"
1466version = "0.1.0"1551version = "0.1.0"
1467source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0"1552source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b"
1468dependencies = [1553dependencies = [
1469 "frame-support",1554 "frame-support",
1470 "frame-system",1555 "frame-system",
1480[[package]]1565[[package]]
1481name = "cumulus-pallet-dmp-queue"1566name = "cumulus-pallet-dmp-queue"
1482version = "0.1.0"1567version = "0.1.0"
1483source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0"1568source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b"
1484dependencies = [1569dependencies = [
1485 "cumulus-primitives-core",1570 "cumulus-primitives-core",
1486 "frame-support",1571 "frame-support",
1497[[package]]1582[[package]]
1498name = "cumulus-pallet-parachain-system"1583name = "cumulus-pallet-parachain-system"
1499version = "0.1.0"1584version = "0.1.0"
1500source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0"1585source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b"
1501dependencies = [1586dependencies = [
1502 "bytes",1587 "bytes",
1503 "cumulus-pallet-parachain-system-proc-macro",1588 "cumulus-pallet-parachain-system-proc-macro",
1525[[package]]1610[[package]]
1526name = "cumulus-pallet-parachain-system-proc-macro"1611name = "cumulus-pallet-parachain-system-proc-macro"
1527version = "0.1.0"1612version = "0.1.0"
1528source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0"1613source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b"
1529dependencies = [1614dependencies = [
1530 "proc-macro-crate",1615 "proc-macro-crate",
1531 "proc-macro2",1616 "proc-macro2",
1536[[package]]1621[[package]]
1537name = "cumulus-pallet-xcm"1622name = "cumulus-pallet-xcm"
1538version = "0.1.0"1623version = "0.1.0"
1539source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0"1624source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b"
1540dependencies = [1625dependencies = [
1541 "cumulus-primitives-core",1626 "cumulus-primitives-core",
1542 "frame-support",1627 "frame-support",
1552[[package]]1637[[package]]
1553name = "cumulus-pallet-xcmp-queue"1638name = "cumulus-pallet-xcmp-queue"
1554version = "0.1.0"1639version = "0.1.0"
1555source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0"1640source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b"
1556dependencies = [1641dependencies = [
1557 "cumulus-primitives-core",1642 "cumulus-primitives-core",
1558 "frame-support",1643 "frame-support",
1570[[package]]1655[[package]]
1571name = "cumulus-primitives-core"1656name = "cumulus-primitives-core"
1572version = "0.1.0"1657version = "0.1.0"
1573source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0"1658source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b"
1574dependencies = [1659dependencies = [
1575 "parity-scale-codec",1660 "parity-scale-codec",
1576 "polkadot-core-primitives",1661 "polkadot-core-primitives",
1585[[package]]1670[[package]]
1586name = "cumulus-primitives-parachain-inherent"1671name = "cumulus-primitives-parachain-inherent"
1587version = "0.1.0"1672version = "0.1.0"
1588source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0"1673source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b"
1589dependencies = [1674dependencies = [
1590 "async-trait",1675 "async-trait",
1591 "cumulus-primitives-core",1676 "cumulus-primitives-core",
1608[[package]]1693[[package]]
1609name = "cumulus-primitives-timestamp"1694name = "cumulus-primitives-timestamp"
1610version = "0.1.0"1695version = "0.1.0"
1611source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0"1696source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b"
1612dependencies = [1697dependencies = [
1613 "cumulus-primitives-core",1698 "cumulus-primitives-core",
1614 "futures",1699 "futures",
1621[[package]]1706[[package]]
1622name = "cumulus-primitives-utility"1707name = "cumulus-primitives-utility"
1623version = "0.1.0"1708version = "0.1.0"
1624source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0"1709source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b"
1625dependencies = [1710dependencies = [
1626 "cumulus-primitives-core",1711 "cumulus-primitives-core",
1627 "frame-support",1712 "frame-support",
1637[[package]]1722[[package]]
1638name = "cumulus-relay-chain-inprocess-interface"1723name = "cumulus-relay-chain-inprocess-interface"
1639version = "0.1.0"1724version = "0.1.0"
1640source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0"1725source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b"
1641dependencies = [1726dependencies = [
1642 "async-trait",1727 "async-trait",
1643 "cumulus-primitives-core",1728 "cumulus-primitives-core",
1662[[package]]1747[[package]]
1663name = "cumulus-relay-chain-interface"1748name = "cumulus-relay-chain-interface"
1664version = "0.1.0"1749version = "0.1.0"
1665source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0"1750source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b"
1666dependencies = [1751dependencies = [
1667 "async-trait",1752 "async-trait",
1668 "cumulus-primitives-core",1753 "cumulus-primitives-core",
1682[[package]]1767[[package]]
1683name = "cumulus-relay-chain-minimal-node"1768name = "cumulus-relay-chain-minimal-node"
1684version = "0.1.0"1769version = "0.1.0"
1685source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0"1770source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b"
1686dependencies = [1771dependencies = [
1687 "array-bytes 6.0.0",1772 "array-bytes 6.0.0",
1688 "async-trait",1773 "async-trait",
1722[[package]]1807[[package]]
1723name = "cumulus-relay-chain-rpc-interface"1808name = "cumulus-relay-chain-rpc-interface"
1724version = "0.1.0"1809version = "0.1.0"
1725source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0"1810source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b"
1726dependencies = [1811dependencies = [
1727 "async-trait",1812 "async-trait",
1728 "cumulus-primitives-core",1813 "cumulus-primitives-core",
1751[[package]]1836[[package]]
1752name = "cumulus-test-relay-sproof-builder"1837name = "cumulus-test-relay-sproof-builder"
1753version = "0.1.0"1838version = "0.1.0"
1754source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0"1839source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b"
1755dependencies = [1840dependencies = [
1756 "cumulus-primitives-core",1841 "cumulus-primitives-core",
1757 "parity-scale-codec",1842 "parity-scale-codec",
18031888
1804[[package]]1889[[package]]
1805name = "cxx"1890name = "cxx"
1806version = "1.0.86"1891version = "1.0.87"
1807source = "registry+https://github.com/rust-lang/crates.io-index"1892source = "registry+https://github.com/rust-lang/crates.io-index"
1808checksum = "51d1075c37807dcf850c379432f0df05ba52cc30f279c5cfc43cc221ce7f8579"1893checksum = "b61a7545f753a88bcbe0a70de1fcc0221e10bfc752f576754fa91e663db1622e"
1809dependencies = [1894dependencies = [
1810 "cc",1895 "cc",
1811 "cxxbridge-flags",1896 "cxxbridge-flags",
18151900
1816[[package]]1901[[package]]
1817name = "cxx-build"1902name = "cxx-build"
1818version = "1.0.86"1903version = "1.0.87"
1819source = "registry+https://github.com/rust-lang/crates.io-index"1904source = "registry+https://github.com/rust-lang/crates.io-index"
1820checksum = "5044281f61b27bc598f2f6647d480aed48d2bf52d6eb0b627d84c0361b17aa70"1905checksum = "f464457d494b5ed6905c63b0c4704842aba319084a0a3561cdc1359536b53200"
1821dependencies = [1906dependencies = [
1822 "cc",1907 "cc",
1823 "codespan-reporting",1908 "codespan-reporting",
18301915
1831[[package]]1916[[package]]
1832name = "cxxbridge-flags"1917name = "cxxbridge-flags"
1833version = "1.0.86"1918version = "1.0.87"
1834source = "registry+https://github.com/rust-lang/crates.io-index"1919source = "registry+https://github.com/rust-lang/crates.io-index"
1835checksum = "61b50bc93ba22c27b0d31128d2d130a0a6b3d267ae27ef7e4fae2167dfe8781c"1920checksum = "43c7119ce3a3701ed81aca8410b9acf6fc399d2629d057b87e2efa4e63a3aaea"
18361921
1837[[package]]1922[[package]]
1838name = "cxxbridge-macro"1923name = "cxxbridge-macro"
1839version = "1.0.86"1924version = "1.0.87"
1840source = "registry+https://github.com/rust-lang/crates.io-index"1925source = "registry+https://github.com/rust-lang/crates.io-index"
1841checksum = "39e61fda7e62115119469c7b3591fd913ecca96fb766cfd3f2e2502ab7bc87a5"1926checksum = "65e07508b90551e610910fa648a1878991d367064997a596135b86df30daf07e"
1842dependencies = [1927dependencies = [
1843 "proc-macro2",1928 "proc-macro2",
1844 "quote",1929 "quote",
1845 "syn",1930 "syn",
1846]1931]
1932
1933[[package]]
1934name = "darling"
1935version = "0.14.2"
1936source = "registry+https://github.com/rust-lang/crates.io-index"
1937checksum = "b0dd3cd20dc6b5a876612a6e5accfe7f3dd883db6d07acfbf14c128f61550dfa"
1938dependencies = [
1939 "darling_core",
1940 "darling_macro",
1941]
1942
1943[[package]]
1944name = "darling_core"
1945version = "0.14.2"
1946source = "registry+https://github.com/rust-lang/crates.io-index"
1947checksum = "a784d2ccaf7c98501746bf0be29b2022ba41fd62a2e622af997a03e9f972859f"
1948dependencies = [
1949 "fnv",
1950 "ident_case",
1951 "proc-macro2",
1952 "quote",
1953 "strsim",
1954 "syn",
1955]
1956
1957[[package]]
1958name = "darling_macro"
1959version = "0.14.2"
1960source = "registry+https://github.com/rust-lang/crates.io-index"
1961checksum = "7618812407e9402654622dd402b0a89dff9ba93badd6540781526117b92aab7e"
1962dependencies = [
1963 "darling_core",
1964 "quote",
1965 "syn",
1966]
18471967
1848[[package]]1968[[package]]
1849name = "data-encoding"1969name = "data-encoding"
1878checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de"1998checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de"
1879dependencies = [1999dependencies = [
1880 "const-oid",2000 "const-oid",
2001 "pem-rfc7468",
1881 "zeroize",2002 "zeroize",
1882]2003]
2004
2005[[package]]
2006name = "der-parser"
2007version = "7.0.0"
2008source = "registry+https://github.com/rust-lang/crates.io-index"
2009checksum = "fe398ac75057914d7d07307bf67dc7f3f574a26783b4fc7805a20ffa9f506e82"
2010dependencies = [
2011 "asn1-rs 0.3.1",
2012 "displaydoc",
2013 "nom",
2014 "num-bigint",
2015 "num-traits",
2016 "rusticata-macros",
2017]
2018
2019[[package]]
2020name = "der-parser"
2021version = "8.1.0"
2022source = "registry+https://github.com/rust-lang/crates.io-index"
2023checksum = "42d4bc9b0db0a0df9ae64634ac5bdefb7afcb534e182275ca0beadbe486701c1"
2024dependencies = [
2025 "asn1-rs 0.5.1",
2026 "displaydoc",
2027 "nom",
2028 "num-bigint",
2029 "num-traits",
2030 "rusticata-macros",
2031]
18832032
1884[[package]]2033[[package]]
1885name = "derivative"2034name = "derivative"
1892 "syn",2041 "syn",
1893]2042]
2043
2044[[package]]
2045name = "derive_builder"
2046version = "0.11.2"
2047source = "registry+https://github.com/rust-lang/crates.io-index"
2048checksum = "d07adf7be193b71cc36b193d0f5fe60b918a3a9db4dad0449f57bcfd519704a3"
2049dependencies = [
2050 "derive_builder_macro",
2051]
2052
2053[[package]]
2054name = "derive_builder_core"
2055version = "0.11.2"
2056source = "registry+https://github.com/rust-lang/crates.io-index"
2057checksum = "1f91d4cfa921f1c05904dc3c57b4a32c38aed3340cce209f3a6fd1478babafc4"
2058dependencies = [
2059 "darling",
2060 "proc-macro2",
2061 "quote",
2062 "syn",
2063]
2064
2065[[package]]
2066name = "derive_builder_macro"
2067version = "0.11.2"
2068source = "registry+https://github.com/rust-lang/crates.io-index"
2069checksum = "8f0314b72bed045f3a68671b3c86328386762c93f82d98c65c3cb5e5f573dd68"
2070dependencies = [
2071 "derive_builder_core",
2072 "syn",
2073]
18942074
1895[[package]]2075[[package]]
1896name = "derive_more"2076name = "derive_more"
1982]2162]
19832163
1984[[package]]2164[[package]]
1985name = "dns-parser"2165name = "displaydoc"
1986version = "0.8.0"2166version = "0.2.3"
1987source = "registry+https://github.com/rust-lang/crates.io-index"2167source = "registry+https://github.com/rust-lang/crates.io-index"
1988checksum = "c4d33be9473d06f75f58220f71f7a9317aca647dc061dbd3c361b0bef505fbea"2168checksum = "3bf95dc3f046b9da4f2d51833c0d3547d8564ef6910f5c1ed130306a75b92886"
1989dependencies = [2169dependencies = [
1990 "byteorder",2170 "proc-macro2",
1991 "quick-error",2171 "quote",
2172 "syn",
1992]2173]
19932174
1994[[package]]2175[[package]]
2104 "ff",2285 "ff",
2105 "generic-array 0.14.6",2286 "generic-array 0.14.6",
2106 "group",2287 "group",
2288 "hkdf",
2289 "pem-rfc7468",
2290 "pkcs8",
2107 "rand_core 0.6.4",2291 "rand_core 0.6.4",
2108 "sec1",2292 "sec1",
2109 "subtle",2293 "subtle",
2315[[package]]2499[[package]]
2316name = "evm"2500name = "evm"
2317version = "0.37.0"2501version = "0.37.0"
2318source = "git+https://github.com/uniquenetwork/evm?branch=unique-polkadot-v0.9.36#e543965fa325885fc61ebf6ec47565b8ab686afd"2502source = "registry+https://github.com/rust-lang/crates.io-index"
2503checksum = "f4448c65b71e8e2b9718232d84d09045eeaaccb2320494e6bd6dbf7e58fec8ff"
2319dependencies = [2504dependencies = [
2320 "auto_impl",2505 "auto_impl",
2321 "environmental",2506 "environmental",
2364[[package]]2549[[package]]
2365name = "evm-core"2550name = "evm-core"
2366version = "0.37.0"2551version = "0.37.0"
2367source = "git+https://github.com/uniquenetwork/evm?branch=unique-polkadot-v0.9.36#e543965fa325885fc61ebf6ec47565b8ab686afd"2552source = "registry+https://github.com/rust-lang/crates.io-index"
2553checksum = "64c51bec0eb68a891c2575c758eaaa1d61373fc51f7caaf216b1fb5c3fea3b5d"
2368dependencies = [2554dependencies = [
2369 "parity-scale-codec",2555 "parity-scale-codec",
2370 "primitive-types 0.12.1",2556 "primitive-types 0.12.1",
2375[[package]]2561[[package]]
2376name = "evm-gasometer"2562name = "evm-gasometer"
2377version = "0.37.0"2563version = "0.37.0"
2378source = "git+https://github.com/uniquenetwork/evm?branch=unique-polkadot-v0.9.36#e543965fa325885fc61ebf6ec47565b8ab686afd"2564source = "registry+https://github.com/rust-lang/crates.io-index"
2565checksum = "a8b93c59c54fc26522d842f0e0d3f8e8be331c776df18ff3e540b53c2f64d509"
2379dependencies = [2566dependencies = [
2380 "environmental",2567 "environmental",
2381 "evm-core",2568 "evm-core",
2386[[package]]2573[[package]]
2387name = "evm-runtime"2574name = "evm-runtime"
2388version = "0.37.0"2575version = "0.37.0"
2389source = "git+https://github.com/uniquenetwork/evm?branch=unique-polkadot-v0.9.36#e543965fa325885fc61ebf6ec47565b8ab686afd"2576source = "registry+https://github.com/rust-lang/crates.io-index"
2577checksum = "c79b9459ce64f1a28688397c4013764ce53cd57bb84efc16b5187fa9b05b13ad"
2390dependencies = [2578dependencies = [
2391 "auto_impl",2579 "auto_impl",
2392 "environmental",2580 "environmental",
2478[[package]]2666[[package]]
2479name = "fc-consensus"2667name = "fc-consensus"
2480version = "2.0.0-dev"2668version = "2.0.0-dev"
2481source = "git+https://github.com/uniquenetwork/frontier?branch=unique-polkadot-v0.9.36#ef8d2809ed05da0664e9b43cb87436451295b634"2669source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v0.9.37#02eff174cf5235971da686e5ed09f34f59a93ed3"
2482dependencies = [2670dependencies = [
2483 "async-trait",2671 "async-trait",
2484 "fc-db",2672 "fc-db",
2497[[package]]2685[[package]]
2498name = "fc-db"2686name = "fc-db"
2499version = "2.0.0-dev"2687version = "2.0.0-dev"
2500source = "git+https://github.com/uniquenetwork/frontier?branch=unique-polkadot-v0.9.36#ef8d2809ed05da0664e9b43cb87436451295b634"2688source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v0.9.37#02eff174cf5235971da686e5ed09f34f59a93ed3"
2501dependencies = [2689dependencies = [
2502 "fp-storage",2690 "fp-storage",
2503 "kvdb-rocksdb",2691 "kvdb-rocksdb",
2516[[package]]2704[[package]]
2517name = "fc-mapping-sync"2705name = "fc-mapping-sync"
2518version = "2.0.0-dev"2706version = "2.0.0-dev"
2519source = "git+https://github.com/uniquenetwork/frontier?branch=unique-polkadot-v0.9.36#ef8d2809ed05da0664e9b43cb87436451295b634"2707source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v0.9.37#02eff174cf5235971da686e5ed09f34f59a93ed3"
2520dependencies = [2708dependencies = [
2521 "fc-db",2709 "fc-db",
2522 "fp-consensus",2710 "fp-consensus",
2533[[package]]2721[[package]]
2534name = "fc-rpc"2722name = "fc-rpc"
2535version = "2.0.0-dev"2723version = "2.0.0-dev"
2536source = "git+https://github.com/uniquenetwork/frontier?branch=unique-polkadot-v0.9.36#ef8d2809ed05da0664e9b43cb87436451295b634"2724source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v0.9.37#02eff174cf5235971da686e5ed09f34f59a93ed3"
2537dependencies = [2725dependencies = [
2538 "ethereum 0.14.0",2726 "ethereum 0.14.0",
2539 "ethereum-types 0.14.1",2727 "ethereum-types 0.14.1",
2540 "evm",2728 "evm",
2541 "fc-db",2729 "fc-db",
2542 "fc-rpc-core",2730 "fc-rpc-core",
2543 "fp-ethereum",2731 "fp-ethereum",
2544 "fp-evm",
2545 "fp-rpc",2732 "fp-rpc",
2546 "fp-storage",2733 "fp-storage",
2547 "futures",2734 "futures",
2576[[package]]2763[[package]]
2577name = "fc-rpc-core"2764name = "fc-rpc-core"
2578version = "1.1.0-dev"2765version = "1.1.0-dev"
2579source = "git+https://github.com/uniquenetwork/frontier?branch=unique-polkadot-v0.9.36#ef8d2809ed05da0664e9b43cb87436451295b634"2766source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v0.9.37#02eff174cf5235971da686e5ed09f34f59a93ed3"
2580dependencies = [2767dependencies = [
2581 "ethereum 0.14.0",2768 "ethereum 0.14.0",
2582 "ethereum-types 0.14.1",2769 "ethereum-types 0.14.1",
2583 "jsonrpsee",2770 "jsonrpsee",
2584 "rlp",
2585 "rustc-hex",2771 "rustc-hex",
2586 "serde",2772 "serde",
2587 "serde_json",2773 "serde_json",
2708[[package]]2894[[package]]
2709name = "fork-tree"2895name = "fork-tree"
2710version = "3.0.0"2896version = "3.0.0"
2711source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"2897source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
2712dependencies = [2898dependencies = [
2713 "parity-scale-codec",2899 "parity-scale-codec",
2714]2900]
2725[[package]]2911[[package]]
2726name = "fp-consensus"2912name = "fp-consensus"
2727version = "2.0.0-dev"2913version = "2.0.0-dev"
2728source = "git+https://github.com/uniquenetwork/frontier?branch=unique-polkadot-v0.9.36#ef8d2809ed05da0664e9b43cb87436451295b634"2914source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v0.9.37#02eff174cf5235971da686e5ed09f34f59a93ed3"
2729dependencies = [2915dependencies = [
2730 "ethereum 0.14.0",2916 "ethereum 0.14.0",
2731 "parity-scale-codec",2917 "parity-scale-codec",
2737[[package]]2923[[package]]
2738name = "fp-ethereum"2924name = "fp-ethereum"
2739version = "1.0.0-dev"2925version = "1.0.0-dev"
2740source = "git+https://github.com/uniquenetwork/frontier?branch=unique-polkadot-v0.9.36#ef8d2809ed05da0664e9b43cb87436451295b634"2926source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v0.9.37#02eff174cf5235971da686e5ed09f34f59a93ed3"
2741dependencies = [2927dependencies = [
2742 "ethereum 0.14.0",2928 "ethereum 0.14.0",
2743 "ethereum-types 0.14.1",2929 "ethereum-types 0.14.1",
2744 "fp-evm",2930 "fp-evm",
2745 "frame-support",2931 "frame-support",
2746 "num_enum",2932 "num_enum",
2747 "parity-scale-codec",2933 "parity-scale-codec",
2748 "sp-core",
2749 "sp-std",2934 "sp-std",
2750]2935]
27512936
2752[[package]]2937[[package]]
2753name = "fp-evm"2938name = "fp-evm"
2754version = "3.0.0-dev"2939version = "3.0.0-dev"
2755source = "git+https://github.com/uniquenetwork/frontier?branch=unique-polkadot-v0.9.36#ef8d2809ed05da0664e9b43cb87436451295b634"2940source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v0.9.37#02eff174cf5235971da686e5ed09f34f59a93ed3"
2756dependencies = [2941dependencies = [
2757 "evm",2942 "evm",
2758 "frame-support",2943 "frame-support",
2766[[package]]2951[[package]]
2767name = "fp-evm-mapping"2952name = "fp-evm-mapping"
2768version = "0.1.0"2953version = "0.1.0"
2769source = "git+https://github.com/uniquenetwork/frontier?branch=unique-polkadot-v0.9.36#ef8d2809ed05da0664e9b43cb87436451295b634"2954source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v0.9.37#02eff174cf5235971da686e5ed09f34f59a93ed3"
2770dependencies = [2955dependencies = [
2771 "frame-support",2956 "frame-support",
2772 "sp-core",2957 "sp-core",
2775[[package]]2960[[package]]
2776name = "fp-rpc"2961name = "fp-rpc"
2777version = "3.0.0-dev"2962version = "3.0.0-dev"
2778source = "git+https://github.com/uniquenetwork/frontier?branch=unique-polkadot-v0.9.36#ef8d2809ed05da0664e9b43cb87436451295b634"2963source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v0.9.37#02eff174cf5235971da686e5ed09f34f59a93ed3"
2779dependencies = [2964dependencies = [
2780 "ethereum 0.14.0",2965 "ethereum 0.14.0",
2781 "ethereum-types 0.14.1",2966 "ethereum-types 0.14.1",
2784 "scale-info",2969 "scale-info",
2785 "sp-api",2970 "sp-api",
2786 "sp-core",2971 "sp-core",
2787 "sp-io",
2788 "sp-runtime",2972 "sp-runtime",
2789 "sp-std",2973 "sp-std",
2790]2974]
27912975
2792[[package]]2976[[package]]
2793name = "fp-self-contained"2977name = "fp-self-contained"
2794version = "1.0.0-dev"2978version = "1.0.0-dev"
2795source = "git+https://github.com/uniquenetwork/frontier?branch=unique-polkadot-v0.9.36#ef8d2809ed05da0664e9b43cb87436451295b634"2979source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v0.9.37#02eff174cf5235971da686e5ed09f34f59a93ed3"
2796dependencies = [2980dependencies = [
2797 "ethereum 0.14.0",
2798 "frame-support",2981 "frame-support",
2799 "parity-scale-codec",2982 "parity-scale-codec",
2800 "scale-info",2983 "scale-info",
2805[[package]]2988[[package]]
2806name = "fp-storage"2989name = "fp-storage"
2807version = "2.0.0"2990version = "2.0.0"
2808source = "git+https://github.com/uniquenetwork/frontier?branch=unique-polkadot-v0.9.36#ef8d2809ed05da0664e9b43cb87436451295b634"2991source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v0.9.37#02eff174cf5235971da686e5ed09f34f59a93ed3"
2809dependencies = [2992dependencies = [
2810 "parity-scale-codec",2993 "parity-scale-codec",
2811 "serde",2994 "serde",
2820[[package]]3003[[package]]
2821name = "frame-benchmarking"3004name = "frame-benchmarking"
2822version = "4.0.0-dev"3005version = "4.0.0-dev"
2823source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"3006source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
2824dependencies = [3007dependencies = [
2825 "frame-support",3008 "frame-support",
2826 "frame-system",3009 "frame-system",
2843[[package]]3026[[package]]
2844name = "frame-benchmarking-cli"3027name = "frame-benchmarking-cli"
2845version = "4.0.0-dev"3028version = "4.0.0-dev"
2846source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"3029source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
2847dependencies = [3030dependencies = [
2848 "Inflector",3031 "Inflector",
2849 "array-bytes 4.2.0",3032 "array-bytes 4.2.0",
2855 "frame-system",3038 "frame-system",
2856 "gethostname",3039 "gethostname",
2857 "handlebars",3040 "handlebars",
2858 "hash-db",
2859 "itertools",3041 "itertools",
2860 "kvdb",
2861 "lazy_static",3042 "lazy_static",
2862 "linked-hash-map",3043 "linked-hash-map",
2863 "log",3044 "log",
2864 "memory-db",
2865 "parity-scale-codec",3045 "parity-scale-codec",
2866 "rand 0.8.5",3046 "rand 0.8.5",
2867 "rand_pcg 0.3.1",3047 "rand_pcg",
2868 "sc-block-builder",3048 "sc-block-builder",
2869 "sc-cli",3049 "sc-cli",
2870 "sc-client-api",3050 "sc-client-api",
2874 "sc-sysinfo",3054 "sc-sysinfo",
2875 "serde",3055 "serde",
2876 "serde_json",3056 "serde_json",
2877 "serde_nanos",
2878 "sp-api",3057 "sp-api",
2879 "sp-blockchain",3058 "sp-blockchain",
2880 "sp-core",3059 "sp-core",
2887 "sp-std",3066 "sp-std",
2888 "sp-storage",3067 "sp-storage",
2889 "sp-trie",3068 "sp-trie",
2890 "tempfile",
2891 "thiserror",3069 "thiserror",
2892 "thousands",3070 "thousands",
2893]3071]
28943072
2895[[package]]3073[[package]]
2896name = "frame-election-provider-solution-type"3074name = "frame-election-provider-solution-type"
2897version = "4.0.0-dev"3075version = "4.0.0-dev"
2898source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"3076source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
2899dependencies = [3077dependencies = [
2900 "proc-macro-crate",3078 "proc-macro-crate",
2901 "proc-macro2",3079 "proc-macro2",
2906[[package]]3084[[package]]
2907name = "frame-election-provider-support"3085name = "frame-election-provider-support"
2908version = "4.0.0-dev"3086version = "4.0.0-dev"
2909source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"3087source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
2910dependencies = [3088dependencies = [
2911 "frame-election-provider-solution-type",3089 "frame-election-provider-solution-type",
2912 "frame-support",3090 "frame-support",
2923[[package]]3101[[package]]
2924name = "frame-executive"3102name = "frame-executive"
2925version = "4.0.0-dev"3103version = "4.0.0-dev"
2926source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"3104source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
2927dependencies = [3105dependencies = [
2928 "frame-support",3106 "frame-support",
2929 "frame-system",3107 "frame-system",
2952[[package]]3130[[package]]
2953name = "frame-remote-externalities"3131name = "frame-remote-externalities"
2954version = "0.10.0-dev"3132version = "0.10.0-dev"
2955source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"3133source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
2956dependencies = [3134dependencies = [
2957 "env_logger 0.9.3",
2958 "futures",3135 "futures",
2959 "log",3136 "log",
2960 "parity-scale-codec",3137 "parity-scale-codec",
2961 "serde",3138 "serde",
2962 "serde_json",
2963 "sp-core",3139 "sp-core",
2964 "sp-io",3140 "sp-io",
2965 "sp-runtime",3141 "sp-runtime",
2966 "sp-version",
2967 "substrate-rpc-client",3142 "substrate-rpc-client",
2968 "tokio",3143 "tokio",
2969]3144]
29703145
2971[[package]]3146[[package]]
2972name = "frame-support"3147name = "frame-support"
2973version = "4.0.0-dev"3148version = "4.0.0-dev"
2974source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"3149source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
2975dependencies = [3150dependencies = [
2976 "bitflags",3151 "bitflags",
2977 "frame-metadata",3152 "frame-metadata",
3003[[package]]3178[[package]]
3004name = "frame-support-procedural"3179name = "frame-support-procedural"
3005version = "4.0.0-dev"3180version = "4.0.0-dev"
3006source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"3181source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
3007dependencies = [3182dependencies = [
3008 "Inflector",3183 "Inflector",
3009 "cfg-expr",3184 "cfg-expr",
3017[[package]]3192[[package]]
3018name = "frame-support-procedural-tools"3193name = "frame-support-procedural-tools"
3019version = "4.0.0-dev"3194version = "4.0.0-dev"
3020source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"3195source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
3021dependencies = [3196dependencies = [
3022 "frame-support-procedural-tools-derive",3197 "frame-support-procedural-tools-derive",
3023 "proc-macro-crate",3198 "proc-macro-crate",
3029[[package]]3204[[package]]
3030name = "frame-support-procedural-tools-derive"3205name = "frame-support-procedural-tools-derive"
3031version = "3.0.0"3206version = "3.0.0"
3032source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"3207source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
3033dependencies = [3208dependencies = [
3034 "proc-macro2",3209 "proc-macro2",
3035 "quote",3210 "quote",
3039[[package]]3214[[package]]
3040name = "frame-system"3215name = "frame-system"
3041version = "4.0.0-dev"3216version = "4.0.0-dev"
3042source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"3217source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
3043dependencies = [3218dependencies = [
3044 "frame-support",3219 "frame-support",
3045 "log",3220 "log",
3057[[package]]3232[[package]]
3058name = "frame-system-benchmarking"3233name = "frame-system-benchmarking"
3059version = "4.0.0-dev"3234version = "4.0.0-dev"
3060source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"3235source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
3061dependencies = [3236dependencies = [
3062 "frame-benchmarking",3237 "frame-benchmarking",
3063 "frame-support",3238 "frame-support",
3072[[package]]3247[[package]]
3073name = "frame-system-rpc-runtime-api"3248name = "frame-system-rpc-runtime-api"
3074version = "4.0.0-dev"3249version = "4.0.0-dev"
3075source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"3250source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
3076dependencies = [3251dependencies = [
3077 "parity-scale-codec",3252 "parity-scale-codec",
3078 "sp-api",3253 "sp-api",
3081[[package]]3256[[package]]
3082name = "frame-try-runtime"3257name = "frame-try-runtime"
3083version = "0.10.0-dev"3258version = "0.10.0-dev"
3084source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"3259source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
3085dependencies = [3260dependencies = [
3086 "frame-support",3261 "frame-support",
3087 "parity-scale-codec",3262 "parity-scale-codec",
3200checksum = "d2411eed028cdf8c8034eaf21f9915f956b6c3abec4d4c7949ee67f0721127bd"3375checksum = "d2411eed028cdf8c8034eaf21f9915f956b6c3abec4d4c7949ee67f0721127bd"
3201dependencies = [3376dependencies = [
3202 "futures-io",3377 "futures-io",
3203 "rustls",3378 "rustls 0.20.8",
3204 "webpki",3379 "webpki 0.22.0",
3205]3380]
32063381
3207[[package]]3382[[package]]
3285checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"3460checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
3286dependencies = [3461dependencies = [
3287 "cfg-if",3462 "cfg-if",
3288 "js-sys",
3289 "libc",3463 "libc",
3290 "wasi 0.9.0+wasi-snapshot-preview1",3464 "wasi 0.9.0+wasi-snapshot-preview1",
3291 "wasm-bindgen",
3292]3465]
32933466
3294[[package]]3467[[package]]
3302 "wasi 0.11.0+wasi-snapshot-preview1",3475 "wasi 0.11.0+wasi-snapshot-preview1",
3303]3476]
3477
3478[[package]]
3479name = "ghash"
3480version = "0.3.1"
3481source = "registry+https://github.com/rust-lang/crates.io-index"
3482checksum = "97304e4cd182c3846f7575ced3890c53012ce534ad9114046b0a9e00bb30a375"
3483dependencies = [
3484 "opaque-debug 0.3.0",
3485 "polyval 0.4.5",
3486]
33043487
3305[[package]]3488[[package]]
3306name = "ghash"3489name = "ghash"
3309checksum = "1583cc1656d7839fd3732b80cf4f38850336cdb9b8ded1cd399ca62958de3c99"3492checksum = "1583cc1656d7839fd3732b80cf4f38850336cdb9b8ded1cd399ca62958de3c99"
3310dependencies = [3493dependencies = [
3311 "opaque-debug 0.3.0",3494 "opaque-debug 0.3.0",
3312 "polyval",3495 "polyval 0.5.3",
3313]3496]
33143497
3315[[package]]3498[[package]]
33253508
3326[[package]]3509[[package]]
3327name = "gimli"3510name = "gimli"
3328version = "0.27.0"3511version = "0.27.1"
3329source = "registry+https://github.com/rust-lang/crates.io-index"3512source = "registry+https://github.com/rust-lang/crates.io-index"
3330checksum = "dec7af912d60cdbd3677c1af9352ebae6fb8394d165568a2234df0fa00f87793"3513checksum = "221996f774192f0f718773def8201c4ae31f02616a54ccfc2d358bb0e5cefdec"
33313514
3332[[package]]3515[[package]]
3333name = "glob"3516name = "glob"
3348 "regex",3531 "regex",
3349]3532]
3350
3351[[package]]
3352name = "gloo-timers"
3353version = "0.2.5"
3354source = "registry+https://github.com/rust-lang/crates.io-index"
3355checksum = "98c4a8d6391675c6b2ee1a6c8d06e8e2d03605c44cec1270675985a4c2a5500b"
3356dependencies = [
3357 "futures-channel",
3358 "futures-core",
3359 "js-sys",
3360 "wasm-bindgen",
3361]
33623533
3363[[package]]3534[[package]]
3364name = "group"3535name = "group"
3464source = "registry+https://github.com/rust-lang/crates.io-index"3635source = "registry+https://github.com/rust-lang/crates.io-index"
3465checksum = "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0"3636checksum = "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0"
3637
3638[[package]]
3639name = "hkdf"
3640version = "0.12.3"
3641source = "registry+https://github.com/rust-lang/crates.io-index"
3642checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437"
3643dependencies = [
3644 "hmac 0.12.1",
3645]
34663646
3467[[package]]3647[[package]]
3468name = "hmac"3648name = "hmac"
3474 "digest 0.9.0",3654 "digest 0.9.0",
3475]3655]
3656
3657[[package]]
3658name = "hmac"
3659version = "0.10.1"
3660source = "registry+https://github.com/rust-lang/crates.io-index"
3661checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15"
3662dependencies = [
3663 "crypto-mac 0.10.1",
3664 "digest 0.9.0",
3665]
34763666
3477[[package]]3667[[package]]
3478name = "hmac"3668name = "hmac"
3594 "http",3784 "http",
3595 "hyper",3785 "hyper",
3596 "log",3786 "log",
3597 "rustls",3787 "rustls 0.20.8",
3598 "rustls-native-certs",3788 "rustls-native-certs",
3599 "tokio",3789 "tokio",
3600 "tokio-rustls",3790 "tokio-rustls",
3624 "cxx-build",3814 "cxx-build",
3625]3815]
3816
3817[[package]]
3818name = "ident_case"
3819version = "1.0.1"
3820source = "registry+https://github.com/rust-lang/crates.io-index"
3821checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
36263822
3627[[package]]3823[[package]]
3628name = "idna"3824name = "idna"
36573853
3658[[package]]3854[[package]]
3659name = "if-watch"3855name = "if-watch"
3660version = "2.0.0"3856version = "3.0.0"
3661source = "registry+https://github.com/rust-lang/crates.io-index"3857source = "registry+https://github.com/rust-lang/crates.io-index"
3662checksum = "065c008e570a43c00de6aed9714035e5ea6a498c255323db9091722af6ee67dd"3858checksum = "ba7abdbb86e485125dad06c2691e1e393bf3b08c7b743b43aa162a00fd39062e"
3663dependencies = [3859dependencies = [
3664 "async-io",3860 "async-io",
3665 "core-foundation",3861 "core-foundation",
3670 "log",3866 "log",
3671 "rtnetlink",3867 "rtnetlink",
3672 "system-configuration",3868 "system-configuration",
3869 "tokio",
3673 "windows",3870 "windows",
3674]3871]
36753872
3746 "num-traits",3943 "num-traits",
3747]3944]
3945
3946[[package]]
3947name = "interceptor"
3948version = "0.8.2"
3949source = "registry+https://github.com/rust-lang/crates.io-index"
3950checksum = "1e8a11ae2da61704edada656798b61c94b35ecac2c58eb955156987d5e6be90b"
3951dependencies = [
3952 "async-trait",
3953 "bytes",
3954 "log",
3955 "rand 0.8.5",
3956 "rtcp",
3957 "rtp",
3958 "thiserror",
3959 "tokio",
3960 "waitgroup",
3961 "webrtc-srtp",
3962 "webrtc-util",
3963]
37483964
3749[[package]]3965[[package]]
3750name = "io-lifetimes"3966name = "io-lifetimes"
39784194
3979[[package]]4195[[package]]
3980name = "kusama-runtime"4196name = "kusama-runtime"
3981version = "0.9.36"4197version = "0.9.37"
3982source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"4198source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
3983dependencies = [4199dependencies = [
3984 "bitvec",4200 "bitvec",
3985 "frame-benchmarking",4201 "frame-benchmarking",
4008 "pallet-elections-phragmen",4224 "pallet-elections-phragmen",
4009 "pallet-fast-unstake",4225 "pallet-fast-unstake",
4010 "pallet-grandpa",4226 "pallet-grandpa",
4011 "pallet-identity 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36)",4227 "pallet-identity 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37)",
4012 "pallet-im-online",4228 "pallet-im-online",
4013 "pallet-indices",4229 "pallet-indices",
4014 "pallet-membership",4230 "pallet-membership",
40754291
4076[[package]]4292[[package]]
4077name = "kusama-runtime-constants"4293name = "kusama-runtime-constants"
4078version = "0.9.36"4294version = "0.9.37"
4079source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"4295source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
4080dependencies = [4296dependencies = [
4081 "frame-support",4297 "frame-support",
4082 "polkadot-primitives",4298 "polkadot-primitives",
4087 "sp-weights",4303 "sp-weights",
4088]4304]
4089
4090[[package]]
4091name = "kv-log-macro"
4092version = "1.0.7"
4093source = "registry+https://github.com/rust-lang/crates.io-index"
4094checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
4095dependencies = [
4096 "log",
4097]
40984305
4099[[package]]4306[[package]]
4100name = "kvdb"4307name = "kvdb"
41714378
4172[[package]]4379[[package]]
4173name = "libp2p"4380name = "libp2p"
4174version = "0.49.0"4381version = "0.50.0"
4175source = "registry+https://github.com/rust-lang/crates.io-index"4382source = "registry+https://github.com/rust-lang/crates.io-index"
4176checksum = "ec878fda12ebec479186b3914ebc48ff180fa4c51847e11a1a68bf65249e02c1"4383checksum = "2e0a0d2f693675f49ded13c5d510c48b78069e23cbd9108d7ccd59f6dc568819"
4177dependencies = [4384dependencies = [
4178 "bytes",4385 "bytes",
4179 "futures",4386 "futures",
4180 "futures-timer",4387 "futures-timer",
4181 "getrandom 0.2.8",4388 "getrandom 0.2.8",
4182 "instant",4389 "instant",
4183 "lazy_static",
4184 "libp2p-core",4390 "libp2p-core",
4185 "libp2p-dns",4391 "libp2p-dns",
4186 "libp2p-identify",4392 "libp2p-identify",
4190 "libp2p-mplex",4396 "libp2p-mplex",
4191 "libp2p-noise",4397 "libp2p-noise",
4192 "libp2p-ping",4398 "libp2p-ping",
4399 "libp2p-quic",
4193 "libp2p-request-response",4400 "libp2p-request-response",
4194 "libp2p-swarm",4401 "libp2p-swarm",
4195 "libp2p-swarm-derive",
4196 "libp2p-tcp",4402 "libp2p-tcp",
4197 "libp2p-wasm-ext",4403 "libp2p-wasm-ext",
4404 "libp2p-webrtc",
4198 "libp2p-websocket",4405 "libp2p-websocket",
4199 "libp2p-yamux",4406 "libp2p-yamux",
4200 "multiaddr",4407 "multiaddr",
42054412
4206[[package]]4413[[package]]
4207name = "libp2p-core"4414name = "libp2p-core"
4208version = "0.37.0"4415version = "0.38.0"
4209source = "registry+https://github.com/rust-lang/crates.io-index"4416source = "registry+https://github.com/rust-lang/crates.io-index"
4210checksum = "799676bb0807c788065e57551c6527d461ad572162b0519d1958946ff9e0539d"4417checksum = "b6a8fcd392ff67af6cc3f03b1426c41f7f26b6b9aff2dc632c1c56dd649e571f"
4211dependencies = [4418dependencies = [
4212 "asn1_der",4419 "asn1_der",
4213 "bs58",4420 "bs58",
4217 "futures",4424 "futures",
4218 "futures-timer",4425 "futures-timer",
4219 "instant",4426 "instant",
4220 "lazy_static",
4221 "log",4427 "log",
4222 "multiaddr",4428 "multiaddr",
4223 "multihash",4429 "multihash",
4224 "multistream-select",4430 "multistream-select",
4431 "once_cell",
4225 "parking_lot 0.12.1",4432 "parking_lot 0.12.1",
4226 "pin-project",4433 "pin-project",
4227 "prost",4434 "prost",
4228 "prost-build",4435 "prost-build",
4229 "rand 0.8.5",4436 "rand 0.8.5",
4230 "rw-stream-sink",4437 "rw-stream-sink",
4438 "sec1",
4231 "sha2 0.10.6",4439 "sha2 0.10.6",
4232 "smallvec",4440 "smallvec",
4233 "thiserror",4441 "thiserror",
42384446
4239[[package]]4447[[package]]
4240name = "libp2p-dns"4448name = "libp2p-dns"
4241version = "0.37.0"4449version = "0.38.0"
4242source = "registry+https://github.com/rust-lang/crates.io-index"4450source = "registry+https://github.com/rust-lang/crates.io-index"
4243checksum = "2322c9fb40d99101def6a01612ee30500c89abbbecb6297b3cd252903a4c1720"4451checksum = "8e42a271c1b49f789b92f7fc87749fa79ce5c7bdc88cbdfacb818a4bca47fec5"
4244dependencies = [4452dependencies = [
4245 "futures",4453 "futures",
4246 "libp2p-core",4454 "libp2p-core",
42524460
4253[[package]]4461[[package]]
4254name = "libp2p-identify"4462name = "libp2p-identify"
4255version = "0.40.0"4463version = "0.41.1"
4256source = "registry+https://github.com/rust-lang/crates.io-index"4464source = "registry+https://github.com/rust-lang/crates.io-index"
4257checksum = "dcf9a121f699e8719bda2e6e9e9b6ddafc6cff4602471d6481c1067930ccb29b"4465checksum = "c052d0026f4817b44869bfb6810f4e1112f43aec8553f2cb38881c524b563abf"
4258dependencies = [4466dependencies = [
4259 "asynchronous-codec",4467 "asynchronous-codec",
4260 "futures",4468 "futures",
42734481
4274[[package]]4482[[package]]
4275name = "libp2p-kad"4483name = "libp2p-kad"
4276version = "0.41.0"4484version = "0.42.1"
4277source = "registry+https://github.com/rust-lang/crates.io-index"4485source = "registry+https://github.com/rust-lang/crates.io-index"
4278checksum = "6721c200e2021f6c3fab8b6cf0272ead8912d871610ee194ebd628cecf428f22"4486checksum = "2766dcd2be8c87d5e1f35487deb22d765f49c6ae1251b3633efe3b25698bd3d2"
4279dependencies = [4487dependencies = [
4280 "arrayvec 0.7.2",4488 "arrayvec 0.7.2",
4281 "asynchronous-codec",4489 "asynchronous-codec",
43014509
4302[[package]]4510[[package]]
4303name = "libp2p-mdns"4511name = "libp2p-mdns"
4304version = "0.41.0"4512version = "0.42.0"
4305source = "registry+https://github.com/rust-lang/crates.io-index"4513source = "registry+https://github.com/rust-lang/crates.io-index"
4306checksum = "761704e727f7d68d58d7bc2231eafae5fc1b9814de24290f126df09d4bd37a15"4514checksum = "04f378264aade9872d6ccd315c0accc18be3a35d15fc1b9c36e5b6f983b62b5b"
4307dependencies = [4515dependencies = [
4308 "data-encoding",4516 "data-encoding",
4309 "dns-parser",
4310 "futures",4517 "futures",
4311 "if-watch",4518 "if-watch",
4312 "libp2p-core",4519 "libp2p-core",
4316 "smallvec",4523 "smallvec",
4317 "socket2",4524 "socket2",
4318 "tokio",4525 "tokio",
4526 "trust-dns-proto",
4319 "void",4527 "void",
4320]4528]
43214529
4322[[package]]4530[[package]]
4323name = "libp2p-metrics"4531name = "libp2p-metrics"
4324version = "0.10.0"4532version = "0.11.0"
4325source = "registry+https://github.com/rust-lang/crates.io-index"4533source = "registry+https://github.com/rust-lang/crates.io-index"
4326checksum = "9ee31b08e78b7b8bfd1c4204a9dd8a87b4fcdf6dafc57eb51701c1c264a81cb9"4534checksum = "5ad8a64f29da86005c86a4d2728b8a0719e9b192f4092b609fd8790acb9dec55"
4327dependencies = [4535dependencies = [
4328 "libp2p-core",4536 "libp2p-core",
4329 "libp2p-identify",4537 "libp2p-identify",
43354543
4336[[package]]4544[[package]]
4337name = "libp2p-mplex"4545name = "libp2p-mplex"
4338version = "0.37.0"4546version = "0.38.0"
4339source = "registry+https://github.com/rust-lang/crates.io-index"4547source = "registry+https://github.com/rust-lang/crates.io-index"
4340checksum = "692664acfd98652de739a8acbb0a0d670f1d67190a49be6b4395e22c37337d89"4548checksum = "03805b44107aa013e7cbbfa5627b31c36cbedfdfb00603c0311998882bc4bace"
4341dependencies = [4549dependencies = [
4342 "asynchronous-codec",4550 "asynchronous-codec",
4343 "bytes",4551 "bytes",
43534561
4354[[package]]4562[[package]]
4355name = "libp2p-noise"4563name = "libp2p-noise"
4356version = "0.40.0"4564version = "0.41.0"
4357source = "registry+https://github.com/rust-lang/crates.io-index"4565source = "registry+https://github.com/rust-lang/crates.io-index"
4358checksum = "048155686bd81fe6cb5efdef0c6290f25ad32a0a42e8f4f72625cf6a505a206f"4566checksum = "a978cb57efe82e892ec6f348a536bfbd9fee677adbe5689d7a93ad3a9bffbf2e"
4359dependencies = [4567dependencies = [
4360 "bytes",4568 "bytes",
4361 "curve25519-dalek 3.2.0",4569 "curve25519-dalek 3.2.0",
4362 "futures",4570 "futures",
4363 "lazy_static",
4364 "libp2p-core",4571 "libp2p-core",
4365 "log",4572 "log",
4573 "once_cell",
4366 "prost",4574 "prost",
4367 "prost-build",4575 "prost-build",
4368 "rand 0.8.5",4576 "rand 0.8.5",
4369 "sha2 0.10.6",4577 "sha2 0.10.6",
4370 "snow",4578 "snow",
4371 "static_assertions",4579 "static_assertions",
4580 "thiserror",
4372 "x25519-dalek",4581 "x25519-dalek 1.1.1",
4373 "zeroize",4582 "zeroize",
4374]4583]
43754584
4376[[package]]4585[[package]]
4377name = "libp2p-ping"4586name = "libp2p-ping"
4378version = "0.40.1"4587version = "0.41.0"
4379source = "registry+https://github.com/rust-lang/crates.io-index"4588source = "registry+https://github.com/rust-lang/crates.io-index"
4380checksum = "7228b9318d34689521349a86eb39a3c3a802c9efc99a0568062ffb80913e3f91"4589checksum = "929fcace45a112536e22b3dcfd4db538723ef9c3cb79f672b98be2cc8e25f37f"
4381dependencies = [4590dependencies = [
4382 "futures",4591 "futures",
4383 "futures-timer",4592 "futures-timer",
4389 "void",4598 "void",
4390]4599]
4600
4601[[package]]
4602name = "libp2p-quic"
4603version = "0.7.0-alpha"
4604source = "registry+https://github.com/rust-lang/crates.io-index"
4605checksum = "01e7c867e95c8130667b24409d236d37598270e6da69b3baf54213ba31ffca59"
4606dependencies = [
4607 "bytes",
4608 "futures",
4609 "futures-timer",
4610 "if-watch",
4611 "libp2p-core",
4612 "libp2p-tls",
4613 "log",
4614 "parking_lot 0.12.1",
4615 "quinn-proto",
4616 "rand 0.8.5",
4617 "rustls 0.20.8",
4618 "thiserror",
4619 "tokio",
4620]
43914621
4392[[package]]4622[[package]]
4393name = "libp2p-request-response"4623name = "libp2p-request-response"
4394version = "0.22.1"4624version = "0.23.0"
4395source = "registry+https://github.com/rust-lang/crates.io-index"4625source = "registry+https://github.com/rust-lang/crates.io-index"
4396checksum = "8827af16a017b65311a410bb626205a9ad92ec0473967618425039fa5231adc1"4626checksum = "3236168796727bfcf4927f766393415361e2c644b08bedb6a6b13d957c9a4884"
4397dependencies = [4627dependencies = [
4398 "async-trait",4628 "async-trait",
4399 "bytes",4629 "bytes",
44094639
4410[[package]]4640[[package]]
4411name = "libp2p-swarm"4641name = "libp2p-swarm"
4412version = "0.40.1"4642version = "0.41.1"
4413source = "registry+https://github.com/rust-lang/crates.io-index"4643source = "registry+https://github.com/rust-lang/crates.io-index"
4414checksum = "46d13df7c37807965d82930c0e4b04a659efcb6cca237373b206043db5398ecf"4644checksum = "b2a35472fe3276b3855c00f1c032ea8413615e030256429ad5349cdf67c6e1a0"
4415dependencies = [4645dependencies = [
4416 "either",4646 "either",
4417 "fnv",4647 "fnv",
4418 "futures",4648 "futures",
4419 "futures-timer",4649 "futures-timer",
4420 "instant",4650 "instant",
4421 "libp2p-core",4651 "libp2p-core",
4652 "libp2p-swarm-derive",
4422 "log",4653 "log",
4423 "pin-project",4654 "pin-project",
4424 "rand 0.8.5",4655 "rand 0.8.5",
4425 "smallvec",4656 "smallvec",
4426 "thiserror",4657 "thiserror",
4658 "tokio",
4427 "void",4659 "void",
4428]4660]
44294661
4430[[package]]4662[[package]]
4431name = "libp2p-swarm-derive"4663name = "libp2p-swarm-derive"
4432version = "0.30.1"4664version = "0.31.0"
4433source = "registry+https://github.com/rust-lang/crates.io-index"4665source = "registry+https://github.com/rust-lang/crates.io-index"
4434checksum = "a0eddc4497a8b5a506013c40e8189864f9c3a00db2b25671f428ae9007f3ba32"4666checksum = "9d527d5827582abd44a6d80c07ff8b50b4ee238a8979e05998474179e79dc400"
4435dependencies = [4667dependencies = [
4436 "heck",4668 "heck",
4437 "quote",4669 "quote",
44404672
4441[[package]]4673[[package]]
4442name = "libp2p-tcp"4674name = "libp2p-tcp"
4443version = "0.37.0"4675version = "0.38.0"
4444source = "registry+https://github.com/rust-lang/crates.io-index"4676source = "registry+https://github.com/rust-lang/crates.io-index"
4445checksum = "9839d96761491c6d3e238e70554b856956fca0ab60feb9de2cd08eed4473fa92"4677checksum = "b4b257baf6df8f2df39678b86c578961d48cc8b68642a12f0f763f56c8e5858d"
4446dependencies = [4678dependencies = [
4447 "futures",4679 "futures",
4448 "futures-timer",4680 "futures-timer",
4454 "tokio",4686 "tokio",
4455]4687]
4688
4689[[package]]
4690name = "libp2p-tls"
4691version = "0.1.0-alpha"
4692source = "registry+https://github.com/rust-lang/crates.io-index"
4693checksum = "f7905ce0d040576634e8a3229a7587cc8beab83f79db6023800f1792895defa8"
4694dependencies = [
4695 "futures",
4696 "futures-rustls",
4697 "libp2p-core",
4698 "rcgen 0.10.0",
4699 "ring",
4700 "rustls 0.20.8",
4701 "thiserror",
4702 "webpki 0.22.0",
4703 "x509-parser 0.14.0",
4704 "yasna",
4705]
44564706
4457[[package]]4707[[package]]
4458name = "libp2p-wasm-ext"4708name = "libp2p-wasm-ext"
4459version = "0.37.0"4709version = "0.38.0"
4460source = "registry+https://github.com/rust-lang/crates.io-index"4710source = "registry+https://github.com/rust-lang/crates.io-index"
4461checksum = "a17b5b8e7a73e379e47b1b77f8a82c4721e97eca01abcd18e9cd91a23ca6ce97"4711checksum = "1bb1a35299860e0d4b3c02a3e74e3b293ad35ae0cee8a056363b0c862d082069"
4462dependencies = [4712dependencies = [
4463 "futures",4713 "futures",
4464 "js-sys",4714 "js-sys",
4468 "wasm-bindgen-futures",4718 "wasm-bindgen-futures",
4469]4719]
4720
4721[[package]]
4722name = "libp2p-webrtc"
4723version = "0.4.0-alpha"
4724source = "registry+https://github.com/rust-lang/crates.io-index"
4725checksum = "cdb6cd86dd68cba72308ea05de1cebf3ba0ae6e187c40548167955d4e3970f6a"
4726dependencies = [
4727 "async-trait",
4728 "asynchronous-codec",
4729 "bytes",
4730 "futures",
4731 "futures-timer",
4732 "hex",
4733 "if-watch",
4734 "libp2p-core",
4735 "libp2p-noise",
4736 "log",
4737 "multihash",
4738 "prost",
4739 "prost-build",
4740 "prost-codec",
4741 "rand 0.8.5",
4742 "rcgen 0.9.3",
4743 "serde",
4744 "stun",
4745 "thiserror",
4746 "tinytemplate",
4747 "tokio",
4748 "tokio-util",
4749 "webrtc",
4750]
44704751
4471[[package]]4752[[package]]
4472name = "libp2p-websocket"4753name = "libp2p-websocket"
4473version = "0.39.0"4754version = "0.40.0"
4474source = "registry+https://github.com/rust-lang/crates.io-index"4755source = "registry+https://github.com/rust-lang/crates.io-index"
4475checksum = "3758ae6f89b2531a24b6d9f5776bda6a626b60a57600d7185d43dfa75ca5ecc4"4756checksum = "1d705506030d5c0aaf2882437c70dab437605f21c5f9811978f694e6917a3b54"
4476dependencies = [4757dependencies = [
4477 "either",4758 "either",
4478 "futures",4759 "futures",
44894770
4490[[package]]4771[[package]]
4491name = "libp2p-yamux"4772name = "libp2p-yamux"
4492version = "0.41.1"4773version = "0.42.0"
4493source = "registry+https://github.com/rust-lang/crates.io-index"4774source = "registry+https://github.com/rust-lang/crates.io-index"
4494checksum = "0d6874d66543c4f7e26e3b8ca9a6bead351563a13ab4fafd43c7927f7c0d6c12"4775checksum = "4f63594a0aa818642d9d4915c791945053877253f08a3626f13416b5cd928a29"
4495dependencies = [4776dependencies = [
4496 "futures",4777 "futures",
4497 "libp2p-core",4778 "libp2p-core",
47154996
4716[[package]]4997[[package]]
4717name = "matches"4998name = "matches"
4718version = "0.1.9"4999version = "0.1.10"
4719source = "registry+https://github.com/rust-lang/crates.io-index"5000source = "registry+https://github.com/rust-lang/crates.io-index"
4720checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"5001checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
47215002
4722[[package]]5003[[package]]
4723name = "matrixmultiply"5004name = "matrixmultiply"
4728 "rawpointer",5009 "rawpointer",
4729]5010]
5011
5012[[package]]
5013name = "md-5"
5014version = "0.10.5"
5015source = "registry+https://github.com/rust-lang/crates.io-index"
5016checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca"
5017dependencies = [
5018 "digest 0.10.6",
5019]
47305020
4731[[package]]5021[[package]]
4732name = "memchr"5022name = "memchr"
4839[[package]]5129[[package]]
4840name = "mmr-gadget"5130name = "mmr-gadget"
4841version = "4.0.0-dev"5131version = "4.0.0-dev"
4842source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"5132source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
4843dependencies = [5133dependencies = [
4844 "futures",5134 "futures",
4845 "log",5135 "log",
4851 "sp-blockchain",5141 "sp-blockchain",
4852 "sp-consensus",5142 "sp-consensus",
4853 "sp-core",5143 "sp-core",
4854 "sp-io",
4855 "sp-mmr-primitives",5144 "sp-mmr-primitives",
4856 "sp-runtime",5145 "sp-runtime",
4857]5146]
48585147
4859[[package]]5148[[package]]
4860name = "mmr-rpc"5149name = "mmr-rpc"
4861version = "4.0.0-dev"5150version = "4.0.0-dev"
4862source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"5151source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
4863dependencies = [5152dependencies = [
4864 "anyhow",5153 "anyhow",
4865 "jsonrpsee",5154 "jsonrpsee",
49015190
4902[[package]]5191[[package]]
4903name = "multiaddr"5192name = "multiaddr"
4904version = "0.14.0"5193version = "0.16.0"
4905source = "registry+https://github.com/rust-lang/crates.io-index"5194source = "registry+https://github.com/rust-lang/crates.io-index"
4906checksum = "3c580bfdd8803cce319b047d239559a22f809094aaea4ac13902a1fdcfcd4261"5195checksum = "a4aebdb21e90f81d13ed01dc84123320838e53963c2ca94b60b305d3fa64f31e"
4907dependencies = [5196dependencies = [
4908 "arrayref",5197 "arrayref",
4909 "bs58",
4910 "byteorder",5198 "byteorder",
4911 "data-encoding",5199 "data-encoding",
5200 "multibase",
4912 "multihash",5201 "multihash",
4913 "percent-encoding",5202 "percent-encoding",
4914 "serde",5203 "serde",
50785367
5079[[package]]5368[[package]]
5080name = "netlink-sys"5369name = "netlink-sys"
5081version = "0.8.3"5370version = "0.8.4"
5082source = "registry+https://github.com/rust-lang/crates.io-index"5371source = "registry+https://github.com/rust-lang/crates.io-index"
5083checksum = "92b654097027250401127914afb37cb1f311df6610a9891ff07a757e94199027"5372checksum = "260e21fbb6f3d253a14df90eb0000a6066780a15dd901a7519ce02d77a94985b"
5084dependencies = [5373dependencies = [
5085 "async-io",
5086 "bytes",5374 "bytes",
5087 "futures",5375 "futures",
5088 "libc",5376 "libc",
5089 "log",5377 "log",
5378 "tokio",
5090]5379]
50915380
5092[[package]]5381[[package]]
5098 "bitflags",5387 "bitflags",
5099 "cfg-if",5388 "cfg-if",
5100 "libc",5389 "libc",
5390 "memoffset 0.6.5",
5101]5391]
51025392
5103[[package]]5393[[package]]
5116 "minimal-lexical",5406 "minimal-lexical",
5117]5407]
5408
5409[[package]]
5410name = "nom8"
5411version = "0.2.0"
5412source = "registry+https://github.com/rust-lang/crates.io-index"
5413checksum = "ae01545c9c7fc4486ab7debaf2aad7003ac19431791868fb2e8066df97fad2f8"
5414dependencies = [
5415 "memchr",
5416]
51185417
5119[[package]]5418[[package]]
5120name = "normalize-line-endings"5419name = "normalize-line-endings"
51355434
5136[[package]]5435[[package]]
5137name = "num-complex"5436name = "num-complex"
5138version = "0.4.2"5437version = "0.4.3"
5139source = "registry+https://github.com/rust-lang/crates.io-index"5438source = "registry+https://github.com/rust-lang/crates.io-index"
5140checksum = "7ae39348c8bc5fbd7f40c727a9925f03517afd2ab27d46702108b6a7e5414c19"5439checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d"
5141dependencies = [5440dependencies = [
5142 "num-traits",5441 "num-traits",
5143]5442]
51965495
5197[[package]]5496[[package]]
5198name = "num_enum"5497name = "num_enum"
5199version = "0.5.7"5498version = "0.5.9"
5200source = "registry+https://github.com/rust-lang/crates.io-index"5499source = "registry+https://github.com/rust-lang/crates.io-index"
5201checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9"5500checksum = "8d829733185c1ca374f17e52b762f24f535ec625d2cc1f070e34c8a9068f341b"
5202dependencies = [5501dependencies = [
5203 "num_enum_derive",5502 "num_enum_derive",
5204]5503]
52055504
5206[[package]]5505[[package]]
5207name = "num_enum_derive"5506name = "num_enum_derive"
5208version = "0.5.7"5507version = "0.5.9"
5209source = "registry+https://github.com/rust-lang/crates.io-index"5508source = "registry+https://github.com/rust-lang/crates.io-index"
5210checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce"5509checksum = "2be1598bf1c313dcdd12092e3f1920f463462525a21b7b4e11b4168353d0123e"
5211dependencies = [5510dependencies = [
5212 "proc-macro-crate",5511 "proc-macro-crate",
5213 "proc-macro2",5512 "proc-macro2",
52295528
5230[[package]]5529[[package]]
5231name = "object"5530name = "object"
5232version = "0.30.2"5531version = "0.30.3"
5233source = "registry+https://github.com/rust-lang/crates.io-index"5532source = "registry+https://github.com/rust-lang/crates.io-index"
5234checksum = "2b8c786513eb403643f2a88c244c2aaa270ef2153f55094587d0c48a3cf22a83"5533checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439"
5235dependencies = [5534dependencies = [
5236 "memchr",5535 "memchr",
5237]5536]
5537
5538[[package]]
5539name = "oid-registry"
5540version = "0.4.0"
5541source = "registry+https://github.com/rust-lang/crates.io-index"
5542checksum = "38e20717fa0541f39bd146692035c37bedfa532b3e5071b35761082407546b2a"
5543dependencies = [
5544 "asn1-rs 0.3.1",
5545]
5546
5547[[package]]
5548name = "oid-registry"
5549version = "0.6.1"
5550source = "registry+https://github.com/rust-lang/crates.io-index"
5551checksum = "9bedf36ffb6ba96c2eb7144ef6270557b52e54b20c0a8e1eb2ff99a6c6959bff"
5552dependencies = [
5553 "asn1-rs 0.5.1",
5554]
52385555
5239[[package]]5556[[package]]
5240name = "once_cell"5557name = "once_cell"
53665683
5367[[package]]5684[[package]]
5368name = "orchestra"5685name = "orchestra"
5369version = "0.0.2"5686version = "0.0.4"
5370source = "registry+https://github.com/rust-lang/crates.io-index"5687source = "registry+https://github.com/rust-lang/crates.io-index"
5371checksum = "0aab54694ddaa8a9b703724c6ef04272b2d27bc32d2c855aae5cdd1857216b43"5688checksum = "17e7d5b6bb115db09390bed8842c94180893dd83df3dfce7354f2a2aa090a4ee"
5372dependencies = [5689dependencies = [
5373 "async-trait",5690 "async-trait",
5374 "dyn-clonable",5691 "dyn-clonable",
53835700
5384[[package]]5701[[package]]
5385name = "orchestra-proc-macro"5702name = "orchestra-proc-macro"
5386version = "0.0.2"5703version = "0.0.4"
5387source = "registry+https://github.com/rust-lang/crates.io-index"5704source = "registry+https://github.com/rust-lang/crates.io-index"
5388checksum = "a702b2f6bf592b3eb06c00d80d05afaf7a8eff6b41bb361e397d799acc21b45a"5705checksum = "c2af4dabb2286b0be0e9711d2d24e25f6217048b71210cffd3daddc3b5c84e1f"
5389dependencies = [5706dependencies = [
5390 "expander 0.0.6",5707 "expander 0.0.6",
5391 "itertools",5708 "itertools",
5408[[package]]5725[[package]]
5409name = "orml-tokens"5726name = "orml-tokens"
5410version = "0.4.1-dev"5727version = "0.4.1-dev"
5411source = "git+https://github.com/uniquenetwork/open-runtime-module-library?branch=feature/polkadot-v0.9.36#3f70b9adb6c0599db7b8688abb49d0d459634b68"5728source = "git+https://github.com/open-web3-stack/open-runtime-module-library?branch=polkadot-v0.9.37#16b6c1149a15674d21c87244b7988a667e2c14d9"
5412dependencies = [5729dependencies = [
5413 "frame-support",5730 "frame-support",
5414 "frame-system",5731 "frame-system",
5423[[package]]5740[[package]]
5424name = "orml-traits"5741name = "orml-traits"
5425version = "0.4.1-dev"5742version = "0.4.1-dev"
5426source = "git+https://github.com/uniquenetwork/open-runtime-module-library?branch=feature/polkadot-v0.9.36#3f70b9adb6c0599db7b8688abb49d0d459634b68"5743source = "git+https://github.com/open-web3-stack/open-runtime-module-library?branch=polkadot-v0.9.37#16b6c1149a15674d21c87244b7988a667e2c14d9"
5427dependencies = [5744dependencies = [
5428 "frame-support",5745 "frame-support",
5429 "impl-trait-for-tuples",5746 "impl-trait-for-tuples",
5441[[package]]5758[[package]]
5442name = "orml-utilities"5759name = "orml-utilities"
5443version = "0.4.1-dev"5760version = "0.4.1-dev"
5444source = "git+https://github.com/uniquenetwork/open-runtime-module-library?branch=feature/polkadot-v0.9.36#3f70b9adb6c0599db7b8688abb49d0d459634b68"5761source = "git+https://github.com/open-web3-stack/open-runtime-module-library?branch=polkadot-v0.9.37#16b6c1149a15674d21c87244b7988a667e2c14d9"
5445dependencies = [5762dependencies = [
5446 "frame-support",5763 "frame-support",
5447 "parity-scale-codec",5764 "parity-scale-codec",
5455[[package]]5772[[package]]
5456name = "orml-vesting"5773name = "orml-vesting"
5457version = "0.4.1-dev"5774version = "0.4.1-dev"
5458source = "git+https://github.com/uniquenetwork/open-runtime-module-library?branch=feature/polkadot-v0.9.36#3f70b9adb6c0599db7b8688abb49d0d459634b68"5775source = "git+https://github.com/open-web3-stack/open-runtime-module-library?branch=polkadot-v0.9.37#16b6c1149a15674d21c87244b7988a667e2c14d9"
5459dependencies = [5776dependencies = [
5460 "frame-support",5777 "frame-support",
5461 "frame-system",5778 "frame-system",
5470[[package]]5787[[package]]
5471name = "orml-xcm-support"5788name = "orml-xcm-support"
5472version = "0.4.1-dev"5789version = "0.4.1-dev"
5473source = "git+https://github.com/uniquenetwork/open-runtime-module-library?branch=feature/polkadot-v0.9.36#3f70b9adb6c0599db7b8688abb49d0d459634b68"5790source = "git+https://github.com/open-web3-stack/open-runtime-module-library?branch=polkadot-v0.9.37#16b6c1149a15674d21c87244b7988a667e2c14d9"
5474dependencies = [5791dependencies = [
5475 "frame-support",5792 "frame-support",
5476 "orml-traits",5793 "orml-traits",
5484[[package]]5801[[package]]
5485name = "orml-xtokens"5802name = "orml-xtokens"
5486version = "0.4.1-dev"5803version = "0.4.1-dev"
5487source = "git+https://github.com/uniquenetwork/open-runtime-module-library?branch=feature/polkadot-v0.9.36#3f70b9adb6c0599db7b8688abb49d0d459634b68"5804source = "git+https://github.com/open-web3-stack/open-runtime-module-library?branch=polkadot-v0.9.37#16b6c1149a15674d21c87244b7988a667e2c14d9"
5488dependencies = [5805dependencies = [
5489 "cumulus-primitives-core",5806 "cumulus-primitives-core",
5490 "frame-support",5807 "frame-support",
5508source = "registry+https://github.com/rust-lang/crates.io-index"5825source = "registry+https://github.com/rust-lang/crates.io-index"
5509checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"5826checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
5827
5828[[package]]
5829name = "p256"
5830version = "0.11.1"
5831source = "registry+https://github.com/rust-lang/crates.io-index"
5832checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594"
5833dependencies = [
5834 "ecdsa",
5835 "elliptic-curve",
5836 "sha2 0.10.6",
5837]
5838
5839[[package]]
5840name = "p384"
5841version = "0.11.2"
5842source = "registry+https://github.com/rust-lang/crates.io-index"
5843checksum = "dfc8c5bf642dde52bb9e87c0ecd8ca5a76faac2eeed98dedb7c717997e1080aa"
5844dependencies = [
5845 "ecdsa",
5846 "elliptic-curve",
5847 "sha2 0.10.6",
5848]
55105849
5511[[package]]5850[[package]]
5512name = "packed_simd_2"5851name = "packed_simd_2"
5543[[package]]5882[[package]]
5544name = "pallet-aura"5883name = "pallet-aura"
5545version = "4.0.0-dev"5884version = "4.0.0-dev"
5546source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"5885source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
5547dependencies = [5886dependencies = [
5548 "frame-support",5887 "frame-support",
5549 "frame-system",5888 "frame-system",
5559[[package]]5898[[package]]
5560name = "pallet-authority-discovery"5899name = "pallet-authority-discovery"
5561version = "4.0.0-dev"5900version = "4.0.0-dev"
5562source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"5901source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
5563dependencies = [5902dependencies = [
5564 "frame-support",5903 "frame-support",
5565 "frame-system",5904 "frame-system",
5575[[package]]5914[[package]]
5576name = "pallet-authorship"5915name = "pallet-authorship"
5577version = "4.0.0-dev"5916version = "4.0.0-dev"
5578source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"5917source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
5579dependencies = [5918dependencies = [
5580 "frame-support",5919 "frame-support",
5581 "frame-system",5920 "frame-system",
5590[[package]]5929[[package]]
5591name = "pallet-babe"5930name = "pallet-babe"
5592version = "4.0.0-dev"5931version = "4.0.0-dev"
5593source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"5932source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
5594dependencies = [5933dependencies = [
5595 "frame-benchmarking",5934 "frame-benchmarking",
5596 "frame-support",5935 "frame-support",
5614[[package]]5953[[package]]
5615name = "pallet-bags-list"5954name = "pallet-bags-list"
5616version = "4.0.0-dev"5955version = "4.0.0-dev"
5617source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"5956source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
5618dependencies = [5957dependencies = [
5619 "frame-benchmarking",5958 "frame-benchmarking",
5620 "frame-election-provider-support",5959 "frame-election-provider-support",
5634[[package]]5973[[package]]
5635name = "pallet-balances"5974name = "pallet-balances"
5636version = "4.0.0-dev"5975version = "4.0.0-dev"
5637source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"5976source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
5638dependencies = [5977dependencies = [
5639 "frame-benchmarking",5978 "frame-benchmarking",
5640 "frame-support",5979 "frame-support",
5649[[package]]5988[[package]]
5650name = "pallet-base-fee"5989name = "pallet-base-fee"
5651version = "1.0.0"5990version = "1.0.0"
5652source = "git+https://github.com/uniquenetwork/frontier?branch=unique-polkadot-v0.9.36#ef8d2809ed05da0664e9b43cb87436451295b634"5991source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v0.9.37#02eff174cf5235971da686e5ed09f34f59a93ed3"
5653dependencies = [5992dependencies = [
5654 "fp-evm",5993 "fp-evm",
5655 "frame-support",5994 "frame-support",
5656 "frame-system",5995 "frame-system",
5657 "parity-scale-codec",5996 "parity-scale-codec",
5658 "scale-info",5997 "scale-info",
5659 "serde",
5660 "sp-core",5998 "sp-core",
5661 "sp-runtime",5999 "sp-runtime",
5662]6000]
56636001
5664[[package]]6002[[package]]
5665name = "pallet-beefy"6003name = "pallet-beefy"
5666version = "4.0.0-dev"6004version = "4.0.0-dev"
5667source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6005source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
5668dependencies = [6006dependencies = [
5669 "frame-support",6007 "frame-support",
5670 "frame-system",6008 "frame-system",
5680[[package]]6018[[package]]
5681name = "pallet-beefy-mmr"6019name = "pallet-beefy-mmr"
5682version = "4.0.0-dev"6020version = "4.0.0-dev"
5683source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6021source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
5684dependencies = [6022dependencies = [
5685 "array-bytes 4.2.0",6023 "array-bytes 4.2.0",
5686 "beefy-merkle-tree",6024 "beefy-merkle-tree",
5703[[package]]6041[[package]]
5704name = "pallet-bounties"6042name = "pallet-bounties"
5705version = "4.0.0-dev"6043version = "4.0.0-dev"
5706source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6044source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
5707dependencies = [6045dependencies = [
5708 "frame-benchmarking",6046 "frame-benchmarking",
5709 "frame-support",6047 "frame-support",
5721[[package]]6059[[package]]
5722name = "pallet-child-bounties"6060name = "pallet-child-bounties"
5723version = "4.0.0-dev"6061version = "4.0.0-dev"
5724source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6062source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
5725dependencies = [6063dependencies = [
5726 "frame-benchmarking",6064 "frame-benchmarking",
5727 "frame-support",6065 "frame-support",
5767[[package]]6105[[package]]
5768name = "pallet-collective"6106name = "pallet-collective"
5769version = "4.0.0-dev"6107version = "4.0.0-dev"
5770source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6108source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
5771dependencies = [6109dependencies = [
5772 "frame-benchmarking",6110 "frame-benchmarking",
5773 "frame-support",6111 "frame-support",
5821[[package]]6159[[package]]
5822name = "pallet-conviction-voting"6160name = "pallet-conviction-voting"
5823version = "4.0.0-dev"6161version = "4.0.0-dev"
5824source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6162source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
5825dependencies = [6163dependencies = [
5826 "assert_matches",6164 "assert_matches",
5827 "frame-benchmarking",6165 "frame-benchmarking",
5838[[package]]6176[[package]]
5839name = "pallet-democracy"6177name = "pallet-democracy"
5840version = "4.0.0-dev"6178version = "4.0.0-dev"
5841source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6179source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
5842dependencies = [6180dependencies = [
5843 "frame-benchmarking",6181 "frame-benchmarking",
5844 "frame-support",6182 "frame-support",
5856[[package]]6194[[package]]
5857name = "pallet-election-provider-multi-phase"6195name = "pallet-election-provider-multi-phase"
5858version = "4.0.0-dev"6196version = "4.0.0-dev"
5859source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6197source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
5860dependencies = [6198dependencies = [
5861 "frame-benchmarking",6199 "frame-benchmarking",
5862 "frame-election-provider-support",6200 "frame-election-provider-support",
5865 "log",6203 "log",
5866 "pallet-election-provider-support-benchmarking",6204 "pallet-election-provider-support-benchmarking",
5867 "parity-scale-codec",6205 "parity-scale-codec",
5868 "rand 0.7.3",6206 "rand 0.8.5",
5869 "scale-info",6207 "scale-info",
5870 "sp-arithmetic",6208 "sp-arithmetic",
5871 "sp-core",6209 "sp-core",
5872 "sp-io",6210 "sp-io",
5873 "sp-npos-elections",6211 "sp-npos-elections",
5874 "sp-runtime",6212 "sp-runtime",
5875 "sp-std",6213 "sp-std",
5876 "static_assertions",
5877 "strum",6214 "strum",
5878]6215]
58796216
5880[[package]]6217[[package]]
5881name = "pallet-election-provider-support-benchmarking"6218name = "pallet-election-provider-support-benchmarking"
5882version = "4.0.0-dev"6219version = "4.0.0-dev"
5883source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6220source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
5884dependencies = [6221dependencies = [
5885 "frame-benchmarking",6222 "frame-benchmarking",
5886 "frame-election-provider-support",6223 "frame-election-provider-support",
5893[[package]]6230[[package]]
5894name = "pallet-elections-phragmen"6231name = "pallet-elections-phragmen"
5895version = "5.0.0-dev"6232version = "5.0.0-dev"
5896source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6233source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
5897dependencies = [6234dependencies = [
5898 "frame-benchmarking",6235 "frame-benchmarking",
5899 "frame-support",6236 "frame-support",
5911[[package]]6248[[package]]
5912name = "pallet-ethereum"6249name = "pallet-ethereum"
5913version = "4.0.0-dev"6250version = "4.0.0-dev"
5914source = "git+https://github.com/uniquenetwork/frontier?branch=unique-polkadot-v0.9.36#ef8d2809ed05da0664e9b43cb87436451295b634"6251source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v0.9.37#02eff174cf5235971da686e5ed09f34f59a93ed3"
5915dependencies = [6252dependencies = [
5916 "ethereum 0.14.0",6253 "ethereum 0.14.0",
5917 "ethereum-types 0.14.1",6254 "ethereum-types 0.14.1",
5930 "parity-scale-codec",6267 "parity-scale-codec",
5931 "rlp",6268 "rlp",
5932 "scale-info",6269 "scale-info",
5933 "serde",
5934 "sp-io",6270 "sp-io",
5935 "sp-runtime",6271 "sp-runtime",
5936 "sp-std",6272 "sp-std",
5939[[package]]6275[[package]]
5940name = "pallet-evm"6276name = "pallet-evm"
5941version = "6.0.0-dev"6277version = "6.0.0-dev"
5942source = "git+https://github.com/uniquenetwork/frontier?branch=unique-polkadot-v0.9.36#ef8d2809ed05da0664e9b43cb87436451295b634"6278source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v0.9.37#02eff174cf5235971da686e5ed09f34f59a93ed3"
5943dependencies = [6279dependencies = [
5944 "environmental",6280 "environmental",
5945 "evm",6281 "evm",
5953 "log",6289 "log",
5954 "pallet-timestamp",6290 "pallet-timestamp",
5955 "parity-scale-codec",6291 "parity-scale-codec",
5956 "primitive-types 0.12.1",
5957 "rlp",6292 "rlp",
5958 "scale-info",6293 "scale-info",
5959 "serde",6294 "serde",
6016[[package]]6351[[package]]
6017name = "pallet-evm-precompile-simple"6352name = "pallet-evm-precompile-simple"
6018version = "2.0.0-dev"6353version = "2.0.0-dev"
6019source = "git+https://github.com/uniquenetwork/frontier?branch=unique-polkadot-v0.9.36#ef8d2809ed05da0664e9b43cb87436451295b634"6354source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v0.9.37#02eff174cf5235971da686e5ed09f34f59a93ed3"
6020dependencies = [6355dependencies = [
6021 "fp-evm",6356 "fp-evm",
6022 "ripemd",6357 "ripemd",
6042[[package]]6377[[package]]
6043name = "pallet-fast-unstake"6378name = "pallet-fast-unstake"
6044version = "4.0.0-dev"6379version = "4.0.0-dev"
6045source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6380source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6046dependencies = [6381dependencies = [
6047 "frame-benchmarking",6382 "frame-benchmarking",
6048 "frame-election-provider-support",6383 "frame-election-provider-support",
6102[[package]]6437[[package]]
6103name = "pallet-grandpa"6438name = "pallet-grandpa"
6104version = "4.0.0-dev"6439version = "4.0.0-dev"
6105source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6440source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6106dependencies = [6441dependencies = [
6107 "frame-benchmarking",6442 "frame-benchmarking",
6108 "frame-support",6443 "frame-support",
6142[[package]]6477[[package]]
6143name = "pallet-identity"6478name = "pallet-identity"
6144version = "4.0.0-dev"6479version = "4.0.0-dev"
6145source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6480source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6146dependencies = [6481dependencies = [
6147 "enumflags2",6482 "enumflags2",
6148 "frame-benchmarking",6483 "frame-benchmarking",
6158[[package]]6493[[package]]
6159name = "pallet-im-online"6494name = "pallet-im-online"
6160version = "4.0.0-dev"6495version = "4.0.0-dev"
6161source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6496source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6162dependencies = [6497dependencies = [
6163 "frame-benchmarking",6498 "frame-benchmarking",
6164 "frame-support",6499 "frame-support",
6178[[package]]6513[[package]]
6179name = "pallet-indices"6514name = "pallet-indices"
6180version = "4.0.0-dev"6515version = "4.0.0-dev"
6181source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6516source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6182dependencies = [6517dependencies = [
6183 "frame-benchmarking",6518 "frame-benchmarking",
6184 "frame-support",6519 "frame-support",
6223[[package]]6558[[package]]
6224name = "pallet-membership"6559name = "pallet-membership"
6225version = "4.0.0-dev"6560version = "4.0.0-dev"
6226source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6561source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6227dependencies = [6562dependencies = [
6228 "frame-benchmarking",6563 "frame-benchmarking",
6229 "frame-support",6564 "frame-support",
6240[[package]]6575[[package]]
6241name = "pallet-mmr"6576name = "pallet-mmr"
6242version = "4.0.0-dev"6577version = "4.0.0-dev"
6243source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6578source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6244dependencies = [6579dependencies = [
6245 "frame-benchmarking",6580 "frame-benchmarking",
6246 "frame-support",6581 "frame-support",
6257[[package]]6592[[package]]
6258name = "pallet-multisig"6593name = "pallet-multisig"
6259version = "4.0.0-dev"6594version = "4.0.0-dev"
6260source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6595source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6261dependencies = [6596dependencies = [
6262 "frame-benchmarking",6597 "frame-benchmarking",
6263 "frame-support",6598 "frame-support",
6273[[package]]6608[[package]]
6274name = "pallet-nis"6609name = "pallet-nis"
6275version = "4.0.0-dev"6610version = "4.0.0-dev"
6276source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6611source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6277dependencies = [6612dependencies = [
6278 "frame-benchmarking",6613 "frame-benchmarking",
6279 "frame-support",6614 "frame-support",
6289[[package]]6624[[package]]
6290name = "pallet-nomination-pools"6625name = "pallet-nomination-pools"
6291version = "1.0.0"6626version = "1.0.0"
6292source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6627source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6293dependencies = [6628dependencies = [
6294 "frame-support",6629 "frame-support",
6295 "frame-system",6630 "frame-system",
6306[[package]]6641[[package]]
6307name = "pallet-nomination-pools-benchmarking"6642name = "pallet-nomination-pools-benchmarking"
6308version = "1.0.0"6643version = "1.0.0"
6309source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6644source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6310dependencies = [6645dependencies = [
6311 "frame-benchmarking",6646 "frame-benchmarking",
6312 "frame-election-provider-support",6647 "frame-election-provider-support",
6326[[package]]6661[[package]]
6327name = "pallet-nomination-pools-runtime-api"6662name = "pallet-nomination-pools-runtime-api"
6328version = "1.0.0-dev"6663version = "1.0.0-dev"
6329source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6664source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6330dependencies = [6665dependencies = [
6331 "parity-scale-codec",6666 "parity-scale-codec",
6332 "sp-api",6667 "sp-api",
6357[[package]]6692[[package]]
6358name = "pallet-offences"6693name = "pallet-offences"
6359version = "4.0.0-dev"6694version = "4.0.0-dev"
6360source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6695source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6361dependencies = [6696dependencies = [
6362 "frame-support",6697 "frame-support",
6363 "frame-system",6698 "frame-system",
6374[[package]]6709[[package]]
6375name = "pallet-offences-benchmarking"6710name = "pallet-offences-benchmarking"
6376version = "4.0.0-dev"6711version = "4.0.0-dev"
6377source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6712source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6378dependencies = [6713dependencies = [
6379 "frame-benchmarking",6714 "frame-benchmarking",
6380 "frame-election-provider-support",6715 "frame-election-provider-support",
6397[[package]]6732[[package]]
6398name = "pallet-preimage"6733name = "pallet-preimage"
6399version = "4.0.0-dev"6734version = "4.0.0-dev"
6400source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6735source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6401dependencies = [6736dependencies = [
6402 "frame-benchmarking",6737 "frame-benchmarking",
6403 "frame-support",6738 "frame-support",
6414[[package]]6749[[package]]
6415name = "pallet-proxy"6750name = "pallet-proxy"
6416version = "4.0.0-dev"6751version = "4.0.0-dev"
6417source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6752source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6418dependencies = [6753dependencies = [
6419 "frame-benchmarking",6754 "frame-benchmarking",
6420 "frame-support",6755 "frame-support",
6429[[package]]6764[[package]]
6430name = "pallet-randomness-collective-flip"6765name = "pallet-randomness-collective-flip"
6431version = "4.0.0-dev"6766version = "4.0.0-dev"
6432source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6767source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6433dependencies = [6768dependencies = [
6434 "frame-support",6769 "frame-support",
6435 "frame-system",6770 "frame-system",
6443[[package]]6778[[package]]
6444name = "pallet-ranked-collective"6779name = "pallet-ranked-collective"
6445version = "4.0.0-dev"6780version = "4.0.0-dev"
6446source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6781source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6447dependencies = [6782dependencies = [
6448 "frame-benchmarking",6783 "frame-benchmarking",
6449 "frame-support",6784 "frame-support",
6461[[package]]6796[[package]]
6462name = "pallet-recovery"6797name = "pallet-recovery"
6463version = "4.0.0-dev"6798version = "4.0.0-dev"
6464source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6799source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6465dependencies = [6800dependencies = [
6466 "frame-benchmarking",6801 "frame-benchmarking",
6467 "frame-support",6802 "frame-support",
6476[[package]]6811[[package]]
6477name = "pallet-referenda"6812name = "pallet-referenda"
6478version = "4.0.0-dev"6813version = "4.0.0-dev"
6479source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6814source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6480dependencies = [6815dependencies = [
6481 "assert_matches",6816 "assert_matches",
6482 "frame-benchmarking",6817 "frame-benchmarking",
6552[[package]]6887[[package]]
6553name = "pallet-scheduler"6888name = "pallet-scheduler"
6554version = "4.0.0-dev"6889version = "4.0.0-dev"
6555source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6890source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6556dependencies = [6891dependencies = [
6557 "frame-benchmarking",6892 "frame-benchmarking",
6558 "frame-support",6893 "frame-support",
6569[[package]]6904[[package]]
6570name = "pallet-session"6905name = "pallet-session"
6571version = "4.0.0-dev"6906version = "4.0.0-dev"
6572source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6907source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6573dependencies = [6908dependencies = [
6574 "frame-support",6909 "frame-support",
6575 "frame-system",6910 "frame-system",
6590[[package]]6925[[package]]
6591name = "pallet-session-benchmarking"6926name = "pallet-session-benchmarking"
6592version = "4.0.0-dev"6927version = "4.0.0-dev"
6593source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6928source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6594dependencies = [6929dependencies = [
6595 "frame-benchmarking",6930 "frame-benchmarking",
6596 "frame-support",6931 "frame-support",
6597 "frame-system",6932 "frame-system",
6598 "pallet-session",6933 "pallet-session",
6599 "pallet-staking",6934 "pallet-staking",
6600 "rand 0.7.3",6935 "rand 0.8.5",
6601 "sp-runtime",6936 "sp-runtime",
6602 "sp-session",6937 "sp-session",
6603 "sp-std",6938 "sp-std",
6606[[package]]6941[[package]]
6607name = "pallet-society"6942name = "pallet-society"
6608version = "4.0.0-dev"6943version = "4.0.0-dev"
6609source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6944source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6610dependencies = [6945dependencies = [
6611 "frame-support",6946 "frame-support",
6612 "frame-system",6947 "frame-system",
6620[[package]]6955[[package]]
6621name = "pallet-staking"6956name = "pallet-staking"
6622version = "4.0.0-dev"6957version = "4.0.0-dev"
6623source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6958source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6624dependencies = [6959dependencies = [
6625 "frame-benchmarking",6960 "frame-benchmarking",
6626 "frame-election-provider-support",6961 "frame-election-provider-support",
6643[[package]]6978[[package]]
6644name = "pallet-staking-reward-curve"6979name = "pallet-staking-reward-curve"
6645version = "4.0.0-dev"6980version = "4.0.0-dev"
6646source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6981source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6647dependencies = [6982dependencies = [
6648 "proc-macro-crate",6983 "proc-macro-crate",
6649 "proc-macro2",6984 "proc-macro2",
6654[[package]]6989[[package]]
6655name = "pallet-staking-reward-fn"6990name = "pallet-staking-reward-fn"
6656version = "4.0.0-dev"6991version = "4.0.0-dev"
6657source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"6992source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6658dependencies = [6993dependencies = [
6659 "log",6994 "log",
6660 "sp-arithmetic",6995 "sp-arithmetic",
6663[[package]]6998[[package]]
6664name = "pallet-state-trie-migration"6999name = "pallet-state-trie-migration"
6665version = "4.0.0-dev"7000version = "4.0.0-dev"
6666source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"7001source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6667dependencies = [7002dependencies = [
6668 "frame-benchmarking",7003 "frame-benchmarking",
6669 "frame-support",7004 "frame-support",
6696[[package]]7031[[package]]
6697name = "pallet-sudo"7032name = "pallet-sudo"
6698version = "4.0.0-dev"7033version = "4.0.0-dev"
6699source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"7034source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6700dependencies = [7035dependencies = [
6701 "frame-support",7036 "frame-support",
6702 "frame-system",7037 "frame-system",
6710[[package]]7045[[package]]
6711name = "pallet-template-transaction-payment"7046name = "pallet-template-transaction-payment"
6712version = "3.0.0"7047version = "3.0.0"
6713source = "git+https://github.com/uniquenetwork/pallet-sponsoring?branch=polkadot-v0.9.36#55943b982e9b0b80465885f31f76db3dba91dac4"7048source = "git+https://github.com/uniquenetwork/pallet-sponsoring?branch=polkadot-v0.9.37#72931fde262ecc4418928dd4bbeea10c64593175"
6714dependencies = [7049dependencies = [
6715 "frame-benchmarking",7050 "frame-benchmarking",
6716 "frame-support",7051 "frame-support",
6742[[package]]7077[[package]]
6743name = "pallet-timestamp"7078name = "pallet-timestamp"
6744version = "4.0.0-dev"7079version = "4.0.0-dev"
6745source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"7080source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6746dependencies = [7081dependencies = [
6747 "frame-benchmarking",7082 "frame-benchmarking",
6748 "frame-support",7083 "frame-support",
6760[[package]]7095[[package]]
6761name = "pallet-tips"7096name = "pallet-tips"
6762version = "4.0.0-dev"7097version = "4.0.0-dev"
6763source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"7098source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6764dependencies = [7099dependencies = [
6765 "frame-benchmarking",7100 "frame-benchmarking",
6766 "frame-support",7101 "frame-support",
6779[[package]]7114[[package]]
6780name = "pallet-transaction-payment"7115name = "pallet-transaction-payment"
6781version = "4.0.0-dev"7116version = "4.0.0-dev"
6782source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"7117source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6783dependencies = [7118dependencies = [
6784 "frame-support",7119 "frame-support",
6785 "frame-system",7120 "frame-system",
6795[[package]]7130[[package]]
6796name = "pallet-transaction-payment-rpc"7131name = "pallet-transaction-payment-rpc"
6797version = "4.0.0-dev"7132version = "4.0.0-dev"
6798source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"7133source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6799dependencies = [7134dependencies = [
6800 "jsonrpsee",7135 "jsonrpsee",
6801 "pallet-transaction-payment-rpc-runtime-api",7136 "pallet-transaction-payment-rpc-runtime-api",
6811[[package]]7146[[package]]
6812name = "pallet-transaction-payment-rpc-runtime-api"7147name = "pallet-transaction-payment-rpc-runtime-api"
6813version = "4.0.0-dev"7148version = "4.0.0-dev"
6814source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"7149source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6815dependencies = [7150dependencies = [
6816 "pallet-transaction-payment",7151 "pallet-transaction-payment",
6817 "parity-scale-codec",7152 "parity-scale-codec",
6823[[package]]7158[[package]]
6824name = "pallet-treasury"7159name = "pallet-treasury"
6825version = "4.0.0-dev"7160version = "4.0.0-dev"
6826source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"7161source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6827dependencies = [7162dependencies = [
6828 "frame-benchmarking",7163 "frame-benchmarking",
6829 "frame-support",7164 "frame-support",
6882[[package]]7217[[package]]
6883name = "pallet-utility"7218name = "pallet-utility"
6884version = "4.0.0-dev"7219version = "4.0.0-dev"
6885source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"7220source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6886dependencies = [7221dependencies = [
6887 "frame-benchmarking",7222 "frame-benchmarking",
6888 "frame-support",7223 "frame-support",
6898[[package]]7233[[package]]
6899name = "pallet-vesting"7234name = "pallet-vesting"
6900version = "4.0.0-dev"7235version = "4.0.0-dev"
6901source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"7236source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6902dependencies = [7237dependencies = [
6903 "frame-benchmarking",7238 "frame-benchmarking",
6904 "frame-support",7239 "frame-support",
6913[[package]]7248[[package]]
6914name = "pallet-whitelist"7249name = "pallet-whitelist"
6915version = "4.0.0-dev"7250version = "4.0.0-dev"
6916source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"7251source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
6917dependencies = [7252dependencies = [
6918 "frame-benchmarking",7253 "frame-benchmarking",
6919 "frame-support",7254 "frame-support",
69277262
6928[[package]]7263[[package]]
6929name = "pallet-xcm"7264name = "pallet-xcm"
6930version = "0.9.36"7265version = "0.9.37"
6931source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"7266source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
6932dependencies = [7267dependencies = [
6933 "frame-support",7268 "frame-support",
6934 "frame-system",7269 "frame-system",
69457280
6946[[package]]7281[[package]]
6947name = "pallet-xcm-benchmarks"7282name = "pallet-xcm-benchmarks"
6948version = "0.9.36"7283version = "0.9.37"
6949source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"7284source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
6950dependencies = [7285dependencies = [
6951 "frame-benchmarking",7286 "frame-benchmarking",
6952 "frame-support",7287 "frame-support",
6963[[package]]7298[[package]]
6964name = "parachain-info"7299name = "parachain-info"
6965version = "0.1.0"7300version = "0.1.0"
6966source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0"7301source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b"
6967dependencies = [7302dependencies = [
6968 "cumulus-primitives-core",7303 "cumulus-primitives-core",
6969 "frame-support",7304 "frame-support",
69747309
6975[[package]]7310[[package]]
6976name = "parity-db"7311name = "parity-db"
6977version = "0.4.2"7312version = "0.4.3"
6978source = "registry+https://github.com/rust-lang/crates.io-index"7313source = "registry+https://github.com/rust-lang/crates.io-index"
6979checksum = "3a7511a0bec4a336b5929999d02b560d2439c993cccf98c26481484e811adc43"7314checksum = "dd684a725651d9588ef21f140a328b6b4f64e646b2e931f3e6f14f75eedf9980"
6980dependencies = [7315dependencies = [
6981 "blake2",7316 "blake2",
6982 "crc32fast",7317 "crc32fast",
7090source = "registry+https://github.com/rust-lang/crates.io-index"7425source = "registry+https://github.com/rust-lang/crates.io-index"
7091checksum = "d01a5bd0424d00070b0098dd17ebca6f961a959dead1dbcbbbc1d1cd8d3deeba"7426checksum = "d01a5bd0424d00070b0098dd17ebca6f961a959dead1dbcbbbc1d1cd8d3deeba"
7092
7093[[package]]
7094name = "pbkdf2"
7095version = "0.4.0"
7096source = "registry+https://github.com/rust-lang/crates.io-index"
7097checksum = "216eaa586a190f0a738f2f918511eecfa90f13295abec0e457cdebcceda80cbd"
7098dependencies = [
7099 "crypto-mac 0.8.0",
7100]
71017427
7102[[package]]7428[[package]]
7103name = "pbkdf2"7429name = "pbkdf2"
7108 "crypto-mac 0.11.1",7434 "crypto-mac 0.11.1",
7109]7435]
7436
7437[[package]]
7438name = "pbkdf2"
7439version = "0.11.0"
7440source = "registry+https://github.com/rust-lang/crates.io-index"
7441checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917"
7442dependencies = [
7443 "digest 0.10.6",
7444]
71107445
7111[[package]]7446[[package]]
7112name = "peeking_take_while"7447name = "peeking_take_while"
7113version = "0.1.2"7448version = "0.1.2"
7114source = "registry+https://github.com/rust-lang/crates.io-index"7449source = "registry+https://github.com/rust-lang/crates.io-index"
7115checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"7450checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
7451
7452[[package]]
7453name = "pem"
7454version = "1.1.1"
7455source = "registry+https://github.com/rust-lang/crates.io-index"
7456checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8"
7457dependencies = [
7458 "base64 0.13.1",
7459]
7460
7461[[package]]
7462name = "pem-rfc7468"
7463version = "0.6.0"
7464source = "registry+https://github.com/rust-lang/crates.io-index"
7465checksum = "24d159833a9105500e0398934e205e0773f0b27529557134ecfc51c27646adac"
7466dependencies = [
7467 "base64ct",
7468]
71167469
7117[[package]]7470[[package]]
7118name = "percent-encoding"7471name = "percent-encoding"
71227475
7123[[package]]7476[[package]]
7124name = "pest"7477name = "pest"
7125version = "2.5.3"7478version = "2.5.4"
7126source = "registry+https://github.com/rust-lang/crates.io-index"7479source = "registry+https://github.com/rust-lang/crates.io-index"
7127checksum = "4257b4a04d91f7e9e6290be5d3da4804dd5784fafde3a497d73eb2b4a158c30a"7480checksum = "4ab62d2fa33726dbe6321cc97ef96d8cde531e3eeaf858a058de53a8a6d40d8f"
7128dependencies = [7481dependencies = [
7129 "thiserror",7482 "thiserror",
7130 "ucd-trie",7483 "ucd-trie",
7131]7484]
71327485
7133[[package]]7486[[package]]
7134name = "pest_derive"7487name = "pest_derive"
7135version = "2.5.3"7488version = "2.5.4"
7136source = "registry+https://github.com/rust-lang/crates.io-index"7489source = "registry+https://github.com/rust-lang/crates.io-index"
7137checksum = "241cda393b0cdd65e62e07e12454f1f25d57017dcc514b1514cd3c4645e3a0a6"7490checksum = "8bf026e2d0581559db66d837fe5242320f525d85c76283c61f4d51a1238d65ea"
7138dependencies = [7491dependencies = [
7139 "pest",7492 "pest",
7140 "pest_generator",7493 "pest_generator",
7141]7494]
71427495
7143[[package]]7496[[package]]
7144name = "pest_generator"7497name = "pest_generator"
7145version = "2.5.3"7498version = "2.5.4"
7146source = "registry+https://github.com/rust-lang/crates.io-index"7499source = "registry+https://github.com/rust-lang/crates.io-index"
7147checksum = "46b53634d8c8196302953c74d5352f33d0c512a9499bd2ce468fc9f4128fa27c"7500checksum = "2b27bd18aa01d91c8ed2b61ea23406a676b42d82609c6e2581fba42f0c15f17f"
7148dependencies = [7501dependencies = [
7149 "pest",7502 "pest",
7150 "pest_meta",7503 "pest_meta",
71557508
7156[[package]]7509[[package]]
7157name = "pest_meta"7510name = "pest_meta"
7158version = "2.5.3"7511version = "2.5.4"
7159source = "registry+https://github.com/rust-lang/crates.io-index"7512source = "registry+https://github.com/rust-lang/crates.io-index"
7160checksum = "0ef4f1332a8d4678b41966bb4cc1d0676880e84183a1ecc3f4b69f03e99c7a51"7513checksum = "9f02b677c1859756359fc9983c2e56a0237f18624a3789528804406b7e915e5d"
7161dependencies = [7514dependencies = [
7162 "once_cell",7515 "once_cell",
7163 "pest",7516 "pest",
72427595
7243[[package]]7596[[package]]
7244name = "polkadot-approval-distribution"7597name = "polkadot-approval-distribution"
7245version = "0.9.36"7598version = "0.9.37"
7246source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"7599source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7247dependencies = [7600dependencies = [
7248 "futures",7601 "futures",
7602 "polkadot-node-metrics",
7249 "polkadot-node-network-protocol",7603 "polkadot-node-network-protocol",
7250 "polkadot-node-primitives",7604 "polkadot-node-primitives",
7251 "polkadot-node-subsystem",7605 "polkadot-node-subsystem",
7252 "polkadot-node-subsystem-util",
7253 "polkadot-primitives",7606 "polkadot-primitives",
7254 "rand 0.8.5",7607 "rand 0.8.5",
7255 "tracing-gum",7608 "tracing-gum",
7256]7609]
72577610
7258[[package]]7611[[package]]
7259name = "polkadot-availability-bitfield-distribution"7612name = "polkadot-availability-bitfield-distribution"
7260version = "0.9.36"7613version = "0.9.37"
7261source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"7614source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7262dependencies = [7615dependencies = [
7263 "futures",7616 "futures",
7264 "polkadot-node-network-protocol",7617 "polkadot-node-network-protocol",
72717624
7272[[package]]7625[[package]]
7273name = "polkadot-availability-distribution"7626name = "polkadot-availability-distribution"
7274version = "0.9.36"7627version = "0.9.37"
7275source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"7628source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7276dependencies = [7629dependencies = [
7277 "derive_more",7630 "derive_more",
7278 "fatality",7631 "fatality",
72947647
7295[[package]]7648[[package]]
7296name = "polkadot-availability-recovery"7649name = "polkadot-availability-recovery"
7297version = "0.9.36"7650version = "0.9.37"
7298source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"7651source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7299dependencies = [7652dependencies = [
7300 "fatality",7653 "fatality",
7301 "futures",7654 "futures",
73157668
7316[[package]]7669[[package]]
7317name = "polkadot-cli"7670name = "polkadot-cli"
7318version = "0.9.36"7671version = "0.9.37"
7319source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"7672source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7320dependencies = [7673dependencies = [
7321 "clap",7674 "clap",
7322 "frame-benchmarking-cli",7675 "frame-benchmarking-cli",
73427695
7343[[package]]7696[[package]]
7344name = "polkadot-client"7697name = "polkadot-client"
7345version = "0.9.36"7698version = "0.9.37"
7346source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"7699source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7347dependencies = [7700dependencies = [
7348 "async-trait",7701 "async-trait",
7349 "frame-benchmarking",7702 "frame-benchmarking",
73847737
7385[[package]]7738[[package]]
7386name = "polkadot-collator-protocol"7739name = "polkadot-collator-protocol"
7387version = "0.9.36"7740version = "0.9.37"
7388source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"7741source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7389dependencies = [7742dependencies = [
7390 "always-assert",7743 "always-assert",
7391 "bitvec",7744 "bitvec",
74067759
7407[[package]]7760[[package]]
7408name = "polkadot-core-primitives"7761name = "polkadot-core-primitives"
7409version = "0.9.36"7762version = "0.9.37"
7410source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"7763source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7411dependencies = [7764dependencies = [
7412 "parity-scale-codec",7765 "parity-scale-codec",
7413 "scale-info",7766 "scale-info",
74187771
7419[[package]]7772[[package]]
7420name = "polkadot-dispute-distribution"7773name = "polkadot-dispute-distribution"
7421version = "0.9.36"7774version = "0.9.37"
7422source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"7775source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7423dependencies = [7776dependencies = [
7424 "derive_more",7777 "derive_more",
7425 "fatality",7778 "fatality",
74437796
7444[[package]]7797[[package]]
7445name = "polkadot-erasure-coding"7798name = "polkadot-erasure-coding"
7446version = "0.9.36"7799version = "0.9.37"
7447source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"7800source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7448dependencies = [7801dependencies = [
7449 "parity-scale-codec",7802 "parity-scale-codec",
7450 "polkadot-node-primitives",7803 "polkadot-node-primitives",
74577810
7458[[package]]7811[[package]]
7459name = "polkadot-gossip-support"7812name = "polkadot-gossip-support"
7460version = "0.9.36"7813version = "0.9.37"
7461source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"7814source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7462dependencies = [7815dependencies = [
7463 "futures",7816 "futures",
7464 "futures-timer",7817 "futures-timer",
74777830
7478[[package]]7831[[package]]
7479name = "polkadot-network-bridge"7832name = "polkadot-network-bridge"
7480version = "0.9.36"7833version = "0.9.37"
7481source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"7834source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7482dependencies = [7835dependencies = [
7483 "always-assert",7836 "always-assert",
7484 "async-trait",7837 "async-trait",
7487 "futures",7840 "futures",
7488 "parity-scale-codec",7841 "parity-scale-codec",
7489 "parking_lot 0.12.1",7842 "parking_lot 0.12.1",
7843 "polkadot-node-metrics",
7490 "polkadot-node-network-protocol",7844 "polkadot-node-network-protocol",
7491 "polkadot-node-subsystem",7845 "polkadot-node-subsystem",
7492 "polkadot-node-subsystem-util",
7493 "polkadot-overseer",7846 "polkadot-overseer",
7494 "polkadot-primitives",7847 "polkadot-primitives",
7495 "sc-network",7848 "sc-network",
75017854
7502[[package]]7855[[package]]
7503name = "polkadot-node-collation-generation"7856name = "polkadot-node-collation-generation"
7504version = "0.9.36"7857version = "0.9.37"
7505source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"7858source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7506dependencies = [7859dependencies = [
7507 "futures",7860 "futures",
7508 "parity-scale-codec",7861 "parity-scale-codec",
75197872
7520[[package]]7873[[package]]
7521name = "polkadot-node-core-approval-voting"7874name = "polkadot-node-core-approval-voting"
7522version = "0.9.36"7875version = "0.9.37"
7523source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"7876source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7524dependencies = [7877dependencies = [
7525 "bitvec",7878 "bitvec",
7526 "derive_more",7879 "derive_more",
75487901
7549[[package]]7902[[package]]
7550name = "polkadot-node-core-av-store"7903name = "polkadot-node-core-av-store"
7551version = "0.9.36"7904version = "0.9.37"
7552source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"7905source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7553dependencies = [7906dependencies = [
7554 "bitvec",7907 "bitvec",
7555 "futures",7908 "futures",
75687921
7569[[package]]7922[[package]]
7570name = "polkadot-node-core-backing"7923name = "polkadot-node-core-backing"
7571version = "0.9.36"7924version = "0.9.37"
7572source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"7925source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7573dependencies = [7926dependencies = [
7574 "bitvec",7927 "bitvec",
7575 "fatality",7928 "fatality",
75877940
7588[[package]]7941[[package]]
7589name = "polkadot-node-core-bitfield-signing"7942name = "polkadot-node-core-bitfield-signing"
7590version = "0.9.36"7943version = "0.9.37"
7591source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"7944source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7592dependencies = [7945dependencies = [
7593 "futures",7946 "futures",
7594 "polkadot-node-subsystem",7947 "polkadot-node-subsystem",
76027955
7603[[package]]7956[[package]]
7604name = "polkadot-node-core-candidate-validation"7957name = "polkadot-node-core-candidate-validation"
7605version = "0.9.36"7958version = "0.9.37"
7606source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"7959source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7607dependencies = [7960dependencies = [
7608 "async-trait",7961 "async-trait",
7609 "futures",7962 "futures",
7610 "futures-timer",7963 "futures-timer",
7611 "parity-scale-codec",7964 "parity-scale-codec",
7612 "polkadot-node-core-pvf",7965 "polkadot-node-core-pvf",
7966 "polkadot-node-metrics",
7613 "polkadot-node-primitives",7967 "polkadot-node-primitives",
7614 "polkadot-node-subsystem",7968 "polkadot-node-subsystem",
7615 "polkadot-node-subsystem-util",
7616 "polkadot-parachain",7969 "polkadot-parachain",
7617 "polkadot-primitives",7970 "polkadot-primitives",
7618 "sp-maybe-compressed-blob",7971 "sp-maybe-compressed-blob",
76217974
7622[[package]]7975[[package]]
7623name = "polkadot-node-core-chain-api"7976name = "polkadot-node-core-chain-api"
7624version = "0.9.36"7977version = "0.9.37"
7625source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"7978source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7626dependencies = [7979dependencies = [
7627 "futures",7980 "futures",
7981 "polkadot-node-metrics",
7628 "polkadot-node-subsystem",7982 "polkadot-node-subsystem",
7629 "polkadot-node-subsystem-util",
7630 "polkadot-primitives",7983 "polkadot-primitives",
7631 "sc-client-api",7984 "sc-client-api",
7632 "sc-consensus-babe",7985 "sc-consensus-babe",
76367989
7637[[package]]7990[[package]]
7638name = "polkadot-node-core-chain-selection"7991name = "polkadot-node-core-chain-selection"
7639version = "0.9.36"7992version = "0.9.37"
7640source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"7993source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7641dependencies = [7994dependencies = [
7642 "futures",7995 "futures",
7643 "futures-timer",7996 "futures-timer",
76538006
7654[[package]]8007[[package]]
7655name = "polkadot-node-core-dispute-coordinator"8008name = "polkadot-node-core-dispute-coordinator"
7656version = "0.9.36"8009version = "0.9.37"
7657source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8010source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7658dependencies = [8011dependencies = [
7659 "fatality",8012 "fatality",
7660 "futures",8013 "futures",
76728025
7673[[package]]8026[[package]]
7674name = "polkadot-node-core-parachains-inherent"8027name = "polkadot-node-core-parachains-inherent"
7675version = "0.9.36"8028version = "0.9.37"
7676source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8029source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7677dependencies = [8030dependencies = [
7678 "async-trait",8031 "async-trait",
7679 "futures",8032 "futures",
7683 "polkadot-primitives",8036 "polkadot-primitives",
7684 "sp-blockchain",8037 "sp-blockchain",
7685 "sp-inherents",8038 "sp-inherents",
7686 "sp-runtime",
7687 "thiserror",8039 "thiserror",
7688 "tracing-gum",8040 "tracing-gum",
7689]8041]
76908042
7691[[package]]8043[[package]]
7692name = "polkadot-node-core-provisioner"8044name = "polkadot-node-core-provisioner"
7693version = "0.9.36"8045version = "0.9.37"
7694source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8046source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7695dependencies = [8047dependencies = [
7696 "bitvec",8048 "bitvec",
7697 "fatality",8049 "fatality",
77088060
7709[[package]]8061[[package]]
7710name = "polkadot-node-core-pvf"8062name = "polkadot-node-core-pvf"
7711version = "0.9.36"8063version = "0.9.37"
7712source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8064source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7713dependencies = [8065dependencies = [
7714 "always-assert",8066 "always-assert",
7715 "assert_matches",8067 "assert_matches",
7716 "async-process",
7717 "async-std",
7718 "cpu-time",8068 "cpu-time",
7719 "futures",8069 "futures",
7720 "futures-timer",8070 "futures-timer",
7736 "sp-tracing",8086 "sp-tracing",
7737 "sp-wasm-interface",8087 "sp-wasm-interface",
7738 "tempfile",8088 "tempfile",
8089 "tokio",
7739 "tracing-gum",8090 "tracing-gum",
7740]8091]
77418092
7742[[package]]8093[[package]]
7743name = "polkadot-node-core-pvf-checker"8094name = "polkadot-node-core-pvf-checker"
7744version = "0.9.36"8095version = "0.9.37"
7745source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8096source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7746dependencies = [8097dependencies = [
7747 "futures",8098 "futures",
7748 "polkadot-node-primitives",8099 "polkadot-node-primitives",
77578108
7758[[package]]8109[[package]]
7759name = "polkadot-node-core-runtime-api"8110name = "polkadot-node-core-runtime-api"
7760version = "0.9.36"8111version = "0.9.37"
7761source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8112source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7762dependencies = [8113dependencies = [
7763 "futures",8114 "futures",
7764 "lru",8115 "lru",
8116 "polkadot-node-metrics",
7765 "polkadot-node-subsystem",8117 "polkadot-node-subsystem",
7766 "polkadot-node-subsystem-types",8118 "polkadot-node-subsystem-types",
7767 "polkadot-node-subsystem-util",
7768 "polkadot-primitives",8119 "polkadot-primitives",
7769 "sp-consensus-babe",8120 "sp-consensus-babe",
7770 "tracing-gum",8121 "tracing-gum",
7771]8122]
77728123
7773[[package]]8124[[package]]
7774name = "polkadot-node-jaeger"8125name = "polkadot-node-jaeger"
7775version = "0.9.36"8126version = "0.9.37"
7776source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8127source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7777dependencies = [8128dependencies = [
7778 "lazy_static",8129 "lazy_static",
7779 "log",8130 "log",
77908141
7791[[package]]8142[[package]]
7792name = "polkadot-node-metrics"8143name = "polkadot-node-metrics"
7793version = "0.9.36"8144version = "0.9.37"
7794source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8145source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7795dependencies = [8146dependencies = [
7796 "bs58",8147 "bs58",
7797 "futures",8148 "futures",
78098160
7810[[package]]8161[[package]]
7811name = "polkadot-node-network-protocol"8162name = "polkadot-node-network-protocol"
7812version = "0.9.36"8163version = "0.9.37"
7813source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8164source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7814dependencies = [8165dependencies = [
7815 "async-trait",8166 "async-trait",
7816 "derive_more",8167 "derive_more",
78328183
7833[[package]]8184[[package]]
7834name = "polkadot-node-primitives"8185name = "polkadot-node-primitives"
7835version = "0.9.36"8186version = "0.9.37"
7836source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8187source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7837dependencies = [8188dependencies = [
7838 "bounded-vec",8189 "bounded-vec",
7839 "futures",8190 "futures",
78548205
7855[[package]]8206[[package]]
7856name = "polkadot-node-subsystem"8207name = "polkadot-node-subsystem"
7857version = "0.9.36"8208version = "0.9.37"
7858source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8209source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7859dependencies = [8210dependencies = [
7860 "polkadot-node-jaeger",8211 "polkadot-node-jaeger",
7861 "polkadot-node-subsystem-types",8212 "polkadot-node-subsystem-types",
78648215
7865[[package]]8216[[package]]
7866name = "polkadot-node-subsystem-types"8217name = "polkadot-node-subsystem-types"
7867version = "0.9.36"8218version = "0.9.37"
7868source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8219source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7869dependencies = [8220dependencies = [
7870 "async-trait",8221 "async-trait",
7871 "derive_more",8222 "derive_more",
78878238
7888[[package]]8239[[package]]
7889name = "polkadot-node-subsystem-util"8240name = "polkadot-node-subsystem-util"
7890version = "0.9.36"8241version = "0.9.37"
7891source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8242source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7892dependencies = [8243dependencies = [
7893 "async-trait",8244 "async-trait",
7894 "derive_more",8245 "derive_more",
7895 "fatality",8246 "fatality",
7896 "futures",8247 "futures",
8248 "futures-channel",
7897 "itertools",8249 "itertools",
7898 "kvdb",8250 "kvdb",
7899 "lru",8251 "lru",
79198271
7920[[package]]8272[[package]]
7921name = "polkadot-overseer"8273name = "polkadot-overseer"
7922version = "0.9.36"8274version = "0.9.37"
7923source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8275source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7924dependencies = [8276dependencies = [
7925 "async-trait",8277 "async-trait",
7926 "futures",8278 "futures",
79428294
7943[[package]]8295[[package]]
7944name = "polkadot-parachain"8296name = "polkadot-parachain"
7945version = "0.9.36"8297version = "0.9.37"
7946source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8298source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7947dependencies = [8299dependencies = [
7948 "derive_more",8300 "derive_more",
7949 "frame-support",8301 "frame-support",
79588310
7959[[package]]8311[[package]]
7960name = "polkadot-performance-test"8312name = "polkadot-performance-test"
7961version = "0.9.36"8313version = "0.9.37"
7962source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8314source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7963dependencies = [8315dependencies = [
7964 "env_logger 0.9.3",8316 "env_logger 0.9.3",
7965 "kusama-runtime",8317 "kusama-runtime",
79738325
7974[[package]]8326[[package]]
7975name = "polkadot-primitives"8327name = "polkadot-primitives"
7976version = "0.9.36"8328version = "0.9.37"
7977source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8329source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
7978dependencies = [8330dependencies = [
7979 "bitvec",8331 "bitvec",
7980 "hex-literal",8332 "hex-literal",
79998351
8000[[package]]8352[[package]]
8001name = "polkadot-rpc"8353name = "polkadot-rpc"
8002version = "0.9.36"8354version = "0.9.37"
8003source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8355source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
8004dependencies = [8356dependencies = [
8005 "beefy-gadget",8357 "beefy-gadget",
8006 "beefy-gadget-rpc",8358 "beefy-gadget-rpc",
80318383
8032[[package]]8384[[package]]
8033name = "polkadot-runtime"8385name = "polkadot-runtime"
8034version = "0.9.36"8386version = "0.9.37"
8035source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8387source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
8036dependencies = [8388dependencies = [
8037 "bitvec",8389 "bitvec",
8038 "frame-benchmarking",8390 "frame-benchmarking",
8059 "pallet-elections-phragmen",8411 "pallet-elections-phragmen",
8060 "pallet-fast-unstake",8412 "pallet-fast-unstake",
8061 "pallet-grandpa",8413 "pallet-grandpa",
8062 "pallet-identity 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36)",8414 "pallet-identity 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37)",
8063 "pallet-im-online",8415 "pallet-im-online",
8064 "pallet-indices",8416 "pallet-indices",
8065 "pallet-membership",8417 "pallet-membership",
81208472
8121[[package]]8473[[package]]
8122name = "polkadot-runtime-common"8474name = "polkadot-runtime-common"
8123version = "0.9.36"8475version = "0.9.37"
8124source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8476source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
8125dependencies = [8477dependencies = [
8126 "bitvec",8478 "bitvec",
8127 "frame-benchmarking",8479 "frame-benchmarking",
81688520
8169[[package]]8521[[package]]
8170name = "polkadot-runtime-constants"8522name = "polkadot-runtime-constants"
8171version = "0.9.36"8523version = "0.9.37"
8172source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8524source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
8173dependencies = [8525dependencies = [
8174 "frame-support",8526 "frame-support",
8175 "polkadot-primitives",8527 "polkadot-primitives",
81828534
8183[[package]]8535[[package]]
8184name = "polkadot-runtime-metrics"8536name = "polkadot-runtime-metrics"
8185version = "0.9.36"8537version = "0.9.37"
8186source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8538source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
8187dependencies = [8539dependencies = [
8188 "bs58",8540 "bs58",
8189 "parity-scale-codec",8541 "parity-scale-codec",
81948546
8195[[package]]8547[[package]]
8196name = "polkadot-runtime-parachains"8548name = "polkadot-runtime-parachains"
8197version = "0.9.36"8549version = "0.9.37"
8198source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8550source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
8199dependencies = [8551dependencies = [
8200 "bitflags",8552 "bitflags",
8201 "bitvec",8553 "bitvec",
82378589
8238[[package]]8590[[package]]
8239name = "polkadot-service"8591name = "polkadot-service"
8240version = "0.9.36"8592version = "0.9.37"
8241source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8593source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
8242dependencies = [8594dependencies = [
8243 "async-trait",8595 "async-trait",
8244 "beefy-gadget",8596 "beefy-gadget",
83438695
8344[[package]]8696[[package]]
8345name = "polkadot-statement-distribution"8697name = "polkadot-statement-distribution"
8346version = "0.9.36"8698version = "0.9.37"
8347source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8699source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
8348dependencies = [8700dependencies = [
8349 "arrayvec 0.5.2",8701 "arrayvec 0.5.2",
8350 "fatality",8702 "fatality",
83648716
8365[[package]]8717[[package]]
8366name = "polkadot-statement-table"8718name = "polkadot-statement-table"
8367version = "0.9.36"8719version = "0.9.37"
8368source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"8720source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
8369dependencies = [8721dependencies = [
8370 "parity-scale-codec",8722 "parity-scale-codec",
8371 "polkadot-primitives",8723 "polkadot-primitives",
8397 "universal-hash",8749 "universal-hash",
8398]8750]
8751
8752[[package]]
8753name = "polyval"
8754version = "0.4.5"
8755source = "registry+https://github.com/rust-lang/crates.io-index"
8756checksum = "eebcc4aa140b9abd2bc40d9c3f7ccec842679cd79045ac3a7ac698c1a064b7cd"
8757dependencies = [
8758 "cpuid-bool",
8759 "opaque-debug 0.3.0",
8760 "universal-hash",
8761]
83998762
8400[[package]]8763[[package]]
8401name = "polyval"8764name = "polyval"
85118874
8512[[package]]8875[[package]]
8513name = "proc-macro-crate"8876name = "proc-macro-crate"
8514version = "1.2.1"8877version = "1.3.0"
8515source = "registry+https://github.com/rust-lang/crates.io-index"8878source = "registry+https://github.com/rust-lang/crates.io-index"
8516checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9"8879checksum = "66618389e4ec1c7afe67d51a9bf34ff9236480f8d51e7489b7d5ab0303c13f34"
8517dependencies = [8880dependencies = [
8518 "once_cell",8881 "once_cell",
8519 "thiserror",
8520 "toml",8882 "toml_edit",
8521]8883]
85228884
8523[[package]]8885[[package]]
86248986
8625[[package]]8987[[package]]
8626name = "prost-codec"8988name = "prost-codec"
8627version = "0.2.0"8989version = "0.3.0"
8628source = "registry+https://github.com/rust-lang/crates.io-index"8990source = "registry+https://github.com/rust-lang/crates.io-index"
8629checksum = "011ae9ff8359df7915f97302d591cdd9e0e27fbd5a4ddc5bd13b71079bb20987"8991checksum = "0dc34979ff898b6e141106178981ce2596c387ea6e62533facfc61a37fc879c0"
8630dependencies = [8992dependencies = [
8631 "asynchronous-codec",8993 "asynchronous-codec",
8632 "bytes",8994 "bytes",
8787 "pin-project-lite 0.1.12",9149 "pin-project-lite 0.1.12",
8788]9150]
9151
9152[[package]]
9153name = "quinn-proto"
9154version = "0.9.2"
9155source = "registry+https://github.com/rust-lang/crates.io-index"
9156checksum = "72ef4ced82a24bb281af338b9e8f94429b6eca01b4e66d899f40031f074e74c9"
9157dependencies = [
9158 "bytes",
9159 "rand 0.8.5",
9160 "ring",
9161 "rustc-hash",
9162 "rustls 0.20.8",
9163 "slab",
9164 "thiserror",
9165 "tinyvec",
9166 "tracing",
9167 "webpki 0.22.0",
9168]
87899169
8790[[package]]9170[[package]]
8791name = "quote"9171name = "quote"
8813 "rand_chacha 0.2.2",9193 "rand_chacha 0.2.2",
8814 "rand_core 0.5.1",9194 "rand_core 0.5.1",
8815 "rand_hc",9195 "rand_hc",
8816 "rand_pcg 0.2.1",
8817]9196]
88189197
8819[[package]]9198[[package]]
8884 "rand_core 0.5.1",9263 "rand_core 0.5.1",
8885]9264]
8886
8887[[package]]
8888name = "rand_pcg"
8889version = "0.2.1"
8890source = "registry+https://github.com/rust-lang/crates.io-index"
8891checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
8892dependencies = [
8893 "rand_core 0.5.1",
8894]
88959265
8896[[package]]9266[[package]]
8897name = "rand_pcg"9267name = "rand_pcg"
89209290
8921[[package]]9291[[package]]
8922name = "rayon-core"9292name = "rayon-core"
8923version = "1.10.1"9293version = "1.10.2"
8924source = "registry+https://github.com/rust-lang/crates.io-index"9294source = "registry+https://github.com/rust-lang/crates.io-index"
8925checksum = "cac410af5d00ab6884528b4ab69d1e8e146e8d471201800fa1b4524126de6ad3"9295checksum = "356a0625f1954f730c0201cdab48611198dc6ce21f4acff55089b5a78e6e835b"
8926dependencies = [9296dependencies = [
8927 "crossbeam-channel",9297 "crossbeam-channel",
8928 "crossbeam-deque",9298 "crossbeam-deque",
8929 "crossbeam-utils",9299 "crossbeam-utils",
8930 "num_cpus",9300 "num_cpus",
8931]9301]
9302
9303[[package]]
9304name = "rcgen"
9305version = "0.9.3"
9306source = "registry+https://github.com/rust-lang/crates.io-index"
9307checksum = "6413f3de1edee53342e6138e75b56d32e7bc6e332b3bd62d497b1929d4cfbcdd"
9308dependencies = [
9309 "pem",
9310 "ring",
9311 "time 0.3.17",
9312 "x509-parser 0.13.2",
9313 "yasna",
9314]
9315
9316[[package]]
9317name = "rcgen"
9318version = "0.10.0"
9319source = "registry+https://github.com/rust-lang/crates.io-index"
9320checksum = "ffbe84efe2f38dea12e9bfc1f65377fdf03e53a18cb3b995faedf7934c7e785b"
9321dependencies = [
9322 "pem",
9323 "ring",
9324 "time 0.3.17",
9325 "yasna",
9326]
89329327
8933[[package]]9328[[package]]
8934name = "redox_syscall"9329name = "redox_syscall"
91309525
9131[[package]]9526[[package]]
9132name = "rococo-runtime"9527name = "rococo-runtime"
9133version = "0.9.36"9528version = "0.9.37"
9134source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"9529source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
9135dependencies = [9530dependencies = [
9136 "beefy-merkle-tree",9531 "beefy-merkle-tree",
9137 "frame-benchmarking",9532 "frame-benchmarking",
9140 "frame-system",9535 "frame-system",
9141 "frame-system-benchmarking",9536 "frame-system-benchmarking",
9142 "frame-system-rpc-runtime-api",9537 "frame-system-rpc-runtime-api",
9538 "frame-try-runtime",
9143 "hex-literal",9539 "hex-literal",
9144 "log",9540 "log",
9145 "pallet-authority-discovery",9541 "pallet-authority-discovery",
9154 "pallet-democracy",9550 "pallet-democracy",
9155 "pallet-elections-phragmen",9551 "pallet-elections-phragmen",
9156 "pallet-grandpa",9552 "pallet-grandpa",
9157 "pallet-identity 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36)",9553 "pallet-identity 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37)",
9158 "pallet-im-online",9554 "pallet-im-online",
9159 "pallet-indices",9555 "pallet-indices",
9160 "pallet-membership",9556 "pallet-membership",
92159611
9216[[package]]9612[[package]]
9217name = "rococo-runtime-constants"9613name = "rococo-runtime-constants"
9218version = "0.9.36"9614version = "0.9.37"
9219source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"9615source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
9220dependencies = [9616dependencies = [
9221 "frame-support",9617 "frame-support",
9222 "polkadot-primitives",9618 "polkadot-primitives",
9238 "winapi",9634 "winapi",
9239]9635]
9636
9637[[package]]
9638name = "rtcp"
9639version = "0.7.2"
9640source = "registry+https://github.com/rust-lang/crates.io-index"
9641checksum = "1919efd6d4a6a85d13388f9487549bb8e359f17198cc03ffd72f79b553873691"
9642dependencies = [
9643 "bytes",
9644 "thiserror",
9645 "webrtc-util",
9646]
92409647
9241[[package]]9648[[package]]
9242name = "rtnetlink"9649name = "rtnetlink"
9243version = "0.10.1"9650version = "0.10.1"
9244source = "registry+https://github.com/rust-lang/crates.io-index"9651source = "registry+https://github.com/rust-lang/crates.io-index"
9245checksum = "322c53fd76a18698f1c27381d58091de3a043d356aa5bd0d510608b565f469a0"9652checksum = "322c53fd76a18698f1c27381d58091de3a043d356aa5bd0d510608b565f469a0"
9246dependencies = [9653dependencies = [
9247 "async-global-executor",
9248 "futures",9654 "futures",
9249 "log",9655 "log",
9250 "netlink-packet-route",9656 "netlink-packet-route",
9251 "netlink-proto",9657 "netlink-proto",
9252 "nix",9658 "nix",
9253 "thiserror",9659 "thiserror",
9660 "tokio",
9254]9661]
92559662
9256[[package]]9663[[package]]
9263 "winapi",9670 "winapi",
9264]9671]
9672
9673[[package]]
9674name = "rtp"
9675version = "0.6.8"
9676source = "registry+https://github.com/rust-lang/crates.io-index"
9677checksum = "a2a095411ff00eed7b12e4c6a118ba984d113e1079582570d56a5ee723f11f80"
9678dependencies = [
9679 "async-trait",
9680 "bytes",
9681 "rand 0.8.5",
9682 "serde",
9683 "thiserror",
9684 "webrtc-util",
9685]
92659686
9266[[package]]9687[[package]]
9267name = "rustc-demangle"9688name = "rustc-demangle"
9299 "semver 1.0.16",9720 "semver 1.0.16",
9300]9721]
9722
9723[[package]]
9724name = "rusticata-macros"
9725version = "4.1.0"
9726source = "registry+https://github.com/rust-lang/crates.io-index"
9727checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
9728dependencies = [
9729 "nom",
9730]
93019731
9302[[package]]9732[[package]]
9303name = "rustix"9733name = "rustix"
9327 "windows-sys 0.42.0",9757 "windows-sys 0.42.0",
9328]9758]
9759
9760[[package]]
9761name = "rustls"
9762version = "0.19.1"
9763source = "registry+https://github.com/rust-lang/crates.io-index"
9764checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7"
9765dependencies = [
9766 "base64 0.13.1",
9767 "log",
9768 "ring",
9769 "sct 0.6.1",
9770 "webpki 0.21.4",
9771]
93299772
9330[[package]]9773[[package]]
9331name = "rustls"9774name = "rustls"
9335dependencies = [9778dependencies = [
9336 "log",9779 "log",
9337 "ring",9780 "ring",
9338 "sct",9781 "sct 0.7.0",
9339 "webpki",9782 "webpki 0.22.0",
9340]9783]
93419784
9342[[package]]9785[[package]]
9404[[package]]9847[[package]]
9405name = "sc-allocator"9848name = "sc-allocator"
9406version = "4.1.0-dev"9849version = "4.1.0-dev"
9407source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"9850source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9408dependencies = [9851dependencies = [
9409 "log",9852 "log",
9410 "sp-core",9853 "sp-core",
9415[[package]]9858[[package]]
9416name = "sc-authority-discovery"9859name = "sc-authority-discovery"
9417version = "0.10.0-dev"9860version = "0.10.0-dev"
9418source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"9861source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9419dependencies = [9862dependencies = [
9420 "async-trait",9863 "async-trait",
9421 "futures",9864 "futures",
9426 "parity-scale-codec",9869 "parity-scale-codec",
9427 "prost",9870 "prost",
9428 "prost-build",9871 "prost-build",
9429 "rand 0.7.3",9872 "rand 0.8.5",
9430 "sc-client-api",9873 "sc-client-api",
9431 "sc-network-common",9874 "sc-network-common",
9432 "sp-api",9875 "sp-api",
9442[[package]]9885[[package]]
9443name = "sc-basic-authorship"9886name = "sc-basic-authorship"
9444version = "0.10.0-dev"9887version = "0.10.0-dev"
9445source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"9888source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9446dependencies = [9889dependencies = [
9447 "futures",9890 "futures",
9448 "futures-timer",9891 "futures-timer",
9465[[package]]9908[[package]]
9466name = "sc-block-builder"9909name = "sc-block-builder"
9467version = "0.10.0-dev"9910version = "0.10.0-dev"
9468source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"9911source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9469dependencies = [9912dependencies = [
9470 "parity-scale-codec",9913 "parity-scale-codec",
9471 "sc-client-api",9914 "sc-client-api",
9481[[package]]9924[[package]]
9482name = "sc-chain-spec"9925name = "sc-chain-spec"
9483version = "4.0.0-dev"9926version = "4.0.0-dev"
9484source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"9927source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9485dependencies = [9928dependencies = [
9486 "impl-trait-for-tuples",
9487 "memmap2",9929 "memmap2",
9488 "parity-scale-codec",
9489 "sc-chain-spec-derive",9930 "sc-chain-spec-derive",
9490 "sc-network-common",9931 "sc-network-common",
9491 "sc-telemetry",9932 "sc-telemetry",
9498[[package]]9939[[package]]
9499name = "sc-chain-spec-derive"9940name = "sc-chain-spec-derive"
9500version = "4.0.0-dev"9941version = "4.0.0-dev"
9501source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"9942source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9502dependencies = [9943dependencies = [
9503 "proc-macro-crate",9944 "proc-macro-crate",
9504 "proc-macro2",9945 "proc-macro2",
9509[[package]]9950[[package]]
9510name = "sc-cli"9951name = "sc-cli"
9511version = "0.10.0-dev"9952version = "0.10.0-dev"
9512source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"9953source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9513dependencies = [9954dependencies = [
9514 "array-bytes 4.2.0",9955 "array-bytes 4.2.0",
9515 "chrono",9956 "chrono",
9520 "log",9961 "log",
9521 "names",9962 "names",
9522 "parity-scale-codec",9963 "parity-scale-codec",
9523 "rand 0.7.3",9964 "rand 0.8.5",
9524 "regex",9965 "regex",
9525 "rpassword",9966 "rpassword",
9526 "sc-client-api",9967 "sc-client-api",
9549[[package]]9990[[package]]
9550name = "sc-client-api"9991name = "sc-client-api"
9551version = "4.0.0-dev"9992version = "4.0.0-dev"
9552source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"9993source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9553dependencies = [9994dependencies = [
9554 "fnv",9995 "fnv",
9555 "futures",9996 "futures",
9556 "hash-db",
9557 "log",9997 "log",
9558 "parity-scale-codec",9998 "parity-scale-codec",
9559 "parking_lot 0.12.1",9999 "parking_lot 0.12.1",
9570 "sp-runtime",10010 "sp-runtime",
9571 "sp-state-machine",10011 "sp-state-machine",
9572 "sp-storage",10012 "sp-storage",
9573 "sp-trie",
9574 "substrate-prometheus-endpoint",10013 "substrate-prometheus-endpoint",
9575]10014]
957610015
9577[[package]]10016[[package]]
9578name = "sc-client-db"10017name = "sc-client-db"
9579version = "0.10.0-dev"10018version = "0.10.0-dev"
9580source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10019source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9581dependencies = [10020dependencies = [
9582 "hash-db",10021 "hash-db",
9583 "kvdb",10022 "kvdb",
9602[[package]]10041[[package]]
9603name = "sc-consensus"10042name = "sc-consensus"
9604version = "0.10.0-dev"10043version = "0.10.0-dev"
9605source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10044source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9606dependencies = [10045dependencies = [
9607 "async-trait",10046 "async-trait",
9608 "futures",10047 "futures",
9627[[package]]10066[[package]]
9628name = "sc-consensus-aura"10067name = "sc-consensus-aura"
9629version = "0.10.0-dev"10068version = "0.10.0-dev"
9630source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10069source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9631dependencies = [10070dependencies = [
9632 "async-trait",10071 "async-trait",
9633 "futures",10072 "futures",
9656[[package]]10095[[package]]
9657name = "sc-consensus-babe"10096name = "sc-consensus-babe"
9658version = "0.10.0-dev"10097version = "0.10.0-dev"
9659source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10098source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9660dependencies = [10099dependencies = [
9661 "async-trait",10100 "async-trait",
9662 "fork-tree",10101 "fork-tree",
9675 "sc-keystore",10114 "sc-keystore",
9676 "sc-telemetry",10115 "sc-telemetry",
9677 "schnorrkel",10116 "schnorrkel",
9678 "serde",
9679 "sp-api",10117 "sp-api",
9680 "sp-application-crypto",10118 "sp-application-crypto",
9681 "sp-block-builder",10119 "sp-block-builder",
9686 "sp-consensus-vrf",10124 "sp-consensus-vrf",
9687 "sp-core",10125 "sp-core",
9688 "sp-inherents",10126 "sp-inherents",
9689 "sp-io",
9690 "sp-keystore",10127 "sp-keystore",
9691 "sp-runtime",10128 "sp-runtime",
9692 "sp-version",
9693 "substrate-prometheus-endpoint",10129 "substrate-prometheus-endpoint",
9694 "thiserror",10130 "thiserror",
9695]10131]
969610132
9697[[package]]10133[[package]]
9698name = "sc-consensus-babe-rpc"10134name = "sc-consensus-babe-rpc"
9699version = "0.10.0-dev"10135version = "0.10.0-dev"
9700source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10136source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9701dependencies = [10137dependencies = [
9702 "futures",10138 "futures",
9703 "jsonrpsee",10139 "jsonrpsee",
9719[[package]]10155[[package]]
9720name = "sc-consensus-epochs"10156name = "sc-consensus-epochs"
9721version = "0.10.0-dev"10157version = "0.10.0-dev"
9722source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10158source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9723dependencies = [10159dependencies = [
9724 "fork-tree",10160 "fork-tree",
9725 "parity-scale-codec",10161 "parity-scale-codec",
9732[[package]]10168[[package]]
9733name = "sc-consensus-manual-seal"10169name = "sc-consensus-manual-seal"
9734version = "0.10.0-dev"10170version = "0.10.0-dev"
9735source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10171source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9736dependencies = [10172dependencies = [
9737 "assert_matches",10173 "assert_matches",
9738 "async-trait",10174 "async-trait",
9766[[package]]10202[[package]]
9767name = "sc-consensus-slots"10203name = "sc-consensus-slots"
9768version = "0.10.0-dev"10204version = "0.10.0-dev"
9769source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10205source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9770dependencies = [10206dependencies = [
9771 "async-trait",10207 "async-trait",
9772 "futures",10208 "futures",
9784 "sp-inherents",10220 "sp-inherents",
9785 "sp-runtime",10221 "sp-runtime",
9786 "sp-state-machine",10222 "sp-state-machine",
9787 "thiserror",
9788]10223]
978910224
9790[[package]]10225[[package]]
9791name = "sc-executor"10226name = "sc-executor"
9792version = "0.10.0-dev"10227version = "0.10.0-dev"
9793source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10228source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9794dependencies = [10229dependencies = [
9795 "lru",10230 "lru",
9796 "parity-scale-codec",10231 "parity-scale-codec",
9814[[package]]10249[[package]]
9815name = "sc-executor-common"10250name = "sc-executor-common"
9816version = "0.10.0-dev"10251version = "0.10.0-dev"
9817source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10252source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9818dependencies = [10253dependencies = [
9819 "sc-allocator",10254 "sc-allocator",
9820 "sp-maybe-compressed-blob",10255 "sp-maybe-compressed-blob",
9827[[package]]10262[[package]]
9828name = "sc-executor-wasmi"10263name = "sc-executor-wasmi"
9829version = "0.10.0-dev"10264version = "0.10.0-dev"
9830source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10265source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9831dependencies = [10266dependencies = [
9832 "log",10267 "log",
9833 "sc-allocator",10268 "sc-allocator",
9840[[package]]10275[[package]]
9841name = "sc-executor-wasmtime"10276name = "sc-executor-wasmtime"
9842version = "0.10.0-dev"10277version = "0.10.0-dev"
9843source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10278source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9844dependencies = [10279dependencies = [
9845 "cfg-if",10280 "cfg-if",
9846 "libc",10281 "libc",
9857[[package]]10292[[package]]
9858name = "sc-finality-grandpa"10293name = "sc-finality-grandpa"
9859version = "0.10.0-dev"10294version = "0.10.0-dev"
9860source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10295source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9861dependencies = [10296dependencies = [
9862 "ahash",10297 "ahash",
9863 "array-bytes 4.2.0",10298 "array-bytes 4.2.0",
9875 "sc-chain-spec",10310 "sc-chain-spec",
9876 "sc-client-api",10311 "sc-client-api",
9877 "sc-consensus",10312 "sc-consensus",
9878 "sc-keystore",
9879 "sc-network",10313 "sc-network",
9880 "sc-network-common",10314 "sc-network-common",
9881 "sc-network-gossip",10315 "sc-network-gossip",
9898[[package]]10332[[package]]
9899name = "sc-finality-grandpa-rpc"10333name = "sc-finality-grandpa-rpc"
9900version = "0.10.0-dev"10334version = "0.10.0-dev"
9901source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10335source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9902dependencies = [10336dependencies = [
9903 "finality-grandpa",10337 "finality-grandpa",
9904 "futures",10338 "futures",
9909 "sc-finality-grandpa",10343 "sc-finality-grandpa",
9910 "sc-rpc",10344 "sc-rpc",
9911 "serde",10345 "serde",
9912 "serde_json",
9913 "sp-blockchain",10346 "sp-blockchain",
9914 "sp-core",10347 "sp-core",
9915 "sp-runtime",10348 "sp-runtime",
9919[[package]]10352[[package]]
9920name = "sc-informant"10353name = "sc-informant"
9921version = "0.10.0-dev"10354version = "0.10.0-dev"
9922source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10355source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9923dependencies = [10356dependencies = [
9924 "ansi_term",10357 "ansi_term",
9925 "futures",10358 "futures",
9926 "futures-timer",10359 "futures-timer",
9927 "log",10360 "log",
9928 "sc-client-api",10361 "sc-client-api",
9929 "sc-network-common",10362 "sc-network-common",
9930 "sc-transaction-pool-api",
9931 "sp-blockchain",10363 "sp-blockchain",
9932 "sp-runtime",10364 "sp-runtime",
9933]10365]
993410366
9935[[package]]10367[[package]]
9936name = "sc-keystore"10368name = "sc-keystore"
9937version = "4.0.0-dev"10369version = "4.0.0-dev"
9938source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10370source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9939dependencies = [10371dependencies = [
9940 "array-bytes 4.2.0",10372 "array-bytes 4.2.0",
9941 "async-trait",10373 "async-trait",
9950[[package]]10382[[package]]
9951name = "sc-network"10383name = "sc-network"
9952version = "0.10.0-dev"10384version = "0.10.0-dev"
9953source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10385source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
9954dependencies = [10386dependencies = [
9955 "array-bytes 4.2.0",10387 "array-bytes 4.2.0",
9956 "async-trait",10388 "async-trait",
9957 "asynchronous-codec",10389 "asynchronous-codec",
9958 "bitflags",10390 "backtrace",
9959 "bytes",10391 "bytes",
9960 "cid",
9961 "either",10392 "either",
9962 "fnv",10393 "fnv",
9963 "fork-tree",
9964 "futures",10394 "futures",
9965 "futures-timer",10395 "futures-timer",
9966 "ip_network",10396 "ip_network",
9967 "libp2p",10397 "libp2p",
9968 "linked-hash-map",
9969 "linked_hash_set",
9970 "log",10398 "log",
9971 "lru",10399 "lru",
9972 "parity-scale-codec",10400 "parity-scale-codec",
9973 "parking_lot 0.12.1",10401 "parking_lot 0.12.1",
9974 "pin-project",10402 "pin-project",
9975 "prost",
9976 "rand 0.7.3",10403 "rand 0.8.5",
9977 "sc-block-builder",10404 "sc-block-builder",
9978 "sc-client-api",10405 "sc-client-api",
9979 "sc-consensus",10406 "sc-consensus",
9997[[package]]10424[[package]]
9998name = "sc-network-bitswap"10425name = "sc-network-bitswap"
9999version = "0.10.0-dev"10426version = "0.10.0-dev"
10000source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10427source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10001dependencies = [10428dependencies = [
10002 "cid",10429 "cid",
10003 "futures",10430 "futures",
10011 "sp-runtime",10438 "sp-runtime",
10012 "thiserror",10439 "thiserror",
10013 "unsigned-varint",10440 "unsigned-varint",
10014 "void",
10015]10441]
1001610442
10017[[package]]10443[[package]]
10018name = "sc-network-common"10444name = "sc-network-common"
10019version = "0.10.0-dev"10445version = "0.10.0-dev"
10020source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10446source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10021dependencies = [10447dependencies = [
10022 "async-trait",10448 "async-trait",
10023 "bitflags",10449 "bitflags",
10043[[package]]10469[[package]]
10044name = "sc-network-gossip"10470name = "sc-network-gossip"
10045version = "0.10.0-dev"10471version = "0.10.0-dev"
10046source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10472source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10047dependencies = [10473dependencies = [
10048 "ahash",10474 "ahash",
10049 "futures",10475 "futures",
10061[[package]]10487[[package]]
10062name = "sc-network-light"10488name = "sc-network-light"
10063version = "0.10.0-dev"10489version = "0.10.0-dev"
10064source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10490source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10065dependencies = [10491dependencies = [
10066 "array-bytes 4.2.0",10492 "array-bytes 4.2.0",
10067 "futures",10493 "futures",
10082[[package]]10508[[package]]
10083name = "sc-network-sync"10509name = "sc-network-sync"
10084version = "0.10.0-dev"10510version = "0.10.0-dev"
10085source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10511source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10086dependencies = [10512dependencies = [
10087 "array-bytes 4.2.0",10513 "array-bytes 4.2.0",
10088 "async-trait",10514 "async-trait",
10114[[package]]10540[[package]]
10115name = "sc-network-transactions"10541name = "sc-network-transactions"
10116version = "0.10.0-dev"10542version = "0.10.0-dev"
10117source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10543source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10118dependencies = [10544dependencies = [
10119 "array-bytes 4.2.0",10545 "array-bytes 4.2.0",
10120 "futures",10546 "futures",
10121 "hex",
10122 "libp2p",10547 "libp2p",
10123 "log",10548 "log",
10124 "parity-scale-codec",10549 "parity-scale-codec",
10125 "pin-project",10550 "pin-project",
10126 "sc-network-common",10551 "sc-network-common",
10127 "sc-peerset",10552 "sc-peerset",
10553 "sc-utils",
10128 "sp-consensus",10554 "sp-consensus",
10129 "sp-runtime",10555 "sp-runtime",
10130 "substrate-prometheus-endpoint",10556 "substrate-prometheus-endpoint",
10133[[package]]10559[[package]]
10134name = "sc-offchain"10560name = "sc-offchain"
10135version = "4.0.0-dev"10561version = "4.0.0-dev"
10136source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10562source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10137dependencies = [10563dependencies = [
10138 "array-bytes 4.2.0",10564 "array-bytes 4.2.0",
10139 "bytes",10565 "bytes",
10147 "once_cell",10573 "once_cell",
10148 "parity-scale-codec",10574 "parity-scale-codec",
10149 "parking_lot 0.12.1",10575 "parking_lot 0.12.1",
10150 "rand 0.7.3",10576 "rand 0.8.5",
10151 "sc-client-api",10577 "sc-client-api",
10152 "sc-network-common",10578 "sc-network-common",
10153 "sc-peerset",10579 "sc-peerset",
10163[[package]]10589[[package]]
10164name = "sc-peerset"10590name = "sc-peerset"
10165version = "4.0.0-dev"10591version = "4.0.0-dev"
10166source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10592source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10167dependencies = [10593dependencies = [
10168 "futures",10594 "futures",
10169 "libp2p",10595 "libp2p",
10176[[package]]10602[[package]]
10177name = "sc-proposer-metrics"10603name = "sc-proposer-metrics"
10178version = "0.10.0-dev"10604version = "0.10.0-dev"
10179source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10605source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10180dependencies = [10606dependencies = [
10181 "log",10607 "log",
10182 "substrate-prometheus-endpoint",10608 "substrate-prometheus-endpoint",
10185[[package]]10611[[package]]
10186name = "sc-rpc"10612name = "sc-rpc"
10187version = "4.0.0-dev"10613version = "4.0.0-dev"
10188source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10614source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10189dependencies = [10615dependencies = [
10190 "futures",10616 "futures",
10191 "hash-db",
10192 "jsonrpsee",10617 "jsonrpsee",
10193 "log",10618 "log",
10194 "parity-scale-codec",10619 "parity-scale-codec",
10215[[package]]10640[[package]]
10216name = "sc-rpc-api"10641name = "sc-rpc-api"
10217version = "0.10.0-dev"10642version = "0.10.0-dev"
10218source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10643source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10219dependencies = [10644dependencies = [
10220 "futures",
10221 "jsonrpsee",10645 "jsonrpsee",
10222 "log",
10223 "parity-scale-codec",10646 "parity-scale-codec",
10224 "parking_lot 0.12.1",
10225 "sc-chain-spec",10647 "sc-chain-spec",
10226 "sc-transaction-pool-api",10648 "sc-transaction-pool-api",
10227 "scale-info",10649 "scale-info",
10230 "sp-core",10652 "sp-core",
10231 "sp-rpc",10653 "sp-rpc",
10232 "sp-runtime",10654 "sp-runtime",
10233 "sp-tracing",
10234 "sp-version",10655 "sp-version",
10235 "thiserror",10656 "thiserror",
10236]10657]
1023710658
10238[[package]]10659[[package]]
10239name = "sc-rpc-server"10660name = "sc-rpc-server"
10240version = "4.0.0-dev"10661version = "4.0.0-dev"
10241source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10662source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10242dependencies = [10663dependencies = [
10243 "futures",
10244 "http",10664 "http",
10245 "jsonrpsee",10665 "jsonrpsee",
10246 "log",10666 "log",
10254[[package]]10674[[package]]
10255name = "sc-rpc-spec-v2"10675name = "sc-rpc-spec-v2"
10256version = "0.10.0-dev"10676version = "0.10.0-dev"
10257source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10677source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10258dependencies = [10678dependencies = [
10679 "array-bytes 4.2.0",
10259 "futures",10680 "futures",
10681 "futures-util",
10260 "hex",10682 "hex",
10261 "jsonrpsee",10683 "jsonrpsee",
10684 "log",
10262 "parity-scale-codec",10685 "parity-scale-codec",
10686 "parking_lot 0.12.1",
10263 "sc-chain-spec",10687 "sc-chain-spec",
10688 "sc-client-api",
10264 "sc-transaction-pool-api",10689 "sc-transaction-pool-api",
10265 "serde",10690 "serde",
10266 "sp-api",10691 "sp-api",
10267 "sp-blockchain",10692 "sp-blockchain",
10268 "sp-core",10693 "sp-core",
10269 "sp-runtime",10694 "sp-runtime",
10695 "sp-version",
10270 "thiserror",10696 "thiserror",
10697 "tokio-stream",
10271]10698]
1027210699
10273[[package]]10700[[package]]
10274name = "sc-service"10701name = "sc-service"
10275version = "0.10.0-dev"10702version = "0.10.0-dev"
10276source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10703source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10277dependencies = [10704dependencies = [
10278 "async-trait",10705 "async-trait",
10279 "directories",10706 "directories",
10280 "exit-future",10707 "exit-future",
10281 "futures",10708 "futures",
10282 "futures-timer",10709 "futures-timer",
10283 "hash-db",
10284 "jsonrpsee",10710 "jsonrpsee",
10285 "log",10711 "log",
10286 "parity-scale-codec",10712 "parity-scale-codec",
10287 "parking_lot 0.12.1",10713 "parking_lot 0.12.1",
10288 "pin-project",10714 "pin-project",
10289 "rand 0.7.3",10715 "rand 0.8.5",
10290 "sc-block-builder",10716 "sc-block-builder",
10291 "sc-chain-spec",10717 "sc-chain-spec",
10292 "sc-client-api",10718 "sc-client-api",
10314 "serde",10740 "serde",
10315 "serde_json",10741 "serde_json",
10316 "sp-api",10742 "sp-api",
10317 "sp-application-crypto",
10318 "sp-block-builder",
10319 "sp-blockchain",10743 "sp-blockchain",
10320 "sp-consensus",10744 "sp-consensus",
10321 "sp-core",10745 "sp-core",
10322 "sp-externalities",10746 "sp-externalities",
10323 "sp-inherents",
10324 "sp-keystore",10747 "sp-keystore",
10325 "sp-runtime",10748 "sp-runtime",
10326 "sp-session",10749 "sp-session",
10327 "sp-state-machine",10750 "sp-state-machine",
10328 "sp-storage",10751 "sp-storage",
10329 "sp-tracing",
10330 "sp-transaction-pool",10752 "sp-transaction-pool",
10331 "sp-transaction-storage-proof",10753 "sp-transaction-storage-proof",
10332 "sp-trie",10754 "sp-trie",
10343[[package]]10765[[package]]
10344name = "sc-state-db"10766name = "sc-state-db"
10345version = "0.10.0-dev"10767version = "0.10.0-dev"
10346source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10768source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10347dependencies = [10769dependencies = [
10348 "log",10770 "log",
10349 "parity-scale-codec",10771 "parity-scale-codec",
10350 "parking_lot 0.12.1",10772 "parking_lot 0.12.1",
10351 "sc-client-api",
10352 "sp-core",10773 "sp-core",
10353]10774]
1035410775
10355[[package]]10776[[package]]
10356name = "sc-sync-state-rpc"10777name = "sc-sync-state-rpc"
10357version = "0.10.0-dev"10778version = "0.10.0-dev"
10358source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10779source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10359dependencies = [10780dependencies = [
10360 "jsonrpsee",10781 "jsonrpsee",
10361 "parity-scale-codec",10782 "parity-scale-codec",
10374[[package]]10795[[package]]
10375name = "sc-sysinfo"10796name = "sc-sysinfo"
10376version = "6.0.0-dev"10797version = "6.0.0-dev"
10377source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10798source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10378dependencies = [10799dependencies = [
10379 "futures",10800 "futures",
10380 "libc",10801 "libc",
10381 "log",10802 "log",
10382 "rand 0.7.3",10803 "rand 0.8.5",
10383 "rand_pcg 0.2.1",10804 "rand_pcg",
10384 "regex",10805 "regex",
10385 "sc-telemetry",10806 "sc-telemetry",
10386 "serde",10807 "serde",
10393[[package]]10814[[package]]
10394name = "sc-telemetry"10815name = "sc-telemetry"
10395version = "4.0.0-dev"10816version = "4.0.0-dev"
10396source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10817source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10397dependencies = [10818dependencies = [
10398 "chrono",10819 "chrono",
10399 "futures",10820 "futures",
10400 "libp2p",10821 "libp2p",
10401 "log",10822 "log",
10402 "parking_lot 0.12.1",10823 "parking_lot 0.12.1",
10403 "pin-project",10824 "pin-project",
10404 "rand 0.7.3",10825 "rand 0.8.5",
10826 "sc-utils",
10405 "serde",10827 "serde",
10406 "serde_json",10828 "serde_json",
10407 "thiserror",10829 "thiserror",
10411[[package]]10833[[package]]
10412name = "sc-tracing"10834name = "sc-tracing"
10413version = "4.0.0-dev"10835version = "4.0.0-dev"
10414source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10836source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10415dependencies = [10837dependencies = [
10416 "ansi_term",10838 "ansi_term",
10417 "atty",10839 "atty",
10442[[package]]10864[[package]]
10443name = "sc-tracing-proc-macro"10865name = "sc-tracing-proc-macro"
10444version = "4.0.0-dev"10866version = "4.0.0-dev"
10445source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10867source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10446dependencies = [10868dependencies = [
10447 "proc-macro-crate",10869 "proc-macro-crate",
10448 "proc-macro2",10870 "proc-macro2",
10453[[package]]10875[[package]]
10454name = "sc-transaction-pool"10876name = "sc-transaction-pool"
10455version = "4.0.0-dev"10877version = "4.0.0-dev"
10456source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10878source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10457dependencies = [10879dependencies = [
10458 "async-trait",10880 "async-trait",
10459 "futures",10881 "futures",
10479[[package]]10901[[package]]
10480name = "sc-transaction-pool-api"10902name = "sc-transaction-pool-api"
10481version = "4.0.0-dev"10903version = "4.0.0-dev"
10482source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10904source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10483dependencies = [10905dependencies = [
10484 "async-trait",10906 "async-trait",
10485 "futures",10907 "futures",
10493[[package]]10915[[package]]
10494name = "sc-utils"10916name = "sc-utils"
10495version = "4.0.0-dev"10917version = "4.0.0-dev"
10496source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"10918source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10497dependencies = [10919dependencies = [
10920 "backtrace",
10498 "futures",10921 "futures",
10499 "futures-timer",10922 "futures-timer",
10500 "lazy_static",10923 "lazy_static",
10568source = "registry+https://github.com/rust-lang/crates.io-index"10991source = "registry+https://github.com/rust-lang/crates.io-index"
10569checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2"10992checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2"
10993
10994[[package]]
10995name = "sct"
10996version = "0.6.1"
10997source = "registry+https://github.com/rust-lang/crates.io-index"
10998checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce"
10999dependencies = [
11000 "ring",
11001 "untrusted",
11002]
1057011003
10571[[package]]11004[[package]]
10572name = "sct"11005name = "sct"
10578 "untrusted",11011 "untrusted",
10579]11012]
11013
11014[[package]]
11015name = "sdp"
11016version = "0.5.3"
11017source = "registry+https://github.com/rust-lang/crates.io-index"
11018checksum = "4d22a5ef407871893fd72b4562ee15e4742269b173959db4b8df6f538c414e13"
11019dependencies = [
11020 "rand 0.8.5",
11021 "substring",
11022 "thiserror",
11023 "url",
11024]
1058011025
10581[[package]]11026[[package]]
10582name = "sec1"11027name = "sec1"
1062111066
10622[[package]]11067[[package]]
10623name = "security-framework"11068name = "security-framework"
10624version = "2.8.0"11069version = "2.8.1"
10625source = "registry+https://github.com/rust-lang/crates.io-index"11070source = "registry+https://github.com/rust-lang/crates.io-index"
10626checksum = "645926f31b250a2dca3c232496c2d898d91036e45ca0e97e0e2390c54e11be36"11071checksum = "7c4437699b6d34972de58652c68b98cb5b53a4199ab126db8e20ec8ded29a721"
10627dependencies = [11072dependencies = [
10628 "bitflags",11073 "bitflags",
10629 "core-foundation",11074 "core-foundation",
10706 "serde",11151 "serde",
10707]11152]
10708
10709[[package]]
10710name = "serde_nanos"
10711version = "0.1.2"
10712source = "registry+https://github.com/rust-lang/crates.io-index"
10713checksum = "e44969a61f5d316be20a42ff97816efb3b407a924d06824c3d8a49fa8450de0e"
10714dependencies = [
10715 "serde",
10716]
1071711153
10718[[package]]11154[[package]]
10719name = "sha-1"11155name = "sha-1"
10808source = "registry+https://github.com/rust-lang/crates.io-index"11244source = "registry+https://github.com/rust-lang/crates.io-index"
10809checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"11245checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
10810
10811[[package]]
10812name = "signal-hook"
10813version = "0.3.14"
10814source = "registry+https://github.com/rust-lang/crates.io-index"
10815checksum = "a253b5e89e2698464fc26b545c9edceb338e18a89effeeecfea192c3025be29d"
10816dependencies = [
10817 "libc",
10818 "signal-hook-registry",
10819]
1082011246
10821[[package]]11247[[package]]
10822name = "signal-hook-registry"11248name = "signal-hook-registry"
1088611312
10887[[package]]11313[[package]]
10888name = "slot-range-helper"11314name = "slot-range-helper"
10889version = "0.9.36"11315version = "0.9.37"
10890source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"11316source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
10891dependencies = [11317dependencies = [
10892 "enumn",11318 "enumn",
10893 "parity-scale-codec",11319 "parity-scale-codec",
10923source = "registry+https://github.com/rust-lang/crates.io-index"11349source = "registry+https://github.com/rust-lang/crates.io-index"
10924checksum = "774d05a3edae07ce6d68ea6984f3c05e9bba8927e3dd591e3b479e5b03213d0d"11350checksum = "774d05a3edae07ce6d68ea6984f3c05e9bba8927e3dd591e3b479e5b03213d0d"
10925dependencies = [11351dependencies = [
10926 "aes-gcm",11352 "aes-gcm 0.9.4",
10927 "blake2",11353 "blake2",
10928 "chacha20poly1305",11354 "chacha20poly1305",
10929 "curve25519-dalek 4.0.0-pre.5",11355 "curve25519-dalek 4.0.0-pre.5",
10964[[package]]11390[[package]]
10965name = "sp-api"11391name = "sp-api"
10966version = "4.0.0-dev"11392version = "4.0.0-dev"
10967source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11393source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10968dependencies = [11394dependencies = [
10969 "hash-db",11395 "hash-db",
10970 "log",11396 "log",
10982[[package]]11408[[package]]
10983name = "sp-api-proc-macro"11409name = "sp-api-proc-macro"
10984version = "4.0.0-dev"11410version = "4.0.0-dev"
10985source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11411source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10986dependencies = [11412dependencies = [
10987 "blake2",11413 "blake2",
10988 "proc-macro-crate",11414 "proc-macro-crate",
10994[[package]]11420[[package]]
10995name = "sp-application-crypto"11421name = "sp-application-crypto"
10996version = "7.0.0"11422version = "7.0.0"
10997source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11423source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
10998dependencies = [11424dependencies = [
10999 "parity-scale-codec",11425 "parity-scale-codec",
11000 "scale-info",11426 "scale-info",
11007[[package]]11433[[package]]
11008name = "sp-arithmetic"11434name = "sp-arithmetic"
11009version = "6.0.0"11435version = "6.0.0"
11010source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11436source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11011dependencies = [11437dependencies = [
11012 "integer-sqrt",11438 "integer-sqrt",
11013 "num-traits",11439 "num-traits",
11014 "parity-scale-codec",11440 "parity-scale-codec",
11015 "scale-info",11441 "scale-info",
11016 "serde",11442 "serde",
11017 "sp-debug-derive",
11018 "sp-std",11443 "sp-std",
11019 "static_assertions",11444 "static_assertions",
11020]11445]
1102111446
11022[[package]]11447[[package]]
11023name = "sp-authority-discovery"11448name = "sp-authority-discovery"
11024version = "4.0.0-dev"11449version = "4.0.0-dev"
11025source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11450source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11026dependencies = [11451dependencies = [
11027 "parity-scale-codec",11452 "parity-scale-codec",
11028 "scale-info",11453 "scale-info",
11035[[package]]11460[[package]]
11036name = "sp-authorship"11461name = "sp-authorship"
11037version = "4.0.0-dev"11462version = "4.0.0-dev"
11038source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11463source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11039dependencies = [11464dependencies = [
11040 "async-trait",11465 "async-trait",
11041 "parity-scale-codec",11466 "parity-scale-codec",
11047[[package]]11472[[package]]
11048name = "sp-beefy"11473name = "sp-beefy"
11049version = "4.0.0-dev"11474version = "4.0.0-dev"
11050source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11475source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11051dependencies = [11476dependencies = [
11052 "parity-scale-codec",11477 "parity-scale-codec",
11053 "scale-info",11478 "scale-info",
11064[[package]]11489[[package]]
11065name = "sp-block-builder"11490name = "sp-block-builder"
11066version = "4.0.0-dev"11491version = "4.0.0-dev"
11067source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11492source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11068dependencies = [11493dependencies = [
11069 "parity-scale-codec",11494 "parity-scale-codec",
11070 "sp-api",11495 "sp-api",
11076[[package]]11501[[package]]
11077name = "sp-blockchain"11502name = "sp-blockchain"
11078version = "4.0.0-dev"11503version = "4.0.0-dev"
11079source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11504source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11080dependencies = [11505dependencies = [
11081 "futures",11506 "futures",
11082 "log",11507 "log",
11094[[package]]11519[[package]]
11095name = "sp-consensus"11520name = "sp-consensus"
11096version = "0.10.0-dev"11521version = "0.10.0-dev"
11097source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11522source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11098dependencies = [11523dependencies = [
11099 "async-trait",11524 "async-trait",
11100 "futures",11525 "futures",
11101 "futures-timer",
11102 "log",11526 "log",
11103 "parity-scale-codec",11527 "parity-scale-codec",
11104 "sp-core",11528 "sp-core",
11113[[package]]11537[[package]]
11114name = "sp-consensus-aura"11538name = "sp-consensus-aura"
11115version = "0.10.0-dev"11539version = "0.10.0-dev"
11116source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11540source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11117dependencies = [11541dependencies = [
11118 "async-trait",11542 "async-trait",
11119 "parity-scale-codec",11543 "parity-scale-codec",
11131[[package]]11555[[package]]
11132name = "sp-consensus-babe"11556name = "sp-consensus-babe"
11133version = "0.10.0-dev"11557version = "0.10.0-dev"
11134source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11558source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11135dependencies = [11559dependencies = [
11136 "async-trait",11560 "async-trait",
11137 "merlin",11561 "merlin",
11154[[package]]11578[[package]]
11155name = "sp-consensus-slots"11579name = "sp-consensus-slots"
11156version = "0.10.0-dev"11580version = "0.10.0-dev"
11157source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11581source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11158dependencies = [11582dependencies = [
11159 "parity-scale-codec",11583 "parity-scale-codec",
11160 "scale-info",11584 "scale-info",
11161 "serde",11585 "serde",
11162 "sp-arithmetic",
11163 "sp-runtime",
11164 "sp-std",11586 "sp-std",
11165 "sp-timestamp",11587 "sp-timestamp",
11166]11588]
1116711589
11168[[package]]11590[[package]]
11169name = "sp-consensus-vrf"11591name = "sp-consensus-vrf"
11170version = "0.10.0-dev"11592version = "0.10.0-dev"
11171source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11593source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11172dependencies = [11594dependencies = [
11173 "parity-scale-codec",11595 "parity-scale-codec",
11174 "scale-info",11596 "scale-info",
11181[[package]]11603[[package]]
11182name = "sp-core"11604name = "sp-core"
11183version = "7.0.0"11605version = "7.0.0"
11184source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11606source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11185dependencies = [11607dependencies = [
11186 "array-bytes 4.2.0",11608 "array-bytes 4.2.0",
11187 "base58",11609 "base58",
11188 "bitflags",11610 "bitflags",
11189 "blake2",11611 "blake2",
11190 "byteorder",
11191 "dyn-clonable",11612 "dyn-clonable",
11192 "ed25519-zebra",11613 "ed25519-zebra",
11193 "futures",11614 "futures",
11198 "libsecp256k1",11619 "libsecp256k1",
11199 "log",11620 "log",
11200 "merlin",11621 "merlin",
11201 "num-traits",
11202 "parity-scale-codec",11622 "parity-scale-codec",
11203 "parking_lot 0.12.1",11623 "parking_lot 0.12.1",
11204 "primitive-types 0.12.1",11624 "primitive-types 0.12.1",
11205 "rand 0.7.3",11625 "rand 0.8.5",
11206 "regex",11626 "regex",
11207 "scale-info",11627 "scale-info",
11208 "schnorrkel",11628 "schnorrkel",
11219 "substrate-bip39",11639 "substrate-bip39",
11220 "thiserror",11640 "thiserror",
11221 "tiny-bip39",11641 "tiny-bip39",
11222 "wasmi",
11223 "zeroize",11642 "zeroize",
11224]11643]
1122511644
11226[[package]]11645[[package]]
11227name = "sp-core-hashing"11646name = "sp-core-hashing"
11228version = "5.0.0"11647version = "5.0.0"
11229source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11648source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11230dependencies = [11649dependencies = [
11231 "blake2",11650 "blake2",
11232 "byteorder",11651 "byteorder",
11240[[package]]11659[[package]]
11241name = "sp-core-hashing-proc-macro"11660name = "sp-core-hashing-proc-macro"
11242version = "5.0.0"11661version = "5.0.0"
11243source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11662source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11244dependencies = [11663dependencies = [
11245 "proc-macro2",11664 "proc-macro2",
11246 "quote",11665 "quote",
11251[[package]]11670[[package]]
11252name = "sp-database"11671name = "sp-database"
11253version = "4.0.0-dev"11672version = "4.0.0-dev"
11254source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11673source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11255dependencies = [11674dependencies = [
11256 "kvdb",11675 "kvdb",
11257 "parking_lot 0.12.1",11676 "parking_lot 0.12.1",
11260[[package]]11679[[package]]
11261name = "sp-debug-derive"11680name = "sp-debug-derive"
11262version = "5.0.0"11681version = "5.0.0"
11263source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11682source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11264dependencies = [11683dependencies = [
11265 "proc-macro2",11684 "proc-macro2",
11266 "quote",11685 "quote",
11270[[package]]11689[[package]]
11271name = "sp-externalities"11690name = "sp-externalities"
11272version = "0.13.0"11691version = "0.13.0"
11273source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11692source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11274dependencies = [11693dependencies = [
11275 "environmental",11694 "environmental",
11276 "parity-scale-codec",11695 "parity-scale-codec",
11281[[package]]11700[[package]]
11282name = "sp-finality-grandpa"11701name = "sp-finality-grandpa"
11283version = "4.0.0-dev"11702version = "4.0.0-dev"
11284source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11703source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11285dependencies = [11704dependencies = [
11286 "finality-grandpa",11705 "finality-grandpa",
11287 "log",11706 "log",
11299[[package]]11718[[package]]
11300name = "sp-inherents"11719name = "sp-inherents"
11301version = "4.0.0-dev"11720version = "4.0.0-dev"
11302source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11721source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11303dependencies = [11722dependencies = [
11304 "async-trait",11723 "async-trait",
11305 "impl-trait-for-tuples",11724 "impl-trait-for-tuples",
11313[[package]]11732[[package]]
11314name = "sp-io"11733name = "sp-io"
11315version = "7.0.0"11734version = "7.0.0"
11316source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11735source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11317dependencies = [11736dependencies = [
11318 "bytes",11737 "bytes",
11738 "ed25519",
11319 "ed25519-dalek",11739 "ed25519-dalek",
11320 "futures",11740 "futures",
11321 "hash-db",
11322 "libsecp256k1",11741 "libsecp256k1",
11323 "log",11742 "log",
11324 "parity-scale-codec",11743 "parity-scale-codec",
11325 "parking_lot 0.12.1",
11326 "secp256k1",11744 "secp256k1",
11327 "sp-core",11745 "sp-core",
11328 "sp-externalities",11746 "sp-externalities",
11332 "sp-std",11750 "sp-std",
11333 "sp-tracing",11751 "sp-tracing",
11334 "sp-trie",11752 "sp-trie",
11335 "sp-wasm-interface",
11336 "tracing",11753 "tracing",
11337 "tracing-core",11754 "tracing-core",
11338]11755]
1133911756
11340[[package]]11757[[package]]
11341name = "sp-keyring"11758name = "sp-keyring"
11342version = "7.0.0"11759version = "7.0.0"
11343source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11760source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11344dependencies = [11761dependencies = [
11345 "lazy_static",11762 "lazy_static",
11346 "sp-core",11763 "sp-core",
11351[[package]]11768[[package]]
11352name = "sp-keystore"11769name = "sp-keystore"
11353version = "0.13.0"11770version = "0.13.0"
11354source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11771source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11355dependencies = [11772dependencies = [
11356 "async-trait",11773 "async-trait",
11357 "futures",11774 "futures",
11368[[package]]11785[[package]]
11369name = "sp-maybe-compressed-blob"11786name = "sp-maybe-compressed-blob"
11370version = "4.1.0-dev"11787version = "4.1.0-dev"
11371source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11788source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11372dependencies = [11789dependencies = [
11373 "thiserror",11790 "thiserror",
11374 "zstd",11791 "zstd",
11377[[package]]11794[[package]]
11378name = "sp-mmr-primitives"11795name = "sp-mmr-primitives"
11379version = "4.0.0-dev"11796version = "4.0.0-dev"
11380source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11797source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11381dependencies = [11798dependencies = [
11382 "ckb-merkle-mountain-range",11799 "ckb-merkle-mountain-range",
11383 "log",11800 "log",
11395[[package]]11812[[package]]
11396name = "sp-npos-elections"11813name = "sp-npos-elections"
11397version = "4.0.0-dev"11814version = "4.0.0-dev"
11398source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11815source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11399dependencies = [11816dependencies = [
11400 "parity-scale-codec",11817 "parity-scale-codec",
11401 "scale-info",11818 "scale-info",
11409[[package]]11826[[package]]
11410name = "sp-offchain"11827name = "sp-offchain"
11411version = "4.0.0-dev"11828version = "4.0.0-dev"
11412source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11829source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11413dependencies = [11830dependencies = [
11414 "sp-api",11831 "sp-api",
11415 "sp-core",11832 "sp-core",
11419[[package]]11836[[package]]
11420name = "sp-panic-handler"11837name = "sp-panic-handler"
11421version = "5.0.0"11838version = "5.0.0"
11422source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11839source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11423dependencies = [11840dependencies = [
11424 "backtrace",11841 "backtrace",
11425 "lazy_static",11842 "lazy_static",
11429[[package]]11846[[package]]
11430name = "sp-rpc"11847name = "sp-rpc"
11431version = "6.0.0"11848version = "6.0.0"
11432source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11849source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11433dependencies = [11850dependencies = [
11434 "rustc-hash",11851 "rustc-hash",
11435 "serde",11852 "serde",
11439[[package]]11856[[package]]
11440name = "sp-runtime"11857name = "sp-runtime"
11441version = "7.0.0"11858version = "7.0.0"
11442source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11859source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11443dependencies = [11860dependencies = [
11444 "either",11861 "either",
11445 "hash256-std-hasher",11862 "hash256-std-hasher",
11446 "impl-trait-for-tuples",11863 "impl-trait-for-tuples",
11447 "log",11864 "log",
11448 "parity-scale-codec",11865 "parity-scale-codec",
11449 "paste",11866 "paste",
11450 "rand 0.7.3",11867 "rand 0.8.5",
11451 "scale-info",11868 "scale-info",
11452 "serde",11869 "serde",
11453 "sp-application-crypto",11870 "sp-application-crypto",
11461[[package]]11878[[package]]
11462name = "sp-runtime-interface"11879name = "sp-runtime-interface"
11463version = "7.0.0"11880version = "7.0.0"
11464source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11881source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11465dependencies = [11882dependencies = [
11466 "bytes",11883 "bytes",
11467 "impl-trait-for-tuples",11884 "impl-trait-for-tuples",
11479[[package]]11896[[package]]
11480name = "sp-runtime-interface-proc-macro"11897name = "sp-runtime-interface-proc-macro"
11481version = "6.0.0"11898version = "6.0.0"
11482source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11899source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11483dependencies = [11900dependencies = [
11484 "Inflector",11901 "Inflector",
11485 "proc-macro-crate",11902 "proc-macro-crate",
11491[[package]]11908[[package]]
11492name = "sp-session"11909name = "sp-session"
11493version = "4.0.0-dev"11910version = "4.0.0-dev"
11494source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11911source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11495dependencies = [11912dependencies = [
11496 "parity-scale-codec",11913 "parity-scale-codec",
11497 "scale-info",11914 "scale-info",
11505[[package]]11922[[package]]
11506name = "sp-staking"11923name = "sp-staking"
11507version = "4.0.0-dev"11924version = "4.0.0-dev"
11508source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11925source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11509dependencies = [11926dependencies = [
11510 "parity-scale-codec",11927 "parity-scale-codec",
11511 "scale-info",11928 "scale-info",
11517[[package]]11934[[package]]
11518name = "sp-state-machine"11935name = "sp-state-machine"
11519version = "0.13.0"11936version = "0.13.0"
11520source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11937source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11521dependencies = [11938dependencies = [
11522 "hash-db",11939 "hash-db",
11523 "log",11940 "log",
11524 "num-traits",
11525 "parity-scale-codec",11941 "parity-scale-codec",
11526 "parking_lot 0.12.1",11942 "parking_lot 0.12.1",
11527 "rand 0.7.3",11943 "rand 0.8.5",
11528 "smallvec",11944 "smallvec",
11529 "sp-core",11945 "sp-core",
11530 "sp-externalities",11946 "sp-externalities",
11533 "sp-trie",11949 "sp-trie",
11534 "thiserror",11950 "thiserror",
11535 "tracing",11951 "tracing",
11536 "trie-root",
11537]11952]
1153811953
11539[[package]]11954[[package]]
11540name = "sp-std"11955name = "sp-std"
11541version = "5.0.0"11956version = "5.0.0"
11542source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11957source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
1154311958
11544[[package]]11959[[package]]
11545name = "sp-storage"11960name = "sp-storage"
11546version = "7.0.0"11961version = "7.0.0"
11547source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11962source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11548dependencies = [11963dependencies = [
11549 "impl-serde",11964 "impl-serde",
11550 "parity-scale-codec",11965 "parity-scale-codec",
11557[[package]]11972[[package]]
11558name = "sp-timestamp"11973name = "sp-timestamp"
11559version = "4.0.0-dev"11974version = "4.0.0-dev"
11560source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11975source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11561dependencies = [11976dependencies = [
11562 "async-trait",11977 "async-trait",
11563 "futures-timer",11978 "futures-timer",
11564 "log",11979 "log",
11565 "parity-scale-codec",11980 "parity-scale-codec",
11566 "sp-api",
11567 "sp-inherents",11981 "sp-inherents",
11568 "sp-runtime",11982 "sp-runtime",
11569 "sp-std",11983 "sp-std",
11573[[package]]11987[[package]]
11574name = "sp-tracing"11988name = "sp-tracing"
11575version = "6.0.0"11989version = "6.0.0"
11576source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"11990source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11577dependencies = [11991dependencies = [
11578 "parity-scale-codec",11992 "parity-scale-codec",
11579 "sp-std",11993 "sp-std",
11585[[package]]11999[[package]]
11586name = "sp-transaction-pool"12000name = "sp-transaction-pool"
11587version = "4.0.0-dev"12001version = "4.0.0-dev"
11588source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"12002source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11589dependencies = [12003dependencies = [
11590 "sp-api",12004 "sp-api",
11591 "sp-runtime",12005 "sp-runtime",
11594[[package]]12008[[package]]
11595name = "sp-transaction-storage-proof"12009name = "sp-transaction-storage-proof"
11596version = "4.0.0-dev"12010version = "4.0.0-dev"
11597source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"12011source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11598dependencies = [12012dependencies = [
11599 "async-trait",12013 "async-trait",
11600 "log",12014 "log",
11610[[package]]12024[[package]]
11611name = "sp-trie"12025name = "sp-trie"
11612version = "7.0.0"12026version = "7.0.0"
11613source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"12027source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11614dependencies = [12028dependencies = [
11615 "ahash",12029 "ahash",
11616 "hash-db",12030 "hash-db",
11633[[package]]12047[[package]]
11634name = "sp-version"12048name = "sp-version"
11635version = "5.0.0"12049version = "5.0.0"
11636source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"12050source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11637dependencies = [12051dependencies = [
11638 "impl-serde",12052 "impl-serde",
11639 "parity-scale-codec",12053 "parity-scale-codec",
11650[[package]]12064[[package]]
11651name = "sp-version-proc-macro"12065name = "sp-version-proc-macro"
11652version = "4.0.0-dev"12066version = "4.0.0-dev"
11653source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"12067source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11654dependencies = [12068dependencies = [
11655 "parity-scale-codec",12069 "parity-scale-codec",
11656 "proc-macro2",12070 "proc-macro2",
11661[[package]]12075[[package]]
11662name = "sp-wasm-interface"12076name = "sp-wasm-interface"
11663version = "7.0.0"12077version = "7.0.0"
11664source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"12078source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11665dependencies = [12079dependencies = [
11666 "impl-trait-for-tuples",12080 "impl-trait-for-tuples",
11667 "log",12081 "log",
11674[[package]]12088[[package]]
11675name = "sp-weights"12089name = "sp-weights"
11676version = "4.0.0"12090version = "4.0.0"
11677source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"12091source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11678dependencies = [12092dependencies = [
11679 "impl-trait-for-tuples",
11680 "parity-scale-codec",12093 "parity-scale-codec",
11681 "scale-info",12094 "scale-info",
11682 "serde",12095 "serde",
1170512118
11706[[package]]12119[[package]]
11707name = "ss58-registry"12120name = "ss58-registry"
11708version = "1.37.0"12121version = "1.38.0"
11709source = "registry+https://github.com/rust-lang/crates.io-index"12122source = "registry+https://github.com/rust-lang/crates.io-index"
11710checksum = "d44528162f980c0e03c71e005d334332c8da0aec9f2b0b4bdc557ed4a9f24776"12123checksum = "e40c020d72bc0a9c5660bb71e4a6fdef081493583062c474740a7d59f55f0e7b"
11711dependencies = [12124dependencies = [
11712 "Inflector",12125 "Inflector",
11713 "num-format",12126 "num-format",
11832 "syn",12245 "syn",
11833]12246]
12247
12248[[package]]
12249name = "stun"
12250version = "0.4.4"
12251source = "registry+https://github.com/rust-lang/crates.io-index"
12252checksum = "a7e94b1ec00bad60e6410e058b52f1c66de3dc5fe4d62d09b3e52bb7d3b73e25"
12253dependencies = [
12254 "base64 0.13.1",
12255 "crc",
12256 "lazy_static",
12257 "md-5",
12258 "rand 0.8.5",
12259 "ring",
12260 "subtle",
12261 "thiserror",
12262 "tokio",
12263 "url",
12264 "webrtc-util",
12265]
1183412266
11835[[package]]12267[[package]]
11836name = "substrate-bip39"12268name = "substrate-bip39"
11848[[package]]12280[[package]]
11849name = "substrate-build-script-utils"12281name = "substrate-build-script-utils"
11850version = "3.0.0"12282version = "3.0.0"
11851source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"12283source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11852dependencies = [12284dependencies = [
11853 "platforms 2.0.0",12285 "platforms 2.0.0",
11854]12286]
1185512287
11856[[package]]12288[[package]]
11857name = "substrate-frame-rpc-system"12289name = "substrate-frame-rpc-system"
11858version = "4.0.0-dev"12290version = "4.0.0-dev"
11859source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"12291source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11860dependencies = [12292dependencies = [
11861 "frame-system-rpc-runtime-api",12293 "frame-system-rpc-runtime-api",
11862 "futures",12294 "futures",
11863 "jsonrpsee",12295 "jsonrpsee",
11864 "log",12296 "log",
11865 "parity-scale-codec",12297 "parity-scale-codec",
11866 "sc-client-api",
11867 "sc-rpc-api",12298 "sc-rpc-api",
11868 "sc-transaction-pool-api",12299 "sc-transaction-pool-api",
11869 "serde_json",
11870 "sp-api",12300 "sp-api",
11871 "sp-block-builder",12301 "sp-block-builder",
11872 "sp-blockchain",12302 "sp-blockchain",
11877[[package]]12307[[package]]
11878name = "substrate-prometheus-endpoint"12308name = "substrate-prometheus-endpoint"
11879version = "0.10.0-dev"12309version = "0.10.0-dev"
11880source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"12310source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11881dependencies = [12311dependencies = [
11882 "futures-util",
11883 "hyper",12312 "hyper",
11884 "log",12313 "log",
11885 "prometheus",12314 "prometheus",
11890[[package]]12319[[package]]
11891name = "substrate-rpc-client"12320name = "substrate-rpc-client"
11892version = "0.10.0-dev"12321version = "0.10.0-dev"
11893source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"12322source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11894dependencies = [12323dependencies = [
11895 "async-trait",12324 "async-trait",
11896 "jsonrpsee",12325 "jsonrpsee",
11903[[package]]12332[[package]]
11904name = "substrate-state-trie-migration-rpc"12333name = "substrate-state-trie-migration-rpc"
11905version = "4.0.0-dev"12334version = "4.0.0-dev"
11906source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"12335source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11907dependencies = [12336dependencies = [
11908 "jsonrpsee",12337 "jsonrpsee",
11909 "log",12338 "log",
11913 "scale-info",12342 "scale-info",
11914 "serde",12343 "serde",
11915 "sp-core",12344 "sp-core",
11916 "sp-io",
11917 "sp-runtime",12345 "sp-runtime",
11918 "sp-state-machine",12346 "sp-state-machine",
11919 "sp-std",
11920 "sp-trie",12347 "sp-trie",
11921 "trie-db",12348 "trie-db",
11922]12349]
1192312350
11924[[package]]12351[[package]]
11925name = "substrate-test-utils"12352name = "substrate-test-utils"
11926version = "4.0.0-dev"12353version = "4.0.0-dev"
11927source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"12354source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11928dependencies = [12355dependencies = [
11929 "futures",12356 "futures",
11930 "substrate-test-utils-derive",12357 "substrate-test-utils-derive",
11934[[package]]12361[[package]]
11935name = "substrate-test-utils-derive"12362name = "substrate-test-utils-derive"
11936version = "0.10.0-dev"12363version = "0.10.0-dev"
11937source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"12364source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11938dependencies = [12365dependencies = [
11939 "proc-macro-crate",12366 "proc-macro-crate",
11940 "proc-macro2",12367 "proc-macro2",
11945[[package]]12372[[package]]
11946name = "substrate-wasm-builder"12373name = "substrate-wasm-builder"
11947version = "5.0.0-dev"12374version = "5.0.0-dev"
11948source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"12375source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
11949dependencies = [12376dependencies = [
11950 "ansi_term",12377 "ansi_term",
11951 "build-helper",12378 "build-helper",
11959 "wasm-opt",12386 "wasm-opt",
11960]12387]
12388
12389[[package]]
12390name = "substring"
12391version = "1.4.5"
12392source = "registry+https://github.com/rust-lang/crates.io-index"
12393checksum = "42ee6433ecef213b2e72f587ef64a2f5943e7cd16fbd82dbe8bc07486c534c86"
12394dependencies = [
12395 "autocfg",
12396]
1196112397
11962[[package]]12398[[package]]
11963name = "subtle"12399name = "subtle"
12170 "winapi",12606 "winapi",
12171]12607]
12608
12609[[package]]
12610name = "time"
12611version = "0.3.17"
12612source = "registry+https://github.com/rust-lang/crates.io-index"
12613checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376"
12614dependencies = [
12615 "itoa",
12616 "serde",
12617 "time-core",
12618 "time-macros",
12619]
12620
12621[[package]]
12622name = "time-core"
12623version = "0.1.0"
12624source = "registry+https://github.com/rust-lang/crates.io-index"
12625checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
12626
12627[[package]]
12628name = "time-macros"
12629version = "0.2.6"
12630source = "registry+https://github.com/rust-lang/crates.io-index"
12631checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2"
12632dependencies = [
12633 "time-core",
12634]
1217212635
12173[[package]]12636[[package]]
12174name = "tiny-bip39"12637name = "tiny-bip39"
12175version = "0.8.2"12638version = "1.0.0"
12176source = "registry+https://github.com/rust-lang/crates.io-index"12639source = "registry+https://github.com/rust-lang/crates.io-index"
12177checksum = "ffc59cb9dfc85bb312c3a78fd6aa8a8582e310b0fa885d5bb877f6dcc601839d"12640checksum = "62cc94d358b5a1e84a5cb9109f559aa3c4d634d2b1b4de3d0fa4adc7c78e2861"
12178dependencies = [12641dependencies = [
12179 "anyhow",12642 "anyhow",
12180 "hmac 0.8.1",12643 "hmac 0.12.1",
12181 "once_cell",12644 "once_cell",
12182 "pbkdf2 0.4.0",12645 "pbkdf2 0.11.0",
12183 "rand 0.7.3",12646 "rand 0.8.5",
12184 "rustc-hash",12647 "rustc-hash",
12185 "sha2 0.9.9",12648 "sha2 0.10.6",
12186 "thiserror",12649 "thiserror",
12187 "unicode-normalization",12650 "unicode-normalization",
12188 "wasm-bindgen",12651 "wasm-bindgen",
12198 "crunchy",12661 "crunchy",
12199]12662]
12663
12664[[package]]
12665name = "tinytemplate"
12666version = "1.2.1"
12667source = "registry+https://github.com/rust-lang/crates.io-index"
12668checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
12669dependencies = [
12670 "serde",
12671 "serde_json",
12672]
1220012673
12201[[package]]12674[[package]]
12202name = "tinyvec"12675name = "tinyvec"
12250source = "registry+https://github.com/rust-lang/crates.io-index"12723source = "registry+https://github.com/rust-lang/crates.io-index"
12251checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"12724checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
12252dependencies = [12725dependencies = [
12253 "rustls",12726 "rustls 0.20.8",
12254 "tokio",12727 "tokio",
12255 "webpki",12728 "webpki 0.22.0",
12256]12729]
1225712730
12258[[package]]12731[[package]]
12264 "futures-core",12737 "futures-core",
12265 "pin-project-lite 0.2.9",12738 "pin-project-lite 0.2.9",
12266 "tokio",12739 "tokio",
12740 "tokio-util",
12267]12741]
1226812742
12269[[package]]12743[[package]]
1228312757
12284[[package]]12758[[package]]
12285name = "toml"12759name = "toml"
12286version = "0.5.10"12760version = "0.5.11"
12287source = "registry+https://github.com/rust-lang/crates.io-index"12761source = "registry+https://github.com/rust-lang/crates.io-index"
12288checksum = "1333c76748e868a4d9d1017b5ab53171dfd095f70c712fdb4653a406547f598f"12762checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
12289dependencies = [12763dependencies = [
12290 "serde",12764 "serde",
12291]12765]
12766
12767[[package]]
12768name = "toml_datetime"
12769version = "0.5.1"
12770source = "registry+https://github.com/rust-lang/crates.io-index"
12771checksum = "4553f467ac8e3d374bc9a177a26801e5d0f9b211aa1673fb137a403afd1c9cf5"
12772
12773[[package]]
12774name = "toml_edit"
12775version = "0.18.0"
12776source = "registry+https://github.com/rust-lang/crates.io-index"
12777checksum = "729bfd096e40da9c001f778f5cdecbd2957929a24e10e5883d9392220a751581"
12778dependencies = [
12779 "indexmap",
12780 "nom8",
12781 "toml_datetime",
12782]
1229212783
12293[[package]]12784[[package]]
12294name = "tower"12785name = "tower"
1237712868
12378[[package]]12869[[package]]
12379name = "tracing-gum"12870name = "tracing-gum"
12380version = "0.9.36"12871version = "0.9.37"
12381source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"12872source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
12382dependencies = [12873dependencies = [
12383 "polkadot-node-jaeger",12874 "polkadot-node-jaeger",
12384 "polkadot-primitives",12875 "polkadot-primitives",
1238812879
12389[[package]]12880[[package]]
12390name = "tracing-gum-proc-macro"12881name = "tracing-gum-proc-macro"
12391version = "0.9.36"12882version = "0.9.37"
12392source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"12883source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
12393dependencies = [12884dependencies = [
12394 "expander 0.0.6",12885 "expander 0.0.6",
12395 "proc-macro-crate",12886 "proc-macro-crate",
12492 "lazy_static",12983 "lazy_static",
12493 "rand 0.8.5",12984 "rand 0.8.5",
12494 "smallvec",12985 "smallvec",
12986 "socket2",
12495 "thiserror",12987 "thiserror",
12496 "tinyvec",12988 "tinyvec",
12497 "tokio",12989 "tokio",
12528[[package]]13020[[package]]
12529name = "try-runtime-cli"13021name = "try-runtime-cli"
12530version = "0.10.0-dev"13022version = "0.10.0-dev"
12531source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36#cb4f2491b00af7d7817f3a54209c26b20faa1f51"13023source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37#946507ba9ef13e263534176b7b74e26fc56efbd4"
12532dependencies = [13024dependencies = [
12533 "clap",13025 "clap",
12534 "frame-remote-externalities",13026 "frame-remote-externalities",
12535 "frame-try-runtime",13027 "frame-try-runtime",
12536 "hex",13028 "hex",
12537 "log",13029 "log",
12538 "parity-scale-codec",13030 "parity-scale-codec",
12539 "sc-chain-spec",
12540 "sc-cli",13031 "sc-cli",
12541 "sc-executor",13032 "sc-executor",
12542 "sc-service",13033 "sc-service",
12543 "serde",13034 "serde",
13035 "serde_json",
12544 "sp-api",13036 "sp-api",
12545 "sp-core",13037 "sp-core",
12546 "sp-debug-derive",13038 "sp-debug-derive",
12577source = "registry+https://github.com/rust-lang/crates.io-index"13069source = "registry+https://github.com/rust-lang/crates.io-index"
12578checksum = "f4f195fd851901624eee5a58c4bb2b4f06399148fcd0ed336e6f1cb60a9881df"13070checksum = "f4f195fd851901624eee5a58c4bb2b4f06399148fcd0ed336e6f1cb60a9881df"
13071
13072[[package]]
13073name = "turn"
13074version = "0.6.1"
13075source = "registry+https://github.com/rust-lang/crates.io-index"
13076checksum = "4712ee30d123ec7ae26d1e1b218395a16c87cdbaf4b3925d170d684af62ea5e8"
13077dependencies = [
13078 "async-trait",
13079 "base64 0.13.1",
13080 "futures",
13081 "log",
13082 "md-5",
13083 "rand 0.8.5",
13084 "ring",
13085 "stun",
13086 "thiserror",
13087 "tokio",
13088 "webrtc-util",
13089]
1257913090
12580[[package]]13091[[package]]
12581name = "twox-hash"13092name = "twox-hash"
1264913160
12650[[package]]13161[[package]]
12651name = "unicode-bidi"13162name = "unicode-bidi"
12652version = "0.3.9"13163version = "0.3.10"
12653source = "registry+https://github.com/rust-lang/crates.io-index"13164source = "registry+https://github.com/rust-lang/crates.io-index"
12654checksum = "0046be40136ef78dc325e0edefccf84ccddacd0afcc1ca54103fa3c61bbdab1d"13165checksum = "d54675592c1dbefd78cbd98db9bacd89886e1ca50692a0692baefffdeb92dd58"
1265513166
12656[[package]]13167[[package]]
12657name = "unicode-ident"13168name = "unicode-ident"
12986[[package]]13497[[package]]
12987name = "up-sponsorship"13498name = "up-sponsorship"
12988version = "0.1.0"13499version = "0.1.0"
12989source = "git+https://github.com/uniquenetwork/pallet-sponsoring?branch=polkadot-v0.9.36#55943b982e9b0b80465885f31f76db3dba91dac4"13500source = "git+https://github.com/uniquenetwork/pallet-sponsoring?branch=polkadot-v0.9.37#72931fde262ecc4418928dd4bbeea10c64593175"
12990dependencies = [13501dependencies = [
12991 "impl-trait-for-tuples",13502 "impl-trait-for-tuples",
12992]13503]
13002 "percent-encoding",13513 "percent-encoding",
13003]13514]
13515
13516[[package]]
13517name = "uuid"
13518version = "1.2.2"
13519source = "registry+https://github.com/rust-lang/crates.io-index"
13520checksum = "422ee0de9031b5b948b97a8fc04e3aa35230001a722ddd27943e0be31564ce4c"
13521dependencies = [
13522 "getrandom 0.2.8",
13523]
1300413524
13005[[package]]13525[[package]]
13006name = "valuable"13526name = "valuable"
13036source = "registry+https://github.com/rust-lang/crates.io-index"13556source = "registry+https://github.com/rust-lang/crates.io-index"
13037checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"13557checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
13558
13559[[package]]
13560name = "waitgroup"
13561version = "0.1.2"
13562source = "registry+https://github.com/rust-lang/crates.io-index"
13563checksum = "d1f50000a783467e6c0200f9d10642f4bc424e39efc1b770203e88b488f79292"
13564dependencies = [
13565 "atomic-waker",
13566]
1303813567
13039[[package]]13568[[package]]
13040name = "waker-fn"13569name = "waker-fn"
13434 "wasm-bindgen",13963 "wasm-bindgen",
13435]13964]
13965
13966[[package]]
13967name = "webpki"
13968version = "0.21.4"
13969source = "registry+https://github.com/rust-lang/crates.io-index"
13970checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea"
13971dependencies = [
13972 "ring",
13973 "untrusted",
13974]
1343613975
13437[[package]]13976[[package]]
13438name = "webpki"13977name = "webpki"
13450source = "registry+https://github.com/rust-lang/crates.io-index"13989source = "registry+https://github.com/rust-lang/crates.io-index"
13451checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"13990checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
13452dependencies = [13991dependencies = [
13453 "webpki",13992 "webpki 0.22.0",
13454]13993]
13994
13995[[package]]
13996name = "webrtc"
13997version = "0.6.0"
13998source = "registry+https://github.com/rust-lang/crates.io-index"
13999checksum = "2d3bc9049bdb2cea52f5fd4f6f728184225bdb867ed0dc2410eab6df5bdd67bb"
14000dependencies = [
14001 "arc-swap",
14002 "async-trait",
14003 "bytes",
14004 "hex",
14005 "interceptor",
14006 "lazy_static",
14007 "log",
14008 "rand 0.8.5",
14009 "rcgen 0.9.3",
14010 "regex",
14011 "ring",
14012 "rtcp",
14013 "rtp",
14014 "rustls 0.19.1",
14015 "sdp",
14016 "serde",
14017 "serde_json",
14018 "sha2 0.10.6",
14019 "stun",
14020 "thiserror",
14021 "time 0.3.17",
14022 "tokio",
14023 "turn",
14024 "url",
14025 "waitgroup",
14026 "webrtc-data",
14027 "webrtc-dtls",
14028 "webrtc-ice",
14029 "webrtc-mdns",
14030 "webrtc-media",
14031 "webrtc-sctp",
14032 "webrtc-srtp",
14033 "webrtc-util",
14034]
14035
14036[[package]]
14037name = "webrtc-data"
14038version = "0.6.0"
14039source = "registry+https://github.com/rust-lang/crates.io-index"
14040checksum = "0ef36a4d12baa6e842582fe9ec16a57184ba35e1a09308307b67d43ec8883100"
14041dependencies = [
14042 "bytes",
14043 "derive_builder",
14044 "log",
14045 "thiserror",
14046 "tokio",
14047 "webrtc-sctp",
14048 "webrtc-util",
14049]
14050
14051[[package]]
14052name = "webrtc-dtls"
14053version = "0.7.0"
14054source = "registry+https://github.com/rust-lang/crates.io-index"
14055checksum = "7021987ae0a2ed6c8cd33f68e98e49bb6e74ffe9543310267b48a1bbe3900e5f"
14056dependencies = [
14057 "aes 0.6.0",
14058 "aes-gcm 0.8.0",
14059 "async-trait",
14060 "bincode",
14061 "block-modes",
14062 "byteorder",
14063 "ccm",
14064 "curve25519-dalek 3.2.0",
14065 "der-parser 8.1.0",
14066 "elliptic-curve",
14067 "hkdf",
14068 "hmac 0.10.1",
14069 "log",
14070 "oid-registry 0.6.1",
14071 "p256",
14072 "p384",
14073 "rand 0.8.5",
14074 "rand_core 0.6.4",
14075 "rcgen 0.9.3",
14076 "ring",
14077 "rustls 0.19.1",
14078 "sec1",
14079 "serde",
14080 "sha-1",
14081 "sha2 0.9.9",
14082 "signature",
14083 "subtle",
14084 "thiserror",
14085 "tokio",
14086 "webpki 0.21.4",
14087 "webrtc-util",
14088 "x25519-dalek 2.0.0-pre.1",
14089 "x509-parser 0.13.2",
14090]
14091
14092[[package]]
14093name = "webrtc-ice"
14094version = "0.9.0"
14095source = "registry+https://github.com/rust-lang/crates.io-index"
14096checksum = "494483fbb2f5492620871fdc78b084aed8807377f6e3fe88b2e49f0a9c9c41d7"
14097dependencies = [
14098 "arc-swap",
14099 "async-trait",
14100 "crc",
14101 "log",
14102 "rand 0.8.5",
14103 "serde",
14104 "serde_json",
14105 "stun",
14106 "thiserror",
14107 "tokio",
14108 "turn",
14109 "url",
14110 "uuid",
14111 "waitgroup",
14112 "webrtc-mdns",
14113 "webrtc-util",
14114]
14115
14116[[package]]
14117name = "webrtc-mdns"
14118version = "0.5.2"
14119source = "registry+https://github.com/rust-lang/crates.io-index"
14120checksum = "f08dfd7a6e3987e255c4dbe710dde5d94d0f0574f8a21afa95d171376c143106"
14121dependencies = [
14122 "log",
14123 "socket2",
14124 "thiserror",
14125 "tokio",
14126 "webrtc-util",
14127]
14128
14129[[package]]
14130name = "webrtc-media"
14131version = "0.5.0"
14132source = "registry+https://github.com/rust-lang/crates.io-index"
14133checksum = "ee2a3c157a040324e5049bcbd644ffc9079e6738fa2cfab2bcff64e5cc4c00d7"
14134dependencies = [
14135 "byteorder",
14136 "bytes",
14137 "derive_builder",
14138 "displaydoc",
14139 "rand 0.8.5",
14140 "rtp",
14141 "thiserror",
14142 "webrtc-util",
14143]
14144
14145[[package]]
14146name = "webrtc-sctp"
14147version = "0.7.0"
14148source = "registry+https://github.com/rust-lang/crates.io-index"
14149checksum = "0d47adcd9427eb3ede33d5a7f3424038f63c965491beafcc20bc650a2f6679c0"
14150dependencies = [
14151 "arc-swap",
14152 "async-trait",
14153 "bytes",
14154 "crc",
14155 "log",
14156 "rand 0.8.5",
14157 "thiserror",
14158 "tokio",
14159 "webrtc-util",
14160]
14161
14162[[package]]
14163name = "webrtc-srtp"
14164version = "0.9.1"
14165source = "registry+https://github.com/rust-lang/crates.io-index"
14166checksum = "6183edc4c1c6c0175f8812eefdce84dfa0aea9c3ece71c2bf6ddd3c964de3da5"
14167dependencies = [
14168 "aead 0.4.3",
14169 "aes 0.7.5",
14170 "aes-gcm 0.9.4",
14171 "async-trait",
14172 "byteorder",
14173 "bytes",
14174 "ctr 0.8.0",
14175 "hmac 0.11.0",
14176 "log",
14177 "rtcp",
14178 "rtp",
14179 "sha-1",
14180 "subtle",
14181 "thiserror",
14182 "tokio",
14183 "webrtc-util",
14184]
14185
14186[[package]]
14187name = "webrtc-util"
14188version = "0.7.0"
14189source = "registry+https://github.com/rust-lang/crates.io-index"
14190checksum = "93f1db1727772c05cf7a2cfece52c3aca8045ca1e176cd517d323489aa3c6d87"
14191dependencies = [
14192 "async-trait",
14193 "bitflags",
14194 "bytes",
14195 "cc",
14196 "ipnet",
14197 "lazy_static",
14198 "libc",
14199 "log",
14200 "nix",
14201 "rand 0.8.5",
14202 "thiserror",
14203 "tokio",
14204 "winapi",
14205]
1345514206
13456[[package]]14207[[package]]
13457name = "wepoll-ffi"14208name = "wepoll-ffi"
1346414215
13465[[package]]14216[[package]]
13466name = "westend-runtime"14217name = "westend-runtime"
13467version = "0.9.36"14218version = "0.9.37"
13468source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"14219source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
13469dependencies = [14220dependencies = [
13470 "bitvec",14221 "bitvec",
13471 "frame-benchmarking",14222 "frame-benchmarking",
13490 "pallet-elections-phragmen",14241 "pallet-elections-phragmen",
13491 "pallet-fast-unstake",14242 "pallet-fast-unstake",
13492 "pallet-grandpa",14243 "pallet-grandpa",
13493 "pallet-identity 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.36)",14244 "pallet-identity 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.37)",
13494 "pallet-im-online",14245 "pallet-im-online",
13495 "pallet-indices",14246 "pallet-indices",
13496 "pallet-membership",14247 "pallet-membership",
1355414305
13555[[package]]14306[[package]]
13556name = "westend-runtime-constants"14307name = "westend-runtime-constants"
13557version = "0.9.36"14308version = "0.9.37"
13558source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"14309source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
13559dependencies = [14310dependencies = [
13560 "frame-support",14311 "frame-support",
13561 "polkadot-primitives",14312 "polkadot-primitives",
1356814319
13569[[package]]14320[[package]]
13570name = "which"14321name = "which"
13571version = "4.3.0"14322version = "4.4.0"
13572source = "registry+https://github.com/rust-lang/crates.io-index"14323source = "registry+https://github.com/rust-lang/crates.io-index"
13573checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b"14324checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
13574dependencies = [14325dependencies = [
13575 "either",14326 "either",
13576 "libc",14327 "libc",
13786 "zeroize",14537 "zeroize",
13787]14538]
14539
14540[[package]]
14541name = "x25519-dalek"
14542version = "2.0.0-pre.1"
14543source = "registry+https://github.com/rust-lang/crates.io-index"
14544checksum = "e5da623d8af10a62342bcbbb230e33e58a63255a58012f8653c578e54bab48df"
14545dependencies = [
14546 "curve25519-dalek 3.2.0",
14547 "rand_core 0.6.4",
14548 "zeroize",
14549]
14550
14551[[package]]
14552name = "x509-parser"
14553version = "0.13.2"
14554source = "registry+https://github.com/rust-lang/crates.io-index"
14555checksum = "9fb9bace5b5589ffead1afb76e43e34cff39cd0f3ce7e170ae0c29e53b88eb1c"
14556dependencies = [
14557 "asn1-rs 0.3.1",
14558 "base64 0.13.1",
14559 "data-encoding",
14560 "der-parser 7.0.0",
14561 "lazy_static",
14562 "nom",
14563 "oid-registry 0.4.0",
14564 "ring",
14565 "rusticata-macros",
14566 "thiserror",
14567 "time 0.3.17",
14568]
14569
14570[[package]]
14571name = "x509-parser"
14572version = "0.14.0"
14573source = "registry+https://github.com/rust-lang/crates.io-index"
14574checksum = "e0ecbeb7b67ce215e40e3cc7f2ff902f94a223acf44995934763467e7b1febc8"
14575dependencies = [
14576 "asn1-rs 0.5.1",
14577 "base64 0.13.1",
14578 "data-encoding",
14579 "der-parser 8.1.0",
14580 "lazy_static",
14581 "nom",
14582 "oid-registry 0.6.1",
14583 "rusticata-macros",
14584 "thiserror",
14585 "time 0.3.17",
14586]
1378814587
13789[[package]]14588[[package]]
13790name = "xcm"14589name = "xcm"
13791version = "0.9.36"14590version = "0.9.37"
13792source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"14591source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
13793dependencies = [14592dependencies = [
13794 "derivative",14593 "derivative",
13795 "impl-trait-for-tuples",14594 "impl-trait-for-tuples",
1380214601
13803[[package]]14602[[package]]
13804name = "xcm-builder"14603name = "xcm-builder"
13805version = "0.9.36"14604version = "0.9.37"
13806source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"14605source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
13807dependencies = [14606dependencies = [
13808 "frame-support",14607 "frame-support",
13809 "frame-system",14608 "frame-system",
1382214621
13823[[package]]14622[[package]]
13824name = "xcm-executor"14623name = "xcm-executor"
13825version = "0.9.36"14624version = "0.9.37"
13826source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"14625source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
13827dependencies = [14626dependencies = [
13828 "frame-benchmarking",14627 "frame-benchmarking",
13829 "frame-support",14628 "frame-support",
1384014639
13841[[package]]14640[[package]]
13842name = "xcm-procedural"14641name = "xcm-procedural"
13843version = "0.9.36"14642version = "0.9.37"
13844source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc"14643source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3"
13845dependencies = [14644dependencies = [
13846 "Inflector",14645 "Inflector",
13847 "proc-macro2",14646 "proc-macro2",
13863 "static_assertions",14662 "static_assertions",
13864]14663]
14664
14665[[package]]
14666name = "yasna"
14667version = "0.5.1"
14668source = "registry+https://github.com/rust-lang/crates.io-index"
14669checksum = "aed2e7a52e3744ab4d0c05c20aa065258e84c49fd4226f5191b2ed29712710b4"
14670dependencies = [
14671 "time 0.3.17",
14672]
1386514673
13866[[package]]14674[[package]]
13867name = "zeroize"14675name = "zeroize"
modifiedCargo.tomldiffbeforeafterboth
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -18,7 +18,7 @@
 panic = 'unwind'
 
 [workspace.dependencies]
-orml-tokens = { git = "https://github.com/uniquenetwork/open-runtime-module-library", branch = "feature/polkadot-v0.9.36", default-features = false }
-orml-traits = { git = "https://github.com/uniquenetwork/open-runtime-module-library", branch = "feature/polkadot-v0.9.36", default-features = false }
-orml-vesting = { git = "https://github.com/uniquenetwork/open-runtime-module-library", branch = "feature/polkadot-v0.9.36", default-features = false }
-orml-xtokens = { git = "https://github.com/uniquenetwork/open-runtime-module-library", branch = "feature/polkadot-v0.9.36", default-features = false }
+orml-tokens = { git = "https://github.com/open-web3-stack/open-runtime-module-library", branch = "polkadot-v0.9.37", default-features = false }
+orml-traits = { git = "https://github.com/open-web3-stack/open-runtime-module-library", branch = "polkadot-v0.9.37", default-features = false }
+orml-vesting = { git = "https://github.com/open-web3-stack/open-runtime-module-library", branch = "polkadot-v0.9.37", default-features = false }
+orml-xtokens = { git = "https://github.com/open-web3-stack/open-runtime-module-library", branch = "polkadot-v0.9.37", default-features = false }
modifiedclient/rpc/Cargo.tomldiffbeforeafterboth
--- a/client/rpc/Cargo.toml
+++ b/client/rpc/Cargo.toml
@@ -17,22 +17,22 @@
 up-rpc.path = "../../primitives/rpc"
 zstd = { version = "0.11.2", default-features = false }
 
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sc-rpc-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-blockchain = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-keystore = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-trie = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sc-rpc-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-blockchain = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-keystore = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-trie = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
-frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
-sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
 opal-runtime.path = "../../runtime/opal"
 quartz-runtime = { path = "../../runtime/quartz", optional = true }
modifiedcrates/evm-coder/Cargo.tomldiffbeforeafterboth
--- a/crates/evm-coder/Cargo.toml
+++ b/crates/evm-coder/Cargo.toml
@@ -12,9 +12,9 @@
 primitive-types = { version = "0.12.1", default-features = false }
 # Evm doesn't have reexports for log and others
 ethereum = { version = "0.14.0", default-features = false }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 # Error types for execution
-evm-core = { default-features = false, git = "https://github.com/uniquenetwork/evm", branch = "unique-polkadot-v0.9.36" }
+evm-core = { default-features = false, version = "0.37.0" }
 # We have tuple-heavy code in solidity.rs
 impl-trait-for-tuples = "0.2.2"
 
modifiednode/cli/Cargo.tomldiffbeforeafterboth
--- a/node/cli/Cargo.toml
+++ b/node/cli/Cargo.toml
@@ -1,5 +1,5 @@
 [build-dependencies]
-substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
 ################################################################################
 # Package
@@ -25,74 +25,74 @@
 [dependencies]
 clap = "4.1"
 codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.2" }
-cumulus-client-cli = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" }
-cumulus-client-consensus-aura = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" }
-cumulus-client-consensus-common = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" }
-cumulus-client-network = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" }
-cumulus-client-service = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" }
-cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" }
-cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" }
-cumulus-relay-chain-inprocess-interface = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" }
-cumulus-relay-chain-interface = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" }
-cumulus-relay-chain-minimal-node = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" }
-frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+cumulus-client-cli = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
+cumulus-client-consensus-aura = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
+cumulus-client-consensus-common = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
+cumulus-client-network = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
+cumulus-client-service = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
+cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
+cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
+cumulus-relay-chain-inprocess-interface = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
+cumulus-relay-chain-interface = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
+cumulus-relay-chain-minimal-node = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
+frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 futures = '0.3.17'
 log = '0.4.17'
 opal-runtime = { path = "../../runtime/opal", optional = true }
-pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36" }
-polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36" }
-polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36" }
+pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" }
+polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" }
+polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" }
 quartz-runtime = { path = "../../runtime/quartz", optional = true }
-sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sc-consensus-manual-seal = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sc-consensus-manual-seal = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 serde = { features = ['derive'], version = "1.0" }
 serde_json = "1.0"
-sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 tokio = { version = "1.24", features = ["time"] }
-try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 unique-runtime = { path = "../../runtime/unique", optional = true }
 up-common.path = "../../primitives/common"
 up-data-structs = { path = "../../primitives/data-structs", default-features = false }
-up-rpc.path = "../../primitives/rpc"
 
-fc-consensus = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-fc-db = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-fc-mapping-sync = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-fc-rpc = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-fc-rpc-core = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-fp-rpc = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+fc-consensus = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+fc-db = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+fc-mapping-sync = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+fc-rpc = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+fc-rpc-core = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+fp-rpc = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
 
 app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false }
 rmrk-rpc.path = "../../primitives/rmrk-rpc"
 uc-rpc = { default-features = false, path = "../../client/rpc" }
 unique-rpc = { default-features = false, path = "../rpc" }
 up-pov-estimate-rpc = { path = "../../primitives/pov-estimate-rpc", default-features = false }
+up-rpc.path = "../../primitives/rpc"
 
 [features]
 default = ["opal-runtime"]
modifiednode/rpc/Cargo.tomldiffbeforeafterboth
--- a/node/rpc/Cargo.toml
+++ b/node/rpc/Cargo.toml
@@ -12,25 +12,25 @@
 [dependencies]
 jsonrpsee = { version = "0.16.2", features = ["macros", "server"] }
 # pallet-contracts-rpc = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
-pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
-fc-db = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-fc-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-fc-rpc-core = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-fp-storage = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+fc-db = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+fc-rpc = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+fc-rpc-core = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+fp-storage = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
 
 app-promotion-rpc.path = "../../primitives/app_promotion_rpc"
 rmrk-rpc.path = "../../primitives/rmrk-rpc"
modifiedpallets/app-promotion/Cargo.tomldiffbeforeafterboth
--- a/pallets/app-promotion/Cargo.toml
+++ b/pallets/app-promotion/Cargo.toml
@@ -43,14 +43,14 @@
 codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.1.2" }
 scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
 
-frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
 ################################################################################
 # local dependencies
modifiedpallets/collator-selection/Cargo.tomldiffbeforeafterboth
--- a/pallets/collator-selection/Cargo.toml
+++ b/pallets/collator-selection/Cargo.toml
@@ -18,26 +18,26 @@
 scale-info = { version = "2.2.0", default-features = false, features = ["derive"] }
 serde = { version = "1.0.145", default-features = false }
 
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-authorship = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-authorship = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 pallet-configuration = { default-features = false, path = "../configuration" }
-pallet-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-staking = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+pallet-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-staking = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
-frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
 [dev-dependencies]
-pallet-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+pallet-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
 [features]
 default = ["std"]
modifiedpallets/common/Cargo.tomldiffbeforeafterboth
--- a/pallets/common/Cargo.toml
+++ b/pallets/common/Cargo.toml
@@ -10,14 +10,14 @@
 
 ethereum = { version = "0.14.0", default-features = false }
 evm-coder = { default-features = false, path = "../../crates/evm-coder" }
-frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
 pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 up-data-structs = { default-features = false, path = "../../primitives/data-structs" }
 up-pov-estimate-rpc = { default-features = false, path = "../../primitives/pov-estimate-rpc" }
 
modifiedpallets/configuration/Cargo.tomldiffbeforeafterboth
--- a/pallets/configuration/Cargo.toml
+++ b/pallets/configuration/Cargo.toml
@@ -4,17 +4,17 @@
 version = "0.1.3"
 
 [dependencies]
-fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 parity-scale-codec = { version = "3.2.2", features = ["derive"], default-features = false }
 scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
 smallvec = "1.6.1"
-sp-arithmetic = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-xcm = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36" }
+sp-arithmetic = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+xcm = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" }
 
 [features]
 default = ["std"]
modifiedpallets/evm-coder-substrate/Cargo.tomldiffbeforeafterboth
--- a/pallets/evm-coder-substrate/Cargo.toml
+++ b/pallets/evm-coder-substrate/Cargo.toml
@@ -9,12 +9,12 @@
 scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
 
 evm-coder = { default-features = false, path = "../../crates/evm-coder" }
-frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 up-data-structs = { default-features = false, path = "../../primitives/data-structs" }
 
 [features]
modifiedpallets/evm-coder-substrate/src/lib.rsdiffbeforeafterboth
--- a/pallets/evm-coder-substrate/src/lib.rs
+++ b/pallets/evm-coder-substrate/src/lib.rs
@@ -193,7 +193,7 @@
 					output: writer.finish(),
 				})
 			}
-			Err(Error::Fatal(f)) => Err(f.into()),
+			Err(Error::Fatal(f)) => Err(PrecompileFailure::Fatal { exit_status: f }),
 			Err(Error::Error(e)) => Err(e.into()),
 		})
 	}
modifiedpallets/evm-contract-helpers/Cargo.tomldiffbeforeafterboth
--- a/pallets/evm-contract-helpers/Cargo.toml
+++ b/pallets/evm-contract-helpers/Cargo.toml
@@ -8,14 +8,14 @@
 scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
 
 # Substrate
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
 # Unique
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-up-sponsorship = { version = "0.1.0", default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.36" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.37" }
 
 # Locals
 codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.1.2" }
modifiedpallets/evm-migration/Cargo.tomldiffbeforeafterboth
--- a/pallets/evm-migration/Cargo.toml
+++ b/pallets/evm-migration/Cargo.toml
@@ -7,13 +7,13 @@
 [dependencies]
 codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.1.2" }
 ethereum = { version = "0.14.0", default-features = false }
-frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
 scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
 [features]
 default = ["runtime-benchmarks", "std"]
modifiedpallets/evm-transaction-payment/Cargo.tomldiffbeforeafterboth
--- a/pallets/evm-transaction-payment/Cargo.toml
+++ b/pallets/evm-transaction-payment/Cargo.toml
@@ -8,14 +8,14 @@
 codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.1.2" }
 scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
 
-fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-up-sponsorship = { version = "0.1.0", default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.36" }
+fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.37" }
 
 [features]
 default = ["std"]
modifiedpallets/foreign-assets/Cargo.tomldiffbeforeafterboth
--- a/pallets/foreign-assets/Cargo.toml
+++ b/pallets/foreign-assets/Cargo.toml
@@ -8,20 +8,20 @@
 codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }
 scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
 
-frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", default-features = false }
-frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", default-features = false }
+frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37", default-features = false }
+frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37", default-features = false }
 log = { version = "0.4.16", default-features = false }
 orml-tokens.workspace = true
-pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", default-features = false }
+pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37", default-features = false }
 pallet-common = { default-features = false, path = "../common" }
 pallet-fungible = { default-features = false, path = "../fungible" }
-serde = { version = "1.0.136", optional = true }
-sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", default-features = false }
-sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", default-features = false }
+serde = { version = "1.0.136", default-features = false, optional = true }
+sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37", default-features = false }
+sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37", default-features = false }
 up-data-structs = { default-features = false, path = "../../primitives/data-structs" }
-xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }
-xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }
+xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37", default-features = false }
+xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37", default-features = false }
 
 [features]
 default = ["std"]
modifiedpallets/fungible/Cargo.tomldiffbeforeafterboth
--- a/pallets/fungible/Cargo.toml
+++ b/pallets/fungible/Cargo.toml
@@ -9,16 +9,16 @@
 scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
 
 evm-coder = { default-features = false, path = "../../crates/evm-coder" }
-frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 pallet-common = { default-features = false, path = "../common" }
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
 pallet-evm-coder-substrate = { default-features = false, path = "../evm-coder-substrate" }
 pallet-structure = { default-features = false, path = "../structure" }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 up-data-structs = { default-features = false, path = "../../primitives/data-structs" }
 
 [features]
modifiedpallets/identity/Cargo.tomldiffbeforeafterboth
--- a/pallets/identity/Cargo.toml
+++ b/pallets/identity/Cargo.toml
@@ -18,17 +18,17 @@
 	"max-encoded-len",
 ] }
 enumflags2 = "0.7.4"
-frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-support = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-support = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
-sp-io = { version = "7.0.0", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { version = "7.0.0", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { version = "5.0.0", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-io = { version = "7.0.0", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { version = "7.0.0", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { version = "5.0.0", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
 [dev-dependencies]
-pallet-balances = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-core = { version = "7.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+pallet-balances = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-core = { version = "7.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
 [features]
 default = ["std"]
modifiedpallets/inflation/Cargo.tomldiffbeforeafterboth
--- a/pallets/inflation/Cargo.toml
+++ b/pallets/inflation/Cargo.toml
@@ -32,11 +32,11 @@
 codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.1.2" }
 scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
 
-frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
modifiedpallets/maintenance/Cargo.tomldiffbeforeafterboth
--- a/pallets/maintenance/Cargo.toml
+++ b/pallets/maintenance/Cargo.toml
@@ -13,10 +13,10 @@
 codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
 scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
 
-frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
 [features]
 default = ["std"]
modifiedpallets/nonfungible/Cargo.tomldiffbeforeafterboth
--- a/pallets/nonfungible/Cargo.toml
+++ b/pallets/nonfungible/Cargo.toml
@@ -7,17 +7,17 @@
 [dependencies]
 codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.1.2" }
 evm-coder = { default-features = false, path = "../../crates/evm-coder" }
-frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 pallet-common = { default-features = false, path = "../common" }
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
 pallet-evm-coder-substrate = { default-features = false, path = "../evm-coder-substrate" }
 pallet-structure = { default-features = false, path = "../structure" }
 scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 struct-versioning.path = "../../crates/struct-versioning"
 up-data-structs = { default-features = false, path = "../../primitives/data-structs" }
 
modifiedpallets/proxy-rmrk-core/Cargo.tomldiffbeforeafterboth
--- a/pallets/proxy-rmrk-core/Cargo.toml
+++ b/pallets/proxy-rmrk-core/Cargo.toml
@@ -8,16 +8,16 @@
 codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.1.2" }
 scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
 
-frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 pallet-common = { default-features = false, path = "../common" }
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
 pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }
 pallet-structure = { default-features = false, path = "../../pallets/structure" }
 rmrk-traits = { default-features = false, path = "../../primitives/rmrk-traits" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 up-data-structs = { default-features = false, path = "../../primitives/data-structs" }
 
 [features]
modifiedpallets/proxy-rmrk-equip/Cargo.tomldiffbeforeafterboth
--- a/pallets/proxy-rmrk-equip/Cargo.toml
+++ b/pallets/proxy-rmrk-equip/Cargo.toml
@@ -8,15 +8,15 @@
 codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.1.2" }
 scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
 
-frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 pallet-common = { default-features = false, path = "../common" }
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
 pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }
 pallet-rmrk-core = { default-features = false, path = "../proxy-rmrk-core" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 up-data-structs = { default-features = false, path = "../../primitives/data-structs" }
 
 [features]
modifiedpallets/refungible/Cargo.tomldiffbeforeafterboth
--- a/pallets/refungible/Cargo.toml
+++ b/pallets/refungible/Cargo.toml
@@ -9,16 +9,16 @@
 scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
 
 evm-coder = { default-features = false, path = "../../crates/evm-coder" }
-frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 pallet-common = { default-features = false, path = "../common" }
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
 pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }
 pallet-structure = { default-features = false, path = "../structure" }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
 up-data-structs = { default-features = false, path = "../../primitives/data-structs" }
 
modifiedpallets/scheduler-v2/Cargo.tomldiffbeforeafterboth
--- a/pallets/scheduler-v2/Cargo.toml
+++ b/pallets/scheduler-v2/Cargo.toml
@@ -11,20 +11,20 @@
 
 [dependencies]
 codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
-frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 log = { version = "0.4.17", default-features = false }
 scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
 [dev-dependencies]
-pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
 [features]
 default = ["std"]
modifiedpallets/structure/Cargo.tomldiffbeforeafterboth
--- a/pallets/structure/Cargo.toml
+++ b/pallets/structure/Cargo.toml
@@ -7,13 +7,13 @@
 parity-scale-codec = { version = "3.2.2", default-features = false, features = ["derive"] }
 scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
 
-frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 log = { version = "0.4.17", default-features = false }
 pallet-common = { path = "../common", default-features = false }
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 up-data-structs = { path = "../../primitives/data-structs", default-features = false }
 
 [features]
modifiedpallets/unique/Cargo.tomldiffbeforeafterboth
--- a/pallets/unique/Cargo.toml
+++ b/pallets/unique/Cargo.toml
@@ -42,18 +42,18 @@
 codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.1.2" }
 ethereum = { version = "0.12.0", default-features = false }
 evm-coder = { default-features = false, path = "../../crates/evm-coder" }
-frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 pallet-common = { default-features = false, path = "../common" }
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
 pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }
 pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }
 pallet-refungible = { default-features = false, path = "../../pallets/refungible" }
 scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
 serde = { default-features = false, features = ['derive'], version = "1.0.130" }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 up-data-structs = { default-features = false, path = "../../primitives/data-structs" }
modifiedprimitives/app_promotion_rpc/Cargo.tomldiffbeforeafterboth
--- a/primitives/app_promotion_rpc/Cargo.toml
+++ b/primitives/app_promotion_rpc/Cargo.toml
@@ -6,10 +6,10 @@
 
 [dependencies]
 codec = { package = "parity-scale-codec", version = "3.1.2", default-features = false, features = ["derive"] }
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
 [features]
 default = ["std"]
modifiedprimitives/common/Cargo.tomldiffbeforeafterboth
--- a/primitives/common/Cargo.toml
+++ b/primitives/common/Cargo.toml
@@ -22,11 +22,11 @@
 ]
 
 [dependencies]
-cumulus-primitives-core = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" }
-fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-sp-consensus-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+cumulus-primitives-core = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
+fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+sp-consensus-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
modifiedprimitives/data-structs/Cargo.tomldiffbeforeafterboth
--- a/primitives/data-structs/Cargo.toml
+++ b/primitives/data-structs/Cargo.toml
@@ -12,14 +12,14 @@
 bondrewd = { version = "0.1.14", features = ["derive"], default-features = false }
 codec = { package = "parity-scale-codec", version = "3.1.2", default-features = false, features = ['derive'] }
 derivative = { version = "2.2.0", features = ["use_core"] }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
 rmrk-traits = { default-features = false, path = "../rmrk-traits" }
 scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
 serde = { version = "1.0.130", features = ['derive'], default-features = false, optional = true }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 struct-versioning.path = "../../crates/struct-versioning"
 
 [features]
modifiedprimitives/pov-estimate-rpc/Cargo.tomldiffbeforeafterboth
--- a/primitives/pov-estimate-rpc/Cargo.toml
+++ b/primitives/pov-estimate-rpc/Cargo.toml
@@ -8,10 +8,10 @@
 codec = { package = "parity-scale-codec", version = "3.1.2", default-features = false, features = ["derive"] }
 scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
 serde = { version = "1.0.130", features = ["derive"], default-features = false, optional = true }
-sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
 [features]
 default = ["std"]
modifiedprimitives/rmrk-rpc/Cargo.tomldiffbeforeafterboth
--- a/primitives/rmrk-rpc/Cargo.toml
+++ b/primitives/rmrk-rpc/Cargo.toml
@@ -8,9 +8,9 @@
 codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = ["derive"] }
 rmrk-traits = { default-features = false, path = "../rmrk-traits" }
 serde = { version = "1.0.130", default-features = false, features = ["derive"] }
-sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
 [features]
 default = ["std"]
modifiedprimitives/rpc/Cargo.tomldiffbeforeafterboth
--- a/primitives/rpc/Cargo.toml
+++ b/primitives/rpc/Cargo.toml
@@ -7,11 +7,11 @@
 [dependencies]
 codec = { package = "parity-scale-codec", version = "3.1.2", default-features = false, features = ["derive"] }
 pallet-common = { default-features = false, path = "../../pallets/common" }
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 up-data-structs = { default-features = false, path = "../data-structs" }
 
 [features]
modifiedruntime/opal/Cargo.tomldiffbeforeafterboth
--- a/runtime/opal/Cargo.toml
+++ b/runtime/opal/Cargo.toml
@@ -205,79 +205,79 @@
 
 [dependencies]
 codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.1.2" }
-cumulus-pallet-aura-ext = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-cumulus-pallet-dmp-queue = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-cumulus-pallet-parachain-system = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-cumulus-pallet-xcm = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-cumulus-pallet-xcmp-queue = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-cumulus-primitives-timestamp = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-cumulus-primitives-utility = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-frame-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.36" }
-frame-executive = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.36" }
-frame-system-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-try-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.36" }
+cumulus-pallet-aura-ext = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+cumulus-pallet-dmp-queue = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+cumulus-pallet-parachain-system = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+cumulus-pallet-xcm = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+cumulus-pallet-xcmp-queue = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+cumulus-primitives-timestamp = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+cumulus-primitives-utility = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+frame-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.37" }
+frame-executive = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.37" }
+frame-system-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-try-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.37" }
 hex-literal = { optional = true, version = "0.3.3" }
 orml-tokens.workspace = true
 orml-traits.workspace = true
 orml-vesting.workspace = true
 orml-xtokens.workspace = true
-pallet-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-authorship = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-randomness-collective-flip = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-sudo = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-timestamp = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-transaction-payment = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-transaction-payment-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-treasury = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }
-parachain-info = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" }
-polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }
+pallet-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-authorship = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-randomness-collective-flip = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-sudo = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-timestamp = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-transaction-payment = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-transaction-payment-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-treasury = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37", default-features = false }
+parachain-info = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
+polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37", default-features = false }
 serde = { default-features = false, features = ['derive'], optional = true, version = "1.0.130" }
 smallvec = "1.6.1"
-sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-arithmetic = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-block-builder = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-consensus-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-inherents = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-offchain = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-transaction-pool = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-version = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }
-xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }
-xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }
+sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-arithmetic = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-block-builder = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-consensus-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-inherents = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-offchain = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-transaction-pool = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-version = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37", default-features = false }
+xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37", default-features = false }
+xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37", default-features = false }
 
 app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false }
 derivative = "2.2.0"
 evm-coder = { default-features = false, path = "../../crates/evm-coder" }
-fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
 log = { version = "0.4.16", default-features = false }
 num_enum = { version = "0.5.3", default-features = false }
 pallet-app-promotion = { path = "../../pallets/app-promotion", default-features = false }
-pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.36", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }
+pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+pallet-charge-transaction = { package = "pallet-template-transaction-payment", default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.37" }
 pallet-collator-selection = { default-features = false, path = "../../pallets/collator-selection" }
 pallet-common = { default-features = false, path = "../../pallets/common" }
 pallet-configuration = { default-features = false, path = "../../pallets/configuration" }
-pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
 pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }
 pallet-evm-contract-helpers = { path = "../../pallets/evm-contract-helpers", default-features = false }
 pallet-evm-migration = { path = "../../pallets/evm-migration", default-features = false }
-pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
 pallet-evm-transaction-payment = { path = "../../pallets/evm-transaction-payment", default-features = false }
 pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }
 pallet-fungible = { default-features = false, path = "../../pallets/fungible" }
@@ -298,7 +298,7 @@
 up-data-structs = { path = "../../primitives/data-structs", default-features = false }
 up-pov-estimate-rpc = { path = "../../primitives/pov-estimate-rpc", default-features = false }
 up-rpc = { path = "../../primitives/rpc", default-features = false }
-up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.36" }
+up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.37" }
 
 ################################################################################
 # Test dependencies
@@ -314,4 +314,4 @@
 logtest = "2.0.0"
 
 [build-dependencies]
-substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
modifiedruntime/quartz/Cargo.tomldiffbeforeafterboth
--- a/runtime/quartz/Cargo.toml
+++ b/runtime/quartz/Cargo.toml
@@ -197,63 +197,63 @@
 
 [dependencies]
 codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.1.2" }
-cumulus-pallet-aura-ext = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-cumulus-pallet-dmp-queue = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-cumulus-pallet-parachain-system = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-cumulus-pallet-xcm = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-cumulus-pallet-xcmp-queue = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-cumulus-primitives-timestamp = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-cumulus-primitives-utility = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-frame-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.36" }
-frame-executive = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.36" }
-frame-system-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-try-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.36" }
+cumulus-pallet-aura-ext = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+cumulus-pallet-dmp-queue = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+cumulus-pallet-parachain-system = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+cumulus-pallet-xcm = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+cumulus-pallet-xcmp-queue = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+cumulus-primitives-timestamp = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+cumulus-primitives-utility = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+frame-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.37" }
+frame-executive = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.37" }
+frame-system-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-try-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.37" }
 hex-literal = { optional = true, version = "0.3.3" }
 orml-tokens.workspace = true
 orml-traits.workspace = true
 orml-vesting.workspace = true
 orml-xtokens.workspace = true
-pallet-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-authorship = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-randomness-collective-flip = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-sudo = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-timestamp = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-transaction-payment = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-transaction-payment-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-treasury = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }
-parachain-info = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" }
-polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }
+pallet-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-authorship = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-randomness-collective-flip = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-sudo = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-timestamp = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-transaction-payment = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-transaction-payment-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-treasury = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37", default-features = false }
+parachain-info = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
+polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37", default-features = false }
 rmrk-rpc = { default-features = false, path = "../../primitives/rmrk-rpc" }
 serde = { default-features = false, features = ['derive'], optional = true, version = "1.0.130" }
 smallvec = "1.6.1"
-sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-arithmetic = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-block-builder = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-consensus-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-inherents = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-offchain = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-transaction-pool = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-version = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }
-xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }
-xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }
+sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-arithmetic = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-block-builder = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-consensus-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-inherents = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-offchain = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-transaction-pool = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-version = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37", default-features = false }
+xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37", default-features = false }
+xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37", default-features = false }
 
 app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false }
 derivative = "2.2.0"
-fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
 log = { version = "0.4.16", default-features = false }
 pallet-app-promotion = { path = "../../pallets/app-promotion", default-features = false }
 pallet-collator-selection = { default-features = false, path = "../../pallets/collator-selection" }
@@ -275,22 +275,22 @@
 up-rpc = { path = "../../primitives/rpc", default-features = false }
 # pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }
 evm-coder = { default-features = false, path = "../../crates/evm-coder" }
-fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
 num_enum = { version = "0.5.3", default-features = false }
-pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.36", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }
-pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+pallet-charge-transaction = { package = "pallet-template-transaction-payment", default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.37" }
+pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
 pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }
 pallet-evm-contract-helpers = { path = "../../pallets/evm-contract-helpers", default-features = false }
 pallet-evm-migration = { path = "../../pallets/evm-migration", default-features = false }
-pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
 pallet-evm-transaction-payment = { path = "../../pallets/evm-transaction-payment", default-features = false }
 pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }
 pallet-maintenance = { default-features = false, path = "../../pallets/maintenance" }
 precompile-utils-macro.path = "../common/ethereum/precompiles/utils/macro"
-up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.36" }
+up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.37" }
 
 ################################################################################
 # Test dependencies
@@ -306,4 +306,4 @@
 logtest = "2.0.0"
 
 [build-dependencies]
-substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
modifiedruntime/tests/Cargo.tomldiffbeforeafterboth
--- a/runtime/tests/Cargo.toml
+++ b/runtime/tests/Cargo.toml
@@ -11,22 +11,22 @@
 [dependencies]
 up-data-structs = { default-features = false, path = "../../primitives/data-structs" }
 
-sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
-fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
 
-frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
-pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
-pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
 
 pallet-common.path = "../../pallets/common"
 pallet-fungible.path = "../../pallets/fungible"
@@ -41,4 +41,4 @@
 scale-info = "*"
 
 evm-coder = { default-features = false, path = "../../crates/evm-coder" }
-up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.36" }
+up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.37" }
modifiedruntime/unique/Cargo.tomldiffbeforeafterboth
--- a/runtime/unique/Cargo.toml
+++ b/runtime/unique/Cargo.toml
@@ -195,56 +195,56 @@
 
 [dependencies]
 codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.1.2" }
-cumulus-pallet-aura-ext = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-cumulus-pallet-dmp-queue = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-cumulus-pallet-parachain-system = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-cumulus-pallet-xcm = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-cumulus-pallet-xcmp-queue = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-cumulus-primitives-timestamp = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-cumulus-primitives-utility = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36", default-features = false }
-frame-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.36" }
-frame-executive = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.36" }
-frame-system-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-try-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.36" }
+cumulus-pallet-aura-ext = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+cumulus-pallet-dmp-queue = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+cumulus-pallet-parachain-system = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+cumulus-pallet-xcm = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+cumulus-pallet-xcmp-queue = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+cumulus-primitives-timestamp = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+cumulus-primitives-utility = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37", default-features = false }
+frame-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.37" }
+frame-executive = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.37" }
+frame-system-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-try-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.37" }
 hex-literal = { optional = true, version = "0.3.3" }
 orml-tokens.workspace = true
 orml-traits.workspace = true
 orml-vesting.workspace = true
 orml-xtokens.workspace = true
-pallet-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-authorship = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-randomness-collective-flip = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-sudo = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-timestamp = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-transaction-payment = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-transaction-payment-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-treasury = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-pallet-xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }
-parachain-info = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" }
-polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }
+pallet-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-authorship = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-randomness-collective-flip = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-sudo = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-timestamp = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-transaction-payment = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-transaction-payment-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-treasury = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37", default-features = false }
+parachain-info = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
+polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37", default-features = false }
 smallvec = "1.6.1"
-sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-arithmetic = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-block-builder = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-consensus-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-inherents = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-offchain = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-transaction-pool = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-sp-version = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }
-xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }
-xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }
+sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-arithmetic = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-block-builder = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-consensus-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-inherents = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-offchain = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-transaction-pool = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+sp-version = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37", default-features = false }
+xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37", default-features = false }
+xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37", default-features = false }
 
 app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false }
 derivative = "2.2.0"
@@ -270,24 +270,24 @@
 up-rpc = { path = "../../primitives/rpc", default-features = false }
 # pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }
 evm-coder = { default-features = false, path = "../../crates/evm-coder" }
-fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
 num_enum = { version = "0.5.3", default-features = false }
-pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.36", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }
-pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+pallet-charge-transaction = { package = "pallet-template-transaction-payment", default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.37" }
+pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
 pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }
 pallet-evm-contract-helpers = { path = "../../pallets/evm-contract-helpers", default-features = false }
 pallet-evm-migration = { path = "../../pallets/evm-migration", default-features = false }
-pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }
 pallet-evm-transaction-payment = { path = "../../pallets/evm-transaction-payment", default-features = false }
 pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }
 pallet-maintenance = { default-features = false, path = "../../pallets/maintenance" }
 precompile-utils-macro.path = "../common/ethereum/precompiles/utils/macro"
-up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.36" }
+up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.37" }
 
 ################################################################################
 # Test dependencies
@@ -303,4 +303,4 @@
 logtest = "2.0.0"
 
 [build-dependencies]
-substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
modifiedtest-pallets/utils/Cargo.tomldiffbeforeafterboth
--- a/test-pallets/utils/Cargo.toml
+++ b/test-pallets/utils/Cargo.toml
@@ -7,12 +7,12 @@
 
 [dependencies]
 codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
 # pallet-unique-scheduler = { path = '../../pallets/scheduler', default-features = false }
 pallet-unique-scheduler-v2 = { path = "../../pallets/scheduler-v2", default-features = false }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
 [features]
 default = ["std"]
modifiedtests/src/benchmarks/mintFee/benchmark.tsdiffbeforeafterboth
--- a/tests/src/benchmarks/mintFee/benchmark.ts
+++ b/tests/src/benchmarks/mintFee/benchmark.ts
@@ -100,7 +100,7 @@
 
     const ethSigner = await helper.eth.createAccountWithBalance(donor, 100n);
     const ethReceiver = await helper.eth.createAccountWithBalance(donor, 5n);
-   
+
     let susbtrateCollection: UniqueNFTCollection | null;
     const createCollectionSubstrateFee = convertToTokens(
       await helper.arrange.calculcateFee({Substrate: donor.address}, async () => {
modifiedtests/src/burnItem.test.tsdiffbeforeafterboth
--- a/tests/src/burnItem.test.ts
+++ b/tests/src/burnItem.test.ts
@@ -15,18 +15,17 @@
 // along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
 
 import {IKeyringPair} from '@polkadot/types/types';
-import {expect, itSub, Pallets, usingPlaygrounds} from './util';
+import {expect, itSub, usingPlaygrounds} from './util';
 
 
 describe('integration test: ext. burnItem():', () => {
   let donor: IKeyringPair;
   let alice: IKeyringPair;
-  let bob: IKeyringPair;
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
       donor = await privateKey({filename: __filename});
-      [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
+      [alice] = await helper.arrange.createAccounts([100n], donor);
     });
   });
 
modifiedtests/src/xcm/xcmQuartz.test.tsdiffbeforeafterboth
--- a/tests/src/xcm/xcmQuartz.test.ts
+++ b/tests/src/xcm/xcmQuartz.test.ts
@@ -463,13 +463,13 @@
 
     await usingKaruraPlaygrounds(karuraUrl, async (helper) => {
       const destination = {
-        V0: {
-          X2: [
-            'Parent',
-            {
+        V1: {
+          parents: 1,
+          interior: {
+            X1: {
               Parachain: QUARTZ_CHAIN,
             },
-          ],
+          },
         },
       };
 
@@ -494,22 +494,25 @@
 
   itSub('Should connect and send QTZ to Karura', async ({helper}) => {
     const destination = {
-      V0: {
-        X2: [
-          'Parent',
-          {
+      V1: {
+        parents: 1,
+        interior: {
+          X1: {
             Parachain: KARURA_CHAIN,
           },
-        ],
+        },
       },
     };
 
     const beneficiary = {
-      V0: {
-        X1: {
-          AccountId32: {
-            network: 'Any',
-            id: randomAccount.addressRaw,
+      V1: {
+        parents: 0,
+        interior: {
+          X1: {
+            AccountId32: {
+              network: 'Any',
+              id: randomAccount.addressRaw,
+            },
           },
         },
       },
modifiedtests/src/xcm/xcmUnique.test.tsdiffbeforeafterboth
--- a/tests/src/xcm/xcmUnique.test.ts
+++ b/tests/src/xcm/xcmUnique.test.ts
@@ -463,13 +463,13 @@
 
     await usingAcalaPlaygrounds(acalaUrl, async (helper) => {
       const destination = {
-        V0: {
-          X2: [
-            'Parent',
-            {
+        V1: {
+          parents: 1,
+          interior: {
+            X1: {
               Parachain: UNIQUE_CHAIN,
             },
-          ],
+          },
         },
       };
 
@@ -495,22 +495,25 @@
   itSub('Should connect and send UNQ to Acala', async ({helper}) => {
 
     const destination = {
-      V0: {
-        X2: [
-          'Parent',
-          {
+      V1: {
+        parents: 1,
+        interior: {
+          X1: {
             Parachain: ACALA_CHAIN,
           },
-        ],
+        },
       },
     };
 
     const beneficiary = {
-      V0: {
-        X1: {
-          AccountId32: {
-            network: 'Any',
-            id: randomAccount.addressRaw,
+      V1: {
+        parents: 0,
+        interior: {
+          X1: {
+            AccountId32: {
+              network: 'Any',
+              id: randomAccount.addressRaw,
+            },
           },
         },
       },