9 unstable releases (3 breaking)

1.0.0-beta.2 Dec 22, 2022
0.8.0 Sep 20, 2024
0.7.1 Aug 23, 2024
0.6.0 Aug 14, 2024
0.5.1 Jan 17, 2023

#2 in #ssz

Download history 11172/week @ 2024-08-02 11462/week @ 2024-08-09 10315/week @ 2024-08-16 11393/week @ 2024-08-23 9876/week @ 2024-08-30 10425/week @ 2024-09-06 8623/week @ 2024-09-13 8998/week @ 2024-09-20 6937/week @ 2024-09-27 7214/week @ 2024-10-04 7833/week @ 2024-10-11 14939/week @ 2024-10-18 13744/week @ 2024-10-25 11108/week @ 2024-11-01 10699/week @ 2024-11-08 11316/week @ 2024-11-15

49,221 downloads per month
Used in 30 crates (13 directly)

Apache-2.0

125KB
3K SLoC

ethereum_ssz

SimpleSerialize (SSZ) implementation optimised for speed and security.

Maintained by Sigma Prime for use in Lighthouse, with an eye to being useful in the Rust Ethereum ecosystem more broadly. We welcome new contributors!

Please see the docs for more information.


lib.rs:

Provides encoding (serialization) and decoding (deserialization) in the SimpleSerialize (SSZ) format designed for use in Ethereum 2.0.

Adheres to the Ethereum 2.0 SSZ specification at v0.12.1.

Example

use ssz_derive::{Encode, Decode};
use ssz::{Decode, Encode};

#[derive(PartialEq, Debug, Encode, Decode)]
struct Foo {
    a: u64,
    b: Vec<u16>,
}

fn ssz_encode_decode_example() {
    let foo = Foo {
        a: 42,
        b: vec![1, 3, 3, 7]
    };

    let ssz_bytes: Vec<u8> = foo.as_ssz_bytes();

    let decoded_foo = Foo::from_ssz_bytes(&ssz_bytes).unwrap();

    assert_eq!(foo, decoded_foo);
}

See examples/ for manual implementations of the Encode and Decode traits.

Dependencies

~8.5MB
~166K SLoC