mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 13:17:56 +00:00
df6ef1780f
* Initial approach * Introduce the pallet-contracts-common crate * Add rent::compute_rent_projection * Wire everything together * Fix build error. * Rename EvictionDate → EvictionAt. * Clean. * Renaming and cleaning. * Add documentation for rent_projection RPC. * Add documentation for rent_projection runtime API. * Refactor rent_budget. Merge it with subsistence_treshold. * Bump impl_version * Constrain RPC impl with Block::Header::Number. * Rename pallet-contracts-common into -primitives * Add a comment for `compute_rent_projection` on the usage * Small tidying
24 lines
905 B
TOML
24 lines
905 B
TOML
[package]
|
|
name = "pallet-contracts-rpc"
|
|
version = "0.8.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
jsonrpc-core = "14.0.3"
|
|
jsonrpc-core-client = "14.0.3"
|
|
jsonrpc-derive = "14.0.3"
|
|
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
|
|
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
|
sp-rpc = { version = "2.0.0", path = "../../../primitives/rpc" }
|
|
serde = { version = "1.0.101", features = ["derive"] }
|
|
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
|
sp-api = { version = "2.0.0", path = "../../../primitives/api" }
|
|
pallet-contracts-primitives = { version = "2.0.0", path = "../common" }
|
|
pallet-contracts-rpc-runtime-api = { version = "0.8.0", path = "./runtime-api" }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0.41"
|