alloy-consensus 0.12.4

Ethereum consensus interface
Documentation
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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.12.4]https://github.com/alloy-rs/alloy/releases/tag/v0.12.4 - 2025-03-07

### Bug Fixes

- Use `OnceBox` ([#2165]https://github.com/alloy-rs/alloy/issues/2165)

## [0.12.3]https://github.com/alloy-rs/alloy/releases/tag/v0.12.3 - 2025-03-07

### Features

- Add Eip4844 variant generic to TypedTransaction ([#2162]https://github.com/alloy-rs/alloy/issues/2162)

### Miscellaneous Tasks

- Release 0.12.3

## [0.12.2]https://github.com/alloy-rs/alloy/releases/tag/v0.12.2 - 2025-03-07

### Miscellaneous Tasks

- Release 0.12.2
- Release 0.12.1
- Add inner_mut ([#2160]https://github.com/alloy-rs/alloy/issues/2160)

## [0.12.0]https://github.com/alloy-rs/alloy/releases/tag/v0.12.0 - 2025-03-07

### Bug Fixes

- Run zepter checks for features of non-workspace dependencies ([#2144]https://github.com/alloy-rs/alloy/issues/2144)

### Dependencies

- [deps] Bump derive_more, strum ([#2074]https://github.com/alloy-rs/alloy/issues/2074)

### Features

- Use `OnceCell` for `Signed::hash` ([#2025]https://github.com/alloy-rs/alloy/issues/2025)
- Integrate `Recovered` into more types ([#2151]https://github.com/alloy-rs/alloy/issues/2151)
- Add bincode compat for receipt ([#2149]https://github.com/alloy-rs/alloy/issues/2149)
- [`consensus`] Impl RlpEncodableTx for TypedTx ([#2150]https://github.com/alloy-rs/alloy/issues/2150)
- Add conversion helper for eip658 status ([#2148]https://github.com/alloy-rs/alloy/issues/2148)
- [`consensus`] Separate RlpTx trait functionality ([#2138]https://github.com/alloy-rs/alloy/issues/2138)
- Add conversions for UnknownTxEnvelope ([#2133]https://github.com/alloy-rs/alloy/issues/2133)
- Add signabletx impl for typedtx ([#2131]https://github.com/alloy-rs/alloy/issues/2131)
- Allow getting mutable inner from receipt envelope ([#2116]https://github.com/alloy-rs/alloy/issues/2116)
- Add more transaction conversion helpers ([#2103]https://github.com/alloy-rs/alloy/issues/2103)
- Derive `Copy` for `Recovered` ([#2082]https://github.com/alloy-rs/alloy/issues/2082)
- Add function selector helper ([#2066]https://github.com/alloy-rs/alloy/issues/2066)
- [`consensus`] Introduce block traits ([#2057]https://github.com/alloy-rs/alloy/issues/2057)
- Introduce error helper and fallible conversion ([#2052]https://github.com/alloy-rs/alloy/issues/2052)

### Miscellaneous Tasks

- Release 0.12.0
- Support static error msg ([#2158]https://github.com/alloy-rs/alloy/issues/2158)
- [`consensus`] Rename `Recovered` methods ([#2155]https://github.com/alloy-rs/alloy/issues/2155)
- Box value ([#2152]https://github.com/alloy-rs/alloy/issues/2152)
- Add From<Signed<TypedTransaction>> for TxEnvelope ([#2070]https://github.com/alloy-rs/alloy/issues/2070)
- Add try_into_pooled conversion ([#2056]https://github.com/alloy-rs/alloy/issues/2056)
- Additional From TryFrom conversion helpers ([#2054]https://github.com/alloy-rs/alloy/issues/2054)

### Other

- Implement Transaction type on Either type ([#2097]https://github.com/alloy-rs/alloy/issues/2097)

## [0.11.1]https://github.com/alloy-rs/alloy/releases/tag/v0.11.1 - 2025-02-12

### Features

- Add auth count helper fn ([#2007]https://github.com/alloy-rs/alloy/issues/2007)
- Add blob_count helper fn ([#2005]https://github.com/alloy-rs/alloy/issues/2005)

### Miscellaneous Tasks

- Release 0.11.1

## [0.11.0]https://github.com/alloy-rs/alloy/releases/tag/v0.11.0 - 2025-01-31

### Documentation

- Enable some useful rustdoc features on docs.rs ([#1890]https://github.com/alloy-rs/alloy/issues/1890)

### Features

- Add blockbody ommers generic ([#1964]https://github.com/alloy-rs/alloy/issues/1964)
- Introduce maybe helpers for blob calc ([#1962]https://github.com/alloy-rs/alloy/issues/1962)
- Add some doc aliases for recovered ([#1961]https://github.com/alloy-rs/alloy/issues/1961)
- Couple convenience methods ([#1955]https://github.com/alloy-rs/alloy/issues/1955)
- Add map fns to rpc transaction type ([#1936]https://github.com/alloy-rs/alloy/issues/1936)
- Add Recovered::cloned ([#1932]https://github.com/alloy-rs/alloy/issues/1932)
- Add more derives for `Receipts` ([#1930]https://github.com/alloy-rs/alloy/issues/1930)
- [consensus] Make fn tx_type() public ([#1926]https://github.com/alloy-rs/alloy/issues/1926)
- Add rlp length helper ([#1906]https://github.com/alloy-rs/alloy/issues/1906)
- Remove T: Transport from public APIs ([#1859]https://github.com/alloy-rs/alloy/issues/1859)
- Add RecoveredTx::try_map_transaction ([#1885]https://github.com/alloy-rs/alloy/issues/1885)
- Add missing helper fns ([#1880]https://github.com/alloy-rs/alloy/issues/1880)

### Miscellaneous Tasks

- Release 0.11.0
- Use u64 for base fee in tx info ([#1963]https://github.com/alloy-rs/alloy/issues/1963)
- Dont enable serde in tests ([#1966]https://github.com/alloy-rs/alloy/issues/1966)
- Add receipt conversion fns ([#1949]https://github.com/alloy-rs/alloy/issues/1949)
- Add as_recovered_ref ([#1933]https://github.com/alloy-rs/alloy/issues/1933)
- [eips] Add super trait `Typed2718` to `Encodable2718` ([#1913]https://github.com/alloy-rs/alloy/issues/1913)
- [consensus] Replace magic numbers for tx type with constants ([#1911]https://github.com/alloy-rs/alloy/issues/1911)
- Release 0.10.0

### Other

- Add zepter and propagate features ([#1951]https://github.com/alloy-rs/alloy/issues/1951)

### Testing

- Migrate 4844 rlp tests ([#1928]https://github.com/alloy-rs/alloy/issues/1928)

## [0.9.2]https://github.com/alloy-rs/alloy/releases/tag/v0.9.2 - 2025-01-03

### Miscellaneous Tasks

- Release 0.9.2

## [0.9.1]https://github.com/alloy-rs/alloy/releases/tag/v0.9.1 - 2024-12-30

### Features

- Add deref for block ([#1868]https://github.com/alloy-rs/alloy/issues/1868)

### Miscellaneous Tasks

- Release 0.9.1
- Add arbitrary for blockbody ([#1867]https://github.com/alloy-rs/alloy/issues/1867)

## [0.9.0]https://github.com/alloy-rs/alloy/releases/tag/v0.9.0 - 2024-12-30

### Bug Fixes

- Use u64 for all gas values ([#1848]https://github.com/alloy-rs/alloy/issues/1848)

### Features

- Add tryfrom payloadv1 for block ([#1851]https://github.com/alloy-rs/alloy/issues/1851)
- Add match functions ([#1847]https://github.com/alloy-rs/alloy/issues/1847)
- Add BlockConditional ([#1846]https://github.com/alloy-rs/alloy/issues/1846)
- EIP-7840 ([#1828]https://github.com/alloy-rs/alloy/issues/1828)
- Return tagged variant deserde error ([#1810]https://github.com/alloy-rs/alloy/issues/1810)
- [pectra] Revert EIP-7742 ([#1807]https://github.com/alloy-rs/alloy/issues/1807)
- Add map transactions fn ([#1827]https://github.com/alloy-rs/alloy/issues/1827)
- Add helpers for block ([#1816]https://github.com/alloy-rs/alloy/issues/1816)
- Add helpers to any tx envelope ([#1817]https://github.com/alloy-rs/alloy/issues/1817)

### Miscellaneous Tasks

- Rm unused alloy-signer dep ([#1862]https://github.com/alloy-rs/alloy/issues/1862)
- Rm non exhaustive from ReceiptEnvelope ([#1843]https://github.com/alloy-rs/alloy/issues/1843)
- Rm non exhaustive for envelope ([#1842]https://github.com/alloy-rs/alloy/issues/1842)
- Map header fns ([#1840]https://github.com/alloy-rs/alloy/issues/1840)

### Other

- Change `chain_id` type to `U256` ([#1839]https://github.com/alloy-rs/alloy/issues/1839)

## [0.8.3]https://github.com/alloy-rs/alloy/releases/tag/v0.8.3 - 2024-12-20

### Features

- Add serde for block ([#1814]https://github.com/alloy-rs/alloy/issues/1814)

### Miscellaneous Tasks

- Release 0.8.3

## [0.8.2]https://github.com/alloy-rs/alloy/releases/tag/v0.8.2 - 2024-12-19

### Bug Fixes

- Relax legacy chain id check ([#1809]https://github.com/alloy-rs/alloy/issues/1809)

### Miscellaneous Tasks

- Release 0.8.2
- Manual default impl ([#1813]https://github.com/alloy-rs/alloy/issues/1813)
- Misc clippy ([#1812]https://github.com/alloy-rs/alloy/issues/1812)

## [0.8.1]https://github.com/alloy-rs/alloy/releases/tag/v0.8.1 - 2024-12-16

### Features

- Add some helper functions for blockbody ([#1796]https://github.com/alloy-rs/alloy/issues/1796)
- Add info tx types ([#1793]https://github.com/alloy-rs/alloy/issues/1793)
- Reth's block body fns ([#1775]https://github.com/alloy-rs/alloy/issues/1775)
- Add serde for `TxType` ([#1780]https://github.com/alloy-rs/alloy/issues/1780)

### Miscellaneous Tasks

- Release 0.8.1
- Add arbitrary for block ([#1797]https://github.com/alloy-rs/alloy/issues/1797)
- Add helpers to unwrap a variant ([#1792]https://github.com/alloy-rs/alloy/issues/1792)
- Add clone_tx ([#1791]https://github.com/alloy-rs/alloy/issues/1791)
- Add TxReceipt default helpers ([#1783]https://github.com/alloy-rs/alloy/issues/1783)
- Add consensus helper methods to BlockHeader ([#1781]https://github.com/alloy-rs/alloy/issues/1781)

## [0.8.0]https://github.com/alloy-rs/alloy/releases/tag/v0.8.0 - 2024-12-10

### Bug Fixes

- Use asref impl for receipt ([#1758]https://github.com/alloy-rs/alloy/issues/1758)

### Features

- [consensus] Require typed2718 for transaction ([#1746]https://github.com/alloy-rs/alloy/issues/1746)
- Port reth pooled tx type ([#1767]https://github.com/alloy-rs/alloy/issues/1767)

### Miscellaneous Tasks

- Release 0.8.0 ([#1778]https://github.com/alloy-rs/alloy/issues/1778)
- Introduce recovered and recoverable ([#1768]https://github.com/alloy-rs/alloy/issues/1768)

### Other

- Reapply "feat(consensus): require typed2718 for transaction ([#1746]https://github.com/alloy-rs/alloy/issues/1746)" ([#1773]https://github.com/alloy-rs/alloy/issues/1773)
- Revert "feat(consensus): require typed2718 for transaction ([#1746]https://github.com/alloy-rs/alloy/issues/1746)" ([#1772]https://github.com/alloy-rs/alloy/issues/1772)

## [0.7.3]https://github.com/alloy-rs/alloy/releases/tag/v0.7.3 - 2024-12-05

### Miscellaneous Tasks

- Release 0.7.3

## [Unreleased]https://github.com/alloy-rs/alloy/compare/v0.7.0...HEAD

### Bug Fixes

- Adjust EIP-7742 to latest spec ([#1713]https://github.com/alloy-rs/alloy/issues/1713)

### Documentation

- Fix `SignableTransaction` docs to use `PrimitiveSignature` ([#1743]https://github.com/alloy-rs/alloy/issues/1743)

### Features

- Impl Encodable / Decodable for Receipts ([#1752]https://github.com/alloy-rs/alloy/issues/1752)
- Add `BlockHeader::blob_fee` ([#1754]https://github.com/alloy-rs/alloy/issues/1754)
- Migrate to `TrieAccount` of alloy-trie ([#1750]https://github.com/alloy-rs/alloy/issues/1750)
- Move is_empty to trait function ([#1749]https://github.com/alloy-rs/alloy/issues/1749)
- Make Receipt rlp methods pub ([#1731]https://github.com/alloy-rs/alloy/issues/1731)
- Receipt root fn ([#1708]https://github.com/alloy-rs/alloy/issues/1708)
- Impl `Encodable2718` for `ReceiptWithBloom` ([#1719]https://github.com/alloy-rs/alloy/issues/1719)
- Add blob_gas_used ([#1704]https://github.com/alloy-rs/alloy/issues/1704)

### Miscellaneous Tasks

- Export storage root fns ([#1756]https://github.com/alloy-rs/alloy/issues/1756)
- Re-export stateroot fns ([#1753]https://github.com/alloy-rs/alloy/issues/1753)
- Rm redundant generic ([#1737]https://github.com/alloy-rs/alloy/issues/1737)
- Relax ommers root fn ([#1736]https://github.com/alloy-rs/alloy/issues/1736)
- Add missing from impl ([#1732]https://github.com/alloy-rs/alloy/issues/1732)
- Release 0.7.2 ([#1729]https://github.com/alloy-rs/alloy/issues/1729)

## [0.7.0]https://github.com/alloy-rs/alloy/releases/tag/v0.7.0 - 2024-11-28

### Bug Fixes

- Pass slice to RlpReceipt::rlp_decode_fields ([#1696]https://github.com/alloy-rs/alloy/issues/1696)
- [`consensus`] Serde aliases to avoid breaking changes ([#1654]https://github.com/alloy-rs/alloy/issues/1654)

### Features

- EIP-7742 ([#1600]https://github.com/alloy-rs/alloy/issues/1600)
- Add parent_num_hash to BlockHeader ([#1687]https://github.com/alloy-rs/alloy/issues/1687)
- Modifiy ReceiptWithBloom and associated impls to use with Reth ([#1672]https://github.com/alloy-rs/alloy/issues/1672)
- [consensus-tx] Enable fast `is_create` ([#1683]https://github.com/alloy-rs/alloy/issues/1683)
- Add `next_block_base_fee` to `BlockHeader` trait ([#1682]https://github.com/alloy-rs/alloy/issues/1682)
- Add missing size fn ([#1679]https://github.com/alloy-rs/alloy/issues/1679)
- Introduce Typed2718 trait ([#1675]https://github.com/alloy-rs/alloy/issues/1675)
- Move `AnyReceipt` and `AnyHeader` to `alloy-consensus-any` ([#1609]https://github.com/alloy-rs/alloy/issues/1609)
- Add missing txtype tryfroms ([#1651]https://github.com/alloy-rs/alloy/issues/1651)
- Add rlp for txtype ([#1648]https://github.com/alloy-rs/alloy/issues/1648)

### Miscellaneous Tasks

- Release 0.7.0
- Relax from impl ([#1698]https://github.com/alloy-rs/alloy/issues/1698)
- Make clippy happy ([#1677]https://github.com/alloy-rs/alloy/issues/1677)
- Export typed2718 ([#1678]https://github.com/alloy-rs/alloy/issues/1678)
- Add default for txtype ([#1668]https://github.com/alloy-rs/alloy/issues/1668)
- Add num hash with parent ([#1652]https://github.com/alloy-rs/alloy/issues/1652)
- Add some proof fns ([#1645]https://github.com/alloy-rs/alloy/issues/1645)
- Add transactions iter fn ([#1646]https://github.com/alloy-rs/alloy/issues/1646)
- Add partialEq to txtype ([#1647]https://github.com/alloy-rs/alloy/issues/1647)

### Other

- Add blanket impl of Transaction, TxReceipt and BlockHeader references ([#1657]https://github.com/alloy-rs/alloy/issues/1657)
- Add unit tests for tx envelope ([#1656]https://github.com/alloy-rs/alloy/issues/1656)
- Inline getters in impl of `Transaction` ([#1642]https://github.com/alloy-rs/alloy/issues/1642)

## [0.6.4]https://github.com/alloy-rs/alloy/releases/tag/v0.6.4 - 2024-11-12

### Bug Fixes

- Make EIP-155 signatures logic safer ([#1641]https://github.com/alloy-rs/alloy/issues/1641)

### Miscellaneous Tasks

- Release 0.6.4

### Other

- Add trait method `Transaction::effective_gas_price` ([#1640]https://github.com/alloy-rs/alloy/issues/1640)

## [0.6.3]https://github.com/alloy-rs/alloy/releases/tag/v0.6.3 - 2024-11-12

### Bug Fixes

- Serde for transactions ([#1630]https://github.com/alloy-rs/alloy/issues/1630)

### Features

- [consensus] `TxEnvelope::signature` ([#1634]https://github.com/alloy-rs/alloy/issues/1634)

### Miscellaneous Tasks

- Release 0.6.3
- Release 0.6.2 ([#1632]https://github.com/alloy-rs/alloy/issues/1632)

### Other

- Add trait method `Transaction::is_dynamic_fee` ([#1638]https://github.com/alloy-rs/alloy/issues/1638)

## [0.6.1]https://github.com/alloy-rs/alloy/releases/tag/v0.6.1 - 2024-11-06

### Bug Fixes

- Re-introduce HeaderResponse trait ([#1627]https://github.com/alloy-rs/alloy/issues/1627)

### Miscellaneous Tasks

- Release 0.6.1

## [0.6.0]https://github.com/alloy-rs/alloy/releases/tag/v0.6.0 - 2024-11-06

### Bug Fixes

- Serde for `AnyTxEnvelope` ([#1613]https://github.com/alloy-rs/alloy/issues/1613)
- Receipt status serde ([#1608]https://github.com/alloy-rs/alloy/issues/1608)
- Hash handling ([#1604]https://github.com/alloy-rs/alloy/issues/1604)
- RLP for `TxEip4844` ([#1596]https://github.com/alloy-rs/alloy/issues/1596)
- Add more rlp correctness checks ([#1595]https://github.com/alloy-rs/alloy/issues/1595)
- Clearer replay protection checks ([#1581]https://github.com/alloy-rs/alloy/issues/1581)
- Make a sensible encoding api ([#1496]https://github.com/alloy-rs/alloy/issues/1496)

### Features

- Integrate signature with boolean parity ([#1540]https://github.com/alloy-rs/alloy/issues/1540)
- Implement Arbitrary for transaction types ([#1603]https://github.com/alloy-rs/alloy/issues/1603)
- Add impl From<Header> for AnyHeader ([#1592]https://github.com/alloy-rs/alloy/issues/1592)
- [consensus] Protected Legacy Signature ([#1578]https://github.com/alloy-rs/alloy/issues/1578)
- Embed consensus header into RPC ([#1573]https://github.com/alloy-rs/alloy/issues/1573)

### Miscellaneous Tasks

- Release 0.6.0
- Misc clippy ([#1607]https://github.com/alloy-rs/alloy/issues/1607)
- Add blockbody default ([#1559]https://github.com/alloy-rs/alloy/issues/1559)

### Other

- Rm useless `len` var in `rlp_encoded_fields_length` ([#1612]https://github.com/alloy-rs/alloy/issues/1612)
- Rm `Receipts` `root_slow` unused method ([#1567]https://github.com/alloy-rs/alloy/issues/1567)
- Embed TxEnvelope into `rpc-types-eth::Transaction` ([#1460]https://github.com/alloy-rs/alloy/issues/1460)
- Implement `root_slow` for `Receipts` ([#1563]https://github.com/alloy-rs/alloy/issues/1563)
- Add `uncle_block_from_header` impl and test ([#1554]https://github.com/alloy-rs/alloy/issues/1554)
- Fix `HOLESKY_GENESIS_HASH` ([#1555]https://github.com/alloy-rs/alloy/issues/1555)

## [0.5.4]https://github.com/alloy-rs/alloy/releases/tag/v0.5.4 - 2024-10-23

### Miscellaneous Tasks

- Release 0.5.4

## [0.5.3]https://github.com/alloy-rs/alloy/releases/tag/v0.5.3 - 2024-10-22

### Bug Fixes

- Correct implementations of Encodable and Decodable for sidecars ([#1528]https://github.com/alloy-rs/alloy/issues/1528)
- Maybetagged serde for typed transaction ([#1495]https://github.com/alloy-rs/alloy/issues/1495)

### Miscellaneous Tasks

- Release 0.5.3

### Other

- Add `Debug` trait bound for `Transaction` trait ([#1543]https://github.com/alloy-rs/alloy/issues/1543)
- Use `Withdrawals` wrapper in `BlockBody` ([#1525]https://github.com/alloy-rs/alloy/issues/1525)

## [0.5.2]https://github.com/alloy-rs/alloy/releases/tag/v0.5.2 - 2024-10-18

### Bug Fixes

- Fix requests root ([#1521]https://github.com/alloy-rs/alloy/issues/1521)
- Use Decodable directly ([#1522]https://github.com/alloy-rs/alloy/issues/1522)

### Miscellaneous Tasks

- Release 0.5.2
- Make Header encoding good ([#1524]https://github.com/alloy-rs/alloy/issues/1524)
- Reorder bincode modules ([#1520]https://github.com/alloy-rs/alloy/issues/1520)

### Testing

- Extend test with rlp ([#1523]https://github.com/alloy-rs/alloy/issues/1523)

## [0.5.1]https://github.com/alloy-rs/alloy/releases/tag/v0.5.1 - 2024-10-18

### Miscellaneous Tasks

- Release 0.5.1
- Remove 7685 request variants ([#1515]https://github.com/alloy-rs/alloy/issues/1515)

## [0.5.0]https://github.com/alloy-rs/alloy/releases/tag/v0.5.0 - 2024-10-18

### Bug Fixes

- [`rpc-types-eth`] Receipt deser ([#1506]https://github.com/alloy-rs/alloy/issues/1506)
- Use `requests_hash` ([#1508]https://github.com/alloy-rs/alloy/issues/1508)
- Allow missing-tag deser of tx envelope ([#1489]https://github.com/alloy-rs/alloy/issues/1489)
- Rename gas_limit to gas in serde def for txns ([#1486]https://github.com/alloy-rs/alloy/issues/1486)
- Enforce correct parity for legacy transactions ([#1428]https://github.com/alloy-rs/alloy/issues/1428)

### Features

- From impl for variant ([#1488]https://github.com/alloy-rs/alloy/issues/1488)
- `Encodable2718::network_len` ([#1431]https://github.com/alloy-rs/alloy/issues/1431)

### Miscellaneous Tasks

- Release 0.5.0
- Flatten eip-7685 requests into a single opaque list ([#1383]https://github.com/alloy-rs/alloy/issues/1383)
- Rename requests root to requests hash ([#1379]https://github.com/alloy-rs/alloy/issues/1379)
- [consensus] Test use Vec::with_capacity ([#1476]https://github.com/alloy-rs/alloy/issues/1476)
- Some lifetime simplifications ([#1467]https://github.com/alloy-rs/alloy/issues/1467)
- Some small improvements ([#1461]https://github.com/alloy-rs/alloy/issues/1461)
- Apply same member order ([#1408]https://github.com/alloy-rs/alloy/issues/1408)

### Other

- Rm redundant root hash definitions ([#1501]https://github.com/alloy-rs/alloy/issues/1501)
- Add more constraints to `TxReceipt` trait ([#1478]https://github.com/alloy-rs/alloy/issues/1478)
- Replace `to` by `kind` in Transaction trait ([#1484]https://github.com/alloy-rs/alloy/issues/1484)

### Refactor

- Change input output to Bytes ([#1487]https://github.com/alloy-rs/alloy/issues/1487)

## [0.4.2]https://github.com/alloy-rs/alloy/releases/tag/v0.4.2 - 2024-10-01

### Miscellaneous Tasks

- Release 0.4.2

### Styling

- Use alloc ([#1405]https://github.com/alloy-rs/alloy/issues/1405)

## [0.4.1]https://github.com/alloy-rs/alloy/releases/tag/v0.4.1 - 2024-10-01

### Features

- [consensus] Bincode compatibility for EIP-7702 ([#1404]https://github.com/alloy-rs/alloy/issues/1404)

### Miscellaneous Tasks

- Release 0.4.1
- [consensus] Less derives for bincode compatible types ([#1401]https://github.com/alloy-rs/alloy/issues/1401)

## [0.4.0]https://github.com/alloy-rs/alloy/releases/tag/v0.4.0 - 2024-09-30

### Bug Fixes

- Advance buffer during 2718 decoding ([#1367]https://github.com/alloy-rs/alloy/issues/1367)
- Correct `encode_2718_len` for legacy transactions ([#1360]https://github.com/alloy-rs/alloy/issues/1360)
- Enforce correct parity encoding for typed transactions ([#1305]https://github.com/alloy-rs/alloy/issues/1305)

### Features

- [consensus] Bincode compatibility for header and transaction types ([#1397]https://github.com/alloy-rs/alloy/issues/1397)
- Impl From<Eip2718Error> for alloy_rlp::Error ([#1359]https://github.com/alloy-rs/alloy/issues/1359)
- Add Header::num_hash_slow ([#1357]https://github.com/alloy-rs/alloy/issues/1357)
- [consensus] Generic Block Type ([#1319]https://github.com/alloy-rs/alloy/issues/1319)
- [consensus] Move requests struct definition from reth ([#1326]https://github.com/alloy-rs/alloy/issues/1326)

### Miscellaneous Tasks

- Release 0.4.0
- Rm outdated comments ([#1392]https://github.com/alloy-rs/alloy/issues/1392)

### Other

- Add supertrait alloy_consensus::Transaction to RPC TransactionResponse ([#1387]https://github.com/alloy-rs/alloy/issues/1387)
- Return static `Eip658Value` from `TxReceipt` trait method ([#1394]https://github.com/alloy-rs/alloy/issues/1394)
- Auto-impl `alloy_consensus::TxReceipt` for ref ([#1395]https://github.com/alloy-rs/alloy/issues/1395)
- Make `gas_limit` u64 for transactions ([#1382]https://github.com/alloy-rs/alloy/issues/1382)
- Make `Header` blob fees u64 ([#1377]https://github.com/alloy-rs/alloy/issues/1377)
- Make `Header` `base_fee_per_gas` u64 ([#1375]https://github.com/alloy-rs/alloy/issues/1375)
- Make `Header` gas limit u64 ([#1333]https://github.com/alloy-rs/alloy/issues/1333)
- Add `Receipts` struct ([#1247]https://github.com/alloy-rs/alloy/issues/1247)
- Add full feature to `derive_more` ([#1335]https://github.com/alloy-rs/alloy/issues/1335)
- Add `BlockHeader` getter trait ([#1302]https://github.com/alloy-rs/alloy/issues/1302)
- Implement custom default for `Account` representing a valid empty account ([#1313]https://github.com/alloy-rs/alloy/issues/1313)

## [0.3.6]https://github.com/alloy-rs/alloy/releases/tag/v0.3.6 - 2024-09-18

### Miscellaneous Tasks

- Release 0.3.6

## [0.3.5]https://github.com/alloy-rs/alloy/releases/tag/v0.3.5 - 2024-09-13

### Miscellaneous Tasks

- Release 0.3.5

## [0.3.4]https://github.com/alloy-rs/alloy/releases/tag/v0.3.4 - 2024-09-13

### Miscellaneous Tasks

- Release 0.3.4
- [consensus] Remove Header Method ([#1271]https://github.com/alloy-rs/alloy/issues/1271)
- [consensus] Alloc by Default ([#1272]https://github.com/alloy-rs/alloy/issues/1272)

### Other

- Implement `seal` helper for `Header` ([#1269]https://github.com/alloy-rs/alloy/issues/1269)

## [0.3.3]https://github.com/alloy-rs/alloy/releases/tag/v0.3.3 - 2024-09-10

### Miscellaneous Tasks

- Release 0.3.3
- Require destination for 7702 ([#1262]https://github.com/alloy-rs/alloy/issues/1262)

### Other

- Implement `AsRef` for `Header` ([#1260]https://github.com/alloy-rs/alloy/issues/1260)

## [0.3.2]https://github.com/alloy-rs/alloy/releases/tag/v0.3.2 - 2024-09-09

### Bug Fixes

- [consensus] Remove Unused Alloc Vecs ([#1250]https://github.com/alloy-rs/alloy/issues/1250)

### Miscellaneous Tasks

- Release 0.3.2

### Other

- Impl `exceeds_allowed_future_timestamp` for `Header` ([#1237]https://github.com/alloy-rs/alloy/issues/1237)
- Impl `is_zero_difficulty` for `Header` ([#1236]https://github.com/alloy-rs/alloy/issues/1236)
- Impl parent_num_hash for Header ([#1238]https://github.com/alloy-rs/alloy/issues/1238)
- Implement `Arbitrary` for `Header` ([#1235]https://github.com/alloy-rs/alloy/issues/1235)

## [0.3.1]https://github.com/alloy-rs/alloy/releases/tag/v0.3.1 - 2024-09-02

### Bug Fixes

- Value of TxEip1559.ty ([#1210]https://github.com/alloy-rs/alloy/issues/1210)

### Features

- Derive `arbitrary::Arbitrary` for `TxEip7702` ([#1216]https://github.com/alloy-rs/alloy/issues/1216)
- Implement `tx_type` for `TxEip7702` ([#1214]https://github.com/alloy-rs/alloy/issues/1214)

### Miscellaneous Tasks

- Release 0.3.1

### Other

- Rm useless methods for `TxEip7702` ([#1221]https://github.com/alloy-rs/alloy/issues/1221)

## [0.3.0]https://github.com/alloy-rs/alloy/releases/tag/v0.3.0 - 2024-08-28

### Dependencies

- Rm 2930 and 7702 - use alloy-rs/eips ([#1181]https://github.com/alloy-rs/alloy/issues/1181)

### Features

- Make signature methods generic over EncodableSignature ([#1138]https://github.com/alloy-rs/alloy/issues/1138)
- Add 7702 tx enum ([#1059]https://github.com/alloy-rs/alloy/issues/1059)
- Use EncodableSignature for tx encoding ([#1100]https://github.com/alloy-rs/alloy/issues/1100)
- [consensus] Add `From<ConsolidationRequest>` for `Request` ([#1083]https://github.com/alloy-rs/alloy/issues/1083)
- Expose encoded_len_with_signature() ([#1063]https://github.com/alloy-rs/alloy/issues/1063)
- Add 7702 tx type ([#1046]https://github.com/alloy-rs/alloy/issues/1046)
- Impl `arbitrary` for tx structs ([#1050]https://github.com/alloy-rs/alloy/issues/1050)

### Miscellaneous Tasks

- Release 0.3.0
- [consensus] Add missing getter trait methods for `alloy_consensus::Transaction` ([#1197]https://github.com/alloy-rs/alloy/issues/1197)
- Release 0.2.1
- Chore : fix typos ([#1087]https://github.com/alloy-rs/alloy/issues/1087)
- Release 0.2.0

### Other

- Add trait methods for constructing `alloy_rpc_types_eth::Transaction` to `alloy_consensus::Transaction` ([#1172]https://github.com/alloy-rs/alloy/issues/1172)
- Update TxType comment ([#1175]https://github.com/alloy-rs/alloy/issues/1175)
- Add payload length methods ([#1152]https://github.com/alloy-rs/alloy/issues/1152)
- `alloy-consensus` should use `alloy_primitives::Sealable` ([#1072]https://github.com/alloy-rs/alloy/issues/1072)

### Styling

- Remove proptest in all crates and Arbitrary derives ([#966]https://github.com/alloy-rs/alloy/issues/966)

## [0.1.4]https://github.com/alloy-rs/alloy/releases/tag/v0.1.4 - 2024-07-08

### Features

- Impl Transaction for TxEnvelope ([#1006]https://github.com/alloy-rs/alloy/issues/1006)

### Miscellaneous Tasks

- Release 0.1.4

### Other

- Remove signature.v parity before calculating tx hash ([#893]https://github.com/alloy-rs/alloy/issues/893)

## [0.1.3]https://github.com/alloy-rs/alloy/releases/tag/v0.1.3 - 2024-06-25

### Documentation

- Copy/paste error of eip-7251 link ([#961]https://github.com/alloy-rs/alloy/issues/961)

### Features

- Add eip-7702 helpers ([#950]https://github.com/alloy-rs/alloy/issues/950)

### Miscellaneous Tasks

- Release 0.1.3
- [eips] Make `sha2` optional, add `kzg-sidecar` feature ([#949]https://github.com/alloy-rs/alloy/issues/949)

## [0.1.2]https://github.com/alloy-rs/alloy/releases/tag/v0.1.2 - 2024-06-19

### Documentation

- Add per-crate changelogs ([#914]https://github.com/alloy-rs/alloy/issues/914)

### Features

- Add eip-7251 consolidation request ([#919]https://github.com/alloy-rs/alloy/issues/919)

### Miscellaneous Tasks

- Release 0.1.2
- Update changelogs for v0.1.1 ([#922]https://github.com/alloy-rs/alloy/issues/922)
- Add docs.rs metadata to all manifests ([#917]https://github.com/alloy-rs/alloy/issues/917)

## [0.1.1]https://github.com/alloy-rs/alloy/releases/tag/v0.1.1 - 2024-06-17

### Bug Fixes

- Make test compile ([#873]https://github.com/alloy-rs/alloy/issues/873)
- Support pre-658 status codes ([#848]https://github.com/alloy-rs/alloy/issues/848)
- Add request mod back ([#796]https://github.com/alloy-rs/alloy/issues/796)
- Make eip-7685 req untagged ([#743]https://github.com/alloy-rs/alloy/issues/743)
- Account for requests root in header mem size ([#706]https://github.com/alloy-rs/alloy/issues/706)
- Add check before allocation in `SimpleCoder::decode_one()` ([#689]https://github.com/alloy-rs/alloy/issues/689)
- [consensus] `TxEip4844Variant::into_signed` RLP ([#596]https://github.com/alloy-rs/alloy/issues/596)
- Add more generics to any and receipt with bloom ([#559]https://github.com/alloy-rs/alloy/issues/559)
- Change `Header::nonce` to `B64` ([#485]https://github.com/alloy-rs/alloy/issues/485)
- Infinite loop while decoding a list of transactions ([#432]https://github.com/alloy-rs/alloy/issues/432)
- Mandatory `to` on `TxEip4844` ([#355]https://github.com/alloy-rs/alloy/issues/355)
- Use enveloped encoding for typed transactions ([#239]https://github.com/alloy-rs/alloy/issues/239)
- Add encode_for_signing to Transaction, fix Ledger sign_transaction ([#161]https://github.com/alloy-rs/alloy/issues/161)
- [`consensus`] Ensure into_signed forces correct format for eip1559/2930 txs ([#150]https://github.com/alloy-rs/alloy/issues/150)
- [`eips`/`consensus`] Correctly decode txs on `TxEnvelope` ([#148]https://github.com/alloy-rs/alloy/issues/148)
- [consensus] Correct TxType flag in EIP-2718 encoding ([#138]https://github.com/alloy-rs/alloy/issues/138)
- [`consensus`] Populate chain id when decoding signed legacy txs ([#137]https://github.com/alloy-rs/alloy/issues/137)

### Dependencies

- [deps] Update all dependencies ([#258]https://github.com/alloy-rs/alloy/issues/258)
- Alloy-consensus crate ([#83]https://github.com/alloy-rs/alloy/issues/83)

### Documentation

- Update descriptions and top level summary ([#128]https://github.com/alloy-rs/alloy/issues/128)

### Features

- Derive serde for header ([#902]https://github.com/alloy-rs/alloy/issues/902)
- Move `{,With}OtherFields` to serde crate ([#892]https://github.com/alloy-rs/alloy/issues/892)
- Add as_ is_ functions to envelope ([#872]https://github.com/alloy-rs/alloy/issues/872)
- Put wasm-bindgen-futures dep behind the `wasm-bindgen` feature flag ([#795]https://github.com/alloy-rs/alloy/issues/795)
- [serde] Deprecate individual num::* for a generic `quantity` module ([#855]https://github.com/alloy-rs/alloy/issues/855)
- Feat(consensus) Add test for account  ([#801]https://github.com/alloy-rs/alloy/issues/801)
- Feat(consensus) implement RLP for Account information ([#789]https://github.com/alloy-rs/alloy/issues/789)
- [`provider`] `eth_getAccount` support ([#760]https://github.com/alloy-rs/alloy/issues/760)
- Derive proptest arbitrary for `Request` ([#732]https://github.com/alloy-rs/alloy/issues/732)
- Serde for `Request` ([#731]https://github.com/alloy-rs/alloy/issues/731)
- Derive arbitrary for `Request` ([#729]https://github.com/alloy-rs/alloy/issues/729)
- Rlp enc/dec for requests ([#728]https://github.com/alloy-rs/alloy/issues/728)
- [consensus, eips] EIP-7002 system contract ([#727]https://github.com/alloy-rs/alloy/issues/727)
- Add eth mainnet EL requests envelope ([#707]https://github.com/alloy-rs/alloy/issues/707)
- Add eip-7685 requests root to header ([#668]https://github.com/alloy-rs/alloy/issues/668)
- Use alloy types for BlobTransactionSidecar ([#673]https://github.com/alloy-rs/alloy/issues/673)
- Passthrough methods on txenvelope ([#598]https://github.com/alloy-rs/alloy/issues/598)
- Add the txhash getter. ([#574]https://github.com/alloy-rs/alloy/issues/574)
- Refactor request builder workflow ([#431]https://github.com/alloy-rs/alloy/issues/431)
- Export inner encoding / decoding functions from `Tx*` types ([#529]https://github.com/alloy-rs/alloy/issues/529)
- `std` feature flag for `alloy-consensus` ([#461]https://github.com/alloy-rs/alloy/issues/461)
- Receipt qol functions ([#459]https://github.com/alloy-rs/alloy/issues/459)
- Add AnyReceiptEnvelope ([#446]https://github.com/alloy-rs/alloy/issues/446)
- Embed primitives Log in rpc Log and consensus Receipt in rpc Receipt ([#396]https://github.com/alloy-rs/alloy/issues/396)
- Serde for consensus tx types ([#361]https://github.com/alloy-rs/alloy/issues/361)
- Re-export EnvKzgSettings ([#375]https://github.com/alloy-rs/alloy/issues/375)
- Versioned hashes without kzg ([#360]https://github.com/alloy-rs/alloy/issues/360)
- `impl TryFrom<Transaction> for TxEnvelope` ([#343]https://github.com/alloy-rs/alloy/issues/343)
- 4844 SidecarBuilder ([#250]https://github.com/alloy-rs/alloy/issues/250)
- Derive `Hash` for `TypedTransaction` ([#284]https://github.com/alloy-rs/alloy/issues/284)
- Network abstraction and transaction builder ([#190]https://github.com/alloy-rs/alloy/issues/190)
- [`consensus`] Add extra EIP-4844 types needed ([#229]https://github.com/alloy-rs/alloy/issues/229)
- [`alloy-consensus`] `EIP4844` tx support ([#185]https://github.com/alloy-rs/alloy/issues/185)

### Miscellaneous Tasks

- [clippy] Apply lint suggestions ([#903]https://github.com/alloy-rs/alloy/issues/903)
- Rm unused txtype mod ([#879]https://github.com/alloy-rs/alloy/issues/879)
- [other] Use type aliases where possible to improve clarity  ([#859]https://github.com/alloy-rs/alloy/issues/859)
- [docs] Crate completeness and fix typos ([#861]https://github.com/alloy-rs/alloy/issues/861)
- [docs] Add doc aliases ([#843]https://github.com/alloy-rs/alloy/issues/843)
- Fix remaining warnings, add TODO for proptest-derive ([#819]https://github.com/alloy-rs/alloy/issues/819)
- [consensus] Re-export EIP-4844 transactions ([#777]https://github.com/alloy-rs/alloy/issues/777)
- Remove rlp encoding for `Request` ([#751]https://github.com/alloy-rs/alloy/issues/751)
- Move blob validation to sidecar ([#677]https://github.com/alloy-rs/alloy/issues/677)
- Clippy, warnings ([#504]https://github.com/alloy-rs/alloy/issues/504)
- Improve hyper http error messages ([#469]https://github.com/alloy-rs/alloy/issues/469)
- Dedupe blob in consensus and rpc ([#401]https://github.com/alloy-rs/alloy/issues/401)
- Clean up kzg and features ([#386]https://github.com/alloy-rs/alloy/issues/386)

### Other

- [Fix] use Eip2718Error, add docs on different encodings ([#869]https://github.com/alloy-rs/alloy/issues/869)
- Add clippy at workspace level ([#766]https://github.com/alloy-rs/alloy/issues/766)
- Update clippy warnings ([#765]https://github.com/alloy-rs/alloy/issues/765)
- Arbitrary Sidecar implementation + build. Closes [#680]https://github.com/alloy-rs/alloy/issues/680. ([#708]https://github.com/alloy-rs/alloy/issues/708)
- Use into instead of from ([#749]https://github.com/alloy-rs/alloy/issues/749)
- Correctly sign non legacy transaction without EIP155 ([#647]https://github.com/alloy-rs/alloy/issues/647)
- Some refactoring ([#739]https://github.com/alloy-rs/alloy/issues/739)
- Replace into_receipt by into ([#735]https://github.com/alloy-rs/alloy/issues/735)
- Replace into_tx by into ([#737]https://github.com/alloy-rs/alloy/issues/737)
- Use Self when possible ([#711]https://github.com/alloy-rs/alloy/issues/711)
- Use `From<Address>` for `TxKind` ([#651]https://github.com/alloy-rs/alloy/issues/651)
- Extension ([#474]https://github.com/alloy-rs/alloy/issues/474)
- TypeTransaction conversion trait impls ([#472]https://github.com/alloy-rs/alloy/issues/472)
- Mark envelopes non-exhaustive ([#456]https://github.com/alloy-rs/alloy/issues/456)
- Numeric type audit: network, consensus, provider, rpc-types ([#454]https://github.com/alloy-rs/alloy/issues/454)
- Check no_std in CI ([#367]https://github.com/alloy-rs/alloy/issues/367)

### Refactor

- Refactor around TxEip4844Variant ([#738]https://github.com/alloy-rs/alloy/issues/738)
- Clean up legacy serde helpers ([#624]https://github.com/alloy-rs/alloy/issues/624)

### Styling

- Make additional TxReceipt impls generic over T ([#617]https://github.com/alloy-rs/alloy/issues/617)
- [Feature] Receipt trait in alloy-consensus ([#477]https://github.com/alloy-rs/alloy/issues/477)
- Sort derives ([#499]https://github.com/alloy-rs/alloy/issues/499)
- Implement `arbitrary` for `TransactionReceipt` ([#449]https://github.com/alloy-rs/alloy/issues/449)

[`alloy`]: https://crates.io/crates/alloy
[alloy]: https://crates.io/crates/alloy
[`alloy-core`]: https://crates.io/crates/alloy-core
[alloy-core]: https://crates.io/crates/alloy-core
[`alloy-consensus`]: https://crates.io/crates/alloy-consensus
[alloy-consensus]: https://crates.io/crates/alloy-consensus
[`alloy-contract`]: https://crates.io/crates/alloy-contract
[alloy-contract]: https://crates.io/crates/alloy-contract
[`alloy-eips`]: https://crates.io/crates/alloy-eips
[alloy-eips]: https://crates.io/crates/alloy-eips
[`alloy-genesis`]: https://crates.io/crates/alloy-genesis
[alloy-genesis]: https://crates.io/crates/alloy-genesis
[`alloy-json-rpc`]: https://crates.io/crates/alloy-json-rpc
[alloy-json-rpc]: https://crates.io/crates/alloy-json-rpc
[`alloy-network`]: https://crates.io/crates/alloy-network
[alloy-network]: https://crates.io/crates/alloy-network
[`alloy-node-bindings`]: https://crates.io/crates/alloy-node-bindings
[alloy-node-bindings]: https://crates.io/crates/alloy-node-bindings
[`alloy-provider`]: https://crates.io/crates/alloy-provider
[alloy-provider]: https://crates.io/crates/alloy-provider
[`alloy-pubsub`]: https://crates.io/crates/alloy-pubsub
[alloy-pubsub]: https://crates.io/crates/alloy-pubsub
[`alloy-rpc-client`]: https://crates.io/crates/alloy-rpc-client
[alloy-rpc-client]: https://crates.io/crates/alloy-rpc-client
[`alloy-rpc-types`]: https://crates.io/crates/alloy-rpc-types
[alloy-rpc-types]: https://crates.io/crates/alloy-rpc-types
[`alloy-rpc-types-anvil`]: https://crates.io/crates/alloy-rpc-types-anvil
[alloy-rpc-types-anvil]: https://crates.io/crates/alloy-rpc-types-anvil
[`alloy-rpc-types-beacon`]: https://crates.io/crates/alloy-rpc-types-beacon
[alloy-rpc-types-beacon]: https://crates.io/crates/alloy-rpc-types-beacon
[`alloy-rpc-types-engine`]: https://crates.io/crates/alloy-rpc-types-engine
[alloy-rpc-types-engine]: https://crates.io/crates/alloy-rpc-types-engine
[`alloy-rpc-types-eth`]: https://crates.io/crates/alloy-rpc-types-eth
[alloy-rpc-types-eth]: https://crates.io/crates/alloy-rpc-types-eth
[`alloy-rpc-types-trace`]: https://crates.io/crates/alloy-rpc-types-trace
[alloy-rpc-types-trace]: https://crates.io/crates/alloy-rpc-types-trace
[`alloy-serde`]: https://crates.io/crates/alloy-serde
[alloy-serde]: https://crates.io/crates/alloy-serde
[`alloy-signer`]: https://crates.io/crates/alloy-signer
[alloy-signer]: https://crates.io/crates/alloy-signer
[`alloy-signer-aws`]: https://crates.io/crates/alloy-signer-aws
[alloy-signer-aws]: https://crates.io/crates/alloy-signer-aws
[`alloy-signer-gcp`]: https://crates.io/crates/alloy-signer-gcp
[alloy-signer-gcp]: https://crates.io/crates/alloy-signer-gcp
[`alloy-signer-ledger`]: https://crates.io/crates/alloy-signer-ledger
[alloy-signer-ledger]: https://crates.io/crates/alloy-signer-ledger
[`alloy-signer-local`]: https://crates.io/crates/alloy-signer-local
[alloy-signer-local]: https://crates.io/crates/alloy-signer-local
[`alloy-signer-trezor`]: https://crates.io/crates/alloy-signer-trezor
[alloy-signer-trezor]: https://crates.io/crates/alloy-signer-trezor
[`alloy-signer-wallet`]: https://crates.io/crates/alloy-signer-wallet
[alloy-signer-wallet]: https://crates.io/crates/alloy-signer-wallet
[`alloy-transport`]: https://crates.io/crates/alloy-transport
[alloy-transport]: https://crates.io/crates/alloy-transport
[`alloy-transport-http`]: https://crates.io/crates/alloy-transport-http
[alloy-transport-http]: https://crates.io/crates/alloy-transport-http
[`alloy-transport-ipc`]: https://crates.io/crates/alloy-transport-ipc
[alloy-transport-ipc]: https://crates.io/crates/alloy-transport-ipc
[`alloy-transport-ws`]: https://crates.io/crates/alloy-transport-ws
[alloy-transport-ws]: https://crates.io/crates/alloy-transport-ws

<!-- generated by git-cliff -->