Skip to content

Commit

Permalink
first draft (#1423)
Browse files Browse the repository at this point in the history
  • Loading branch information
mustermeiszer authored and cdamian committed Jul 11, 2023
1 parent d031c9b commit 0aafe43
Show file tree
Hide file tree
Showing 7 changed files with 709 additions and 23 deletions.
101 changes: 78 additions & 23 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ members = [
"pallets/connectors",
"pallets/connectors-gateway",
"pallets/connectors-gateway/connectors-gateway-routers",
"pallets/connectors-gateway/connectors-gateway-axelar-precompile",
"pallets/claims",
"pallets/collator-allowlist",
"pallets/crowdloan-claim",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[package]
name = "connectors-gatway-axelar-precompile"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
codec = { package = "parity-scale-codec", version = "3.0.0", features = ["derive"], default-features = false }
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.38" }
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.38" }
scale-info = { version = "2.3.0", default-features = false, features = ["derive"] }
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.38" }
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.38" }
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.38" }

precompile-utils = { git = "https://github.com/PureStake/moonbeam", default-features = false, rev = "00b3e3d97806e889b02e1bcb4b69e65433dd805d" }
fp-evm = { git = "https://github.com/paritytech/frontier", default-features = false, branch = "polkadot-v0.9.38" }
pallet-evm = { git = "https://github.com/paritytech/frontier", default-features = false, branch = "polkadot-v0.9.38" }

pallet-connectors-gateway = {path = "../../connectors-gateway" }


[features]
default = ["std"]
std = [
"codec/std",
"frame-support/std",
"frame-system/std",
"sp-std/std",
"sp-core/std",
"sp-runtime/std",
"scale-info/std",
"fp-evm/std",
"precompile-utils/std",
"pallet-evm/std",
"pallet-connectors-gateway/std"
]
try-runtime = [
"frame-support/try-runtime",
"frame-system/try-runtime",
]

0 comments on commit 0aafe43

Please sign in to comment.