-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlib.rs
More file actions
40 lines (29 loc) · 820 Bytes
/
lib.rs
File metadata and controls
40 lines (29 loc) · 820 Bytes
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
//! # Pluto ETH2
//!
//! Ethereum 2.0 integration and utilities for the Pluto distributed validator
//! node. This crate provides interfaces, types, and utilities for interacting
//! with Ethereum 2.0 networks and validator operations.
/// Ethereum 2.0 ENR utilities.
pub mod enr;
/// RLP utilities.
pub mod rlp;
/// EIP712 utilities.
pub mod eip712;
/// Network utilities.
pub mod network;
/// Deposit data creation and management.
pub mod deposit;
/// Ethereum address helpers.
pub mod helpers;
/// EIP-2335 keystore management.
pub mod keystore;
/// Validator registration for builder API.
pub mod registration;
/// ETH2 Keymanager API client.
pub mod keymanager;
/// ETH2 signing helpers.
pub mod signing;
/// Go-parity type/version conversion helpers.
pub mod types;
/// Utilities.
pub(crate) mod utils;