mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 12:11:02 +00:00
ecbbb5a736
Rococo and Westend runtimes for the "People Chain". This chain contains the Identity pallet with plans to migrate all related data from the Relay Chain. Changes `IdentityInfo` to: - Remove `additional_fields`. - Add `github` and `discord` as first class fields. From scraping chain data, these were the only two additional fields used (for the Fellowship and Ambassador Program, respectively). - Rename `riot` to `matrix`. Note: This will use the script in https://github.com/paritytech/polkadot-sdk/pull/2025 to generate the genesis state. TODO: - [x] https://github.com/paritytech/polkadot-sdk/pull/1814 and integration of the Identity Migrator pallet for migration. - [x] Tests: https://github.com/paritytech/polkadot-sdk/pull/2373 --------- Co-authored-by: Muharem <ismailov.m.h@gmail.com> Co-authored-by: Michal Kucharczyk <1728078+michalkucharczyk@users.noreply.github.com> Co-authored-by: Dónal Murray <donal.murray@parity.io> Co-authored-by: Richard Melkonian <35300528+0xmovses@users.noreply.github.com> Co-authored-by: Liam Aharon <liam.aharon@hotmail.com>
39 lines
2.2 KiB
TOML
39 lines
2.2 KiB
TOML
[package]
|
|
name = "people-rococo-integration-tests"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
description = "People Rococo runtime integration tests with xcm-emulator"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.4.0", default-features = false }
|
|
assert_matches = "1.5.0"
|
|
|
|
# Substrate
|
|
sp-runtime = { path = "../../../../../../../substrate/primitives/runtime", default-features = false }
|
|
frame-support = { path = "../../../../../../../substrate/frame/support", default-features = false }
|
|
pallet-balances = { path = "../../../../../../../substrate/frame/balances", default-features = false }
|
|
pallet-assets = { path = "../../../../../../../substrate/frame/assets", default-features = false }
|
|
pallet-asset-conversion = { path = "../../../../../../../substrate/frame/asset-conversion", default-features = false }
|
|
pallet-message-queue = { path = "../../../../../../../substrate/frame/message-queue", default-features = false }
|
|
pallet-identity = { path = "../../../../../../../substrate/frame/identity", default-features = false }
|
|
|
|
# Polkadot
|
|
xcm = { package = "staging-xcm", path = "../../../../../../../polkadot/xcm", default-features = false }
|
|
pallet-xcm = { path = "../../../../../../../polkadot/xcm/pallet-xcm", default-features = false }
|
|
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../../../polkadot/xcm/xcm-executor", default-features = false }
|
|
rococo-runtime = { path = "../../../../../../../polkadot/runtime/rococo" }
|
|
rococo-runtime-constants = { path = "../../../../../../../polkadot/runtime/rococo/constants" }
|
|
polkadot-primitives = { path = "../../../../../../../polkadot/primitives" }
|
|
polkadot-runtime-common = { path = "../../../../../../../polkadot/runtime/common" }
|
|
|
|
# Cumulus
|
|
asset-test-utils = { path = "../../../../../runtimes/assets/test-utils" }
|
|
parachains-common = { path = "../../../../../../parachains/common" }
|
|
people-rococo-runtime = { path = "../../../../../runtimes/people/people-rococo" }
|
|
emulated-integration-tests-common = { path = "../../../common", default-features = false }
|
|
penpal-runtime = { path = "../../../../../runtimes/testing/penpal" }
|
|
rococo-system-emulated-network = { path = "../../../networks/rococo-system" }
|