Skip to content

Commit

Permalink
Merge pull request #69 from sora-xor/generic-substrate-app
Browse files Browse the repository at this point in the history
Generic substrate app(Adds Libarland)
  • Loading branch information
N1ghtStorm authored Mar 19, 2024
2 parents 0a02aa0 + b0d4018 commit 11c3d70
Show file tree
Hide file tree
Showing 15 changed files with 2,714 additions and 15 deletions.
65 changes: 65 additions & 0 deletions Cargo.lock

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

61 changes: 61 additions & 0 deletions pallets/liberland-bridge-provider/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
[package]
name = "liberland-bridge-provider"
description = "Wrapper for liberland assets and balances"
version = "0.1.1"
edition = "2021"
authors = ['Polka Biome Ltd. <[email protected]>']
repository = "https://github.com/sora-xor/sora2-common"

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { version = "3", package = "parity-scale-codec", default-features = false, features = [
"derive",
] }
scale-info = { version = "2", default-features = false, features = ["derive"] }

frame-benchmarking = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.38", default-features = false, optional = true }
frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.38", default-features = false }
frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.38", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.38", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.38", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.38", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.38", default-features = false }
pallet-assets = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.38", default-features = false, version = "4.0.0-dev"}
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.38", default-features = false, version = "4.0.0-dev"}

bridge-types = { path = "../types", default-features = false }

[dev-dependencies]
sp-keyring = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.38" }
hex-literal = { version = "0.4.1" }

[features]
default = ["std"]
std = [
"pallet-assets/std",
"serde",
"codec/std",
"scale-info/std",
"frame-support/std",
"frame-system/std",
"frame-benchmarking/std",
"sp-core/std",
"sp-io/std",
"sp-runtime/std",
"sp-std/std",
"bridge-types/std",
]
runtime-benchmarks = [
"frame-benchmarking",
"sp-runtime/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"bridge-types/runtime-benchmarks",
"pallet-assets/std",
"pallet-balances/std",
]

try-runtime = ["frame-support/try-runtime"]
Loading

0 comments on commit 11c3d70

Please sign in to comment.