f7574924a8
* Extracted constants that could realistically be controlled by governance to constants.rs Also made interval control be more explicit in the contract * Extracted active set work factor to a constant * Required type changes in wallet code * [ci skip] Generate TS types * Missing change in test code Co-authored-by: jstuczyn <jstuczyn@users.noreply.github.com>
14 lines
261 B
Rust
14 lines
261 B
Rust
// Copyright 2021 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
mod constants;
|
|
pub mod contract;
|
|
mod delegations;
|
|
mod error;
|
|
mod gateways;
|
|
mod interval;
|
|
mod mixnet_contract_settings;
|
|
mod mixnodes;
|
|
mod rewards;
|
|
mod support;
|