nym-pool-contract-common 1.20.4

Common library for the Nym Pool contract
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2025 - Nym Technologies SA <contact@nymtech.net>
// SPDX-License-Identifier: Apache-2.0

pub mod storage_keys {
    pub const CONTRACT_ADMIN: &str = "contract-admin";
    pub const POOL_DENOMINATION: &str = "pool_denom";
    pub const GRANTERS: &str = "granters";
    pub const GRANTS: &str = "grants";
    pub const TOTAL_LOCKED: &str = "total_locked";
    pub const LOCKED_GRANTEES: &str = "locked_grantees";
}