// Copyright 2015-2020 Parity Technologies (UK) Ltd.
// This file is part of Parity Ethereum.
// Parity Ethereum is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Parity Ethereum is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with Parity Ethereum. If not, see .
//! Parity-specific rpc implementation.
use std::sync::Arc;
use std::collections::BTreeMap;
use version::version_data;
use crypto::DEFAULT_MAC;
use ethkey::Brain;
use crypto::publickey::{Generator, ecies};
use ethstore::random_phrase;
use sync::{LightSyncInfo, LightSyncProvider, LightNetworkDispatcher, ManageNetwork};
use updater::VersionInfo as UpdaterVersionInfo;
use ethereum_types::{H64, H160, H256, H512, U64, U256};
use ethcore::miner::FilterOptions;
use ethcore_logger::RotatingLogger;
use jsonrpc_core::{Result, BoxFuture};
use jsonrpc_core::futures::{future, Future};
use light::on_demand::OnDemandRequester;
use v1::helpers::{self, errors, NetworkSettings, verify_signature};
use v1::helpers::external_signer::{SignerService, SigningQueue};
use v1::helpers::dispatch::LightDispatcher;
use v1::helpers::light_fetch::{LightFetch, light_all_transactions};
use v1::metadata::Metadata;
use v1::traits::Parity;
use v1::types::{
Bytes, CallRequest,
Peers, Transaction, RpcSettings, Histogram,
TransactionStats, LocalTransactionStatus,
LightBlockNumber, ChainStatus, Receipt,
BlockNumber, ConsensusCapability, VersionInfo,
OperationsInfo, Header, RichHeader, RecoveredAccount,
Log, Filter,
};
use Host;
use v1::helpers::errors::light_unimplemented;
use v1::types::block_number_to_id;
/// Parity implementation for light client.
pub struct ParityClient
where
S: LightSyncProvider + LightNetworkDispatcher + ManageNetwork + 'static,
OD: OnDemandRequester + 'static
{
light_dispatch: Arc>,
logger: Arc,
settings: Arc,
signer: Option>,
ws_address: Option,
gas_price_percentile: usize,
}
impl ParityClient
where
S: LightSyncProvider + LightNetworkDispatcher + ManageNetwork + 'static,
OD: OnDemandRequester + 'static
{
/// Creates new `ParityClient`.
pub fn new(
light_dispatch: Arc>,
logger: Arc,
settings: Arc,
signer: Option>,
ws_address: Option,
gas_price_percentile: usize,
) -> Self {
ParityClient {
light_dispatch,
logger,
settings,
signer,
ws_address,
gas_price_percentile,
}
}
/// Create a light blockchain data fetcher.
fn fetcher(&self) -> LightFetch
{
LightFetch {
client: self.light_dispatch.client.clone(),
on_demand: self.light_dispatch.on_demand.clone(),
sync: self.light_dispatch.sync.clone(),
cache: self.light_dispatch.cache.clone(),
gas_price_percentile: self.gas_price_percentile,
}
}
}
impl Parity for ParityClient
where
S: LightSyncInfo + LightSyncProvider + LightNetworkDispatcher + ManageNetwork + 'static,
OD: OnDemandRequester + 'static
{
type Metadata = Metadata;
fn transactions_limit(&self) -> Result {
Ok(usize::max_value())
}
fn min_gas_price(&self) -> Result {
Ok(U256::default())
}
fn extra_data(&self) -> Result {
Ok(Bytes::default())
}
fn gas_floor_target(&self) -> Result {
Ok(U256::default())
}
fn gas_ceil_target(&self) -> Result {
Ok(U256::default())
}
fn dev_logs(&self) -> Result> {
let logs = self.logger.logs();
Ok(logs.as_slice().to_owned())
}
fn dev_logs_levels(&self) -> Result {
Ok(self.logger.levels().to_owned())
}
fn net_chain(&self) -> Result {
Ok(self.settings.chain.clone())
}
fn net_peers(&self) -> Result {
let peers = self.light_dispatch.sync.peers().into_iter().map(Into::into).collect();
let peer_numbers = self.light_dispatch.sync.peer_numbers();
Ok(Peers {
active: peer_numbers.active,
connected: peer_numbers.connected,
max: peer_numbers.max as u32,
peers,
})
}
fn net_port(&self) -> Result {
Ok(self.settings.network_port)
}
fn node_name(&self) -> Result {
Ok(self.settings.name.clone())
}
fn registry_address(&self) -> Result