alloy-provider 0.6.1

Interface with an Ethereum blockchain
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
# 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.6.0]https://github.com/alloy-rs/alloy/releases/tag/v0.6.0 - 2024-11-06

### Bug Fixes

- Wrap dashmap in Arc ([#1624]https://github.com/alloy-rs/alloy/issues/1624)
- [`provider`] Make `Caller` `EthCall` specific ([#1620]https://github.com/alloy-rs/alloy/issues/1620)
- Fix typo in RecommendedFillers associated type ([#1536]https://github.com/alloy-rs/alloy/issues/1536)
- [`provider`] Return `Subscription<N::HeaderResponse>` ([#1586]https://github.com/alloy-rs/alloy/issues/1586)
- [alloy-provider] `get_block_by_number` arg ([#1582]https://github.com/alloy-rs/alloy/issues/1582)

### Features

- Embed consensus header into RPC ([#1573]https://github.com/alloy-rs/alloy/issues/1573)
- Introduce `anvil_reorg` and related types. ([#1576]https://github.com/alloy-rs/alloy/issues/1576)
- Make eth_call and eth_estimateGas default to using Pending block ([#1568]https://github.com/alloy-rs/alloy/issues/1568)

### Miscellaneous Tasks

- Release 0.6.0

### Other

- Embed TxEnvelope into `rpc-types-eth::Transaction` ([#1460]https://github.com/alloy-rs/alloy/issues/1460)
- Add `BadBlock` type to `debug_getbadblocks` return type ([#1566]https://github.com/alloy-rs/alloy/issues/1566)

### Testing

- Fix tests ([#1583]https://github.com/alloy-rs/alloy/issues/1583)

## [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

### Documentation

- [prestate] Comment prestate more clear ([#1527]https://github.com/alloy-rs/alloy/issues/1527)

### Miscellaneous Tasks

- Release 0.5.3

### Testing

- Fix more ci only ([#1402]https://github.com/alloy-rs/alloy/issues/1402)

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

### Miscellaneous Tasks

- Release 0.5.2

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

### Miscellaneous Tasks

- Release 0.5.1

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

### Bug Fixes

- Change bound in RecommendedFillers to TxFiller<Self> ([#1466]https://github.com/alloy-rs/alloy/issues/1466)
- Make RecommendedFillers generic over Network ([#1458]https://github.com/alloy-rs/alloy/issues/1458)
- [provider] Use wasmtimer for wasm32 target ([#1426]https://github.com/alloy-rs/alloy/issues/1426)
- Set chain id for eth signer ([#1425]https://github.com/alloy-rs/alloy/issues/1425)

### Features

- Make Pending transaction own the provider ([#1500]https://github.com/alloy-rs/alloy/issues/1500)
- Add missing eth_getTransaction methods ([#1457]https://github.com/alloy-rs/alloy/issues/1457)
- [provider] LRUCache Layer ([#954]https://github.com/alloy-rs/alloy/issues/954)

### Miscellaneous Tasks

- Release 0.5.0
- Flatten eip-7685 requests into a single opaque list ([#1383]https://github.com/alloy-rs/alloy/issues/1383)
- Refactor some match with same arms ([#1463]https://github.com/alloy-rs/alloy/issues/1463)
- More simplifications ([#1469]https://github.com/alloy-rs/alloy/issues/1469)
- Some lifetime simplifications ([#1467]https://github.com/alloy-rs/alloy/issues/1467)
- Some small improvements ([#1461]https://github.com/alloy-rs/alloy/issues/1461)
- Use pending for next initial nonce ([#1455]https://github.com/alloy-rs/alloy/issues/1455)

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

### Miscellaneous Tasks

- Release 0.4.2

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

### Miscellaneous Tasks

- Release 0.4.1

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

### Bug Fixes

- Ensure `max_fee_per_blob_gas` field handles `Some(0)` gracefully ([#1389]https://github.com/alloy-rs/alloy/issues/1389)
- [`rpc-client`] Add test for BuiltInConnString.connect_boxed ([#1331]https://github.com/alloy-rs/alloy/issues/1331)
- RecommendedFillers typo ([#1311]https://github.com/alloy-rs/alloy/issues/1311)

### Features

- Replace std/hashbrown with alloy_primitives::map ([#1384]https://github.com/alloy-rs/alloy/issues/1384)
- [transport-http] JWT auth layer ([#1314]https://github.com/alloy-rs/alloy/issues/1314)
- [provider] Subscribe to new blocks if possible in heartbeat ([#1321]https://github.com/alloy-rs/alloy/issues/1321)
- Add eth_simulateV1 ([#1323]https://github.com/alloy-rs/alloy/issues/1323)

### Miscellaneous Tasks

- Release 0.4.0
- Move type def to where it belongs ([#1391]https://github.com/alloy-rs/alloy/issues/1391)
- Fix some warnings ([#1320]https://github.com/alloy-rs/alloy/issues/1320)

### Other

- 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)

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

### Features

- ProviderCall ([#788]https://github.com/alloy-rs/alloy/issues/788)
- [transport-http] Layer client ([#1227]https://github.com/alloy-rs/alloy/issues/1227)

### Miscellaneous Tasks

- Release 0.3.6

### Refactor

- Separate transaction builders for tx types ([#1259]https://github.com/alloy-rs/alloy/issues/1259)

## [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

### Bug Fixes

- `debug_traceCallMany` and `trace_callMany` ([#1278]https://github.com/alloy-rs/alloy/issues/1278)
- Serde for `eth_simulateV1` ([#1273]https://github.com/alloy-rs/alloy/issues/1273)

### Features

- [engine] Optional Serde ([#1283]https://github.com/alloy-rs/alloy/issues/1283)
- [alloy-rpc-types-eth] Optional serde ([#1276]https://github.com/alloy-rs/alloy/issues/1276)
- Improve node bindings ([#1279]https://github.com/alloy-rs/alloy/issues/1279)

### Miscellaneous Tasks

- Release 0.3.4

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

### Miscellaneous Tasks

- Release 0.3.3

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

### Miscellaneous Tasks

- Release 0.3.2

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

### Features

- [alloy-provider] Add abstraction for `NonceFiller` behavior ([#1108]https://github.com/alloy-rs/alloy/issues/1108)

### Miscellaneous Tasks

- Release 0.3.1

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

### Bug Fixes

- Make `Block::hash` required ([#1205]https://github.com/alloy-rs/alloy/issues/1205)
- [provider] Serialize no parameters as `[]` instead of `null` ([#1193]https://github.com/alloy-rs/alloy/issues/1193)
- Use `server_id` when unsubscribing ([#1182]https://github.com/alloy-rs/alloy/issues/1182)
- Return more user-friendly error on tx timeout ([#1145]https://github.com/alloy-rs/alloy/issues/1145)
- Use `BlockId` superset over `BlockNumberOrTag` where applicable  ([#1135]https://github.com/alloy-rs/alloy/issues/1135)
- [provider] Prevent panic from having 0 keys when calling `on_anvil_with_wallet_and_config` ([#1055]https://github.com/alloy-rs/alloy/issues/1055)
- [provider] Do not overflow LRU cache capacity in ChainStreamPoller ([#1052]https://github.com/alloy-rs/alloy/issues/1052)
- [admin] Id in NodeInfo is string instead of B256 ([#1038]https://github.com/alloy-rs/alloy/issues/1038)

### Dependencies

- [deps] Bump some deps ([#1141]https://github.com/alloy-rs/alloy/issues/1141)
- Revert "chore(deps): bump some deps"
- [deps] Bump some deps

### Features

- Add erc4337 endpoint methods to provider ([#1176]https://github.com/alloy-rs/alloy/issues/1176)
- Add block and transaction generics to otterscan and txpool types ([#1183]https://github.com/alloy-rs/alloy/issues/1183)
- Network-parameterized block responses ([#1106]https://github.com/alloy-rs/alloy/issues/1106)
- Add get raw transaction by hash ([#1168]https://github.com/alloy-rs/alloy/issues/1168)
- Add rpc namespace ([#994]https://github.com/alloy-rs/alloy/issues/994)

### Miscellaneous Tasks

- Release 0.3.0
- Clippy für docs ([#1194]https://github.com/alloy-rs/alloy/issues/1194)
- Release 0.2.1
- Correctly cfg unused type ([#1117]https://github.com/alloy-rs/alloy/issues/1117)
- Release 0.2.0
- Fix unnameable types ([#1029]https://github.com/alloy-rs/alloy/issues/1029)

### Other

- Add `AccessListResult` type (EIP-2930) ([#1110]https://github.com/alloy-rs/alloy/issues/1110)
- Removing async get account ([#1080]https://github.com/alloy-rs/alloy/issues/1080)

### Refactor

- Add network-primitives ([#1101]https://github.com/alloy-rs/alloy/issues/1101)

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

### Bug Fixes

- Fix watching already mined transactions ([#997]https://github.com/alloy-rs/alloy/issues/997)

### Features

- Add missing admin_* methods ([#991]https://github.com/alloy-rs/alloy/issues/991)
- Support web3_sha3 provider function ([#996]https://github.com/alloy-rs/alloy/issues/996)
- Add trace_get ([#987]https://github.com/alloy-rs/alloy/issues/987)
- Add net rpc namespace ([#989]https://github.com/alloy-rs/alloy/issues/989)
- Add missing debug_* rpc methods ([#986]https://github.com/alloy-rs/alloy/issues/986)

### Miscellaneous Tasks

- Release 0.1.4
- [provider] Simplify nonce filler ([#976]https://github.com/alloy-rs/alloy/issues/976)

### Testing

- Fix flaky anvil test ([#992]https://github.com/alloy-rs/alloy/issues/992)

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

### Bug Fixes

- Enable tls12 in rustls ([#952]https://github.com/alloy-rs/alloy/issues/952)

### Features

- Add trace_filter method ([#946]https://github.com/alloy-rs/alloy/issues/946)

### Miscellaneous Tasks

- Release 0.1.3
- Nightly clippy ([#947]https://github.com/alloy-rs/alloy/issues/947)

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

### Documentation

- Update get_balance docs ([#938]https://github.com/alloy-rs/alloy/issues/938)
- Touch up docs, TODOs ([#918]https://github.com/alloy-rs/alloy/issues/918)
- Add per-crate changelogs ([#914]https://github.com/alloy-rs/alloy/issues/914)

### Features

- Add trace_raw_transaction and trace_replay_block_transactions ([#925]https://github.com/alloy-rs/alloy/issues/925)
- [provider] Support ethCall optional blockId serialization ([#900]https://github.com/alloy-rs/alloy/issues/900)

### 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

- Downgrade tokio-tungstenite ([#881]https://github.com/alloy-rs/alloy/issues/881)
- Set minimal priority fee to 1 wei ([#808]https://github.com/alloy-rs/alloy/issues/808)
- Use envelopes in get_payload API ([#807]https://github.com/alloy-rs/alloy/issues/807)
- Return ExecutionPayloadV3 from get_payload_v3 ([#803]https://github.com/alloy-rs/alloy/issues/803)
- Correctly serialize eth_call params ([#778]https://github.com/alloy-rs/alloy/issues/778)
- Debug_trace arguments ([#730]https://github.com/alloy-rs/alloy/issues/730)
- Use U64 for feeHistory blocknumber ([#694]https://github.com/alloy-rs/alloy/issues/694)
- [provider] Map to primitive u128 ([#678]https://github.com/alloy-rs/alloy/issues/678)
- More abstraction for block transactions ([#666]https://github.com/alloy-rs/alloy/issues/666)
- Signer filler now propagates missing keys from builder ([#637]https://github.com/alloy-rs/alloy/issues/637)
- Better tx receipt mitigation ([#614]https://github.com/alloy-rs/alloy/issues/614)
- [provider] Uncle methods for block hash ([#587]https://github.com/alloy-rs/alloy/issues/587)
- [provider/debug] Arg type in debug_trace_call ([#585]https://github.com/alloy-rs/alloy/issues/585)
- Signer fills from if unset ([#555]https://github.com/alloy-rs/alloy/issues/555)
- Tmp fix for PendingTransactionBuilder::get_receipt ([#558]https://github.com/alloy-rs/alloy/issues/558)
- Conflict between to change and debug tests ([#550]https://github.com/alloy-rs/alloy/issues/550)
- Dont use fuse::select_next_some ([#532]https://github.com/alloy-rs/alloy/issues/532)
- Eip1559 estimator ([#509]https://github.com/alloy-rs/alloy/issues/509)
- Correctly treat `confirmation` for `watch_pending_transaction` ([#381]https://github.com/alloy-rs/alloy/issues/381)
- Remove app-layer usage of transport error ([#363]https://github.com/alloy-rs/alloy/issues/363)
- [provider] 0x prefix in sendRawTransaction ([#369]https://github.com/alloy-rs/alloy/issues/369)
- Change nonce from `U64` to `u64`  ([#341]https://github.com/alloy-rs/alloy/issues/341)
- Make `TransactionReceipt::transaction_hash` field mandatory ([#337]https://github.com/alloy-rs/alloy/issues/337)
- Fix subscribe blocks ([#330]https://github.com/alloy-rs/alloy/issues/330)

### Documentation

- [provider] Add examples to `raw_request{,dyn}` ([#486]https://github.com/alloy-rs/alloy/issues/486)
- Add aliases to `get_transaction_count` ([#420]https://github.com/alloy-rs/alloy/issues/420)
- More docs in `alloy-providers` ([#281]https://github.com/alloy-rs/alloy/issues/281)
- Add readmes

### Features

- Add trace_replay_transaction ([#908]https://github.com/alloy-rs/alloy/issues/908)
- Move `{,With}OtherFields` to serde crate ([#892]https://github.com/alloy-rs/alloy/issues/892)
- [alloy] Add `"full"` feature flag ([#877]https://github.com/alloy-rs/alloy/issues/877)
- [provider] Expose `ProviderBuilder` via `fn builder()` ([#858]https://github.com/alloy-rs/alloy/issues/858)
- [rpc] Split off `eth` namespace in `alloy-rpc-types` to `alloy-rpc-types-eth` ([#847]https://github.com/alloy-rs/alloy/issues/847)
- Add engine API v4 methods ([#853]https://github.com/alloy-rs/alloy/issues/853)
- Send_envelope ([#851]https://github.com/alloy-rs/alloy/issues/851)
- [rpc] Add remaining anvil rpc methods to provider ([#831]https://github.com/alloy-rs/alloy/issues/831)
- [rpc] Use `BlockTransactionsKind` enum instead of bool for full arguments ([#840]https://github.com/alloy-rs/alloy/issues/840)
- Full block ambiguity ([#832]https://github.com/alloy-rs/alloy/issues/832)
- Method on `Provider` to make a new `N::TransactionRequest` ([#812]https://github.com/alloy-rs/alloy/issues/812)
- Add overrides to eth_estimateGas ([#802]https://github.com/alloy-rs/alloy/issues/802)
- [`provider`] `eth_getAccount` support ([#760]https://github.com/alloy-rs/alloy/issues/760)
- Set poll interval based on connected chain ([#767]https://github.com/alloy-rs/alloy/issues/767)
- Block id convenience functions ([#757]https://github.com/alloy-rs/alloy/issues/757)
- Add `EngineApi` extension trait ([#676]https://github.com/alloy-rs/alloy/issues/676)
- Eth_call builder  ([#645]https://github.com/alloy-rs/alloy/issues/645)
- AnvilProvider ([#611]https://github.com/alloy-rs/alloy/issues/611)
- Allow to only fill a transaction request ([#590]https://github.com/alloy-rs/alloy/issues/590)
- WalletProvider ([#569]https://github.com/alloy-rs/alloy/issues/569)
- Refactor request builder workflow ([#431]https://github.com/alloy-rs/alloy/issues/431)
- [provider] `debug_*` methods ([#548]https://github.com/alloy-rs/alloy/issues/548)
- [provider] Geth `txpool_*` methods ([#546]https://github.com/alloy-rs/alloy/issues/546)
- [provider] Get_uncle_count ([#524]https://github.com/alloy-rs/alloy/issues/524)
- Joinable transaction fillers ([#426]https://github.com/alloy-rs/alloy/issues/426)
- `std` feature flag for `alloy-consensus` ([#461]https://github.com/alloy-rs/alloy/issues/461)
- Rename alloy-rpc-*-types to alloy-rpc-types-* ([#435]https://github.com/alloy-rs/alloy/issues/435)
- Improve and complete `alloy` prelude crate feature flag compatiblity ([#421]https://github.com/alloy-rs/alloy/issues/421)
- Default to Ethereum network in `alloy-provider` and `alloy-contract` ([#356]https://github.com/alloy-rs/alloy/issues/356)
- Embed primitives Log in rpc Log and consensus Receipt in rpc Receipt ([#396]https://github.com/alloy-rs/alloy/issues/396)
- Make HTTP provider optional ([#379]https://github.com/alloy-rs/alloy/issues/379)
- Implement `admin_trait`  ([#405]https://github.com/alloy-rs/alloy/issues/405)
- Handle 4844 fee ([#412]https://github.com/alloy-rs/alloy/issues/412)
- [providers] Connect_boxed api ([#342]https://github.com/alloy-rs/alloy/issues/342)
- Convenience functions for nonce and gas on `ProviderBuilder` ([#378]https://github.com/alloy-rs/alloy/issues/378)
- Add eth_blobBaseFee and eth_maxPriorityFeePerGas ([#380]https://github.com/alloy-rs/alloy/issues/380)
- `Provider::subscribe_logs` ([#339]https://github.com/alloy-rs/alloy/issues/339)
- [layers] GasEstimationLayer ([#326]https://github.com/alloy-rs/alloy/issues/326)
- [json-rpc] Use `Cow` instead of `&'static str` for method names ([#319]https://github.com/alloy-rs/alloy/issues/319)
- Update priority fee estimator ([#316]https://github.com/alloy-rs/alloy/issues/316)
- Move local signers to a separate crate, fix wasm ([#306]https://github.com/alloy-rs/alloy/issues/306)
- Default to Ethereum network in `ProviderBuilder` ([#304]https://github.com/alloy-rs/alloy/issues/304)
- Merge Provider traits into one ([#297]https://github.com/alloy-rs/alloy/issues/297)
- [providers] Event, polling and streaming methods ([#274]https://github.com/alloy-rs/alloy/issues/274)
- Nonce filling layer ([#276]https://github.com/alloy-rs/alloy/issues/276)
- `trace_call` and `trace_callMany` ([#277]https://github.com/alloy-rs/alloy/issues/277)

### Miscellaneous Tasks

- [clippy] Apply lint suggestions ([#903]https://github.com/alloy-rs/alloy/issues/903)
- [other] Use type aliases where possible to improve clarity  ([#859]https://github.com/alloy-rs/alloy/issues/859)
- [provider] Reorder methods in `Provider` trait ([#863]https://github.com/alloy-rs/alloy/issues/863)
- [provider] Document privileged status of EIP-1559 ([#850]https://github.com/alloy-rs/alloy/issues/850)
- [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)
- Move trace to extension trait ([#818]https://github.com/alloy-rs/alloy/issues/818)
- Fix remaining warnings, add TODO for proptest-derive ([#819]https://github.com/alloy-rs/alloy/issues/819)
- Get_transaction_by_hash returns Option<Transaction> ([#714]https://github.com/alloy-rs/alloy/issues/714)
- [general] Add CI workflow for Windows + fix IPC test ([#642]https://github.com/alloy-rs/alloy/issues/642)
- Add Default to GasEstimatorLayer ([#410]https://github.com/alloy-rs/alloy/issues/410)
- Rename `RpcClient::prepare` to `request` ([#299]https://github.com/alloy-rs/alloy/issues/299)

### Other

- [feat] Synchronous filling ([#841]https://github.com/alloy-rs/alloy/issues/841)
- RecommendFiller -> RecommendedFiller, move to fillers ([#825]https://github.com/alloy-rs/alloy/issues/825)
- 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)
- RpcWithBlock ([#674]https://github.com/alloy-rs/alloy/issues/674)
- Use Self when possible ([#711]https://github.com/alloy-rs/alloy/issues/711)
- Small refactor ([#652]https://github.com/alloy-rs/alloy/issues/652)
- Use `From<Address>` for `TxKind` ([#651]https://github.com/alloy-rs/alloy/issues/651)
- [Refactor] Move Provider into its own module ([#644]https://github.com/alloy-rs/alloy/issues/644)
- [Refactor] Delete the internal-test-utils crate ([#632]https://github.com/alloy-rs/alloy/issues/632)
- Expose SendableTx in providers ([#601]https://github.com/alloy-rs/alloy/issues/601)
- Temp get_uncle fix ([#589]https://github.com/alloy-rs/alloy/issues/589)
- Revert "chore: remove outdated license ([#510]https://github.com/alloy-rs/alloy/issues/510)" ([#513]https://github.com/alloy-rs/alloy/issues/513)
- Enable default-tls for alloy-provider/reqwest feature ([#483]https://github.com/alloy-rs/alloy/issues/483)
- Extension ([#474]https://github.com/alloy-rs/alloy/issues/474)
- Removed reqwest prefix ([#462]https://github.com/alloy-rs/alloy/issues/462)
- Numeric type audit: network, consensus, provider, rpc-types ([#454]https://github.com/alloy-rs/alloy/issues/454)
- Adds `check -Zcheck-cfg ` job ([#419]https://github.com/alloy-rs/alloy/issues/419)
- Use latest stable
- Rename `alloy-providers` to `alloy-provider` ([#278]https://github.com/alloy-rs/alloy/issues/278)
- Merge pull request [#3]https://github.com/alloy-rs/alloy/issues/3 from alloy-rs/prestwich/readme-and-cleanup
- Merge pull request [#2]https://github.com/alloy-rs/alloy/issues/2 from alloy-rs/prestwich/transports
- Rename middleware to provider

### Performance

- Remove getBlock request in feeHistory ([#414]https://github.com/alloy-rs/alloy/issues/414)

### Refactor

- [rpc] Extract `admin` and `txpool` into their respective crate ([#898]https://github.com/alloy-rs/alloy/issues/898)
- [signers] Use `signer` for single credentials and `wallet` for credential stores  ([#883]https://github.com/alloy-rs/alloy/issues/883)
- Improve eth_call internals ([#763]https://github.com/alloy-rs/alloy/issues/763)
- Change u64 to Duration ([#636]https://github.com/alloy-rs/alloy/issues/636)
- Make optional BlockId params required in provider functions ([#516]https://github.com/alloy-rs/alloy/issues/516)
- Rename to reqd_confs ([#353]https://github.com/alloy-rs/alloy/issues/353)

### Styling

- [Blocked] Update TransactionRequest's `to` field to TxKind ([#553]https://github.com/alloy-rs/alloy/issues/553)
- Remove outdated license ([#510]https://github.com/alloy-rs/alloy/issues/510)
- Sort derives ([#499]https://github.com/alloy-rs/alloy/issues/499)
- Rename `ManagedNonceLayer` to `NonceManagerLayer` ([#415]https://github.com/alloy-rs/alloy/issues/415)
- Eip1559Estimation return type ([#352]https://github.com/alloy-rs/alloy/issues/352)

### Testing

- Add rand feature in providers ([#910]https://github.com/alloy-rs/alloy/issues/910)

[`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 -->