6de0c4ce92
* initialised basic structure for the performance contract * shared code for contract testing * unified common testing methods between performance and nym pool contracts * impl of ExecuteMsg for the contract * impl of QueryMsg for the contract * setting initial authorised NMs during instantiation * additional tests and fixes * ibid * scaffolding for client traits * completed client traits * clippy * naive add performance contract to testnet manager * placeholder values for the performance contract address * introduced admin messages to purge old measurements from the storage * introduced check ensuring performance data is only added to bonded nodes
14 lines
240 B
Rust
14 lines
240 B
Rust
// Copyright 2025 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
pub mod contract;
|
|
pub mod queued_migrations;
|
|
pub mod storage;
|
|
|
|
mod helpers;
|
|
mod queries;
|
|
mod transactions;
|
|
|
|
#[cfg(test)]
|
|
pub mod testing;
|