-
Notifications
You must be signed in to change notification settings - Fork 401
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgrade to substrate 2.0.0-rc6 * Fork contracts pallet from rc4 and fix build on rc6 * Implemented claim_to method for pallet-plasm-lockdrop * Limited price oracle calls by filter expiration latency * Optimized oracle web3 transport by using shared state * Bump version * Code format fixes * plasm-lockdrop: price oracle fixes
- Loading branch information
Showing
65 changed files
with
13,453 additions
and
1,089 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "plasm-cli" | ||
version = "1.4.0" | ||
version = "1.5.0" | ||
authors = ["Stake Technologies <[email protected]>"] | ||
description = "Plasm node implementation in Rust." | ||
build = "build.rs" | ||
|
@@ -20,7 +20,8 @@ crate-type = ["cdylib", "rlib"] | |
codec = { package = "parity-scale-codec", version = "1.3" } | ||
serde = { version = "1.0", features = [ "derive" ] } | ||
structopt = { version = "0.3.8", optional = true } | ||
jsonrpc-core = "14.0.3" | ||
jsonrpc-core = "14.2.0" | ||
jsonrpc-pubsub = "14.2.0" | ||
hex-literal = "0.2.1" | ||
serde_json = "1.0" | ||
futures = "0.3.4" | ||
|
@@ -29,29 +30,29 @@ log = "0.4.8" | |
hex = "0.4" | ||
|
||
# primitives | ||
sp-core = "2.0.0-rc5" | ||
sp-runtime = "2.0.0-rc5" | ||
sp-inherents = "2.0.0-rc5" | ||
sp-consensus = "0.8.0-rc5" | ||
sp-consensus-babe = "0.8.0-rc5" | ||
sp-finality-grandpa = "2.0.0-rc5" | ||
sp-transaction-pool = "2.0.0-rc5" | ||
sp-core = "2.0.0-rc6" | ||
sp-runtime = "2.0.0-rc6" | ||
sp-inherents = "2.0.0-rc6" | ||
sp-consensus = "0.8.0-rc6" | ||
sp-consensus-babe = "0.8.0-rc6" | ||
sp-finality-grandpa = "2.0.0-rc6" | ||
sp-transaction-pool = "2.0.0-rc6" | ||
|
||
# client dependencies | ||
sc-client-api = "2.0.0-rc5" | ||
sc-chain-spec = "2.0.0-rc5" | ||
sc-consensus = "0.8.0-rc5" | ||
sc-executor = "0.8.0-rc5" | ||
sc-transaction-pool = "2.0.0-rc5" | ||
sc-network = "0.8.0-rc5" | ||
sc-finality-grandpa = "0.8.0-rc5" | ||
sc-offchain = "2.0.0-rc5" | ||
sc-client-db = { version = "0.8.0-rc5", default-features = false } | ||
sc-rpc = "2.0.0-rc5" | ||
sc-basic-authorship = "0.8.0-rc5" | ||
sc-service = "0.8.0-rc5" | ||
sc-telemetry = "2.0.0-rc5" | ||
sc-consensus-babe = "0.8.0-rc5" | ||
sc-client-api = "2.0.0-rc6" | ||
sc-chain-spec = "2.0.0-rc6" | ||
sc-consensus = "0.8.0-rc6" | ||
sc-executor = "0.8.0-rc6" | ||
sc-transaction-pool = "2.0.0-rc6" | ||
sc-network = "0.8.0-rc6" | ||
sc-finality-grandpa = "0.8.0-rc6" | ||
sc-offchain = "2.0.0-rc6" | ||
sc-client-db = { version = "0.8.0-rc6", default-features = false } | ||
sc-rpc = "2.0.0-rc6" | ||
sc-basic-authorship = "0.8.0-rc6" | ||
sc-service = "0.8.0-rc6" | ||
sc-telemetry = "2.0.0-rc6" | ||
sc-consensus-babe = "0.8.0-rc6" | ||
|
||
# plasm-specific dependencies | ||
lockdrop-oracle = { path = "./lockdrop-oracle" } | ||
|
@@ -60,22 +61,20 @@ plasm-runtime = { path = "../runtime" } | |
plasm-rpc = { path = "../rpc" } | ||
|
||
# frame dependencies | ||
frame-system = "2.0.0-rc5" | ||
pallet-contracts = { version = "=2.0.0-rc4", default-features = false } | ||
pallet-transaction-payment = "2.0.0-rc5" | ||
pallet-finality-tracker = "2.0.0-rc5" | ||
frame-system = "2.0.0-rc6" | ||
pallet-transaction-payment = "2.0.0-rc6" | ||
pallet-finality-tracker = "2.0.0-rc6" | ||
pallet-contracts = { path = "../../../frame/contracts", default-features = false } | ||
pallet-dapps-staking = { path = "../../../frame/dapps-staking" } | ||
pallet-plasm-lockdrop = { path = "../../../frame/plasm-lockdrop" } | ||
pallet-ovm = { path = "../../../frame/ovm" } | ||
|
||
# CLI-specific dependencies | ||
sc-cli = { version = "0.8.0-rc5", optional = true } | ||
frame-benchmarking-cli = { version = "2.0.0-rc5", optional = true } | ||
sc-cli = { version = "0.8.0-rc6", optional = true } | ||
|
||
[build-dependencies] | ||
sc-cli = "0.8.0-rc5" | ||
frame-benchmarking-cli = { version = "2.0.0-rc5", optional = true } | ||
build-script-utils = { package = "substrate-build-script-utils", version = "2.0.0-rc5" } | ||
sc-cli = "0.8.0-rc6" | ||
build-script-utils = { package = "substrate-build-script-utils", version = "2.0.0-rc6" } | ||
lockdrop-oracle = { path = "./lockdrop-oracle" } | ||
structopt = { version = "0.3.8", optional = true } | ||
vergen = { version = "3.0.4", optional = true } | ||
|
@@ -84,7 +83,6 @@ vergen = { version = "3.0.4", optional = true } | |
default = ["cli"] | ||
cli = [ | ||
"sc-cli", | ||
"frame-benchmarking-cli", | ||
"sc-service/db", | ||
"structopt", | ||
"vergen", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.