Skip to content

Commit

Permalink
add merkle distributor pallet and zenlink bootstrap reward functional…
Browse files Browse the repository at this point in the history
…ity (#443)

* add merkle distributor pallet and zenlink bootstrap reward functionality

* change merkle distributor palletId
  • Loading branch information
herryho authored Dec 15, 2021
1 parent 94343d0 commit 392a298
Show file tree
Hide file tree
Showing 6 changed files with 107 additions and 91 deletions.
151 changes: 63 additions & 88 deletions Cargo.lock

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

8 changes: 5 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,11 @@ substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate",
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12" }
substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12" }

zenlink-protocol = { git = "https://github.com/zenlinkpro/Zenlink-DEX-Module", rev = "16a17a3023620bd66f657a46496734bf6cb34f25"}
zenlink-protocol-rpc = { git = "https://github.com/zenlinkpro/Zenlink-DEX-Module", rev = "16a17a3023620bd66f657a46496734bf6cb34f25" }
zenlink-protocol-runtime-api = { git = "https://github.com/zenlinkpro/Zenlink-DEX-Module", rev = "16a17a3023620bd66f657a46496734bf6cb34f25" }
zenlink-protocol = { git = "https://github.com/zenlinkpro/Zenlink-DEX-Module", rev = "75601732b89f9f6ece8e3af8781640347871b1ec"}
zenlink-protocol-rpc = { git = "https://github.com/zenlinkpro/Zenlink-DEX-Module", rev = "75601732b89f9f6ece8e3af8781640347871b1ec" }
zenlink-protocol-runtime-api = { git = "https://github.com/zenlinkpro/Zenlink-DEX-Module", rev = "75601732b89f9f6ece8e3af8781640347871b1ec" }
merkle-distributor = { git = "https://github.com/zenlinkpro/merkle-distributor", rev = "b5d697e37824707eefebb5521d535d6fafd59590" }


orml-traits = { git = "https://github.com/open-web3-stack/open-runtime-module-library", rev = "5ba42f532b72d71a28aaa18421855de003b9ca71" }
orml-currencies = {git = "https://github.com/open-web3-stack/open-runtime-module-library", rev = "5ba42f532b72d71a28aaa18421855de003b9ca71" }
Expand Down
2 changes: 2 additions & 0 deletions runtime/asgard/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ orml-benchmarking = { version = "0.4.1-dev", default-features = false, optional

zenlink-protocol = { version = "*", default-features = false }
zenlink-protocol-runtime-api = { version = "*", default-features = false }
merkle-distributor = {version = "*", default-features = false }

[build-dependencies]
substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12" }
Expand Down Expand Up @@ -208,6 +209,7 @@ std = [
"orml-benchmarking/std",
"zenlink-protocol/std",
"zenlink-protocol-runtime-api/std",
"merkle-distributor/std",
]

runtime-benchmarks = [
Expand Down
Loading

0 comments on commit 392a298

Please sign in to comment.