[package] name = "fc-rpc" version = "1.0.0" authors = ["Parity Technologies "] edition = "2018" description = "Ethereum RPC (web3) compatibility layer for Substrate." license = "GPL-3.0-or-later WITH Classpath-exception-2.0" [dependencies] jsonrpc-core = "15.0.0" jsonrpc-derive = "14.0.3" jsonrpc-core-client = "14.0.3" jsonrpc-pubsub = "15.0.0" log = "0.4.8" ethereum-types = "0.11.0" evm = "0.25.0" fc-consensus = { version = "1.0.0", path = "../consensus" } fc-db = { version = "1.0.0", path = "../db" } fc-rpc-core = { version = "1.0.0", path = "../rpc-core" } fp-consensus = { version = "1.0.0", path = "../../primitives/consensus" } fp-rpc = { version = "1.0.0", path = "../../primitives/rpc" } fp-storage = { version = "1.0.0", path = "../../primitives/storage"} sp-io = { version = "3.0.0", git = "https://github.com/paritytech/substrate.git", branch = "frontier" } sp-runtime = { version = "3.0.0", git = "https://github.com/paritytech/substrate.git", branch = "frontier" } sp-api = { version = "3.0.0", git = "https://github.com/paritytech/substrate.git", branch = "frontier" } sp-transaction-pool = { version = "3.0.0", git = "https://github.com/paritytech/substrate.git", branch = "frontier" } sp-storage = { version = "3.0.0", git = "https://github.com/paritytech/substrate.git", branch = "frontier" } sp-blockchain = { version = "3.0.0", git = "https://github.com/paritytech/substrate.git", branch = "frontier" } sc-service = { version = "0.9.0", git = "https://github.com/paritytech/substrate.git", branch = "frontier" } sc-client-api = { version = "3.0.0", git = "https://github.com/paritytech/substrate.git", branch = "frontier" } sc-rpc = { version = "3.0.0", git = "https://github.com/paritytech/substrate.git", branch = "frontier" } sc-network = { version = "0.9.0", git = "https://github.com/paritytech/substrate.git", branch = "frontier" } pallet-evm = { version = "3.0.0", path = "../../frame/evm" } fp-evm = { version = "1.0.0", path = "../../primitives/evm" } pallet-ethereum = { version = "1.0.0", path = "../../frame/ethereum" } ethereum = { version = "0.7.1", features = ["with-codec"] } codec = { package = "parity-scale-codec", version = "2.0.0" } rlp = "0.5" futures = { version = "0.3.1", features = ["compat"] } sha3 = "0.8" rustc-hex = { version = "2.1.0", default-features = false } libsecp256k1 = "0.3" rand = "0.7" [features] rpc_binary_search_estimate = []