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
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
use cosmwasm_std::{Decimal, Uint64};
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct OracleExchangeRate {
pub exchange_rate: Decimal,
pub last_update: Uint64,
}
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct DenomOracleExchangeRatePair {
pub denom: String,
pub oracle_exchange_rate: OracleExchangeRate,
}
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct OracleTwap {
pub denom: String,
pub twap: Decimal,
pub lookback_seconds: i64,
}
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct DexPair {
pub price_denom: String,
pub asset_denom: String,
pub tick_size: Decimal,
}
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct DexTwap {
pub pair: DexPair,
pub twap: Decimal,
pub lookback_seconds: u64,
}
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct Epoch {
pub genesis_time: String, pub duration: u64, pub current_epoch: u64,
pub current_epoch_start_time: String, pub current_epoch_height: i64,
}