appenduto
Appenduto is a term used in computer science to describe an append-only data ledger format and its runtime. It is designed to store records in a strictly append-only fashion, enabling efficient writes and tamper-evident reads. The data model treats each entry as an immutable event with a monotonically increasing sequence number, a timestamp, a payload, and a cryptographic hash of the previous entry to form a hash chain.
Architecture and data model: Appenduto files are organized as a sequence of blocks. Each block contains a
Applications and use cases: The format is intended for audit trails, immutable logs, event sourcing in microservices,
History and status: Appenduto originated in theoretical discussions of append-only storage in the mid-2020s and has
See also: event log, append-only file, hash chain, cryptographic integrity, log-structured storage.