EIP-6475 - SSZ Optional

Created 2023-02-09
Status Stagnant
Category Core
Type Standards Track
Authors

Abstract

This EIP introduces a new Simple Serialize (SSZ) type to represent Optional[T] values.

Motivation

Optional values are currently only representable in SSZ using workarounds. Adding proper support provides these benefits:

  1. Better readability: SSZ structures with optional values can be represented with idiomatic types of the underlying programming language, e.g., Optional[T] in Python, making them easier to interact with.

  2. Compact serialization: SSZ serialization can rely on the binary nature of optional values; they either exist or they don't. This allows more compact serialization than using alternative approaches based on workarounds.

Specification

The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119 and RFC 8174.

Type definition

Optional[T] is defined as a type that can represent:

Default value

The default value of Optional[T] is None.

Serialization

if value is None:
    return b""
else:
    return b"\x01" + serialize(value)

Deserialization

The deserialization of an Optional[T] depends on the input length:

Merkleization

An Optional[T] is merkleized as a List[T, 1].

Rationale

Why not Union[None, T]?

Union[None, T] leaves ambiguity about the intention whether the type may be extended in the future, i.e., Union[None, T, U].

Furthermore, SSZ Union types are currently not used in any final Ethereum specification and do not have a finalized design themselves. If the only use case is a workaround for lack of Optional[T], the simpler Optional[T] type is sufficient, and support for general unions could be delayed until really needed. Note that the design of Optional[T] could be used as basis for a more general Union.

Why not List[T, 1]?

The serialization is less compact for variable-length T, due to the extra offset table at the beginning of the list to indicate the list length.

Backwards Compatibility

Union[None, T] and List[T, 1] workarounds are not used at this time to represent Optional[T].

Test Cases

See EIP assets.

Reference Implementation

Security Considerations

None

Copyright

Copyright and related rights waived via CC0.