mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 21:37:56 +00:00
f3d4355a20
* Add MMR custom RPC.
* Change RuntimeApi to avoid hardcoding leaf type.
* Properly implement the new RuntimeAPI and wire up RPC.
* Extract Offchain DB as separate execution extension.
* Enable offchain DB access for offchain calls.
* Fix offchain_election tests.
* Skip block initialisation for proof generation.
* Fix integration test setup.
* Fix offchain tests. Not sure how I missed them earlier 🤷.
* Fix long line.
* One more test missing.
* Update mock for multi-phase.
* Address review grumbbles.
* Address review grumbles.
* Fix line width of a comment
40 lines
2.3 KiB
TOML
40 lines
2.3 KiB
TOML
[package]
|
|
name = "node-rpc"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
jsonrpc-core = "15.1.0"
|
|
node-primitives = { version = "2.0.0", path = "../primitives" }
|
|
node-runtime = { version = "2.0.0", path = "../runtime" }
|
|
pallet-contracts-rpc = { version = "3.0.0", path = "../../../frame/contracts/rpc/" }
|
|
pallet-mmr-rpc = { version = "3.0.0", path = "../../../frame/merkle-mountain-range/rpc/" }
|
|
pallet-transaction-payment-rpc = { version = "3.0.0", path = "../../../frame/transaction-payment/rpc/" }
|
|
sc-client-api = { version = "3.0.0", path = "../../../client/api" }
|
|
sc-consensus-babe = { version = "0.9.0", path = "../../../client/consensus/babe" }
|
|
sc-consensus-babe-rpc = { version = "0.9.0", path = "../../../client/consensus/babe/rpc" }
|
|
sc-consensus-epochs = { version = "0.9.0", path = "../../../client/consensus/epochs" }
|
|
sc-chain-spec = { version = "3.0.0", path = "../../../client/chain-spec" }
|
|
sc-finality-grandpa = { version = "0.9.0", path = "../../../client/finality-grandpa" }
|
|
sc-finality-grandpa-rpc = { version = "0.9.0", path = "../../../client/finality-grandpa/rpc" }
|
|
sc-keystore = { version = "3.0.0", path = "../../../client/keystore" }
|
|
sc-rpc-api = { version = "0.9.0", path = "../../../client/rpc-api" }
|
|
sc-rpc = { version = "3.0.0", path = "../../../client/rpc" }
|
|
sc-sync-state-rpc = { version = "0.9.0", path = "../../../client/sync-state-rpc" }
|
|
sp-api = { version = "3.0.0", path = "../../../primitives/api" }
|
|
sp-block-builder = { version = "3.0.0", path = "../../../primitives/block-builder" }
|
|
sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" }
|
|
sp-keystore = { version = "0.9.0", path = "../../../primitives/keystore" }
|
|
sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" }
|
|
sp-consensus-babe = { version = "0.9.0", path = "../../../primitives/consensus/babe" }
|
|
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
|
|
sp-transaction-pool = { version = "3.0.0", path = "../../../primitives/transaction-pool" }
|
|
substrate-frame-rpc-system = { version = "3.0.0", path = "../../../utils/frame/rpc/system" }
|