Skip to content

Commit

Permalink
wip: WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
cdamian committed Jun 1, 2022
1 parent bc073a3 commit cf405bc
Show file tree
Hide file tree
Showing 6 changed files with 460 additions and 0 deletions.
16 changes: 16 additions & 0 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 @@ -42,6 +42,7 @@ members = [
"pallets/pools",
"pallets/loans",
"pallets/permissions",
"pallets/proxy-keystore",
"libs/common-traits",
"libs/common-types",
"libs/proofs",
Expand Down
35 changes: 35 additions & 0 deletions pallets/proxy-keystore/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
[package]
name = 'pallet-proxy-keystore'
authors = ["Centrifuge <[email protected]>"]
description = 'Proxy keystore pallet for runtime'
edition = '2018'
license = "LGPL-3.0"
repository = "https://github.com/centrifuge/centrifuge-chain/pallets/proxy-keystore"
version = '1.0.0'

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

[dependencies]
serde = { version = "1.0.102" }
codec = { package = 'parity-scale-codec', version = '3.0.0', features = ['derive'] , default-features = false }
scale-info = { version = "2.0", default-features = false, features = ["derive"] }

frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.20" }
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.20" }
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.20" }
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.20" }

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

[features]
default = ['std']
std = [
'codec/std',
'frame-support/std',
'frame-system/std',
'sp-runtime/std',
'sp-std/std',
]
Loading

0 comments on commit cf405bc

Please sign in to comment.