-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathinit_chain.rs
More file actions
257 lines (229 loc) · 9.02 KB
/
init_chain.rs
File metadata and controls
257 lines (229 loc) · 9.02 KB
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
use bytes::Bytes;
use crate::{block, consensus, prelude::*, validator, Time};
#[doc = include_str!("../doc/request-initchain.md")]
#[derive(Clone, PartialEq, Eq, Debug)]
pub struct InitChain {
/// The genesis time.
pub time: Time,
/// The ID of the blockchain.
pub chain_id: String,
/// Initial consensus-critical parameters.
pub consensus_params: consensus::Params,
/// Initial genesis validators, sorted by voting power.
pub validators: Vec<validator::Update>,
/// Serialized JSON bytes containing the initial application state.
pub app_state_bytes: Bytes,
/// Height of the initial block (typically `1`).
pub initial_height: block::Height,
}
// =============================================================================
// Protobuf conversions
// =============================================================================
cometbft_old_pb_modules! {
use super::InitChain;
use crate::Error;
impl From<InitChain> for pb::abci::RequestInitChain {
fn from(init_chain: InitChain) -> Self {
Self {
time: Some(init_chain.time.into()),
chain_id: init_chain.chain_id,
consensus_params: Some(init_chain.consensus_params.into()),
validators: init_chain.validators.into_iter().map(Into::into).collect(),
app_state_bytes: init_chain.app_state_bytes,
initial_height: init_chain.initial_height.into(),
}
}
}
impl TryFrom<pb::abci::RequestInitChain> for InitChain {
type Error = Error;
fn try_from(init_chain: pb::abci::RequestInitChain) -> Result<Self, Self::Error> {
Ok(Self {
time: init_chain
.time
.ok_or_else(Error::missing_genesis_time)?
.try_into()?,
chain_id: init_chain.chain_id,
consensus_params: init_chain
.consensus_params
.ok_or_else(Error::missing_consensus_params)?
.try_into()?,
validators: init_chain
.validators
.into_iter()
.map(TryInto::try_into)
.collect::<Result<_, _>>()?,
app_state_bytes: init_chain.app_state_bytes,
initial_height: init_chain.initial_height.try_into()?,
})
}
}
impl Protobuf<pb::abci::RequestInitChain> for InitChain {}
}
mod v1 {
use super::InitChain;
use crate::Error;
use cometbft_proto::abci::v1 as pb;
use cometbft_proto::Protobuf;
impl From<InitChain> for pb::InitChainRequest {
fn from(init_chain: InitChain) -> Self {
Self {
time: Some(init_chain.time.into()),
chain_id: init_chain.chain_id,
consensus_params: Some(init_chain.consensus_params.into()),
validators: init_chain.validators.into_iter().map(Into::into).collect(),
app_state_bytes: init_chain.app_state_bytes,
initial_height: init_chain.initial_height.into(),
}
}
}
impl TryFrom<pb::InitChainRequest> for InitChain {
type Error = Error;
fn try_from(init_chain: pb::InitChainRequest) -> Result<Self, Self::Error> {
Ok(Self {
time: init_chain
.time
.ok_or_else(Error::missing_genesis_time)?
.try_into()?,
chain_id: init_chain.chain_id,
consensus_params: init_chain
.consensus_params
.ok_or_else(Error::missing_consensus_params)?
.try_into()?,
validators: init_chain
.validators
.into_iter()
.map(TryInto::try_into)
.collect::<Result<_, _>>()?,
app_state_bytes: init_chain.app_state_bytes,
initial_height: init_chain.initial_height.try_into()?,
})
}
}
impl Protobuf<pb::InitChainRequest> for InitChain {}
}
mod v1beta1 {
use super::InitChain;
use crate::Error;
use cometbft_proto::abci::v1beta1 as pb;
use cometbft_proto::Protobuf;
impl From<InitChain> for pb::RequestInitChain {
fn from(init_chain: InitChain) -> Self {
Self {
time: Some(init_chain.time.into()),
chain_id: init_chain.chain_id,
consensus_params: Some(init_chain.consensus_params.into()),
validators: init_chain.validators.into_iter().map(Into::into).collect(),
app_state_bytes: init_chain.app_state_bytes,
initial_height: init_chain.initial_height.into(),
}
}
}
impl TryFrom<pb::RequestInitChain> for InitChain {
type Error = Error;
fn try_from(init_chain: pb::RequestInitChain) -> Result<Self, Self::Error> {
Ok(Self {
time: init_chain
.time
.ok_or_else(Error::missing_genesis_time)?
.try_into()?,
chain_id: init_chain.chain_id,
consensus_params: init_chain
.consensus_params
.ok_or_else(Error::missing_consensus_params)?
.try_into()?,
validators: init_chain
.validators
.into_iter()
.map(TryInto::try_into)
.collect::<Result<_, _>>()?,
app_state_bytes: init_chain.app_state_bytes,
initial_height: init_chain.initial_height.try_into()?,
})
}
}
impl Protobuf<pb::RequestInitChain> for InitChain {}
}
mod v1beta2 {
use super::InitChain;
use crate::Error;
use cometbft_proto::abci::v1beta2 as pb;
use cometbft_proto::Protobuf;
impl From<InitChain> for pb::RequestInitChain {
fn from(init_chain: InitChain) -> Self {
Self {
time: Some(init_chain.time.into()),
chain_id: init_chain.chain_id,
consensus_params: Some(init_chain.consensus_params.into()),
validators: init_chain.validators.into_iter().map(Into::into).collect(),
app_state_bytes: init_chain.app_state_bytes,
initial_height: init_chain.initial_height.into(),
}
}
}
impl TryFrom<pb::RequestInitChain> for InitChain {
type Error = Error;
fn try_from(init_chain: pb::RequestInitChain) -> Result<Self, Self::Error> {
Ok(Self {
time: init_chain
.time
.ok_or_else(Error::missing_genesis_time)?
.try_into()?,
chain_id: init_chain.chain_id,
consensus_params: init_chain
.consensus_params
.ok_or_else(Error::missing_consensus_params)?
.try_into()?,
validators: init_chain
.validators
.into_iter()
.map(TryInto::try_into)
.collect::<Result<_, _>>()?,
app_state_bytes: init_chain.app_state_bytes,
initial_height: init_chain.initial_height.try_into()?,
})
}
}
impl Protobuf<pb::RequestInitChain> for InitChain {}
}
mod v1beta3 {
use super::InitChain;
use crate::Error;
use cometbft_proto::abci::v1beta3 as pb;
use cometbft_proto::Protobuf;
impl From<InitChain> for pb::RequestInitChain {
fn from(init_chain: InitChain) -> Self {
Self {
time: Some(init_chain.time.into()),
chain_id: init_chain.chain_id,
consensus_params: Some(init_chain.consensus_params.into()),
validators: init_chain.validators.into_iter().map(Into::into).collect(),
app_state_bytes: init_chain.app_state_bytes,
initial_height: init_chain.initial_height.into(),
}
}
}
impl TryFrom<pb::RequestInitChain> for InitChain {
type Error = Error;
fn try_from(init_chain: pb::RequestInitChain) -> Result<Self, Self::Error> {
Ok(Self {
time: init_chain
.time
.ok_or_else(Error::missing_genesis_time)?
.try_into()?,
chain_id: init_chain.chain_id,
consensus_params: init_chain
.consensus_params
.ok_or_else(Error::missing_consensus_params)?
.try_into()?,
validators: init_chain
.validators
.into_iter()
.map(TryInto::try_into)
.collect::<Result<_, _>>()?,
app_state_bytes: init_chain.app_state_bytes,
initial_height: init_chain.initial_height.try_into()?,
})
}
}
impl Protobuf<pb::RequestInitChain> for InitChain {}
}