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
use osmosis_std_derive::CosmwasmExt;
#[derive(Clone, PartialEq, ::prost::Message, CosmwasmExt)]
#[proto(type_url = "/osmosis.mint.v1beta1.Minter")]
pub struct Minter {
#[prost(string, tag = "1")]
pub epoch_provisions: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message, CosmwasmExt)]
#[proto(type_url = "/osmosis.mint.v1beta1.WeightedAddress")]
pub struct WeightedAddress {
#[prost(string, tag = "1")]
pub address: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub weight: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message, CosmwasmExt)]
#[proto(type_url = "/osmosis.mint.v1beta1.DistributionProportions")]
pub struct DistributionProportions {
#[prost(string, tag = "1")]
pub staking: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub pool_incentives: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub developer_rewards: ::prost::alloc::string::String,
#[prost(string, tag = "4")]
pub community_pool: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message, CosmwasmExt)]
#[proto(type_url = "/osmosis.mint.v1beta1.Params")]
pub struct Params {
#[prost(string, tag = "1")]
pub mint_denom: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub genesis_epoch_provisions: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub epoch_identifier: ::prost::alloc::string::String,
#[prost(int64, tag = "4")]
pub reduction_period_in_epochs: i64,
#[prost(string, tag = "5")]
pub reduction_factor: ::prost::alloc::string::String,
#[prost(message, optional, tag = "6")]
pub distribution_proportions: ::core::option::Option<DistributionProportions>,
#[prost(message, repeated, tag = "7")]
pub weighted_developer_rewards_receivers: ::prost::alloc::vec::Vec<WeightedAddress>,
#[prost(int64, tag = "8")]
pub minting_rewards_distribution_start_epoch: i64,
}
#[derive(Clone, PartialEq, ::prost::Message, CosmwasmExt)]
#[proto(type_url = "/osmosis.mint.v1beta1.QueryParamsRequest")]
pub struct QueryParamsRequest {}
#[derive(Clone, PartialEq, ::prost::Message, CosmwasmExt)]
#[proto(type_url = "/osmosis.mint.v1beta1.QueryParamsResponse")]
pub struct QueryParamsResponse {
#[prost(message, optional, tag = "1")]
pub params: ::core::option::Option<Params>,
}
#[derive(Clone, PartialEq, ::prost::Message, CosmwasmExt)]
#[proto(type_url = "/osmosis.mint.v1beta1.QueryEpochProvisionsRequest")]
pub struct QueryEpochProvisionsRequest {}
#[derive(Clone, PartialEq, ::prost::Message, CosmwasmExt)]
#[proto(type_url = "/osmosis.mint.v1beta1.QueryEpochProvisionsResponse")]
pub struct QueryEpochProvisionsResponse {
#[prost(bytes = "vec", tag = "1")]
pub epoch_provisions: ::prost::alloc::vec::Vec<u8>,
}
#[derive(Clone, PartialEq, ::prost::Message, CosmwasmExt)]
#[proto(type_url = "/osmosis.mint.v1beta1.GenesisState")]
pub struct GenesisState {
#[prost(message, optional, tag = "1")]
pub minter: ::core::option::Option<Minter>,
#[prost(message, optional, tag = "2")]
pub params: ::core::option::Option<Params>,
#[prost(int64, tag = "3")]
pub halven_started_epoch: i64,
}