* fix(rpc-types): remove uint and hash wrappers * fix(tests) * fix(cleanup) * grumbles(rpc-api): revert `verify_signature` * revert change of `U64` -> `u64` * fix(cleanup after bad merge) * chore(bump ethereum-types) * fix(bad merge) * feat(tests ethereum-types): add tests * chore(update `ethereum-types` to 0.4.2) * feat(tests for h256) * chore(rpc): remove `ethbloom` import Use re-export from `ethereum-types` instead * fix(bad merge): remove `DefaultAccount` type * doc(add TODO with issue link)
67 lines
2.8 KiB
Rust
67 lines
2.8 KiB
Rust
// Copyright 2015-2019 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 <http://www.gnu.org/licenses/>.
|
|
|
|
//! Traces specific rpc interface.
|
|
|
|
use ethereum_types::H256;
|
|
use jsonrpc_core::Result;
|
|
use jsonrpc_derive::rpc;
|
|
use v1::types::{TraceFilter, LocalizedTrace, BlockNumber, Index, CallRequest, Bytes, TraceResults,
|
|
TraceResultsWithTransactionHash, TraceOptions};
|
|
|
|
/// Traces specific rpc interface.
|
|
#[rpc]
|
|
pub trait Traces {
|
|
/// RPC Metadata
|
|
type Metadata;
|
|
|
|
/// Returns traces matching given filter.
|
|
#[rpc(name = "trace_filter")]
|
|
fn filter(&self, TraceFilter) -> Result<Option<Vec<LocalizedTrace>>>;
|
|
|
|
/// Returns transaction trace at given index.
|
|
#[rpc(name = "trace_get")]
|
|
fn trace(&self, H256, Vec<Index>) -> Result<Option<LocalizedTrace>>;
|
|
|
|
/// Returns all traces of given transaction.
|
|
#[rpc(name = "trace_transaction")]
|
|
fn transaction_traces(&self, H256) -> Result<Option<Vec<LocalizedTrace>>>;
|
|
|
|
/// Returns all traces produced at given block.
|
|
#[rpc(name = "trace_block")]
|
|
fn block_traces(&self, BlockNumber) -> Result<Option<Vec<LocalizedTrace>>>;
|
|
|
|
/// Executes the given call and returns a number of possible traces for it.
|
|
#[rpc(name = "trace_call")]
|
|
fn call(&self, CallRequest, TraceOptions, Option<BlockNumber>) -> Result<TraceResults>;
|
|
|
|
/// Executes all given calls and returns a number of possible traces for each of it.
|
|
#[rpc(name = "trace_callMany")]
|
|
fn call_many(&self, Vec<(CallRequest, TraceOptions)>, Option<BlockNumber>) -> Result<Vec<TraceResults>>;
|
|
|
|
/// Executes the given raw transaction and returns a number of possible traces for it.
|
|
#[rpc(name = "trace_rawTransaction")]
|
|
fn raw_transaction(&self, Bytes, TraceOptions, Option<BlockNumber>) -> Result<TraceResults>;
|
|
|
|
/// Executes the transaction with the given hash and returns a number of possible traces for it.
|
|
#[rpc(name = "trace_replayTransaction")]
|
|
fn replay_transaction(&self, H256, TraceOptions) -> Result<TraceResults>;
|
|
|
|
/// Executes all the transactions at the given block and returns a number of possible traces for each transaction.
|
|
#[rpc(name = "trace_replayBlockTransactions")]
|
|
fn replay_block_transactions(&self, BlockNumber, TraceOptions) -> Result<Vec<TraceResultsWithTransactionHash>>;
|
|
}
|