1 2 3 4 5 6 7 8 9 10 11
// Copyright 2024 - Nym Technologies SA <contact@nymtech.net> // SPDX-License-Identifier: Apache-2.0 use cosmwasm_schema::cw_serde; use cosmwasm_std::Coin; #[cw_serde] pub struct PoolCounters { pub total_deposited: Coin, pub total_redeemed: Coin, }