1ad97adc7c
* Replace expect with error * Move PersistentStorage in separate file * Add in-memory cred manager * Make wasm and mobile build * Unify wasm and mobile cred storage * Network defaults has mainnet default * Add network_details to SDK * Move BandwidthController in its own crate * Move out credential into lib crate * Remove nyxd arg in credential binary * Use acquire cred in sdk * Add example file, in sandbox * Mobile lock file * Update changelog * Clearer builder methods and more documentation for them * Sign only amount, without denom * Toggle credentials mode on when enabled
18 lines
374 B
Rust
18 lines
374 B
Rust
// Copyright 2022-2023 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
use std::marker::PhantomData;
|
|
|
|
pub struct DirectSigningNyxdClient {}
|
|
|
|
pub trait DkgQueryClient {}
|
|
|
|
// impl CosmWasmClient for DirectSigningNyxdClient {}
|
|
|
|
#[derive(Clone)]
|
|
pub struct Client<C> {
|
|
_phantom: PhantomData<C>,
|
|
}
|
|
|
|
impl<C> DkgQueryClient for Client<C> {}
|