516561dcf9
* separated signing and nyxd-client features * updated cosmrs to the most recent version * using tendermint_rpc directly for the Client trait * fixed rest of the codebase * removed nyxd-client feature * export more types * clippy that seems to have been skipped in makefile
19 lines
426 B
Rust
19 lines
426 B
Rust
// Copyright 2021 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
pub mod client;
|
|
#[cfg(feature = "http-client")]
|
|
pub mod connection_tester;
|
|
pub mod error;
|
|
pub mod nym_api;
|
|
pub mod nyxd;
|
|
|
|
#[cfg(feature = "signing")]
|
|
pub mod signing;
|
|
|
|
pub use crate::error::ValidatorClientError;
|
|
pub use client::NymApiClient;
|
|
pub use nym_api_requests::*;
|
|
|
|
pub use client::{Client, CoconutApiClient, Config};
|