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
use std::slice;
use cadence_json::ValueOwned;
use otopr::encoding::EncodeAsRef;
use otopr::*;
use wire_types::*;
pub mod rlp;
mod signing;
pub use signing::*;
mod template;
pub use template::*;
mod finalize;
pub use finalize::*;
#[derive(Enumeration, Debug, Clone, Copy, PartialEq, Eq)]
pub enum TransactionStatus {
Unknown = 0,
Pending = 1,
Finalized = 2,
Executed = 3,
Sealed = 4,
Expired = 5,
}
#[derive(EncodableMessage, Clone, Copy, PartialEq, Eq)]
#[otopr(encode_where_clause(
where
Address: AsRef<[u8]>,
))]
pub struct ProposalKeyE<Address> {
#[otopr(encode_via(LengthDelimitedWire, x.as_ref()))]
pub address: Address,
pub key_id: u32,
pub sequence_number: u64,
}
#[derive(DecodableMessage, Default)]
pub struct ProposalKeyD {
pub address: Box<[u8]>,
pub key_id: u32,
pub sequence_number: u64,
}
#[derive(EncodableMessage, Clone, Copy, PartialEq, Eq)]
#[otopr(encode_where_clause(
where
Address: AsRef<[u8]>,
Signature: AsRef<[u8]>,
))]
pub struct SignatureE<Address, Signature> {
#[otopr(encode_via(LengthDelimitedWire, x.as_ref()))]
pub address: Address,
pub key_id: u32,
#[otopr(encode_via(LengthDelimitedWire, x.as_ref()))]
pub signature: Signature,
}
#[derive(DecodableMessage, Default)]
pub struct SignatureD {
pub address: Box<[u8]>,
pub key_id: u32,
pub signature: Box<[u8]>,
}
#[derive(EncodableMessage, Clone, PartialEq, Eq)]
#[otopr(encode_extra_type_params(
PayloadSignatureAddress,
PayloadSignature,
EnvelopeSignatureAddress,
EnvelopeSignature,
))]
#[otopr(encode_where_clause(
where
Script: AsRef<[u8]>,
ReferenceBlockId: AsRef<[u8]>,
Payer: AsRef<[u8]>,
ProposalKeyAddress: AsRef<[u8]>,
PayloadSignatureAddress: AsRef<[u8]>,
PayloadSignature: AsRef<[u8]>,
EnvelopeSignatureAddress: AsRef<[u8]>,
EnvelopeSignature: AsRef<[u8]>,
Arguments: HasItem,
<Arguments as HasItem>::Item: AsRef<[u8]>,
for<'a> &'a Arguments: IntoIterator<Item = &'a <Arguments as HasItem>::Item>,
Authorizers: HasItem,
<Authorizers as HasItem>::Item: AsRef<[u8]>,
for<'a> &'a Authorizers: IntoIterator<Item = &'a <Authorizers as HasItem>::Item>,
PayloadSignatures: HasItem<Item = SignatureE<PayloadSignatureAddress, PayloadSignature>>,
for<'a> &'a PayloadSignatures: IntoIterator<Item = &'a SignatureE<PayloadSignatureAddress, PayloadSignature>>,
EnvelopeSignatures: HasItem<Item = SignatureE<EnvelopeSignatureAddress, EnvelopeSignature>>,
for<'a> &'a EnvelopeSignatures: IntoIterator<Item = &'a SignatureE<EnvelopeSignatureAddress, EnvelopeSignature>>,
))]
pub struct TransactionE<
Script,
Arguments,
ReferenceBlockId,
ProposalKeyAddress,
Payer,
Authorizers,
PayloadSignatures,
EnvelopeSignatures,
> {
#[otopr(encode_via(LengthDelimitedWire, x.as_ref()))]
pub script: Script,
#[otopr(encode_via(wire_types::LengthDelimitedWire, RepeatedMap::new(x, |x| x.into_iter().map(EncodeAsRef::new))))]
pub arguments: Arguments,
#[otopr(encode_via(LengthDelimitedWire, x.as_ref()))]
pub reference_block_id: ReferenceBlockId,
pub gas_limit: u64,
pub proposal_key: ProposalKeyE<ProposalKeyAddress>,
#[otopr(encode_via(LengthDelimitedWire, x.as_ref()))]
pub payer: Payer,
#[otopr(encode_via(wire_types::LengthDelimitedWire, RepeatedMap::new(x, |x| x.into_iter().map(AsRef::as_ref))))]
pub authorizers: Authorizers,
#[otopr(encode_via(wire_types::LengthDelimitedWire, RepeatedMap::new(x, |x| x.into_iter())))]
pub payload_signatures: PayloadSignatures,
#[otopr(encode_via(wire_types::LengthDelimitedWire, RepeatedMap::new(x, |x| x.into_iter())))]
pub envelope_signatures: EnvelopeSignatures,
}
#[derive(DecodableMessage, Default)]
pub struct TransactionD {
pub script: Box<[u8]>,
pub arguments: Repeated<Vec<Box<[u8]>>>,
pub reference_block_id: Box<[u8]>,
pub gas_limit: u64,
pub proposal_key: ProposalKeyD,
pub payer: Box<[u8]>,
pub authorizers: Repeated<Vec<Box<[u8]>>>,
pub payload_signatures: Repeated<Vec<SignatureD>>,
pub envelope_signatures: Repeated<Vec<SignatureD>>,
}
impl TransactionD {
pub fn parse_argument(&self, index: usize) -> serde_json::Result<ValueOwned> {
let arg = &self.arguments[index];
serde_json::from_slice(arg)
}
pub fn parse_arguments(&self) -> ParseArguments<slice::Iter<Box<[u8]>>> {
ParseArguments::new(self.arguments.iter())
}
}
#[derive(Clone, Copy, Default, Debug, Hash)]
pub struct ParseArguments<I>(I);
impl<'a, I: Iterator<Item = &'a Bytes>, Bytes: AsRef<[u8]> + 'a> ParseArguments<I> {
pub fn new(iter: I) -> Self {
Self(iter)
}
pub fn into_inner(self) -> I {
self.0
}
}
impl<'a, I: Iterator<Item = &'a Bytes>, Bytes: AsRef<[u8]> + 'a> Iterator for ParseArguments<I> {
type Item = serde_json::Result<ValueOwned>;
fn size_hint(&self) -> (usize, Option<usize>) {
self.0.size_hint()
}
fn next(&mut self) -> Option<Self::Item> {
self.0.next().map(AsRef::as_ref).map(serde_json::from_slice)
}
fn fold<B, F>(self, init: B, f: F) -> B
where
Self: Sized,
F: FnMut(B, Self::Item) -> B,
{
fn parse<'a, B, Bytes: AsRef<[u8]>>(
mut f: impl FnMut(B, serde_json::Result<ValueOwned>) -> B,
) -> impl FnMut(B, &'a Bytes) -> B {
move |accum, bytes| f(accum, serde_json::from_slice(bytes.as_ref()))
}
self.0.fold(init, parse(f))
}
fn collect<B: FromIterator<Self::Item>>(self) -> B
where
Self: Sized,
{
self.0
.map(AsRef::as_ref)
.map(serde_json::from_slice)
.collect()
}
}