-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed all commits so far. Here we miss the XCM integration with xcm-transactor that builds and sends the XCM message to Moonbeam.
- Loading branch information
1 parent
e0b255f
commit f41e83c
Showing
17 changed files
with
1,539 additions
and
1 deletion.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
[package] | ||
authors = ["Centrifuge <[email protected]>"] | ||
description = 'Centrifuge Connectors Pallet' | ||
edition = '2018' | ||
license = "LGPL-3.0" | ||
name = 'pallet-connectors' | ||
repository = "https://github.com/centrifuge/centrifuge-chain/pallets/connectors" | ||
version = '0.0.1' | ||
|
||
[package.metadata.docs.rs] | ||
targets = ['x86_64-unknown-linux-gnu'] | ||
|
||
[dependencies] | ||
codec = { package = 'parity-scale-codec', version = '3.0.0', features = ['derive'] , default-features = false } | ||
scale-info = { version = "2.0", default-features = false, features = ["derive"] } | ||
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.24" } | ||
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.24" } | ||
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.24" } | ||
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.24" } | ||
|
||
# Substrate crates | ||
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.24" } | ||
|
||
# Optional dependencies for benchmarking | ||
frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false , optional = true , branch = "polkadot-v0.9.24" } | ||
pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , optional = true, branch = "polkadot-v0.9.24" } | ||
pallet-uniques = { git = "https://github.com/paritytech/substrate", default-features = false , optional = true, branch = "polkadot-v0.9.24" } | ||
orml-tokens = { git = "https://github.com/open-web3-stack/open-runtime-module-library", default-features = false, optional = true, branch = "polkadot-v0.9.24" } | ||
orml-traits = { git = "https://github.com/open-web3-stack/open-runtime-module-library", default-features = false, optional = true, branch = "polkadot-v0.9.24" } | ||
|
||
# Our custom pallets | ||
common-types = { path = "../../libs/common-types", default-features = false } | ||
common-traits = { path = "../../libs/common-traits", default-features = false } | ||
runtime-common = { path = "../../runtime/common", default-features = false } | ||
|
||
# Polkadot | ||
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false , branch = "release-v0.9.24" } | ||
|
||
pallet-xcm-transactor = { git = "https://github.com/NunoAlexandre/moonbeam", default-features = false, rev = "d288eb94a136b92566d73e7d546e64f57145539e" } | ||
|
||
[dev-dependencies] | ||
hex = "0.4.3" | ||
|
||
# Substrate crates & pallets | ||
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.24" } | ||
sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.24" } | ||
pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.24" } | ||
|
||
# Orml crates | ||
orml-tokens = { git = "https://github.com/open-web3-stack/open-runtime-module-library", default-features = true, branch = "polkadot-v0.9.24" } | ||
orml-traits = { git = "https://github.com/open-web3-stack/open-runtime-module-library", default-features = false, branch = "polkadot-v0.9.24" } | ||
|
||
# Local crates | ||
runtime-common = { path = "../../runtime/common", default-features = true } | ||
|
||
[features] | ||
default = ['std'] | ||
runtime-benchmarks = [ | ||
"frame-benchmarking", | ||
"pallet-balances", | ||
# "common-types", | ||
# "common-traits", | ||
# "runtime-common", | ||
"orml-tokens", | ||
"orml-traits", | ||
] | ||
std = [ | ||
'codec/std', | ||
'common-types/std', | ||
'common-traits/std', | ||
'frame-support/std', | ||
'frame-system/std', | ||
'sp-std/std', | ||
'sp-runtime/std', | ||
'orml-tokens/std', | ||
'orml-traits/std', | ||
'pallet-balances/std', | ||
'runtime-common/std', | ||
'xcm/std', | ||
'pallet-xcm-transactor/std', | ||
] |
Oops, something went wrong.