76a61cb3ae
* Import cw3-flex-multisig and cw4-group contracts * Add release_funds to coconut-bandwidth-contract * Create contract.rs file * Add cw multi test and a test that uses it * Use mnemonic for coconut mode too * Stricter access to config file, which contains mnemonic * Update tests * Remove signed deposits dir after merging that into sql db * Clippy nits * More clippy * Remove backtraces features to pass clippy tests * Merge the same mnemonic for rewarding and coconut * Simplify things, letting network monitor use testnet-mode with gateways * Unify the nymd clients * Sqlx common storage for buying/consuming credentials * Link credential storage to credential client * Trigger rewarded_set update on bootstrap error * Fix bug on message signing * Simplify coconut feature in code and set it in validator-api * Update some local consts * Link clients to credential storage * Simplify sql query and change socks5 too * Update attr handling such that public ones are usable * Normalize test addresses * Fix clippy * Merge storages for (non)coconut creds * Fmt miss * Disable wasm client support for now Co-authored-by: durch <durch@users.noreply.github.com>
46 lines
1.3 KiB
Rust
46 lines
1.3 KiB
Rust
// Copyright 2022 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
use thiserror::Error;
|
|
|
|
use credential_storage::error::StorageError;
|
|
use credentials::error::Error as CredentialError;
|
|
use crypto::asymmetric::encryption::KeyRecoveryError;
|
|
use crypto::asymmetric::identity::Ed25519RecoveryError;
|
|
use validator_client::nymd::error::NymdError;
|
|
|
|
pub type Result<T> = std::result::Result<T, CredentialClientError>;
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum CredentialClientError {
|
|
#[error("Nymd error: {0}")]
|
|
Nymd(#[from] NymdError),
|
|
|
|
#[error("Credential error: {0}")]
|
|
Credential(#[from] CredentialError),
|
|
|
|
#[error("No previous deposit with that tx hash")]
|
|
NoDeposit,
|
|
|
|
#[error("Wrong number of attributes")]
|
|
WrongAttributeNumber,
|
|
|
|
#[error("Could not find any backed up blind sign request data")]
|
|
NoLocalBlindSignRequest,
|
|
|
|
#[error("The local blind sign request data is corrupted")]
|
|
CorruptedBlindSignRequest,
|
|
|
|
#[error("The tx hash provided is not valid")]
|
|
InvalidTxHash,
|
|
|
|
#[error("Could not parse Ed25519 data")]
|
|
Ed25519ParseError(#[from] Ed25519RecoveryError),
|
|
|
|
#[error("Could not parse X25519 data")]
|
|
X25519ParseError(#[from] KeyRecoveryError),
|
|
|
|
#[error("Could not use shared storage")]
|
|
SharedStorageError(#[from] StorageError),
|
|
}
|