Skip to main content

Summary

This TIP defines a file format for local snapshots which is compatible with Stardust. The version of the snapshot file format described in this TIP is Version 2.

Motivation

Nodes create local snapshots to produce ledger representations at a point in time of a given milestone to be able to:

  • Start up from a recent milestone instead of having to synchronize from the genesis transaction.
  • Delete old transaction data below a given milestone.

For Stardust, this file format has to be assimilated to support protocol parameters and to contain the milestone at the point of the snapshot index in order extract startup metadata from it.

Detailed design

Since a UTXO based ledger is much larger in size, this TIP proposes two formats for snapshot files:

  • A full format which represents a complete ledger state.
  • A delta format which only contains diffs (created and consumed outputs) of milestones from a given milestone index onwards.

This separation allows nodes to swiftly create new delta snapshot files, which then can be distributed with a companion full snapshot file to reconstruct a recent state.

Formats

All types are serialized in little-endian

Full Ledger State

A full ledger snapshot file contains the UTXOs (outputs section) of a node's confirmed milestone (Ledger Milestone Index). The diffs contain the diffs to rollback the outputs state to regain the ledger state of the snapshot Target Milestone Index.

While the node producing such a full ledger state snapshot could theoretically pre-compute the actual snapshot milestone state, this is deferred to the consumer of the data to speed up local snapshot creation.

Delta Ledger State

A delta ledger state local snapshot only contains the diffs of milestones starting from a given Full Snapshot Target Milestone Index. A node consuming such data must know the state of the ledger at Full Snapshot Target Milestone Index.

Schema

Output

Defines an output.

NameTypeDescription
Output IDArray<byte>[34]The ID of the output which is a concatenation of the transaction ID + output index.
Block IDArray<byte>[32]The ID of the Block in which the transaction was contained which generated this output.
Milestone Index Bookeduint32The milestone index at which this output was generated.
Milestone Timestamp Bookeduint32The UNIX timestamp in seconds of the milestone which produced this output.
Output Lengthuint32Denotes the length of the output.
Output oneOf
BasicOutput
AliasOutput
FoundryOutput
NFTOutput
Consumed Output

Defines a consumed output.

NameTypeDescription
OutputArray<byte>[Output length]The serialized Output (see above).
Target Transaction IDArray<byte>[32]The ID of the transaction that spent this output.
Milestone Diff

Defines the diff a milestone produced by listing the created/consumed outputs and the milestone payload itself.

NameTypeDescription
Milestone Diff Lengthuint32Denotes the length of the milestone diff.
Milestone Payload Lengthuint32Denotes the length of the milestone payload.
Milestone PayloadArray<byte>[Milestone Payload length]The milestone payload in its serialized binary form.
Treasury Input
only included if milestone contains a receipt
NameTypeDescription
Treasury Input Milestone IDArray<byte>[32]The ID of the milestone this input references.
Treasury Input Amountuint64The amount of this treasury input.
Created Outputs Countuint32The amount of outputs generated with this milestone diff.
Created Outputs anyOf
Output
Consumed Outputs Countuint32The amount of outputs consumed with this milestone diff.
Consumed Outputs anyOf
Consumed Output
Protocol Parameters Milestone Option

This Milestone Option is used to signal to nodes the commencing of new protocol parameters, including new protocol version or PoW difficulty.

NameTypeDescription
Milestone Option TypebyteSet to value 1 to denote a Protocol Parameters Milestone Option.
Target Milestone Indexuint32Then name of the network from which this snapshot was generated from.
Protocol VersionbyteThe to be applied protocol version.
Protocol Parameters(uint16)ByteArrayThe protocol parameters in binary, serialized form.
Protocol Parameters

Defines protocol parameters.

NameTypeDescription
Protocol VersionbyteThe version of the protocol.
Network Name(uint8)stringThen name of the network from which this snapshot was generated from.
Bech32HRP(uint8)stringThe human-readable part of the addresses within the network.
MinPoWScoreuint32The minimum PoW score.
BelowMaxDepthuint8The below max depth parameter.
RentStructure
NameTypeDescription
VByteCostuint32The token price per virtual byte
VBFactorDatauint8The factor to use for data fields
VBFactorKeyuint8The factor to use for indexed fields
TokenSupplyuint64The token supply.
Full snapshot file format

Defines what a full snapshot file contains.

NameTypeDescription
VersionbyteDenotes the version of this file format. (Version 2)
TypebyteDenotes the type of this file format. Value 0 denotes a full snapshot.
Genesis Milestone Indexuint32The index of the genesis milestone of the network.
Target Milestone Indexuint32The index of the milestone of which the SEPs within the snapshot are from.
Target Milestone Timestampuint32The UNIX timestamp in seconds of the milestone of which the SEPs within the snapshot are from.
Target Milestone IDArray<byte>[32]The ID of the milestone of which the SEPs within the snapshot are from.
Ledger Milestone Indexuint32The index of the milestone of which the UTXOs within the snapshot are from.
Treasury Output Milestone IDArray<byte>[32]The milestone ID of the milestone which generated the treasury output.
Treasury Output Amountuint64The amount of funds residing on the treasury output.
Protocol Parameters Milestone Option Lengthuint16Denotes the length of the Protocol Parameters Milestone Option.
Protocol Parameters Milestone Option
Protocol Parameters Milestone Option that is active at the milestone of which the UTXOs within the snapshot are from.
Outputs Countuint64The amount of UTXOs contained within this snapshot.
Milestone Diffs Countuint32The amount of milestone diffs contained within this snapshot.
SEPs Countuint16The amount of SEPs contained within this snapshot.
Outputs
Output
Milestone Diffs
Milestone Diff
SEPs
SEP Array[32]
Delta snapshot file format

Defines what a delta snapshot contains.

NameTypeDescription
VersionbyteDenotes the version of this file format. (Version 2)
TypebyteDenotes the type of this file format. Value 1 denotes a delta snapshot.
Target Milestone Indexuint32The index of the milestone of which the SEPs within the snapshot are from.
Target Milestone Timestampuint32The UNIX timestamp in seconds of the milestone of which the SEPs within the snapshot are from.
Full Snapshot Target Milestone IDArray<byte>[32]The ID of the target milestone of the full snapshot this delta snapshot builts up from.
SEP File Offsetuint64The file offset of the SEPs field. This is used to easily update an existing delta snapshot without parsing its content.
Milestone Diffs Countuint32The amount of milestone diffs contained within this snapshot.
SEPs Countuint16The amount of SEPs contained within this snapshot.
Milestone Diffs
Milestone Diff
SEPs
SEP Array[32]

Updating an existing Delta snapshot file

When creating a delta snapshot, an existing delta snapshot file can be reused.

In order to do that, the following steps need to be done:

  1. Open the existing delta snapshot file.
  2. Read the existing delta snapshot file header.
  3. Verify that Version and Full Snapshot Target Milestone ID match between the existing and new delta snapshot.
  4. Seek to the position of Target Milestone Index and replace it with the new value.
  5. Seek to the position of Target Milestone Timestamp and replace it with the new value.
  6. Seek to the position that is written in the existing SEP File Offset and truncate the file at this position.
  7. Add the additional Milestone Diffs at this position.
  8. Add the new SEPs.
  9. Seek to the position of SEP File Offset and replace it with the new value.
  10. Seek to the position of Milestone Diffs Count and replace it with the new value.
  11. Seek to the position of SEPs Count and replace it with the new value.
  12. Close the file.

Drawbacks

Nodes need to support this new format.

Rationale and alternatives

  • In conjunction with a companion full snapshot, a tool or node can "truncate" the data from a delta snapshot back to a single full snapshot. In that case, the Ledger Milestone Index and Target Milestone Index would be the same. In the example above, given the full and delta snapshots, one could produce a new full snapshot for milestone 1350.
  • Since snapshots may include millions of UTXOs, code generating such files needs to stream data directly onto disk instead of keeping the entire representation in memory. In order to facilitate this, the count denotations for SEPs, UTXOs and diffs are at the beginning of the file. This allows code generating snapshot files to only have to seek back once after the actual count of elements is known.

Copyright

Copyright and related rights waived via CC0.