Skip to content

Commit f709ed6

Browse files
authored
update to polkadot-v0.9.22 (#745)
* update to polkadot-v0.9.22 * fix Inspect trait * fmt * migrate jsonrpc to jsonrpsee * fmt * fix token rpc * fmt * revert * remove Rpc name * fmt * update asset-registry
1 parent 78f2d45 commit f709ed6

File tree

31 files changed

+344
-327
lines changed

31 files changed

+344
-327
lines changed

Cargo.dev.toml

+65-65
Large diffs are not rendered by default.

asset-registry/Cargo.toml

+22-22
Original file line numberDiff line numberDiff line change
@@ -11,35 +11,35 @@ edition = "2021"
1111
scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
1212
serde = { version = "1.0.136", optional = true }
1313
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["max-encoded-len"] }
14-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
15-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
16-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
17-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
14+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
15+
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
16+
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
17+
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
1818
orml-traits = { path = "../traits", version = "0.4.1-dev", default-features = false }
19-
xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20", default-features = false }
20-
xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20", default-features = false }
21-
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20", default-features = false }
19+
xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.22", default-features = false }
20+
xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.22", default-features = false }
21+
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.22", default-features = false }
2222

2323
[dev-dependencies]
24-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
25-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }
26-
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }
24+
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
25+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22" }
26+
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22" }
2727

2828
# cumulus
29-
cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.20" }
30-
cumulus-pallet-dmp-queue = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.20" }
31-
cumulus-pallet-xcmp-queue = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.20" }
32-
cumulus-pallet-xcm = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.20" }
33-
parachain-info = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.20" }
29+
cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.22" }
30+
cumulus-pallet-dmp-queue = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.22" }
31+
cumulus-pallet-xcmp-queue = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.22" }
32+
cumulus-pallet-xcm = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.22" }
33+
parachain-info = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.22" }
3434

3535
# polkadot
36-
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20" }
37-
xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20" }
38-
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20" }
39-
xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20" }
40-
pallet-xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20" }
41-
polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20" }
42-
xcm-simulator = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20"}
36+
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.22" }
37+
xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.22" }
38+
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.22" }
39+
xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.22" }
40+
pallet-xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.22" }
41+
polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.22" }
42+
xcm-simulator = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.22"}
4343

4444
orml-tokens = { path = "../tokens" }
4545
orml-xtokens = { path = "../xtokens" }

auction/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ edition = "2021"
1111
scale-info = { version = "2.1", default-features = false, features = ["derive"] }
1212
serde = { version = "1.0.136", optional = true }
1313
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }
14-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
15-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
14+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
15+
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
1616

17-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
18-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
17+
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
18+
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
1919
orml-traits = { path = "../traits", version = "0.4.1-dev", default-features = false }
2020

2121
[dev-dependencies]
22-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }
23-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }
22+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22" }
23+
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22" }
2424

2525
[features]
2626
default = ["std"]

authority/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ edition = "2021"
1111
scale-info = { version = "2.1", default-features = false, features = ["derive"] }
1212
serde = { version = "1.0.136", optional = true }
1313
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }
14-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
15-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
16-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
14+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
15+
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
16+
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
1717

18-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
19-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
18+
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
19+
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
2020

2121
[dev-dependencies]
22-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }
23-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }
24-
pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }
22+
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22" }
23+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22" }
24+
pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22" }
2525

2626
[features]
2727
default = ["std"]

bencher/Cargo.toml

+12-12
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,18 @@ serde_json = {version = "1.0.68", optional = true }
2424
hash-db = { version = "0.15.2", default-features = false, optional = true }
2525
bencher-procedural = { path = "bencher-procedural", default-features = false }
2626
codec = { package = "parity-scale-codec", version = "3.0.0", features = ["derive"], default-features = false }
27-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
28-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
29-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
30-
sp-runtime-interface = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
31-
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false, optional = true }
32-
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false, features = ["wasmtime"], optional = true }
33-
sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", optional = true }
34-
sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false, features = ["with-kvdb-rocksdb"], optional = true }
35-
sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false, optional = true }
36-
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
37-
sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
38-
sp-storage = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false, optional = true }
27+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
28+
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
29+
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
30+
sp-runtime-interface = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
31+
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false, optional = true }
32+
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false, features = ["wasmtime"], optional = true }
33+
sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", optional = true }
34+
sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false, features = ["with-kvdb-rocksdb"], optional = true }
35+
sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false, optional = true }
36+
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
37+
sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
38+
sp-storage = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false, optional = true }
3939

4040
[features]
4141
default = ["std"]

bencher/test/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ required-features = ["bench"]
1515
serde = { version = "1.0.136", optional = true }
1616
scale-info = { version = "2.1", default-features = false, features = ["derive"] }
1717
codec = { package = "parity-scale-codec", version = "3.0.0", features = ["derive"], default-features = false }
18-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
19-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
20-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
21-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
22-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
18+
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
19+
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
20+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
21+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
22+
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
2323
orml-bencher = { path = "..", default-features = false }
2424
orml-weight-meter = { path = "../../weight-meter", default-features = false }
2525

2626
[dev-dependencies]
27-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }
27+
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22" }
2828

2929
[features]
3030
default = ["std"]

benchmarking/Cargo.toml

+10-10
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ serde = { version = "1.0.136", optional = true }
1212
paste = "1.0.7"
1313
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }
1414
scale-info = { version = "2.1", default-features = false, features = ["derive"] }
15-
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
16-
sp-runtime-interface = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
17-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
18-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
19-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
20-
sp-storage = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
21-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
22-
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
23-
log = { version = "0.4.14", default-features = false }
15+
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
16+
sp-runtime-interface = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
17+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
18+
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
19+
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
20+
sp-storage = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
21+
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
22+
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
23+
log = { version = "0.4.17", default-features = false }
2424

2525
[dev-dependencies]
26-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }
26+
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22" }
2727
hex-literal = "0.3.4"
2828

2929
[features]

currencies/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ edition = "2021"
1111
scale-info = { version = "2.1", default-features = false, features = ["derive"] }
1212
serde = { version = "1.0.136", optional = true }
1313
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }
14-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
15-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
16-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
14+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
15+
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
16+
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
1717

18-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
19-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
18+
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
19+
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22", default-features = false }
2020

2121
orml-traits = { path = "../traits", version = "0.4.1-dev", default-features = false }
2222
orml-utilities = { path = "../utilities", version = "0.4.1-dev", default-features = false }
2323

2424
[dev-dependencies]
25-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }
26-
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }
25+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22" }
26+
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.22" }
2727
orml_tokens = { package = "orml-tokens", path = "../tokens", version = "0.4.1-dev" }
2828

2929
[features]

0 commit comments

Comments
 (0)