Commit aac27bc 1 parent 4ba5323 commit aac27bc Copy full SHA for aac27bc
File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ This repository contains the following crates:
44
44
- [ ` alloy-genesis ` ] - Ethereum genesis file definitions
45
45
- [ ` alloy-json-rpc ` ] - Core data types for JSON-RPC 2.0 clients
46
46
- [ ` alloy-network ` ] - Network abstraction for RPC types
47
+ - [ ` alloy-network-primitives ` ] - Primitive types for the network abstraction
47
48
- [ ` alloy-node-bindings ` ] - Ethereum execution-layer client bindings
48
49
- [ ` alloy-provider ` ] - Interface with an Ethereum blockchain
49
50
- [ ` alloy-pubsub ` ] - Ethereum JSON-RPC [ publish-subscribe] tower service and type definitions
@@ -77,6 +78,7 @@ This repository contains the following crates:
77
78
[ `alloy-genesis` ] : https://github.com/alloy-rs/alloy/tree/main/crates/genesis
78
79
[ `alloy-json-rpc` ] : https://github.com/alloy-rs/alloy/tree/main/crates/json-rpc
79
80
[ `alloy-network` ] : https://github.com/alloy-rs/alloy/tree/main/crates/network
81
+ [ `alloy-network-primitives` ] : https://github.com/alloy-rs/alloy/tree/main/crates/network-primitives
80
82
[ `alloy-node-bindings` ] : https://github.com/alloy-rs/alloy/tree/main/crates/node-bindings
81
83
[ `alloy-provider` ] : https://github.com/alloy-rs/alloy/tree/main/crates/provider
82
84
[ `alloy-pubsub` ] : https://github.com/alloy-rs/alloy/tree/main/crates/pubsub
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ mod any;
24
24
pub use any:: { AnyNetwork , AnyTxType } ;
25
25
26
26
pub use alloy_eips:: eip2718;
27
- pub use alloy_network_primitives:: { ReceiptResponse , TransactionResponse } ;
27
+ pub use alloy_network_primitives:: { self as primitives , ReceiptResponse , TransactionResponse } ;
28
28
29
29
/// Captures type info for network-specific RPC requests/responses.
30
30
///
You can’t perform that action at this time.
0 commit comments