2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-04-11 21:06:32 +02:00
|
|
|
// 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-11-06 12:51:53 +01:00
|
|
|
//! Parity-specific rpc interface.
|
2016-10-04 19:05:46 +02:00
|
|
|
|
2016-11-06 12:51:53 +01:00
|
|
|
use std::collections::BTreeMap;
|
2016-12-13 14:27:27 +01:00
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
use jsonrpc_core::{BoxFuture, Result};
|
2016-12-13 14:27:27 +01:00
|
|
|
use jsonrpc_macros::Trailing;
|
|
|
|
|
2017-08-28 14:11:55 +02:00
|
|
|
use node_health::Health;
|
2016-11-16 17:54:54 +01:00
|
|
|
use v1::types::{
|
2017-09-26 14:17:07 +02:00
|
|
|
H160, H256, H512, U256, U64, Bytes, CallRequest,
|
2016-11-16 17:54:54 +01:00
|
|
|
Peers, Transaction, RpcSettings, Histogram,
|
|
|
|
TransactionStats, LocalTransactionStatus,
|
2016-12-12 02:57:19 +01:00
|
|
|
BlockNumber, ConsensusCapability, VersionInfo,
|
2016-12-23 18:52:02 +01:00
|
|
|
OperationsInfo, DappId, ChainStatus,
|
2017-04-03 11:37:07 +02:00
|
|
|
AccountInfo, HwAccountInfo, RichHeader,
|
2016-11-16 17:54:54 +01:00
|
|
|
};
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
build_rpc_trait! {
|
2016-11-06 12:51:53 +01:00
|
|
|
/// Parity-specific rpc interface.
|
|
|
|
pub trait Parity {
|
2017-01-30 11:10:58 +01:00
|
|
|
type Metadata;
|
|
|
|
|
2016-12-23 18:52:02 +01:00
|
|
|
/// Returns accounts information.
|
|
|
|
#[rpc(name = "parity_accountsInfo")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn accounts_info(&self, Trailing<DappId>) -> Result<BTreeMap<H160, AccountInfo>>;
|
2017-02-10 01:07:06 +01:00
|
|
|
|
|
|
|
/// Returns hardware accounts information.
|
|
|
|
#[rpc(name = "parity_hardwareAccountsInfo")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn hardware_accounts_info(&self) -> Result<BTreeMap<H160, HwAccountInfo>>;
|
2016-12-23 18:52:02 +01:00
|
|
|
|
2017-09-14 19:28:43 +02:00
|
|
|
/// Get a list of paths to locked hardware wallets
|
|
|
|
#[rpc(name = "parity_lockedHardwareAccountsInfo")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn locked_hardware_accounts_info(&self) -> Result<Vec<String>>;
|
2017-09-14 19:28:43 +02:00
|
|
|
|
2017-01-30 11:10:58 +01:00
|
|
|
/// Returns default account for dapp.
|
|
|
|
#[rpc(meta, name = "parity_defaultAccount")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn default_account(&self, Self::Metadata) -> Result<H160>;
|
2017-01-30 11:10:58 +01:00
|
|
|
|
2016-10-04 19:05:46 +02:00
|
|
|
/// Returns current transactions limit.
|
2016-11-06 12:51:53 +01:00
|
|
|
#[rpc(name = "parity_transactionsLimit")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn transactions_limit(&self) -> Result<usize>;
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
/// Returns mining extra data.
|
2016-11-06 12:51:53 +01:00
|
|
|
#[rpc(name = "parity_extraData")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn extra_data(&self) -> Result<Bytes>;
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
/// Returns mining gas floor target.
|
2016-11-06 12:51:53 +01:00
|
|
|
#[rpc(name = "parity_gasFloorTarget")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn gas_floor_target(&self) -> Result<U256>;
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
/// Returns mining gas floor cap.
|
2016-11-06 12:51:53 +01:00
|
|
|
#[rpc(name = "parity_gasCeilTarget")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn gas_ceil_target(&self) -> Result<U256>;
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
/// Returns minimal gas price for transaction to be included in queue.
|
2016-11-06 12:51:53 +01:00
|
|
|
#[rpc(name = "parity_minGasPrice")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn min_gas_price(&self) -> Result<U256>;
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
/// Returns latest logs
|
2016-11-06 12:51:53 +01:00
|
|
|
#[rpc(name = "parity_devLogs")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn dev_logs(&self) -> Result<Vec<String>>;
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
/// Returns logs levels
|
2016-11-06 12:51:53 +01:00
|
|
|
#[rpc(name = "parity_devLogsLevels")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn dev_logs_levels(&self) -> Result<String>;
|
2016-10-04 19:05:46 +02:00
|
|
|
|
2017-03-13 12:10:53 +01:00
|
|
|
/// Returns chain name - DEPRECATED. Use `parity_chainName` instead.
|
2016-11-06 12:51:53 +01:00
|
|
|
#[rpc(name = "parity_netChain")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn net_chain(&self) -> Result<String>;
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
/// Returns peers details
|
2016-11-06 12:51:53 +01:00
|
|
|
#[rpc(name = "parity_netPeers")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn net_peers(&self) -> Result<Peers>;
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
/// Returns network port
|
2016-11-06 12:51:53 +01:00
|
|
|
#[rpc(name = "parity_netPort")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn net_port(&self) -> Result<u16>;
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
/// Returns rpc settings
|
2016-11-06 12:51:53 +01:00
|
|
|
#[rpc(name = "parity_rpcSettings")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn rpc_settings(&self) -> Result<RpcSettings>;
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
/// Returns node name
|
2016-11-06 12:51:53 +01:00
|
|
|
#[rpc(name = "parity_nodeName")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn node_name(&self) -> Result<String>;
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
/// Returns default extra data
|
2016-11-06 12:51:53 +01:00
|
|
|
#[rpc(name = "parity_defaultExtraData")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn default_extra_data(&self) -> Result<Bytes>;
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
/// Returns distribution of gas price in latest blocks.
|
2017-10-05 12:35:01 +02:00
|
|
|
#[rpc(name = "parity_gasPriceHistogram")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn gas_price_histogram(&self) -> BoxFuture<Histogram>;
|
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
|
2016-11-06 12:51:53 +01:00
|
|
|
#[rpc(name = "parity_unsignedTransactionsCount")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn unsigned_transactions_count(&self) -> Result<usize>;
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
/// Returns a cryptographically random phrase sufficient for securely seeding a secret key.
|
2016-11-06 12:51:53 +01:00
|
|
|
#[rpc(name = "parity_generateSecretPhrase")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn generate_secret_phrase(&self) -> Result<String>;
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
/// Returns whatever address would be derived from the given phrase if it were to seed a brainwallet.
|
2016-11-06 12:51:53 +01:00
|
|
|
#[rpc(name = "parity_phraseToAddress")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn phrase_to_address(&self, String) -> Result<H160>;
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
/// Returns the value of the registrar for this network.
|
2016-11-06 12:51:53 +01:00
|
|
|
#[rpc(name = "parity_registryAddress")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn registry_address(&self) -> Result<Option<H160>>;
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
/// Returns all addresses if Fat DB is enabled (`--fat-db`), or null if not.
|
2016-11-06 12:51:53 +01:00
|
|
|
#[rpc(name = "parity_listAccounts")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn list_accounts(&self, u64, Option<H160>, Trailing<BlockNumber>) -> Result<Option<Vec<H160>>>;
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
/// Returns all storage keys of the given address (first parameter) if Fat DB is enabled (`--fat-db`),
|
|
|
|
/// or null if not.
|
2016-11-06 12:51:53 +01:00
|
|
|
#[rpc(name = "parity_listStorageKeys")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn list_storage_keys(&self, H160, u64, Option<H256>, Trailing<BlockNumber>) -> Result<Option<Vec<H256>>>;
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
/// Encrypt some data with a public key under ECIES.
|
|
|
|
/// First parameter is the 512-byte destination public key, second is the message.
|
2016-11-06 12:51:53 +01:00
|
|
|
#[rpc(name = "parity_encryptMessage")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn encrypt_message(&self, H512, Bytes) -> Result<Bytes>;
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
/// Returns all pending transactions from transaction queue.
|
2016-11-06 12:51:53 +01:00
|
|
|
#[rpc(name = "parity_pendingTransactions")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn pending_transactions(&self) -> Result<Vec<Transaction>>;
|
2016-10-04 19:05:46 +02:00
|
|
|
|
2018-04-13 17:34:27 +02:00
|
|
|
/// Returns all transactions from transaction queue.
|
|
|
|
///
|
|
|
|
/// Some of them might not be ready to be included in a block yet.
|
|
|
|
#[rpc(name = "parity_allTransactions")]
|
|
|
|
fn all_transactions(&self) -> Result<Vec<Transaction>>;
|
|
|
|
|
|
|
|
/// Returns all future transactions from transaction queue (deprecated)
|
2016-12-15 18:19:19 +01:00
|
|
|
#[rpc(name = "parity_futureTransactions")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn future_transactions(&self) -> Result<Vec<Transaction>>;
|
2016-12-15 18:19:19 +01:00
|
|
|
|
2016-11-16 13:37:21 +01:00
|
|
|
/// Returns propagation statistics on transactions pending in the queue.
|
|
|
|
#[rpc(name = "parity_pendingTransactionsStats")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn pending_transactions_stats(&self) -> Result<BTreeMap<H256, TransactionStats>>;
|
2016-11-16 13:37:21 +01:00
|
|
|
|
2016-11-16 17:54:54 +01:00
|
|
|
/// Returns a list of current and past local transactions with status details.
|
|
|
|
#[rpc(name = "parity_localTransactions")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn local_transactions(&self) -> Result<BTreeMap<H256, LocalTransactionStatus>>;
|
2016-11-16 17:54:54 +01:00
|
|
|
|
2017-05-24 12:24:07 +02:00
|
|
|
/// Returns current Dapps Server interface and port or an error if dapps server is disabled.
|
|
|
|
#[rpc(name = "parity_dappsUrl")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn dapps_url(&self) -> Result<String>;
|
2016-10-24 12:21:15 +02:00
|
|
|
|
2017-05-24 12:24:07 +02:00
|
|
|
/// Returns current WS Server interface and port or an error if ws server is disabled.
|
|
|
|
#[rpc(name = "parity_wsUrl")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn ws_url(&self) -> Result<String>;
|
2016-11-09 19:41:47 +01:00
|
|
|
|
2016-10-27 19:29:55 +02:00
|
|
|
/// Returns next nonce for particular sender. Should include all transactions in the queue.
|
2017-10-05 12:35:01 +02:00
|
|
|
#[rpc(name = "parity_nextNonce")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn next_nonce(&self, H160) -> BoxFuture<U256>;
|
2016-10-31 16:58:35 +01:00
|
|
|
|
2017-03-13 12:10:53 +01:00
|
|
|
/// Get the mode. Returns one of: "active", "passive", "dark", "offline".
|
2016-11-06 12:51:53 +01:00
|
|
|
#[rpc(name = "parity_mode")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn mode(&self) -> Result<String>;
|
2016-11-02 19:43:21 +01:00
|
|
|
|
2017-09-26 14:17:07 +02:00
|
|
|
/// Returns the chain ID used for transaction signing at the
|
2018-04-19 11:24:19 +02:00
|
|
|
/// current best block. None is returned if not
|
2017-09-26 14:17:07 +02:00
|
|
|
/// available.
|
|
|
|
#[rpc(name = "parity_chainId")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn chain_id(&self) -> Result<Option<U64>>;
|
2017-09-26 14:17:07 +02:00
|
|
|
|
2017-03-13 12:10:53 +01:00
|
|
|
/// Get the chain name. Returns one of: "foundation", "kovan", &c. of a filename.
|
|
|
|
#[rpc(name = "parity_chain")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn chain(&self) -> Result<String>;
|
2017-03-13 12:10:53 +01:00
|
|
|
|
2016-11-02 19:43:21 +01:00
|
|
|
/// Get the enode of this node.
|
2016-11-06 12:51:53 +01:00
|
|
|
#[rpc(name = "parity_enode")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn enode(&self) -> Result<String>;
|
2016-11-06 12:51:53 +01:00
|
|
|
|
2016-12-11 23:36:38 +01:00
|
|
|
/// Returns information on current consensus capability.
|
|
|
|
#[rpc(name = "parity_consensusCapability")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn consensus_capability(&self) -> Result<ConsensusCapability>;
|
2016-12-12 02:57:19 +01:00
|
|
|
|
|
|
|
/// Get our version information in a nice object.
|
|
|
|
#[rpc(name = "parity_versionInfo")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn version_info(&self) -> Result<VersionInfo>;
|
2016-12-12 02:57:19 +01:00
|
|
|
|
|
|
|
/// Get information concerning the latest releases if available.
|
|
|
|
#[rpc(name = "parity_releasesInfo")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn releases_info(&self) -> Result<Option<OperationsInfo>>;
|
2016-12-19 15:27:17 +01:00
|
|
|
|
|
|
|
/// Get the current chain status.
|
|
|
|
#[rpc(name = "parity_chainStatus")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn chain_status(&self) -> Result<ChainStatus>;
|
2017-03-27 17:30:19 +02:00
|
|
|
|
|
|
|
/// Get node kind info.
|
|
|
|
#[rpc(name = "parity_nodeKind")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn node_kind(&self) -> Result<::v1::types::NodeKind>;
|
2017-04-03 11:37:07 +02:00
|
|
|
|
|
|
|
/// Get block header.
|
|
|
|
/// Same as `eth_getBlockByNumber` but without uncles and transactions.
|
2017-10-05 12:35:01 +02:00
|
|
|
#[rpc(name = "parity_getBlockHeaderByNumber")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn block_header(&self, Trailing<BlockNumber>) -> BoxFuture<RichHeader>;
|
2017-04-10 19:53:53 +02:00
|
|
|
|
2017-04-08 13:35:23 +02:00
|
|
|
/// Get IPFS CIDv0 given protobuf encoded bytes.
|
|
|
|
#[rpc(name = "parity_cidV0")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn ipfs_cid(&self, Bytes) -> Result<String>;
|
2017-08-04 15:58:14 +02:00
|
|
|
|
|
|
|
/// Call contract, returning the output data.
|
2017-08-15 10:23:28 +02:00
|
|
|
#[rpc(meta, name = "parity_call")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn call(&self, Self::Metadata, Vec<CallRequest>, Trailing<BlockNumber>) -> Result<Vec<Bytes>>;
|
2017-08-28 14:11:55 +02:00
|
|
|
|
|
|
|
/// Returns node's health report.
|
2017-10-05 12:35:01 +02:00
|
|
|
#[rpc(name = "parity_nodeHealth")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn node_health(&self) -> BoxFuture<Health>;
|
2016-04-11 21:06:32 +02:00
|
|
|
}
|
2016-10-24 12:21:15 +02:00
|
|
|
}
|