c9354a9d25
## Proposed Changes * Return the effective balance in gwei to align with the spec ([ideal attestation rewards](https://ethereum.github.io/beacon-APIs/?urls.primaryName=dev#/Rewards/getAttestationsRewards)). * Use quoted `i64`s for attestation and sync committee rewards.
16 lines
353 B
Rust
16 lines
353 B
Rust
mod quoted_int;
|
|
|
|
pub mod fixed_bytes_hex;
|
|
pub mod hex;
|
|
pub mod hex_vec;
|
|
pub mod json_str;
|
|
pub mod list_of_bytes_lists;
|
|
pub mod quoted_u64_vec;
|
|
pub mod u256_hex_be;
|
|
pub mod u32_hex;
|
|
pub mod u64_hex_be;
|
|
pub mod u8_hex;
|
|
|
|
pub use fixed_bytes_hex::{bytes_4_hex, bytes_8_hex};
|
|
pub use quoted_int::{quoted_i64, quoted_u256, quoted_u32, quoted_u64, quoted_u8};
|