fc98c497b4
* added new dkg execute methods for ownership transfer and announce address update * cherry-pick TestableNymContract for the dkg contract from #5091 * tests * schema fixes * removed old queued migrations
21 lines
409 B
Rust
21 lines
409 B
Rust
// Copyright 2022 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
use cosmwasm_std::Addr;
|
|
|
|
pub(crate) type Dealer<'a> = &'a Addr;
|
|
|
|
mod constants;
|
|
pub mod contract;
|
|
mod dealers;
|
|
mod dealings;
|
|
mod epoch_state;
|
|
pub mod error;
|
|
mod queued_migrations;
|
|
mod state;
|
|
mod support;
|
|
mod verification_key_shares;
|
|
|
|
#[cfg(feature = "testable-dkg-contract")]
|
|
pub mod testable_dkg_contract;
|