2db1bc8efa
* Save to disk coconut keypair * Check verification keys of the other signers * Post verification key to chain * Add multisig propose/vote for vks * Execute the proposal * Parse announce address argument * Gateway uses chain data * Network requester uses chain data * Native&socks5 clients use chain data * Credential client signature uses chain data * Remove redundant api endpoints * Undo debugging logging * Fix some tests * Fix clippy * Fix wasm client and contract test * More contract clippy * Update CHANGELOG * Use a bigger expiry period then the testing one
19 lines
490 B
Rust
19 lines
490 B
Rust
// Copyright 2021 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
pub mod client;
|
|
#[cfg(feature = "nymd-client")]
|
|
pub mod connection_tester;
|
|
mod error;
|
|
#[cfg(feature = "nymd-client")]
|
|
pub mod nymd;
|
|
pub mod validator_api;
|
|
|
|
#[cfg(feature = "nymd-client")]
|
|
pub use crate::client::{ApiClient, CoconutApiClient};
|
|
pub use crate::error::ValidatorClientError;
|
|
pub use validator_api_requests::*;
|
|
|
|
#[cfg(feature = "nymd-client")]
|
|
pub use client::{Client, Config};
|