2017-04-03 09:40:18 +02:00
|
|
|
// 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/>.
|
|
|
|
|
|
|
|
//! Native contracts useful for Parity. These are type-safe wrappers
|
|
|
|
//! autogenerated at compile-time from Ethereum ABIs, and can be instantiated
|
|
|
|
//! given any closure which can dispatch calls to them asynchronously.
|
|
|
|
|
|
|
|
extern crate futures;
|
|
|
|
extern crate byteorder;
|
|
|
|
extern crate ethabi;
|
2017-08-04 15:45:47 +02:00
|
|
|
extern crate ethcore_bigint as bigint;
|
2017-04-03 09:40:18 +02:00
|
|
|
|
2017-08-07 18:54:05 +02:00
|
|
|
mod key_server_set;
|
2017-04-03 09:40:18 +02:00
|
|
|
mod registry;
|
2017-05-18 12:44:09 +02:00
|
|
|
mod urlhint;
|
2017-04-03 09:40:18 +02:00
|
|
|
mod service_transaction;
|
2017-04-03 17:46:51 +02:00
|
|
|
mod secretstore_acl_storage;
|
2017-04-12 15:54:23 +02:00
|
|
|
mod validator_set;
|
|
|
|
mod validator_report;
|
2017-08-29 14:38:01 +02:00
|
|
|
mod peer_set;
|
2017-04-03 09:40:18 +02:00
|
|
|
|
2017-05-17 12:41:33 +02:00
|
|
|
pub mod test_contracts;
|
|
|
|
|
2017-08-07 18:54:05 +02:00
|
|
|
pub use self::key_server_set::KeyServerSet;
|
2017-04-03 09:40:18 +02:00
|
|
|
pub use self::registry::Registry;
|
2017-05-18 12:44:09 +02:00
|
|
|
pub use self::urlhint::Urlhint;
|
2017-04-03 09:40:18 +02:00
|
|
|
pub use self::service_transaction::ServiceTransactionChecker;
|
2017-04-03 17:46:51 +02:00
|
|
|
pub use self::secretstore_acl_storage::SecretStoreAclStorage;
|
2017-04-12 15:54:23 +02:00
|
|
|
pub use self::validator_set::ValidatorSet;
|
|
|
|
pub use self::validator_report::ValidatorReport;
|
2017-08-29 14:38:01 +02:00
|
|
|
pub use self::peer_set::PeerSet;
|