2016-02-05 13:40:41 +01:00
|
|
|
// Copyright 2015, 2016 Ethcore (UK) Ltd.
|
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity 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 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. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-01-27 17:08:59 +01:00
|
|
|
//! Eth rpc implementation.
|
2016-03-14 14:18:29 +01:00
|
|
|
use std::collections::HashSet;
|
|
|
|
use std::sync::{Arc, Weak, Mutex};
|
2016-03-08 16:23:32 +01:00
|
|
|
use std::ops::Deref;
|
2016-03-10 17:32:17 +01:00
|
|
|
use ethsync::{SyncProvider, SyncState};
|
2016-03-16 10:40:33 +01:00
|
|
|
use ethminer::{MinerService, AccountDetails};
|
2016-01-26 19:24:33 +01:00
|
|
|
use jsonrpc_core::*;
|
2016-02-29 22:21:15 +01:00
|
|
|
use util::numbers::*;
|
2016-01-27 12:31:54 +01:00
|
|
|
use util::sha3::*;
|
2016-03-21 12:00:30 +01:00
|
|
|
use util::rlp::{encode, UntrustedRlp, View};
|
2016-03-22 17:17:50 +01:00
|
|
|
use util::crypto::KeyPair;
|
2016-01-21 01:19:29 +01:00
|
|
|
use ethcore::client::*;
|
2016-03-14 14:18:29 +01:00
|
|
|
use ethcore::block::IsBlock;
|
2016-01-27 12:31:54 +01:00
|
|
|
use ethcore::views::*;
|
2016-02-29 19:30:13 +01:00
|
|
|
use ethcore::ethereum::Ethash;
|
2016-02-10 18:26:06 +01:00
|
|
|
use ethcore::ethereum::denominations::shannon;
|
2016-03-22 17:17:50 +01:00
|
|
|
use ethcore::transaction::{Transaction as EthTransaction, SignedTransaction, Action};
|
2016-01-27 17:14:41 +01:00
|
|
|
use v1::traits::{Eth, EthFilter};
|
2016-03-22 17:17:50 +01:00
|
|
|
use v1::types::{Block, BlockTransactions, BlockNumber, Bytes, SyncStatus, SyncInfo, Transaction, TransactionRequest, CallRequest, OptionalValue, Index, Filter, Log, Receipt};
|
2016-03-14 14:18:29 +01:00
|
|
|
use v1::helpers::{PollFilter, PollManager, ExternalMinerService, ExternalMiner};
|
2016-03-10 17:18:01 +01:00
|
|
|
use util::keys::store::AccountProvider;
|
2016-01-21 01:19:29 +01:00
|
|
|
|
2016-03-22 17:17:50 +01:00
|
|
|
fn default_gas() -> U256 {
|
|
|
|
U256::from(21_000)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn default_gas_price() -> U256 {
|
2016-03-23 17:28:02 +01:00
|
|
|
shannon() * U256::from(20)
|
2016-03-22 17:17:50 +01:00
|
|
|
}
|
|
|
|
|
2016-01-27 17:08:59 +01:00
|
|
|
/// Eth rpc implementation.
|
2016-03-14 14:18:29 +01:00
|
|
|
pub struct EthClient<C, S, A, M, EM = ExternalMiner>
|
2016-03-10 16:18:33 +01:00
|
|
|
where C: BlockChainClient,
|
2016-03-11 10:23:33 +01:00
|
|
|
S: SyncProvider,
|
2016-03-11 14:26:23 +01:00
|
|
|
A: AccountProvider,
|
2016-03-14 14:18:29 +01:00
|
|
|
M: MinerService,
|
|
|
|
EM: ExternalMinerService {
|
2016-03-09 17:31:43 +01:00
|
|
|
client: Weak<C>,
|
|
|
|
sync: Weak<S>,
|
2016-03-10 17:18:01 +01:00
|
|
|
accounts: Weak<A>,
|
2016-03-10 16:18:33 +01:00
|
|
|
miner: Weak<M>,
|
2016-03-14 14:18:29 +01:00
|
|
|
external_miner: EM,
|
2016-01-21 01:19:29 +01:00
|
|
|
}
|
|
|
|
|
2016-03-14 14:18:29 +01:00
|
|
|
impl<C, S, A, M> EthClient<C, S, A, M, ExternalMiner>
|
2016-03-11 10:23:33 +01:00
|
|
|
where C: BlockChainClient,
|
|
|
|
S: SyncProvider,
|
2016-03-11 14:26:23 +01:00
|
|
|
A: AccountProvider,
|
2016-03-11 10:23:33 +01:00
|
|
|
M: MinerService {
|
2016-03-14 14:18:29 +01:00
|
|
|
|
2016-01-27 17:08:59 +01:00
|
|
|
/// Creates new EthClient.
|
2016-03-11 14:48:30 +01:00
|
|
|
pub fn new(client: &Arc<C>, sync: &Arc<S>, accounts: &Arc<A>, miner: &Arc<M>) -> Self {
|
2016-03-14 14:18:29 +01:00
|
|
|
EthClient::new_with_external_miner(client, sync, accounts, miner, ExternalMiner::default())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<C, S, A, M, EM> EthClient<C, S, A, M, EM>
|
|
|
|
where C: BlockChainClient,
|
|
|
|
S: SyncProvider,
|
|
|
|
A: AccountProvider,
|
|
|
|
M: MinerService,
|
|
|
|
EM: ExternalMinerService {
|
|
|
|
|
|
|
|
/// Creates new EthClient with custom external miner.
|
|
|
|
pub fn new_with_external_miner(client: &Arc<C>, sync: &Arc<S>, accounts: &Arc<A>, miner: &Arc<M>, em: EM)
|
|
|
|
-> EthClient<C, S, A, M, EM> {
|
2016-01-21 01:19:29 +01:00
|
|
|
EthClient {
|
2016-02-29 11:58:33 +01:00
|
|
|
client: Arc::downgrade(client),
|
2016-03-01 01:52:22 +01:00
|
|
|
sync: Arc::downgrade(sync),
|
2016-03-08 15:46:44 +01:00
|
|
|
miner: Arc::downgrade(miner),
|
2016-03-10 17:18:01 +01:00
|
|
|
accounts: Arc::downgrade(accounts),
|
2016-03-14 14:18:29 +01:00
|
|
|
external_miner: em,
|
2016-01-21 01:19:29 +01:00
|
|
|
}
|
|
|
|
}
|
2016-02-10 22:54:12 +01:00
|
|
|
|
|
|
|
fn block(&self, id: BlockId, include_txs: bool) -> Result<Value, Error> {
|
2016-02-29 11:58:33 +01:00
|
|
|
let client = take_weak!(self.client);
|
|
|
|
match (client.block(id.clone()), client.block_total_difficulty(id)) {
|
2016-02-10 22:54:12 +01:00
|
|
|
(Some(bytes), Some(total_difficulty)) => {
|
|
|
|
let block_view = BlockView::new(&bytes);
|
|
|
|
let view = block_view.header_view();
|
|
|
|
let block = Block {
|
|
|
|
hash: OptionalValue::Value(view.sha3()),
|
|
|
|
parent_hash: view.parent_hash(),
|
|
|
|
uncles_hash: view.uncles_hash(),
|
|
|
|
author: view.author(),
|
|
|
|
miner: view.author(),
|
|
|
|
state_root: view.state_root(),
|
|
|
|
transactions_root: view.transactions_root(),
|
|
|
|
receipts_root: view.receipts_root(),
|
|
|
|
number: OptionalValue::Value(U256::from(view.number())),
|
|
|
|
gas_used: view.gas_used(),
|
|
|
|
gas_limit: view.gas_limit(),
|
|
|
|
logs_bloom: view.log_bloom(),
|
|
|
|
timestamp: U256::from(view.timestamp()),
|
|
|
|
difficulty: view.difficulty(),
|
|
|
|
total_difficulty: total_difficulty,
|
2016-03-19 11:44:36 +01:00
|
|
|
nonce: view.seal().get(1).map_or_else(H64::zero, |r| H64::from_slice(r)),
|
2016-03-19 12:23:48 +01:00
|
|
|
uncles: block_view.uncle_hashes(),
|
2016-02-10 22:54:12 +01:00
|
|
|
transactions: {
|
|
|
|
if include_txs {
|
|
|
|
BlockTransactions::Full(block_view.localized_transactions().into_iter().map(From::from).collect())
|
|
|
|
} else {
|
|
|
|
BlockTransactions::Hashes(block_view.transaction_hashes())
|
|
|
|
}
|
|
|
|
},
|
2016-03-19 11:44:36 +01:00
|
|
|
extra_data: Bytes::new(view.extra_data())
|
2016-02-10 22:54:12 +01:00
|
|
|
};
|
|
|
|
to_value(&block)
|
|
|
|
},
|
|
|
|
_ => Ok(Value::Null)
|
|
|
|
}
|
|
|
|
}
|
2016-02-29 11:58:33 +01:00
|
|
|
|
2016-02-10 22:54:12 +01:00
|
|
|
fn transaction(&self, id: TransactionId) -> Result<Value, Error> {
|
2016-02-29 11:58:33 +01:00
|
|
|
match take_weak!(self.client).transaction(id) {
|
2016-02-10 22:54:12 +01:00
|
|
|
Some(t) => to_value(&Transaction::from(t)),
|
|
|
|
None => Ok(Value::Null)
|
|
|
|
}
|
|
|
|
}
|
2016-03-14 17:01:10 +01:00
|
|
|
|
2016-03-22 16:07:42 +01:00
|
|
|
fn uncle(&self, id: UncleId) -> Result<Value, Error> {
|
|
|
|
let client = take_weak!(self.client);
|
|
|
|
match client.uncle(id).and_then(|u| client.block_total_difficulty(BlockId::Hash(u.hash())).map(|diff| (diff, u))) {
|
|
|
|
Some((difficulty, uncle)) => {
|
|
|
|
let block = Block {
|
|
|
|
hash: OptionalValue::Value(uncle.hash()),
|
|
|
|
parent_hash: uncle.parent_hash,
|
|
|
|
uncles_hash: uncle.uncles_hash,
|
|
|
|
author: uncle.author,
|
|
|
|
miner: uncle.author,
|
|
|
|
state_root: uncle.state_root,
|
|
|
|
transactions_root: uncle.transactions_root,
|
|
|
|
number: OptionalValue::Value(U256::from(uncle.number)),
|
|
|
|
gas_used: uncle.gas_used,
|
|
|
|
gas_limit: uncle.gas_limit,
|
|
|
|
logs_bloom: uncle.log_bloom,
|
|
|
|
timestamp: U256::from(uncle.timestamp),
|
|
|
|
difficulty: uncle.difficulty,
|
|
|
|
total_difficulty: difficulty,
|
|
|
|
receipts_root: uncle.receipts_root,
|
|
|
|
extra_data: Bytes::new(uncle.extra_data),
|
|
|
|
// todo:
|
|
|
|
nonce: H64::from(0),
|
|
|
|
uncles: vec![],
|
|
|
|
transactions: BlockTransactions::Hashes(vec![]),
|
|
|
|
};
|
|
|
|
to_value(&block)
|
|
|
|
},
|
|
|
|
None => Ok(Value::Null)
|
|
|
|
}
|
2016-03-14 17:01:10 +01:00
|
|
|
}
|
2016-03-22 17:17:50 +01:00
|
|
|
|
|
|
|
fn sign_call(client: &Arc<C>, accounts: &Arc<A>, request: CallRequest) -> Option<SignedTransaction> {
|
|
|
|
match request.from {
|
|
|
|
Some(ref from) => {
|
|
|
|
let transaction = EthTransaction {
|
|
|
|
nonce: request.nonce.unwrap_or_else(|| client.nonce(from)),
|
|
|
|
action: request.to.map_or(Action::Create, Action::Call),
|
|
|
|
gas: request.gas.unwrap_or_else(default_gas),
|
|
|
|
gas_price: request.gas_price.unwrap_or_else(default_gas_price),
|
|
|
|
value: request.value.unwrap_or_else(U256::zero),
|
|
|
|
data: request.data.map_or_else(Vec::new, |d| d.to_vec())
|
|
|
|
};
|
|
|
|
|
|
|
|
accounts.account_secret(from).ok().map(|secret| transaction.sign(&secret))
|
|
|
|
},
|
|
|
|
None => {
|
|
|
|
let transaction = EthTransaction {
|
|
|
|
nonce: request.nonce.unwrap_or_else(U256::zero),
|
|
|
|
action: request.to.map_or(Action::Create, Action::Call),
|
|
|
|
gas: request.gas.unwrap_or_else(default_gas),
|
|
|
|
gas_price: request.gas_price.unwrap_or_else(default_gas_price),
|
|
|
|
value: request.value.unwrap_or_else(U256::zero),
|
|
|
|
data: request.data.map_or_else(Vec::new, |d| d.to_vec())
|
|
|
|
};
|
|
|
|
|
|
|
|
KeyPair::create().ok().map(|kp| transaction.sign(kp.secret()))
|
|
|
|
}
|
|
|
|
}
|
2016-03-14 17:01:10 +01:00
|
|
|
}
|
2016-01-21 01:19:29 +01:00
|
|
|
}
|
|
|
|
|
2016-03-14 14:18:29 +01:00
|
|
|
impl<C, S, A, M, EM> Eth for EthClient<C, S, A, M, EM>
|
2016-03-10 16:18:33 +01:00
|
|
|
where C: BlockChainClient + 'static,
|
2016-03-11 10:23:33 +01:00
|
|
|
S: SyncProvider + 'static,
|
2016-03-11 14:26:23 +01:00
|
|
|
A: AccountProvider + 'static,
|
2016-03-14 14:18:29 +01:00
|
|
|
M: MinerService + 'static,
|
|
|
|
EM: ExternalMinerService + 'static {
|
2016-03-11 14:26:23 +01:00
|
|
|
|
2016-01-21 01:19:29 +01:00
|
|
|
fn protocol_version(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
match params {
|
2016-03-13 12:09:30 +01:00
|
|
|
Params::None => Ok(Value::String(format!("{}", take_weak!(self.sync).status().protocol_version).to_owned())),
|
2016-01-21 01:19:29 +01:00
|
|
|
_ => Err(Error::invalid_params())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-05 13:21:34 +01:00
|
|
|
fn syncing(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
match params {
|
2016-02-10 16:28:59 +01:00
|
|
|
Params::None => {
|
2016-02-29 11:58:33 +01:00
|
|
|
let status = take_weak!(self.sync).status();
|
2016-02-10 16:28:59 +01:00
|
|
|
let res = match status.state {
|
|
|
|
SyncState::NotSynced | SyncState::Idle => SyncStatus::None,
|
|
|
|
SyncState::Waiting | SyncState::Blocks | SyncState::NewBlocks => SyncStatus::Info(SyncInfo {
|
|
|
|
starting_block: U256::from(status.start_block_number),
|
2016-02-29 11:58:33 +01:00
|
|
|
current_block: U256::from(take_weak!(self.client).chain_info().best_block_number),
|
2016-02-10 16:28:59 +01:00
|
|
|
highest_block: U256::from(status.highest_block_number.unwrap_or(status.start_block_number))
|
|
|
|
})
|
|
|
|
};
|
|
|
|
to_value(&res)
|
|
|
|
}
|
2016-02-05 13:21:34 +01:00
|
|
|
_ => Err(Error::invalid_params())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: do not hardcode author.
|
2016-01-21 01:19:29 +01:00
|
|
|
fn author(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
match params {
|
2016-03-22 19:12:17 +01:00
|
|
|
Params::None => to_value(&take_weak!(self.miner).author()),
|
|
|
|
_ => Err(Error::invalid_params()),
|
2016-01-21 01:19:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-05 13:21:34 +01:00
|
|
|
// TODO: return real value of mining once it's implemented.
|
|
|
|
fn is_mining(&self, params: Params) -> Result<Value, Error> {
|
2016-01-21 11:25:39 +01:00
|
|
|
match params {
|
2016-03-14 14:18:29 +01:00
|
|
|
Params::None => to_value(&self.external_miner.is_mining()),
|
2016-01-21 11:25:39 +01:00
|
|
|
_ => Err(Error::invalid_params())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-05 13:21:34 +01:00
|
|
|
// TODO: return real hashrate once we have mining
|
|
|
|
fn hashrate(&self, params: Params) -> Result<Value, Error> {
|
2016-01-21 01:19:29 +01:00
|
|
|
match params {
|
2016-03-14 14:18:29 +01:00
|
|
|
Params::None => to_value(&self.external_miner.hashrate()),
|
2016-01-21 01:19:29 +01:00
|
|
|
_ => Err(Error::invalid_params())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-05 13:21:34 +01:00
|
|
|
fn gas_price(&self, params: Params) -> Result<Value, Error> {
|
2016-01-21 01:19:29 +01:00
|
|
|
match params {
|
2016-03-22 17:17:50 +01:00
|
|
|
Params::None => to_value(&default_gas_price()),
|
2016-01-21 01:19:29 +01:00
|
|
|
_ => Err(Error::invalid_params())
|
|
|
|
}
|
|
|
|
}
|
2016-01-21 11:25:39 +01:00
|
|
|
|
2016-03-12 19:21:08 +01:00
|
|
|
fn accounts(&self, _: Params) -> Result<Value, Error> {
|
|
|
|
let store = take_weak!(self.accounts);
|
|
|
|
match store.accounts() {
|
|
|
|
Ok(account_list) => to_value(&account_list),
|
|
|
|
Err(_) => Err(Error::internal_error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-05 13:21:34 +01:00
|
|
|
fn block_number(&self, params: Params) -> Result<Value, Error> {
|
2016-01-21 11:25:39 +01:00
|
|
|
match params {
|
2016-02-29 11:58:33 +01:00
|
|
|
Params::None => to_value(&U256::from(take_weak!(self.client).chain_info().best_block_number)),
|
2016-01-21 11:25:39 +01:00
|
|
|
_ => Err(Error::invalid_params())
|
|
|
|
}
|
|
|
|
}
|
2016-01-26 00:42:07 +01:00
|
|
|
|
2016-03-12 19:51:24 +01:00
|
|
|
fn balance(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(Address, BlockNumber)>(params)
|
|
|
|
.and_then(|(address, _block_number)| to_value(&take_weak!(self.client).balance(&address)))
|
|
|
|
}
|
|
|
|
|
2016-03-13 12:09:30 +01:00
|
|
|
fn storage_at(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(Address, U256, BlockNumber)>(params)
|
|
|
|
.and_then(|(address, position, _block_number)|
|
|
|
|
to_value(&U256::from(take_weak!(self.client).storage_at(&address, &H256::from(position)))))
|
|
|
|
}
|
|
|
|
|
2016-03-13 14:37:33 +01:00
|
|
|
fn transaction_count(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(Address, BlockNumber)>(params)
|
|
|
|
.and_then(|(address, _block_number)| to_value(&take_weak!(self.client).nonce(&address)))
|
|
|
|
}
|
|
|
|
|
2016-02-25 16:58:18 +01:00
|
|
|
fn block_transaction_count_by_hash(&self, params: Params) -> Result<Value, Error> {
|
2016-02-10 10:12:56 +01:00
|
|
|
from_params::<(H256,)>(params)
|
2016-03-13 14:37:33 +01:00
|
|
|
.and_then(|(hash,)| // match
|
2016-03-19 12:23:48 +01:00
|
|
|
take_weak!(self.client).block(BlockId::Hash(hash))
|
|
|
|
.map_or(Ok(Value::Null), |bytes| to_value(&U256::from(BlockView::new(&bytes).transactions_count()))))
|
2016-02-05 13:21:34 +01:00
|
|
|
}
|
|
|
|
|
2016-02-25 16:58:18 +01:00
|
|
|
fn block_transaction_count_by_number(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(BlockNumber,)>(params)
|
|
|
|
.and_then(|(block_number,)| match block_number {
|
2016-03-17 13:18:26 +01:00
|
|
|
BlockNumber::Pending => to_value(
|
2016-03-17 11:19:12 +01:00
|
|
|
&U256::from(take_weak!(self.miner).status().transactions_in_pending_block)
|
|
|
|
),
|
2016-03-19 12:23:48 +01:00
|
|
|
_ => take_weak!(self.client).block(block_number.into())
|
|
|
|
.map_or(Ok(Value::Null), |bytes| to_value(&U256::from(BlockView::new(&bytes).transactions_count())))
|
2016-02-25 16:58:18 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-03-13 14:37:33 +01:00
|
|
|
fn block_uncles_count_by_hash(&self, params: Params) -> Result<Value, Error> {
|
2016-02-10 10:12:56 +01:00
|
|
|
from_params::<(H256,)>(params)
|
2016-03-13 14:37:33 +01:00
|
|
|
.and_then(|(hash,)|
|
2016-03-19 12:23:48 +01:00
|
|
|
take_weak!(self.client).block(BlockId::Hash(hash))
|
|
|
|
.map_or(Ok(Value::Null), |bytes| to_value(&U256::from(BlockView::new(&bytes).uncles_count()))))
|
2016-03-13 14:37:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn block_uncles_count_by_number(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(BlockNumber,)>(params)
|
|
|
|
.and_then(|(block_number,)| match block_number {
|
|
|
|
BlockNumber::Pending => to_value(&U256::from(0)),
|
2016-03-19 12:23:48 +01:00
|
|
|
_ => take_weak!(self.client).block(block_number.into())
|
|
|
|
.map_or(Ok(Value::Null), |bytes| to_value(&U256::from(BlockView::new(&bytes).uncles_count())))
|
2016-02-10 10:12:56 +01:00
|
|
|
})
|
2016-01-26 00:42:07 +01:00
|
|
|
}
|
2016-01-26 11:37:24 +01:00
|
|
|
|
2016-02-08 10:58:08 +01:00
|
|
|
// TODO: do not ignore block number param
|
|
|
|
fn code_at(&self, params: Params) -> Result<Value, Error> {
|
2016-02-10 10:12:56 +01:00
|
|
|
from_params::<(Address, BlockNumber)>(params)
|
2016-03-13 14:45:39 +01:00
|
|
|
.and_then(|(address, _block_number)|
|
|
|
|
to_value(&take_weak!(self.client).code(&address).map_or_else(Bytes::default, Bytes::new)))
|
2016-02-08 10:58:08 +01:00
|
|
|
}
|
|
|
|
|
2016-02-10 22:54:12 +01:00
|
|
|
fn block_by_hash(&self, params: Params) -> Result<Value, Error> {
|
2016-02-10 10:12:56 +01:00
|
|
|
from_params::<(H256, bool)>(params)
|
2016-02-10 22:54:12 +01:00
|
|
|
.and_then(|(hash, include_txs)| self.block(BlockId::Hash(hash), include_txs))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn block_by_number(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(BlockNumber, bool)>(params)
|
|
|
|
.and_then(|(number, include_txs)| self.block(number.into(), include_txs))
|
2016-01-26 11:37:24 +01:00
|
|
|
}
|
2016-02-09 13:17:44 +01:00
|
|
|
|
2016-02-10 10:12:56 +01:00
|
|
|
fn transaction_by_hash(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(H256,)>(params)
|
2016-02-10 22:54:12 +01:00
|
|
|
.and_then(|(hash,)| self.transaction(TransactionId::Hash(hash)))
|
2016-02-10 11:28:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn transaction_by_block_hash_and_index(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(H256, Index)>(params)
|
2016-02-10 22:54:12 +01:00
|
|
|
.and_then(|(hash, index)| self.transaction(TransactionId::Location(BlockId::Hash(hash), index.value())))
|
2016-02-10 11:28:40 +01:00
|
|
|
}
|
|
|
|
|
2016-02-10 22:36:59 +01:00
|
|
|
fn transaction_by_block_number_and_index(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(BlockNumber, Index)>(params)
|
2016-02-10 22:54:12 +01:00
|
|
|
.and_then(|(number, index)| self.transaction(TransactionId::Location(number.into(), index.value())))
|
2016-02-09 13:17:44 +01:00
|
|
|
}
|
2016-02-15 13:18:26 +01:00
|
|
|
|
2016-03-20 17:29:39 +01:00
|
|
|
fn transaction_receipt(&self, params: Params) -> Result<Value, Error> {
|
2016-03-20 18:44:57 +01:00
|
|
|
from_params::<(H256,)>(params)
|
|
|
|
.and_then(|(hash,)| {
|
|
|
|
let client = take_weak!(self.client);
|
|
|
|
let receipt = client.transaction_receipt(TransactionId::Hash(hash));
|
|
|
|
to_value(&receipt.map(Receipt::from))
|
|
|
|
})
|
2016-03-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
|
2016-03-14 17:01:10 +01:00
|
|
|
fn uncle_by_block_hash_and_index(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(H256, Index)>(params)
|
2016-03-22 16:07:42 +01:00
|
|
|
.and_then(|(hash, index)| self.uncle(UncleId(BlockId::Hash(hash), index.value())))
|
2016-03-14 17:01:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn uncle_by_block_number_and_index(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(BlockNumber, Index)>(params)
|
2016-03-22 16:07:42 +01:00
|
|
|
.and_then(|(number, index)| self.uncle(UncleId(number.into(), index.value())))
|
2016-03-14 17:01:10 +01:00
|
|
|
}
|
|
|
|
|
2016-03-13 15:02:46 +01:00
|
|
|
fn compilers(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
match params {
|
|
|
|
Params::None => to_value(&vec![] as &Vec<String>),
|
|
|
|
_ => Err(Error::invalid_params())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-15 13:18:26 +01:00
|
|
|
fn logs(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(Filter,)>(params)
|
|
|
|
.and_then(|(filter,)| {
|
2016-02-29 11:58:33 +01:00
|
|
|
let logs = take_weak!(self.client).logs(filter.into())
|
2016-02-15 13:39:58 +01:00
|
|
|
.into_iter()
|
2016-02-17 14:13:51 +01:00
|
|
|
.map(From::from)
|
|
|
|
.collect::<Vec<Log>>();
|
|
|
|
to_value(&logs)
|
2016-02-15 13:18:26 +01:00
|
|
|
})
|
|
|
|
}
|
2016-02-29 19:30:13 +01:00
|
|
|
|
|
|
|
fn work(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
match params {
|
|
|
|
Params::None => {
|
2016-03-15 23:58:46 +01:00
|
|
|
let client = take_weak!(self.client);
|
2016-03-22 13:05:18 +01:00
|
|
|
// check if we're still syncing and return empty strings in that case
|
2016-03-15 17:13:44 +01:00
|
|
|
{
|
|
|
|
let sync = take_weak!(self.sync);
|
2016-03-15 23:58:46 +01:00
|
|
|
if sync.status().state != SyncState::Idle && client.queue_info().is_empty() {
|
2016-03-15 17:13:44 +01:00
|
|
|
return to_value(&(String::new(), String::new(), String::new()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-08 15:46:44 +01:00
|
|
|
let miner = take_weak!(self.miner);
|
2016-03-24 23:03:22 +01:00
|
|
|
miner.map_sealing_work(client.deref(), |b| {
|
|
|
|
let pow_hash = b.hash();
|
|
|
|
let target = Ethash::difficulty_to_boundary(b.block().header().difficulty());
|
|
|
|
let seed_hash = Ethash::get_seedhash(b.block().header().number());
|
|
|
|
to_value(&(pow_hash, seed_hash, target))
|
|
|
|
}).unwrap_or(Err(Error::internal_error())) // no work found.
|
2016-02-29 19:30:13 +01:00
|
|
|
},
|
|
|
|
_ => Err(Error::invalid_params())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-01 00:02:48 +01:00
|
|
|
fn submit_work(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(H64, H256, H256)>(params).and_then(|(nonce, pow_hash, mix_hash)| {
|
2016-03-01 16:58:14 +01:00
|
|
|
// trace!("Decoded: nonce={}, pow_hash={}, mix_hash={}", nonce, pow_hash, mix_hash);
|
2016-03-08 15:46:44 +01:00
|
|
|
let miner = take_weak!(self.miner);
|
2016-03-08 16:23:32 +01:00
|
|
|
let client = take_weak!(self.client);
|
2016-03-01 00:02:48 +01:00
|
|
|
let seal = vec![encode(&mix_hash).to_vec(), encode(&nonce).to_vec()];
|
2016-03-08 16:23:32 +01:00
|
|
|
let r = miner.submit_seal(client.deref(), pow_hash, seal);
|
2016-03-01 16:58:14 +01:00
|
|
|
to_value(&r.is_ok())
|
2016-03-01 00:02:48 +01:00
|
|
|
})
|
|
|
|
}
|
2016-02-29 19:30:13 +01:00
|
|
|
|
2016-03-01 01:15:00 +01:00
|
|
|
fn submit_hashrate(&self, params: Params) -> Result<Value, Error> {
|
2016-03-14 14:18:29 +01:00
|
|
|
from_params::<(U256, H256)>(params).and_then(|(rate, id)| {
|
|
|
|
self.external_miner.submit_hashrate(rate, id);
|
2016-03-01 01:15:00 +01:00
|
|
|
to_value(&true)
|
|
|
|
})
|
|
|
|
}
|
2016-03-04 18:10:07 +01:00
|
|
|
|
|
|
|
fn send_transaction(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(TransactionRequest, )>(params)
|
2016-03-22 17:17:50 +01:00
|
|
|
.and_then(|(request, )| {
|
2016-03-10 17:18:01 +01:00
|
|
|
let accounts = take_weak!(self.accounts);
|
2016-03-22 17:17:50 +01:00
|
|
|
match accounts.account_secret(&request.from) {
|
2016-03-05 16:29:01 +01:00
|
|
|
Ok(secret) => {
|
2016-03-11 14:48:30 +01:00
|
|
|
let miner = take_weak!(self.miner);
|
|
|
|
let client = take_weak!(self.client);
|
2016-03-11 15:56:30 +01:00
|
|
|
|
2016-03-22 17:17:50 +01:00
|
|
|
let transaction = EthTransaction {
|
|
|
|
nonce: request.nonce.unwrap_or_else(|| client.nonce(&request.from)),
|
|
|
|
action: request.to.map_or(Action::Create, Action::Call),
|
|
|
|
gas: request.gas.unwrap_or_else(default_gas),
|
|
|
|
gas_price: request.gas_price.unwrap_or_else(default_gas_price),
|
|
|
|
value: request.value.unwrap_or_else(U256::zero),
|
|
|
|
data: request.data.map_or_else(Vec::new, |d| d.to_vec())
|
|
|
|
};
|
|
|
|
|
2016-03-05 16:29:01 +01:00
|
|
|
let signed_transaction = transaction.sign(&secret);
|
|
|
|
let hash = signed_transaction.hash();
|
2016-03-11 14:48:30 +01:00
|
|
|
|
2016-03-16 10:40:33 +01:00
|
|
|
let import = miner.import_transactions(vec![signed_transaction], |a: &Address| AccountDetails {
|
|
|
|
nonce: client.nonce(a),
|
2016-03-17 11:49:56 +01:00
|
|
|
balance: client.balance(a),
|
2016-03-16 10:40:33 +01:00
|
|
|
});
|
2016-03-17 15:49:29 +01:00
|
|
|
match import.into_iter().collect::<Result<Vec<_>, _>>() {
|
2016-03-11 14:48:30 +01:00
|
|
|
Ok(_) => to_value(&hash),
|
|
|
|
Err(e) => {
|
|
|
|
warn!("Error sending transaction: {:?}", e);
|
|
|
|
to_value(&U256::zero())
|
|
|
|
}
|
|
|
|
}
|
2016-03-04 18:10:07 +01:00
|
|
|
},
|
2016-03-05 16:29:01 +01:00
|
|
|
Err(_) => { to_value(&U256::zero()) }
|
2016-03-04 18:10:07 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2016-03-19 21:37:11 +01:00
|
|
|
|
2016-03-21 12:00:30 +01:00
|
|
|
fn send_raw_transaction(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(Bytes, )>(params)
|
|
|
|
.and_then(|(raw_transaction, )| {
|
|
|
|
let decoded: Result<SignedTransaction, _> = UntrustedRlp::new(&raw_transaction.to_vec()).as_val();
|
|
|
|
match decoded {
|
|
|
|
Ok(signed_tx) => {
|
|
|
|
let miner = take_weak!(self.miner);
|
2016-03-19 21:37:11 +01:00
|
|
|
let client = take_weak!(self.client);
|
|
|
|
|
2016-03-21 12:00:30 +01:00
|
|
|
let hash = signed_tx.hash();
|
|
|
|
let import = miner.import_transactions(vec![signed_tx], |a: &Address| AccountDetails {
|
|
|
|
nonce: client.nonce(a),
|
|
|
|
balance: client.balance(a),
|
|
|
|
});
|
|
|
|
match import.into_iter().collect::<Result<Vec<_>, _>>() {
|
|
|
|
Ok(_) => to_value(&hash),
|
|
|
|
Err(e) => {
|
|
|
|
warn!("Error sending transaction: {:?}", e);
|
|
|
|
to_value(&U256::zero())
|
|
|
|
}
|
|
|
|
}
|
2016-03-19 21:37:11 +01:00
|
|
|
},
|
2016-03-21 12:00:30 +01:00
|
|
|
Err(_) => { to_value(&U256::zero()) }
|
2016-03-19 21:37:11 +01:00
|
|
|
}
|
2016-03-21 12:00:30 +01:00
|
|
|
})
|
2016-03-19 21:37:11 +01:00
|
|
|
}
|
2016-03-20 10:29:21 +01:00
|
|
|
|
2016-03-19 21:37:11 +01:00
|
|
|
fn call(&self, params: Params) -> Result<Value, Error> {
|
2016-03-22 17:17:50 +01:00
|
|
|
from_params::<(CallRequest, BlockNumber)>(params)
|
|
|
|
.and_then(|(request, _block_number)| {
|
|
|
|
let client = take_weak!(self.client);
|
2016-03-20 10:29:21 +01:00
|
|
|
let accounts = take_weak!(self.accounts);
|
2016-03-22 17:17:50 +01:00
|
|
|
let signed = Self::sign_call(&client, &accounts, request);
|
|
|
|
let output = signed.map(|tx| client.call(&tx)
|
|
|
|
.map(|e| Bytes::new(e.output))
|
|
|
|
.unwrap_or(Bytes::default()));
|
2016-03-20 10:29:21 +01:00
|
|
|
|
2016-03-22 17:17:50 +01:00
|
|
|
to_value(&output)
|
2016-03-19 21:37:11 +01:00
|
|
|
})
|
|
|
|
}
|
2016-03-20 10:29:21 +01:00
|
|
|
|
|
|
|
fn estimate_gas(&self, params: Params) -> Result<Value, Error> {
|
2016-03-22 17:17:50 +01:00
|
|
|
from_params::<(CallRequest, BlockNumber)>(params)
|
|
|
|
.and_then(|(request, _block_number)| {
|
|
|
|
let client = take_weak!(self.client);
|
2016-03-20 10:29:21 +01:00
|
|
|
let accounts = take_weak!(self.accounts);
|
2016-03-22 17:17:50 +01:00
|
|
|
let signed = Self::sign_call(&client, &accounts, request);
|
|
|
|
let output = signed.map(|tx| client.call(&tx)
|
|
|
|
.map(|e| e.gas_used + e.refunded)
|
|
|
|
.unwrap_or(U256::zero()));
|
2016-03-20 11:34:19 +01:00
|
|
|
|
2016-03-22 17:17:50 +01:00
|
|
|
to_value(&output)
|
2016-03-20 10:29:21 +01:00
|
|
|
})
|
|
|
|
}
|
2016-01-21 11:25:39 +01:00
|
|
|
}
|
|
|
|
|
2016-01-27 17:08:59 +01:00
|
|
|
/// Eth filter rpc implementation.
|
2016-03-11 11:44:44 +01:00
|
|
|
pub struct EthFilterClient<C, M>
|
|
|
|
where C: BlockChainClient,
|
|
|
|
M: MinerService {
|
|
|
|
|
2016-03-09 17:31:43 +01:00
|
|
|
client: Weak<C>,
|
2016-03-11 11:44:44 +01:00
|
|
|
miner: Weak<M>,
|
2016-03-02 05:46:38 +01:00
|
|
|
polls: Mutex<PollManager<PollFilter>>,
|
2016-01-21 11:25:39 +01:00
|
|
|
}
|
|
|
|
|
2016-03-11 11:44:44 +01:00
|
|
|
impl<C, M> EthFilterClient<C, M>
|
|
|
|
where C: BlockChainClient,
|
|
|
|
M: MinerService {
|
|
|
|
|
2016-01-27 17:08:59 +01:00
|
|
|
/// Creates new Eth filter client.
|
2016-03-11 11:44:44 +01:00
|
|
|
pub fn new(client: &Arc<C>, miner: &Arc<M>) -> Self {
|
2016-01-21 11:25:39 +01:00
|
|
|
EthFilterClient {
|
2016-03-02 05:15:21 +01:00
|
|
|
client: Arc::downgrade(client),
|
2016-03-10 16:00:55 +01:00
|
|
|
miner: Arc::downgrade(miner),
|
|
|
|
polls: Mutex::new(PollManager::new()),
|
2016-01-21 11:25:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-11 11:44:44 +01:00
|
|
|
impl<C, M> EthFilter for EthFilterClient<C, M>
|
|
|
|
where C: BlockChainClient + 'static,
|
|
|
|
M: MinerService + 'static {
|
|
|
|
|
2016-02-23 18:51:29 +01:00
|
|
|
fn new_filter(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(Filter,)>(params)
|
|
|
|
.and_then(|(filter,)| {
|
|
|
|
let mut polls = self.polls.lock().unwrap();
|
2016-03-11 12:31:42 +01:00
|
|
|
let block_number = take_weak!(self.client).chain_info().best_block_number;
|
|
|
|
let id = polls.create_poll(PollFilter::Logs(block_number, filter.into()));
|
2016-02-23 18:51:29 +01:00
|
|
|
to_value(&U256::from(id))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn new_block_filter(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
match params {
|
|
|
|
Params::None => {
|
|
|
|
let mut polls = self.polls.lock().unwrap();
|
2016-03-11 12:31:42 +01:00
|
|
|
let id = polls.create_poll(PollFilter::Block(take_weak!(self.client).chain_info().best_block_number));
|
2016-02-23 18:51:29 +01:00
|
|
|
to_value(&U256::from(id))
|
|
|
|
},
|
|
|
|
_ => Err(Error::invalid_params())
|
|
|
|
}
|
2016-01-21 11:25:39 +01:00
|
|
|
}
|
|
|
|
|
2016-02-23 18:51:29 +01:00
|
|
|
fn new_pending_transaction_filter(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
match params {
|
|
|
|
Params::None => {
|
|
|
|
let mut polls = self.polls.lock().unwrap();
|
2016-03-10 16:00:55 +01:00
|
|
|
let pending_transactions = take_weak!(self.miner).pending_transactions_hashes();
|
2016-03-11 12:31:42 +01:00
|
|
|
let id = polls.create_poll(PollFilter::PendingTransaction(pending_transactions));
|
2016-03-10 16:00:55 +01:00
|
|
|
|
2016-02-23 18:51:29 +01:00
|
|
|
to_value(&U256::from(id))
|
|
|
|
},
|
|
|
|
_ => Err(Error::invalid_params())
|
|
|
|
}
|
2016-01-21 11:25:39 +01:00
|
|
|
}
|
|
|
|
|
2016-02-23 18:51:29 +01:00
|
|
|
fn filter_changes(&self, params: Params) -> Result<Value, Error> {
|
2016-03-02 05:15:21 +01:00
|
|
|
let client = take_weak!(self.client);
|
2016-02-23 18:51:29 +01:00
|
|
|
from_params::<(Index,)>(params)
|
|
|
|
.and_then(|(index,)| {
|
2016-03-11 12:31:42 +01:00
|
|
|
let mut polls = self.polls.lock().unwrap();
|
|
|
|
match polls.poll_mut(&index.value()) {
|
2016-02-23 18:51:29 +01:00
|
|
|
None => Ok(Value::Array(vec![] as Vec<Value>)),
|
2016-03-11 12:31:42 +01:00
|
|
|
Some(filter) => match *filter {
|
|
|
|
PollFilter::Block(ref mut block_number) => {
|
2016-03-07 10:30:19 +01:00
|
|
|
// + 1, cause we want to return hashes including current block hash.
|
|
|
|
let current_number = client.chain_info().best_block_number + 1;
|
2016-03-11 12:31:42 +01:00
|
|
|
let hashes = (*block_number..current_number).into_iter()
|
2016-02-24 14:16:05 +01:00
|
|
|
.map(BlockId::Number)
|
2016-03-02 05:15:21 +01:00
|
|
|
.filter_map(|id| client.block_hash(id))
|
2016-02-24 14:16:05 +01:00
|
|
|
.collect::<Vec<H256>>();
|
|
|
|
|
2016-03-11 12:31:42 +01:00
|
|
|
*block_number = current_number;
|
2016-02-24 14:16:05 +01:00
|
|
|
|
|
|
|
to_value(&hashes)
|
2016-02-23 18:51:29 +01:00
|
|
|
},
|
2016-03-11 12:31:42 +01:00
|
|
|
PollFilter::PendingTransaction(ref mut previous_hashes) => {
|
2016-03-10 16:00:55 +01:00
|
|
|
let current_hashes = take_weak!(self.miner).pending_transactions_hashes();
|
|
|
|
// calculate diff
|
2016-03-11 12:31:42 +01:00
|
|
|
let previous_hashes_set = previous_hashes.into_iter().map(|h| h.clone()).collect::<HashSet<H256>>();
|
2016-03-10 16:00:55 +01:00
|
|
|
let diff = current_hashes
|
2016-03-11 12:31:42 +01:00
|
|
|
.iter()
|
2016-03-10 16:00:55 +01:00
|
|
|
.filter(|hash| previous_hashes_set.contains(&hash))
|
2016-03-11 12:31:42 +01:00
|
|
|
.cloned()
|
2016-03-10 16:00:55 +01:00
|
|
|
.collect::<Vec<H256>>();
|
|
|
|
|
2016-03-11 12:31:42 +01:00
|
|
|
*previous_hashes = current_hashes;
|
|
|
|
|
2016-03-10 16:00:55 +01:00
|
|
|
to_value(&diff)
|
2016-02-23 18:51:29 +01:00
|
|
|
},
|
2016-03-11 12:31:42 +01:00
|
|
|
PollFilter::Logs(ref mut block_number, ref mut filter) => {
|
|
|
|
filter.from_block = BlockId::Number(*block_number);
|
2016-02-23 18:51:29 +01:00
|
|
|
filter.to_block = BlockId::Latest;
|
2016-03-11 12:31:42 +01:00
|
|
|
let logs = client.logs(filter.clone())
|
2016-02-23 18:51:29 +01:00
|
|
|
.into_iter()
|
|
|
|
.map(From::from)
|
|
|
|
.collect::<Vec<Log>>();
|
2016-03-02 05:15:21 +01:00
|
|
|
|
|
|
|
let current_number = client.chain_info().best_block_number;
|
2016-02-23 18:51:29 +01:00
|
|
|
|
2016-03-11 12:31:42 +01:00
|
|
|
*block_number = current_number;
|
2016-02-23 18:51:29 +01:00
|
|
|
to_value(&logs)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
2016-01-21 11:25:39 +01:00
|
|
|
}
|
2016-02-24 14:16:05 +01:00
|
|
|
|
|
|
|
fn uninstall_filter(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(Index,)>(params)
|
|
|
|
.and_then(|(index,)| {
|
|
|
|
self.polls.lock().unwrap().remove_poll(&index.value());
|
|
|
|
to_value(&true)
|
|
|
|
})
|
|
|
|
}
|
2016-01-21 01:19:29 +01:00
|
|
|
}
|