Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

DMP Queue pallet #416

Merged
merged 51 commits into from
May 2, 2021
Merged
Show file tree
Hide file tree
Changes from 44 commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
5ecc385
Introduce the converter into the hub
gavofyork Apr 16, 2021
cbf93d6
Parachain recognises Rococo governance body as admin
gavofyork Apr 16, 2021
7101caf
Whitespace
gavofyork Apr 16, 2021
1ccc9d6
Use UsingComponents for fee payment in XCM
gavofyork Apr 17, 2021
1c6c1a4
Fixes
gavofyork Apr 19, 2021
7b943e1
Merge remote-tracking branch 'origin/master' into gav-parachain-xcm-o…
gavofyork Apr 19, 2021
b9a0a9e
Fixes for XCM permissions
gavofyork Apr 26, 2021
04f770f
Remove encode_call test
gavofyork Apr 27, 2021
9a1d0c7
Fixes
gavofyork Apr 27, 2021
4292277
Merge remote-tracking branch 'origin/master' into gav-parachain-xcm-o…
gavofyork Apr 27, 2021
aa1dbae
Rococo Collator supports Shell runtime
gavofyork Apr 27, 2021
61de1e4
Fixes
gavofyork Apr 27, 2021
4e08f1c
Fixes
gavofyork Apr 27, 2021
22220e3
Merge branch 'gav-parachain-xcm-origin-demo' into gav-native-shell
gavofyork Apr 27, 2021
c89ba06
Merge remote-tracking branch 'origin/master' into gav-parachain-xcm-o…
gavofyork Apr 27, 2021
73e2526
Merge branch 'gav-parachain-xcm-origin-demo' into gav-native-shell
gavofyork Apr 27, 2021
adf628a
Initial draft of DMP Queue pallet
gavofyork Apr 28, 2021
e10885c
DMP Queue builds.
gavofyork Apr 28, 2021
b335d96
Merge remote-tracking branch 'origin/master' into gav-native-shell
gavofyork Apr 28, 2021
a30ba75
Merge branch 'gav-native-shell' into gav-dmp-queue
gavofyork Apr 28, 2021
f0ef65e
Companion for Polkadot gav-allow-xcm-exec
gavofyork Apr 28, 2021
85c7a61
Bump
gavofyork Apr 28, 2021
1c2d5a3
Merge remote-tracking branch 'origin/master' into gav-dmp-queue
gavofyork Apr 29, 2021
d0e38a0
Fix std
gavofyork Apr 29, 2021
34f15ed
Fixes
gavofyork Apr 29, 2021
7a1c117
Fixes
gavofyork Apr 29, 2021
ca16302
fix and improve docs
apopiak Apr 29, 2021
fdce56c
fix compile errors in tests
apopiak Apr 29, 2021
8c3292c
add test for try_service_message
apopiak Apr 29, 2021
9edcd9c
Merge branch 'gav-dmp-queue' of github.com:paritytech/cumulus into ga…
apopiak Apr 29, 2021
05bb68e
update cargo.lock
apopiak Apr 29, 2021
caa242b
Fixes
gavofyork Apr 29, 2021
81c6fbf
Make test name read well
gavofyork Apr 29, 2021
371622f
Fixes
gavofyork Apr 29, 2021
509aacc
Add a couple of simple tests
gavofyork Apr 30, 2021
477c5f8
Tests
gavofyork Apr 30, 2021
951a530
Tests
gavofyork Apr 30, 2021
0ef1e9c
Update pallets/dmp-queue/src/lib.rs
gavofyork Apr 30, 2021
1bf1548
Update pallets/dmp-queue/src/lib.rs
gavofyork Apr 30, 2021
fc8b564
Update pallets/dmp-queue/src/lib.rs
gavofyork Apr 30, 2021
5e1ced9
Update pallets/dmp-queue/src/lib.rs
gavofyork Apr 30, 2021
93c7cb3
Update pallets/dmp-queue/src/lib.rs
gavofyork Apr 30, 2021
2847c61
Update pallets/dmp-queue/src/lib.rs
gavofyork Apr 30, 2021
1202f93
Update pallets/dmp-queue/src/lib.rs
gavofyork Apr 30, 2021
3309827
Chain ID and ParaID don't collide
gavofyork Apr 30, 2021
fca486a
Fixes
gavofyork Apr 30, 2021
3de9532
Merge branch 'gav-dmp-queue' of github.com:paritytech/cumulus into ga…
gavofyork Apr 30, 2021
2c4077d
Merge remote-tracking branch 'origin/master' into gav-dmp-queue
gavofyork Apr 30, 2021
9e919b3
Update pallets/dmp-queue/src/lib.rs
gavofyork May 2, 2021
f30c0a6
Update pallets/dmp-queue/src/lib.rs
gavofyork May 2, 2021
d0fb41a
Fixes
gavofyork May 2, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
473 changes: 253 additions & 220 deletions Cargo.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ members = [
"client/consensus/relay-chain",
"client/network",
"client/service",
"pallets/dmp-queue",
"pallets/parachain-system",
"pallets/xcm",
"pallets/xcmp-queue",
Expand Down
45 changes: 45 additions & 0 deletions pallets/dmp-queue/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
[package]
name = "cumulus-pallet-dmp-queue"
version = "0.1.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2018"

[dependencies]
# Other dependencies
codec = { package = "parity-scale-codec", version = "2.0.0", features = [ "derive" ], default-features = false }
log = { version = "0.4.14", default-features = false }
rand = { version = "0.8.3", default-features = false }
rand_chacha = { version = "0.3.0", default-features = false }

# Substrate Dependencies
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }

# Polkadot Dependencies
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }

# Cumulus Dependencies
cumulus-primitives-core = { path = "../../primitives/core", default-features = false }

[dev-dependencies]
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }

[features]
default = [ "std" ]
std = [
"codec/std",
"log/std",
"sp-std/std",
"sp-io/std",
"sp-runtime/std",
"frame-support/std",
"frame-system/std",
"cumulus-primitives-core/std",
"xcm/std",
"xcm-executor/std",
]
Loading