2016-04-11 21:06:32 +02: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/>.
|
|
|
|
|
|
|
|
//! Ethcore-specific rpc interface.
|
2016-10-04 19:05:46 +02:00
|
|
|
use jsonrpc_core::Error;
|
|
|
|
|
|
|
|
use v1::helpers::auto_args::{Wrap, WrapAsync, Ready};
|
2016-10-31 12:57:48 +01:00
|
|
|
use v1::types::{H160, H256, H512, U256, Bytes, Peers, Transaction, RpcSettings, Histogram};
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
build_rpc_trait! {
|
|
|
|
/// Ethcore-specific rpc interface.
|
|
|
|
pub trait Ethcore {
|
|
|
|
/// Returns current transactions limit.
|
|
|
|
#[rpc(name = "ethcore_transactionsLimit")]
|
|
|
|
fn transactions_limit(&self) -> Result<usize, Error>;
|
|
|
|
|
|
|
|
/// Returns mining extra data.
|
|
|
|
#[rpc(name = "ethcore_extraData")]
|
|
|
|
fn extra_data(&self) -> Result<Bytes, Error>;
|
|
|
|
|
|
|
|
/// Returns mining gas floor target.
|
|
|
|
#[rpc(name = "ethcore_gasFloorTarget")]
|
|
|
|
fn gas_floor_target(&self) -> Result<U256, Error>;
|
|
|
|
|
|
|
|
/// Returns mining gas floor cap.
|
|
|
|
#[rpc(name = "ethcore_gasCeilTarget")]
|
|
|
|
fn gas_ceil_target(&self) -> Result<U256, Error>;
|
|
|
|
|
|
|
|
/// Returns minimal gas price for transaction to be included in queue.
|
|
|
|
#[rpc(name = "ethcore_minGasPrice")]
|
|
|
|
fn min_gas_price(&self) -> Result<U256, Error>;
|
|
|
|
|
|
|
|
/// Returns latest logs
|
|
|
|
#[rpc(name = "ethcore_devLogs")]
|
|
|
|
fn dev_logs(&self) -> Result<Vec<String>, Error>;
|
|
|
|
|
|
|
|
/// Returns logs levels
|
|
|
|
#[rpc(name = "ethcore_devLogsLevels")]
|
|
|
|
fn dev_logs_levels(&self) -> Result<String, Error>;
|
|
|
|
|
|
|
|
/// Returns chain name
|
|
|
|
#[rpc(name = "ethcore_netChain")]
|
|
|
|
fn net_chain(&self) -> Result<String, Error>;
|
|
|
|
|
|
|
|
/// Returns peers details
|
|
|
|
#[rpc(name = "ethcore_netPeers")]
|
|
|
|
fn net_peers(&self) -> Result<Peers, Error>;
|
|
|
|
|
|
|
|
/// Returns network port
|
|
|
|
#[rpc(name = "ethcore_netPort")]
|
|
|
|
fn net_port(&self) -> Result<u16, Error>;
|
|
|
|
|
|
|
|
/// Returns rpc settings
|
|
|
|
#[rpc(name = "ethcore_rpcSettings")]
|
|
|
|
fn rpc_settings(&self) -> Result<RpcSettings, Error>;
|
|
|
|
|
|
|
|
/// Returns node name
|
|
|
|
#[rpc(name = "ethcore_nodeName")]
|
|
|
|
fn node_name(&self) -> Result<String, Error>;
|
|
|
|
|
|
|
|
/// Returns default extra data
|
|
|
|
#[rpc(name = "ethcore_defaultExtraData")]
|
|
|
|
fn default_extra_data(&self) -> Result<Bytes, Error>;
|
|
|
|
|
|
|
|
/// Returns distribution of gas price in latest blocks.
|
2016-10-31 12:57:48 +01:00
|
|
|
#[rpc(name = "ethcore_gasPriceHistogram")]
|
|
|
|
fn gas_price_histogram(&self) -> Result<Histogram, Error>;
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
/// Returns number of unsigned transactions waiting in the signer queue (if signer enabled)
|
|
|
|
/// Returns error when signer is disabled
|
|
|
|
#[rpc(name = "ethcore_unsignedTransactionsCount")]
|
|
|
|
fn unsigned_transactions_count(&self) -> Result<usize, Error>;
|
|
|
|
|
|
|
|
/// Returns a cryptographically random phrase sufficient for securely seeding a secret key.
|
|
|
|
#[rpc(name = "ethcore_generateSecretPhrase")]
|
|
|
|
fn generate_secret_phrase(&self) -> Result<String, Error>;
|
|
|
|
|
|
|
|
/// Returns whatever address would be derived from the given phrase if it were to seed a brainwallet.
|
|
|
|
#[rpc(name = "ethcore_phraseToAddress")]
|
|
|
|
fn phrase_to_address(&self, String) -> Result<H160, Error>;
|
|
|
|
|
|
|
|
/// Returns the value of the registrar for this network.
|
|
|
|
#[rpc(name = "ethcore_registryAddress")]
|
|
|
|
fn registry_address(&self) -> Result<Option<H160>, Error>;
|
|
|
|
|
|
|
|
/// Returns all addresses if Fat DB is enabled (`--fat-db`), or null if not.
|
|
|
|
#[rpc(name = "ethcore_listAccounts")]
|
|
|
|
fn list_accounts(&self) -> Result<Option<Vec<H160>>, Error>;
|
|
|
|
|
|
|
|
/// Returns all storage keys of the given address (first parameter) if Fat DB is enabled (`--fat-db`),
|
|
|
|
/// or null if not.
|
|
|
|
#[rpc(name = "ethcore_listStorageKeys")]
|
|
|
|
fn list_storage_keys(&self, H160) -> Result<Option<Vec<H256>>, Error>;
|
|
|
|
|
|
|
|
/// Encrypt some data with a public key under ECIES.
|
|
|
|
/// First parameter is the 512-byte destination public key, second is the message.
|
|
|
|
#[rpc(name = "ethcore_encryptMessage")]
|
|
|
|
fn encrypt_message(&self, H512, Bytes) -> Result<Bytes, Error>;
|
|
|
|
|
|
|
|
/// Returns all pending transactions from transaction queue.
|
|
|
|
#[rpc(name = "ethcore_pendingTransactions")]
|
|
|
|
fn pending_transactions(&self) -> Result<Vec<Transaction>, Error>;
|
|
|
|
|
|
|
|
/// Hash a file content under given URL.
|
|
|
|
#[rpc(async, name = "ethcore_hashContent")]
|
|
|
|
fn hash_content(&self, Ready<H256>, String);
|
2016-10-24 12:21:15 +02:00
|
|
|
|
|
|
|
/// Returns current Trusted Signer port or an error if signer is disabled.
|
|
|
|
#[rpc(name = "ethcore_signerPort")]
|
|
|
|
fn signer_port(&self) -> Result<u16, Error>;
|
|
|
|
|
|
|
|
/// Returns current Dapps Server port or an error if dapps server is disabled.
|
|
|
|
#[rpc(name = "ethcore_dappsPort")]
|
|
|
|
fn dapps_port(&self) -> Result<u16, Error>;
|
2016-10-27 19:29:55 +02:00
|
|
|
|
|
|
|
/// Returns next nonce for particular sender. Should include all transactions in the queue.
|
|
|
|
#[rpc(name = "ethcore_nextNonce")]
|
|
|
|
fn next_nonce(&self, H160) -> Result<U256, Error>;
|
2016-10-31 16:58:35 +01:00
|
|
|
|
|
|
|
/// Get the mode. Results one of: "active", "passive", "dark", "off".
|
|
|
|
#[rpc(name = "ethcore_mode")]
|
|
|
|
fn mode(&self) -> Result<String, Error>;
|
2016-11-02 19:43:21 +01:00
|
|
|
|
|
|
|
/// Get the enode of this node.
|
|
|
|
#[rpc(name = "ethcore_enode")]
|
|
|
|
fn enode(&self) -> Result<String, Error>;
|
2016-04-11 21:06:32 +02:00
|
|
|
}
|
2016-10-24 12:21:15 +02:00
|
|
|
}
|