3991178b8d
* helpers-1 * helpers2-impls1 * small adjustments1 * cleanup-2 * small changes * helper-impl-cleanup-finished * test-update * merge fix * merge fix * merge fix2 * fix tests * fix tests2 * fix tests3
62 lines
1.9 KiB
Rust
62 lines
1.9 KiB
Rust
// Copyright 2015-2017 Parity Technologies (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 rpc v1.
|
|
//!
|
|
//! Compliant with ethereum rpc.
|
|
|
|
// short for "try_boxfuture"
|
|
// unwrap a result, returning a BoxFuture<_, Err> on failure.
|
|
macro_rules! try_bf {
|
|
($res: expr) => {
|
|
match $res {
|
|
Ok(val) => val,
|
|
Err(e) => return ::futures::future::err(e.into()).boxed(),
|
|
}
|
|
}
|
|
}
|
|
|
|
#[macro_use]
|
|
mod helpers;
|
|
mod impls;
|
|
mod types;
|
|
#[cfg(test)]
|
|
mod tests;
|
|
|
|
pub mod extractors;
|
|
pub mod informant;
|
|
pub mod metadata;
|
|
pub mod traits;
|
|
|
|
pub use self::traits::{Web3, Eth, EthFilter, EthPubSub, EthSigning, Net, Parity, ParityAccounts, ParitySet, ParitySigning, PubSub, Signer, Personal, Traces, Rpc, SecretStore};
|
|
pub use self::impls::*;
|
|
pub use self::helpers::{NetworkSettings, block_import, dispatch};
|
|
pub use self::metadata::Metadata;
|
|
pub use self::types::Origin;
|
|
pub use self::extractors::{RpcExtractor, WsExtractor, WsStats, WsDispatcher};
|
|
|
|
/// Signer utilities
|
|
pub mod signer {
|
|
pub use super::helpers::{SigningQueue, SignerService, ConfirmationsQueue};
|
|
pub use super::types::{ConfirmationRequest, TransactionModification, U256, TransactionCondition};
|
|
}
|
|
|
|
/// Dapps integration utilities
|
|
pub mod dapps {
|
|
pub use super::helpers::dapps::DappsService;
|
|
pub use super::types::LocalDapp;
|
|
}
|