lighthouse/ssz
Paul Hauner ffaffbcd90 Change ssz to use extend_from_slice()
This is instead of `append` which empties the source vector. This
doens't really ssem suitable for what we're doing.
2018-09-10 08:52:21 +02:00
..
src Change ssz to use extend_from_slice() 2018-09-10 08:52:21 +02:00
Cargo.toml Add WIP ssz module 2018-08-09 13:56:58 +10:00
README.md Add WIP ssz module 2018-08-09 13:56:58 +10:00

simpleserialize (ssz)

This is a work-in-progress crate designed to perform the "simpleserialize" serialization described by Vitalik Buterin. The method is tentatively intended for use in the Ethereum Beacon Chain.

There are two primary sources for this spec, and they are presently conflicting:

This implementation is presently a placeholder until the final spec is decided. Do not rely upon it for reference.

TODO

  • Wait for spec to finalize.
  • Implement encoding for all useful types.
  • Implement decoding.