Skip to content

Commit

Permalink
dApp Staking v3 Part1
Browse files Browse the repository at this point in the history
  • Loading branch information
Dinonard committed Jul 31, 2023
1 parent 18ff2b9 commit 6dbbb90
Show file tree
Hide file tree
Showing 8 changed files with 1,681 additions and 0 deletions.
42 changes: 42 additions & 0 deletions pallets/dapp-staking-v3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[package]
name = "pallet-dapp-staking-v3"
version = "0.0.1-alpha"
description = "Pallet for dApp staking v3 protocol"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true

[dependencies]
frame-support = { workspace = true }
frame-system = { workspace = true }
num-traits = { workspace = true }
parity-scale-codec = { workspace = true }

scale-info = { workspace = true }
serde = { workspace = true, optional = true }
sp-arithmetic = { workspace = true }
sp-core = { workspace = true }
sp-io = { workspace = true }
sp-runtime = { workspace = true }
sp-std = { workspace = true }

[dev-dependencies]
pallet-balances = { workspace = true }

[features]
default = ["std"]
std = [
"serde",
"parity-scale-codec/std",
"scale-info/std",
"num-traits/std",
"sp-core/std",
"sp-runtime/std",
"sp-arithmetic/std",
"sp-io/std",
"sp-std/std",
"frame-support/std",
"frame-system/std",
"pallet-balances/std",
]
Loading

0 comments on commit 6dbbb90

Please sign in to comment.