nym-validator-client 1.21.2

Client for interacting with Nyx Cosmos SDK blockchain
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
// Copyright 2021-2023 - Nym Technologies SA <contact@nymtech.net>
// SPDX-License-Identifier: Apache-2.0

use crate::collect_paged;
use crate::nyxd::coin::Coin;
use crate::nyxd::contract_traits::NymContractsProvider;
use crate::nyxd::error::NyxdError;
use crate::nyxd::CosmWasmClient;
use async_trait::async_trait;
use cosmwasm_std::{Coin as CosmWasmCoin, Timestamp};
use nym_contracts_common::ContractBuildInformation;
use nym_mixnet_contract_common::NodeId;
use nym_vesting_contract_common::{
    messages::QueryMsg as VestingQueryMsg, Account, AccountVestingCoins, AccountsResponse,
    AllDelegationsResponse, BaseVestingAccountInfo, DelegationTimesResponse,
    OriginalVestingResponse, Period, PledgeData, VestingCoinsResponse, VestingDelegation,
};
use serde::Deserialize;

#[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
#[cfg_attr(not(target_arch = "wasm32"), async_trait)]
pub trait VestingQueryClient {
    async fn query_vesting_contract<T>(&self, query: VestingQueryMsg) -> Result<T, NyxdError>
    where
        for<'a> T: Deserialize<'a>;

    async fn get_vesting_contract_version(&self) -> Result<ContractBuildInformation, NyxdError> {
        self.query_vesting_contract(VestingQueryMsg::GetContractVersion {})
            .await
    }

    async fn get_vesting_contract_cw2_version(&self) -> Result<cw2::ContractVersion, NyxdError> {
        self.query_vesting_contract(VestingQueryMsg::GetCW2ContractVersion {})
            .await
    }

    async fn get_all_accounts_paged(
        &self,
        start_next_after: Option<String>,
        limit: Option<u32>,
    ) -> Result<AccountsResponse, NyxdError> {
        self.query_vesting_contract(VestingQueryMsg::GetAccountsPaged {
            start_next_after,
            limit,
        })
        .await
    }

    async fn get_all_accounts_vesting_coins_paged(
        &self,
        start_next_after: Option<String>,
        limit: Option<u32>,
    ) -> Result<VestingCoinsResponse, NyxdError> {
        self.query_vesting_contract(VestingQueryMsg::GetAccountsVestingCoinsPaged {
            start_next_after,
            limit,
        })
        .await
    }

    async fn locked_coins(
        &self,
        vesting_account_address: &str,
        block_time: Option<Timestamp>,
    ) -> Result<Coin, NyxdError> {
        self.query_vesting_contract::<CosmWasmCoin>(VestingQueryMsg::LockedCoins {
            vesting_account_address: vesting_account_address.to_string(),
            block_time,
        })
        .await
        .map(Into::into)
    }

    async fn spendable_coins(
        &self,
        vesting_account_address: &str,
        block_time: Option<Timestamp>,
    ) -> Result<Coin, NyxdError> {
        self.query_vesting_contract::<CosmWasmCoin>(VestingQueryMsg::SpendableCoins {
            vesting_account_address: vesting_account_address.to_string(),
            block_time,
        })
        .await
        .map(Into::into)
    }

    async fn vested_coins(
        &self,
        vesting_account_address: &str,
        block_time: Option<Timestamp>,
    ) -> Result<Coin, NyxdError> {
        self.query_vesting_contract::<CosmWasmCoin>(VestingQueryMsg::GetVestedCoins {
            vesting_account_address: vesting_account_address.to_string(),
            block_time,
        })
        .await
        .map(Into::into)
    }

    async fn vesting_coins(
        &self,
        vesting_account_address: &str,
        block_time: Option<Timestamp>,
    ) -> Result<Coin, NyxdError> {
        self.query_vesting_contract::<CosmWasmCoin>(VestingQueryMsg::GetVestingCoins {
            vesting_account_address: vesting_account_address.to_string(),
            block_time,
        })
        .await
        .map(Into::into)
    }

    async fn vesting_start_time(
        &self,
        vesting_account_address: &str,
    ) -> Result<Timestamp, NyxdError> {
        self.query_vesting_contract(VestingQueryMsg::GetStartTime {
            vesting_account_address: vesting_account_address.to_string(),
        })
        .await
    }

    async fn vesting_end_time(
        &self,
        vesting_account_address: &str,
    ) -> Result<Timestamp, NyxdError> {
        self.query_vesting_contract(VestingQueryMsg::GetEndTime {
            vesting_account_address: vesting_account_address.to_string(),
        })
        .await
    }

    async fn original_vesting(
        &self,
        vesting_account_address: &str,
    ) -> Result<OriginalVestingResponse, NyxdError> {
        self.query_vesting_contract(VestingQueryMsg::GetOriginalVesting {
            vesting_account_address: vesting_account_address.to_string(),
        })
        .await
    }

    async fn get_historical_vesting_staking_reward(
        &self,
        vesting_account_address: &str,
    ) -> Result<Coin, NyxdError> {
        self.query_vesting_contract::<CosmWasmCoin>(
            VestingQueryMsg::GetHistoricalVestingStakingReward {
                vesting_account_address: vesting_account_address.to_string(),
            },
        )
        .await
        .map(Into::into)
    }

    async fn get_spendable_vested_coins(
        &self,
        vesting_account_address: &str,
    ) -> Result<Coin, NyxdError> {
        self.query_vesting_contract::<CosmWasmCoin>(VestingQueryMsg::GetSpendableVestedCoins {
            vesting_account_address: vesting_account_address.to_string(),
        })
        .await
        .map(Into::into)
    }

    async fn get_spendable_reward_coins(
        &self,
        vesting_account_address: &str,
    ) -> Result<Coin, NyxdError> {
        self.query_vesting_contract::<CosmWasmCoin>(VestingQueryMsg::GetSpendableRewardCoins {
            vesting_account_address: vesting_account_address.to_string(),
        })
        .await
        .map(Into::into)
    }

    async fn get_delegated_coins(&self, vesting_account_address: &str) -> Result<Coin, NyxdError> {
        self.query_vesting_contract::<CosmWasmCoin>(VestingQueryMsg::GetDelegatedCoins {
            vesting_account_address: vesting_account_address.to_string(),
        })
        .await
        .map(Into::into)
    }

    async fn get_pledged_coins(&self, vesting_account_address: &str) -> Result<Coin, NyxdError> {
        self.query_vesting_contract::<CosmWasmCoin>(VestingQueryMsg::GetPledgedCoins {
            vesting_account_address: vesting_account_address.to_string(),
        })
        .await
        .map(Into::into)
    }

    async fn get_staked_coins(&self, vesting_account_address: &str) -> Result<Coin, NyxdError> {
        self.query_vesting_contract::<CosmWasmCoin>(VestingQueryMsg::GetStakedCoins {
            vesting_account_address: vesting_account_address.to_string(),
        })
        .await
        .map(Into::into)
    }

    async fn get_withdrawn_coins(&self, vesting_account_address: &str) -> Result<Coin, NyxdError> {
        self.query_vesting_contract::<CosmWasmCoin>(VestingQueryMsg::GetWithdrawnCoins {
            vesting_account_address: vesting_account_address.to_string(),
        })
        .await
        .map(Into::into)
    }

    async fn get_account(&self, address: &str) -> Result<Account, NyxdError> {
        self.query_vesting_contract(VestingQueryMsg::GetAccount {
            address: address.to_string(),
        })
        .await
    }

    async fn get_mixnode_pledge(&self, address: &str) -> Result<Option<PledgeData>, NyxdError> {
        self.query_vesting_contract(VestingQueryMsg::GetMixnode {
            address: address.to_string(),
        })
        .await
    }

    async fn get_gateway_pledge(&self, address: &str) -> Result<Option<PledgeData>, NyxdError> {
        self.query_vesting_contract(VestingQueryMsg::GetGateway {
            address: address.to_string(),
        })
        .await
    }

    async fn get_current_vesting_period(&self, address: &str) -> Result<Period, NyxdError> {
        self.query_vesting_contract(VestingQueryMsg::GetCurrentVestingPeriod {
            address: address.to_string(),
        })
        .await
    }

    async fn get_vesting_delegation(
        &self,
        address: &str,
        mix_id: NodeId,
        block_timestamp_secs: u64,
    ) -> Result<VestingDelegation, NyxdError> {
        self.query_vesting_contract(VestingQueryMsg::GetDelegation {
            address: address.to_string(),
            mix_id,
            block_timestamp_secs,
        })
        .await
    }

    async fn get_total_delegation_amount(
        &self,
        address: &str,
        mix_id: NodeId,
    ) -> Result<Coin, NyxdError> {
        self.query_vesting_contract(VestingQueryMsg::GetTotalDelegationAmount {
            address: address.to_string(),
            mix_id,
        })
        .await
    }

    async fn get_delegation_timestamps(
        &self,
        address: &str,
        mix_id: NodeId,
    ) -> Result<DelegationTimesResponse, NyxdError> {
        self.query_vesting_contract(VestingQueryMsg::GetDelegationTimes {
            address: address.to_string(),
            mix_id,
        })
        .await
    }

    async fn get_all_vesting_delegations_paged(
        &self,
        start_after: Option<(u32, NodeId, u64)>,
        limit: Option<u32>,
    ) -> Result<AllDelegationsResponse, NyxdError> {
        self.query_vesting_contract(VestingQueryMsg::GetAllDelegations { start_after, limit })
            .await
    }
}

#[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
#[cfg_attr(not(target_arch = "wasm32"), async_trait)]
pub trait PagedVestingQueryClient: VestingQueryClient {
    async fn get_all_vesting_delegations(&self) -> Result<Vec<VestingDelegation>, NyxdError> {
        collect_paged!(self, get_all_vesting_delegations_paged, delegations)
    }

    async fn get_all_accounts_info(&self) -> Result<Vec<BaseVestingAccountInfo>, NyxdError> {
        collect_paged!(self, get_all_accounts_paged, accounts)
    }

    async fn get_all_accounts_vesting_coins(&self) -> Result<Vec<AccountVestingCoins>, NyxdError> {
        collect_paged!(self, get_all_accounts_vesting_coins_paged, accounts)
    }
}

#[async_trait]
impl<T> PagedVestingQueryClient for T where T: VestingQueryClient {}

#[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
#[cfg_attr(not(target_arch = "wasm32"), async_trait)]
impl<C> VestingQueryClient for C
where
    C: CosmWasmClient + NymContractsProvider + Send + Sync,
{
    async fn query_vesting_contract<T>(&self, query: VestingQueryMsg) -> Result<T, NyxdError>
    where
        for<'a> T: Deserialize<'a>,
    {
        let vesting_contract_address = &self
            .vesting_contract_address()
            .ok_or_else(|| NyxdError::unavailable_contract_address("vesting contract"))?;
        self.query_contract_smart(vesting_contract_address, &query)
            .await
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::nyxd::contract_traits::tests::IgnoreValue;

    // it's enough that this compiles and clippy is happy about it
    #[allow(dead_code)]
    fn all_query_variants_are_covered<C: VestingQueryClient + Send + Sync>(
        client: C,
        msg: VestingQueryMsg,
    ) {
        match msg {
            VestingQueryMsg::GetContractVersion {} => {
                client.get_vesting_contract_version().ignore()
            }
            VestingQueryMsg::GetCW2ContractVersion {} => {
                client.get_vesting_contract_cw2_version().ignore()
            }
            VestingQueryMsg::GetAccountsPaged {
                start_next_after,
                limit,
            } => client
                .get_all_accounts_paged(start_next_after, limit)
                .ignore(),
            VestingQueryMsg::GetAccountsVestingCoinsPaged {
                start_next_after,
                limit,
            } => client
                .get_all_accounts_vesting_coins_paged(start_next_after, limit)
                .ignore(),
            VestingQueryMsg::LockedCoins {
                vesting_account_address,
                block_time,
            } => client
                .locked_coins(&vesting_account_address, block_time)
                .ignore(),
            VestingQueryMsg::SpendableCoins {
                vesting_account_address,
                block_time,
            } => client
                .spendable_coins(&vesting_account_address, block_time)
                .ignore(),
            VestingQueryMsg::GetVestedCoins {
                vesting_account_address,
                block_time,
            } => client
                .vested_coins(&vesting_account_address, block_time)
                .ignore(),
            VestingQueryMsg::GetVestingCoins {
                vesting_account_address,
                block_time,
            } => client
                .vesting_coins(&vesting_account_address, block_time)
                .ignore(),
            VestingQueryMsg::GetStartTime {
                vesting_account_address,
            } => client.vesting_start_time(&vesting_account_address).ignore(),
            VestingQueryMsg::GetEndTime {
                vesting_account_address,
            } => client.vesting_end_time(&vesting_account_address).ignore(),
            VestingQueryMsg::GetOriginalVesting {
                vesting_account_address,
            } => client.original_vesting(&vesting_account_address).ignore(),
            VestingQueryMsg::GetHistoricalVestingStakingReward {
                vesting_account_address,
            } => client
                .get_historical_vesting_staking_reward(&vesting_account_address)
                .ignore(),
            VestingQueryMsg::GetSpendableVestedCoins {
                vesting_account_address,
            } => client
                .get_spendable_vested_coins(&vesting_account_address)
                .ignore(),
            VestingQueryMsg::GetSpendableRewardCoins {
                vesting_account_address,
            } => client
                .get_spendable_reward_coins(&vesting_account_address)
                .ignore(),
            VestingQueryMsg::GetDelegatedCoins {
                vesting_account_address,
            } => client
                .get_delegated_coins(&vesting_account_address)
                .ignore(),
            VestingQueryMsg::GetPledgedCoins {
                vesting_account_address,
            } => client.get_pledged_coins(&vesting_account_address).ignore(),
            VestingQueryMsg::GetStakedCoins {
                vesting_account_address,
            } => client.get_staked_coins(&vesting_account_address).ignore(),
            VestingQueryMsg::GetWithdrawnCoins {
                vesting_account_address,
            } => client
                .get_withdrawn_coins(&vesting_account_address)
                .ignore(),
            VestingQueryMsg::GetAccount { address } => client.get_account(&address).ignore(),
            VestingQueryMsg::GetMixnode { address } => client.get_mixnode_pledge(&address).ignore(),
            VestingQueryMsg::GetGateway { address } => client.get_gateway_pledge(&address).ignore(),
            VestingQueryMsg::GetCurrentVestingPeriod { address } => {
                client.get_current_vesting_period(&address).ignore()
            }
            VestingQueryMsg::GetDelegation {
                address,
                mix_id,
                block_timestamp_secs,
            } => client
                .get_vesting_delegation(&address, mix_id, block_timestamp_secs)
                .ignore(),
            VestingQueryMsg::GetTotalDelegationAmount { address, mix_id } => client
                .get_total_delegation_amount(&address, mix_id)
                .ignore(),
            VestingQueryMsg::GetDelegationTimes { address, mix_id } => {
                client.get_delegation_timestamps(&address, mix_id).ignore()
            }
            VestingQueryMsg::GetAllDelegations { start_after, limit } => client
                .get_all_vesting_delegations_paged(start_after, limit)
                .ignore(),
        };
    }
}