Passar al contingut principal

Ajudeu a traduir aquesta pàgina

🌏

Esteu veient aquest pàgina en anglès perquè encara no l'hem traduïda. Ajudeu-nos a traduir aquest contingut.

Traduïu la pàgina

No conté errors!🐛

Aquesta pàgina no està essent traduïda. De moment hem deixat aquesta pàgina intencionadament en anglès.

Data structures and encoding

Darrera edició: , Invalid DateTime
Edita la pàgina

Ethereum creates, stores and transfers large volumes of data. This data must get formatted in standardized and memory-efficient ways to allow anyone to run a node on relatively modest consumer-grade hardware. To achieve this, several specific data structures are used on the Ethereum stack.

Prerequisites

You should understand the fundamentals of Ethereum and client software. Familiarity with the networking layer and the Ethereum whitepaper is recommended.

Data structures

Patricia merkle tries

Patricia Merkle Tries are structures that encode key-value pairs into a deterministic and cryptographically authenticated trie. These are used extensively across Ethereum's execution layer.

More on Patricia Merkle Tries

Recursive Length Prefix

Recursive Length Prefix (RLP) is a serialization method used extensively across Ethereum's execution layer.

More on RLP

Simple Serialize

Simple Serialize (SSZ) is the dominant serialization format on Ethereum's consensus layer because of its compatibility with merklelization.

More on SSZ

Ha estat útil aquest article?