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
use crate::;
use ;
use Decode;
// /// View of block extrinsics restricted to signed transactions.
// pub struct BlockSignedExtrinsicsQuery {
// xt: BlockExtrinsicsQuery,
// }
// impl BlockSignedExtrinsicsQuery {
// /// Builds a signed-transaction view for the specified block.
// ///
// /// # Parameters
// /// - `client`: RPC client used to access extrinsic data.
// /// - `block_id`: Identifier convertible into `HashStringNumber`.
// ///
// /// # Returns
// /// - `Self`: Helper that only surfaces signed extrinsics.
// pub fn new(client: Client, block_id: HashStringNumber) -> Self {
// Self { xt: BlockExtrinsicsQuery::new(client, block_id) }
// }
// /// Fetches a signed transaction by hash, index, or string identifier.
// ///
// /// # Parameters
// /// - `extrinsic_id`: Identifier used to select the extrinsic.
// ///
// /// # Returns
// /// - `Ok(Some(SignedExtrinsic<T>))`: Matching extrinsic decoded as `T` with a signature.
// /// - `Ok(None)`: No extrinsic matched the identifier.
// /// - `Err(Error)`: The extrinsic was unsigned, or the RPC call/decoding failed.
// ///
// /// # Side Effects
// /// - Performs RPC calls via the decoded-extrinsic helper and may retry according to the retry policy.
// pub async fn get<T: HasHeader + Decode>(
// &self,
// extrinsic_id: impl Into<HashStringNumber>,
// ) -> Result<Option<BlockSignedExtrinsic<T>>, Error> {
// let ext = self.xt.get(extrinsic_id).await?;
// let Some(ext) = ext else {
// return Ok(None);
// };
// Ok(Some(ext.as_signed()?))
// }
// /// Returns the first signed extrinsic that matches the supplied filters.
// ///
// /// # Parameters
// /// - `opts`: Filters describing which signed extrinsics to fetch.
// ///
// /// # Returns
// /// - `Ok(Some(SignedExtrinsic<T>))`: First matching signed extrinsic decoded as `T`.
// /// - `Ok(None)`: No signed extrinsic satisfied the filters.
// /// - `Err(Error)`: The extrinsic was unsigned, or the RPC call/decoding failed.
// ///
// /// # Side Effects
// /// - Performs RPC calls via the decoded-extrinsic helper and may retry according to the retry policy.
// pub async fn first<T: HasHeader + Decode>(&self, opts: Options) -> Result<Option<BlockSignedExtrinsic<T>>, Error> {
// let ext = self.xt.first(opts).await?;
// let Some(ext) = ext else {
// return Ok(None);
// };
// Ok(Some(ext.as_signed()?))
// }
// /// Returns the last signed extrinsic that matches the supplied filters.
// ///
// /// # Parameters
// /// - `opts`: Filters describing which signed extrinsics to fetch.
// ///
// /// # Returns
// /// - `Ok(Some(SignedExtrinsic<T>))`: Final matching signed extrinsic decoded as `T`.
// /// - `Ok(None)`: No signed extrinsic satisfied the filters.
// /// - `Err(Error)`: The extrinsic was unsigned, or the RPC call/decoding failed.
// ///
// /// # Side Effects
// /// - Performs RPC calls via the decoded-extrinsic helper and may retry according to the retry policy.
// pub async fn last<T: HasHeader + Decode>(&self, opts: Options) -> Result<Option<BlockSignedExtrinsic<T>>, Error> {
// let ext = self.xt.last(opts).await?;
// let Some(ext) = ext else {
// return Ok(None);
// };
// Ok(Some(ext.as_signed()?))
// }
// /// Collects every signed extrinsic that matches the supplied filters.
// ///
// /// # Parameters
// /// - `opts`: Filters describing which signed extrinsics to fetch.
// ///
// /// # Returns
// /// - `Ok(Vec<SignedExtrinsic<T>>)`: Zero or more signed extrinsics decoded as `T`.
// /// - `Err(Error)`: An extrinsic lacked a signature, or the RPC call/decoding failed.
// ///
// /// # Side Effects
// /// - Performs RPC calls via the decoded-extrinsic helper and may retry according to the retry policy.
// pub async fn all<T: HasHeader + Decode>(&self, opts: Options) -> Result<Vec<BlockSignedExtrinsic<T>>, Error> {
// let all = self.xt.all::<T>(opts).await?;
// let mut result = Vec::with_capacity(all.len());
// for ext in all {
// let Some(signature) = ext.signature else {
// return Err(UserError::Other(
// "Extrinsic is unsigned; cannot decode it as a signed transaction.".into(),
// )
// .into());
// };
// result.push(BlockSignedExtrinsic::new(signature, ext.call, ext.metadata));
// }
// Ok(result)
// }
// /// Counts matching signed extrinsics.
// ///
// /// # Parameters
// /// - `opts`: Filters describing which signed extrinsics to count.
// ///
// /// # Returns
// /// - `Ok(usize)`: Number of matching signed extrinsics.
// /// - `Err(Error)`: The RPC call failed.
// ///
// /// # Side Effects
// /// - Performs RPC calls via the decoded-extrinsic helper and may retry according to the retry policy.
// pub async fn count<T: HasHeader>(&self, opts: Options) -> Result<usize, Error> {
// self.xt.count::<T>(opts).await
// }
// /// Reports whether any signed extrinsic matches the supplied filters.
// ///
// /// # Parameters
// /// - `opts`: Filters describing which signed extrinsics to test.
// ///
// /// # Returns
// /// - `Ok(true)`: At least one matching signed extrinsic exists.
// /// - `Ok(false)`: No signed extrinsics matched the filters.
// /// - `Err(Error)`: The RPC call failed.
// ///
// /// # Side Effects
// /// - Performs RPC calls via the decoded-extrinsic helper and may retry according to the retry policy.
// pub async fn exists<T: HasHeader>(&self, opts: Options) -> Result<bool, Error> {
// self.xt.exists::<T>(opts).await
// }
// /// Overrides the retry behaviour for future signed-transaction lookups.
// ///
// /// # Parameters
// /// - `value`: `Some(true)` to force retries, `Some(false)` to disable retries, `None` to inherit the client default.
// ///
// /// # Returns
// /// - `()`: The override is stored for subsequent operations.
// ///
// /// # Side Effects
// /// - Updates the internal retry setting used by follow-up RPC calls.
// pub fn set_retry_on_error(&mut self, value: Option<bool>) {
// self.xt.set_retry_on_error(value);
// }
// /// Reports whether signed-transaction lookups retry after RPC errors.
// ///
// /// # Returns
// /// - `true`: Retries are enabled either explicitly or via the client default.
// /// - `false`: Retries are disabled.
// pub fn should_retry_on_error(&self) -> bool {
// self.xt.should_retry_on_error()
// }
// }
/// Block Transaction is the same as Block Signed Extrinsic