mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 10:31:03 +00:00
8a0ac4c40c
* grandpa-rpc: use FinalityProofProvider to check finality for rpc * grandpa-rpc: minor tidy * grandpa-rpc: remove dyn FinalityProofProvider * grandpa-rpc: remove unused dependencies * node: move finality_proof_provider setup * grandpa-rpc: print error reported by finality_proof_provider * grandpa-rpc: add note about unnecessary encode/decode * grandpa-rpc: dont encode/decode and use correct hash * grandpa-rpc: set_id is optional * grandpa-rpc: create test for prove_finality * grandpa-rpc: set visibility back to how it was * grandpa-rpc: remove unused dependency * grandpa-rpc: minor tidy * grandpa: doc strings * grandpa-rpc: rename to prove_finality * grandpa-rpc: use current set id if none is provided * grandpa-rpc: remove unnecessary check in test * node: group finality_proof_provider in rpc_setup * grandpa: make prove_finality concrete in FinalityProofProvider * grandpa-rpc: wrap finality output in struct and store as Bytes * grandpa-rpc: exhaustive error codes and wrap * grandpa-rpc: let prove_finality take a range instead of a starting point * grandpa-rpc: fix test for changed API * grandpa-rpc: fix line length * grandpa: fix reviewer nits * node/rpc: fix reviewer comments
39 lines
1.8 KiB
TOML
39 lines
1.8 KiB
TOML
[package]
|
|
name = "sc-finality-grandpa-rpc"
|
|
version = "0.8.0-rc6"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "RPC extensions for the GRANDPA finality gadget"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
edition = "2018"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
sc-finality-grandpa = { version = "0.8.0-rc6", path = "../" }
|
|
sc-rpc = { version = "2.0.0-rc6", path = "../../rpc" }
|
|
sp-blockchain = { version = "2.0.0-rc6", path = "../../../primitives/blockchain" }
|
|
sp-core = { version = "2.0.0-rc6", path = "../../../primitives/core" }
|
|
sp-runtime = { version = "2.0.0-rc6", path = "../../../primitives/runtime" }
|
|
finality-grandpa = { version = "0.12.3", features = ["derive-codec"] }
|
|
jsonrpc-core = "14.2.0"
|
|
jsonrpc-core-client = "14.2.0"
|
|
jsonrpc-derive = "14.2.1"
|
|
jsonrpc-pubsub = "14.2.0"
|
|
futures = { version = "0.3.4", features = ["compat"] }
|
|
serde = { version = "1.0.105", features = ["derive"] }
|
|
serde_json = "1.0.50"
|
|
log = "0.4.8"
|
|
derive_more = "0.99.2"
|
|
parity-scale-codec = { version = "1.3.0", features = ["derive"] }
|
|
sc-client-api = { version = "2.0.0-rc6", path = "../../api" }
|
|
|
|
[dev-dependencies]
|
|
sc-block-builder = { version = "0.8.0-rc6", path = "../../block-builder" }
|
|
sc-network-test = { version = "0.8.0-rc6", path = "../../network/test" }
|
|
sc-rpc = { version = "2.0.0-rc6", path = "../../rpc", features = ["test-helpers"] }
|
|
sp-consensus = { version = "0.8.0-rc6", path = "../../../primitives/consensus/common" }
|
|
sp-core = { version = "2.0.0-rc6", path = "../../../primitives/core" }
|
|
sp-finality-grandpa = { version = "2.0.0-rc6", path = "../../../primitives/finality-grandpa" }
|
|
sp-keyring = { version = "2.0.0-rc6", path = "../../../primitives/keyring" }
|
|
substrate-test-runtime-client = { version = "2.0.0-rc6", path = "../../../test-utils/runtime/client" }
|
|
lazy_static = "1.4"
|