Skip to content

Commit

Permalink
fix: fix runtime xcm impl
Browse files Browse the repository at this point in the history
fix runtime: frame_system::Config
fix runtime: pallet_preimage::Config
add runtime: pallet_indices::Config
fix runtime: pallet_balances::Config
fix runtime: pallet_treasury::Config
fix runtime: pallet_identity::Config
fix runtime: cumulus_pallet_parachain_system::Config
fix runtime: cumulus_pallet_xcmp_queue::Config
fix runtime: pallet_aura::Config
fix runtime: pallet_evm::Config
fix xcm: pallet_xcm::Config
  • Loading branch information
higherordertech committed Nov 11, 2024
1 parent 6b6c923 commit 0167271
Show file tree
Hide file tree
Showing 21 changed files with 1,920 additions and 1,466 deletions.
2,471 changes: 1,244 additions & 1,227 deletions parachain/Cargo.lock

Large diffs are not rendered by default.

11 changes: 9 additions & 2 deletions parachain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,12 @@ rustc-hex = { version = "2.0.1", default-features = false }
x509-cert = { version = "0.1.0", default-features = false, features = ["alloc"] }
ring = { version = "0.16.20", default-features = false, features = ["alloc"] }
webpki = { version = "=0.102.2", git = "https://github.com/rustls/webpki", rev = "049e9d5", package = "rustls-webpki", default-features = false, features = ["alloc", "ring"] }
# No version for polkadot-v1.11.0 found, so using version for polkadot-v1.10.0 instead.
orml-traits = { version = "0.10.0", default-features = false }
orml-xtokens = { version = "0.10.0", default-features = false }
staging-xcm = { version = "11.0.0", default-features = false }
staging-xcm-builder = { version = "11.0.0", default-features = false }
staging-xcm-executor = { version = "11.0.0", default-features = false }

# cumulus client
cumulus-client-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.11.0" }
Expand Down Expand Up @@ -235,8 +241,6 @@ pallet-collator-selection = { git = "https://github.com/paritytech/polkadot-sdk"
parachain-info = { package = "staging-parachain-info", git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.11.0", default-features = false }

substrate-fixed = { git = "https://github.com/encointer/substrate-fixed", default-features = false }
orml-traits = { git = "https://github.com/open-web3-stack/open-runtime-module-library", branch = "polkadot-v1.1.0", default-features = false }
orml-xtokens = { git = "https://github.com/open-web3-stack/open-runtime-module-library", branch = "polkadot-v1.1.0", default-features = false }

# benchmarking
frame-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.11.0", default-features = false }
Expand Down Expand Up @@ -281,6 +285,9 @@ pallet-evm-assertions = { path = "pallets/evm-assertions", default-features = fa
getrandom = { git = "https://github.com/rust-random/getrandom", tag = "v0.2.10" }
governor = { git = "https://github.com/boinkor-net/governor", tag = "v0.6.0" }
ring = { git = "https://github.com/betrusted-io/ring-xous", branch = "0.16.20-cleanup" }
staging-xcm = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.11.0" }
staging-xcm-builder = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.11.0" }
staging-xcm-executor = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.11.0" }

[patch."https://github.com/AstarNetwork/frontier"]
fc-api = { git = "https://github.com/paritytech/frontier", branch = "polkadot-v1.11.0" }
Expand Down
1 change: 1 addition & 0 deletions parachain/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ polkadot-cli = { workspace = true }
polkadot-primitives = { workspace = true, features = ["std"] }
polkadot-service = { workspace = true }
xcm = { workspace = true }
staging-xcm = { workspace = true }

frame-benchmarking = { workspace = true }
frame-benchmarking-cli = { workspace = true }
Expand Down
2 changes: 2 additions & 0 deletions parachain/pallets/xcm-asset-manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ sp-io = { workspace = true, features = ["disable_panic_handler"] }
sp-runtime = { workspace = true }
sp-std = { workspace = true }
xcm = { workspace = true }
staging-xcm = { workspace = true }

[dev-dependencies]
pallet-balances = { workspace = true, features = ["std"] }
Expand All @@ -33,6 +34,7 @@ std = [
"sp-runtime/std",
"sp-std/std",
"xcm/std",
"staging-xcm/std",
"frame-benchmarking?/std",
]

Expand Down
8 changes: 8 additions & 0 deletions parachain/runtime/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,14 @@ parachain-info = { workspace = true }
pallet-xcm = { workspace = true }
parachains-common = { workspace = true }
xcm = { workspace = true }
staging-xcm = { workspace = true }
xcm-builder = { workspace = true }
staging-xcm-builder = { workspace = true }
xcm-executor = { workspace = true }
staging-xcm-executor = { workspace = true }
xcm-simulator = { workspace = true, optional = true }

orml-traits = { workspace = true }
orml-xtokens = { workspace = true }

polkadot-parachain-primitives = { workspace = true }
Expand Down Expand Up @@ -86,14 +90,18 @@ std = [
"cumulus-test-relay-sproof-builder/std",
"pallet-xcm/std",
"xcm/std",
"staging-xcm/std",
"xcm-builder/std",
"staging-xcm-builder/std",
"xcm-executor/std",
"staging-xcm-executor/std",
"parachain-info/std",
"core-primitives/std",
"pallet-asset-manager/std",
"pallet-extrinsic-filter/std",
"pallet-omni-account/std",
"pallet-teebag/std",
"orml-traits/std",
"orml-xtokens/std",
"parachains-common/std",
]
Expand Down
Loading

0 comments on commit 0167271

Please sign in to comment.