Skip to main content

State Sync

Channels

State sync has four distinct channels. The channel identifiers are listed below.
NameNumber
SnapshotChannel96
ChunkChannel97
LightBlockChannel98
ParamsChannel99

Message Types

SnapshotRequest

When a new node begin state syncing, it will ask all peers it encounters if it has any available snapshots:
NameTypeDescriptionField Number

SnapShotResponse

The receiver will query the local ABCI application via ListSnapshots, and send a message containing snapshot metadata (limited to 4 MB) for each of the 10 most recent snapshots: and stored at the application layer. When a peer is starting it will request snapshots.
NameTypeDescriptionField Number
heightuint64Height at which the snapshot was taken1
formatuint32Format of the snapshot.2
chunksuint32How many chunks make up the snapshot3
hashbytesArbitrary snapshot hash4
metadatabytesArbitrary application data. May be non-deterministic.5

ChunkRequest

The node running state sync will offer these snapshots to the local ABCI application via OfferSnapshot ABCI calls, and keep track of which peers contain which snapshots. Once a snapshot is accepted, the state syncer will request snapshot chunks from appropriate peers:
NameTypeDescriptionField Number
heightuint64Height at which the chunk was created1
formatuint32Format chosen for the chunk. May be non-deterministic.2
indexuint32Index of the chunk within the snapshot.3

ChunkResponse

The receiver will load the requested chunk from its local application via LoadSnapshotChunk, and respond with it (limited to 16 MB):
NameTypeDescriptionField Number
heightuint64Height at which the chunk was created1
formatuint32Format chosen for the chunk. May be non-deterministic.2
indexuint32Index of the chunk within the snapshot.3
hashbytesArbitrary snapshot hash4
missingboolArbitrary application data. May be non-deterministic.5
Here, Missing is used to signify that the chunk was not found on the peer, since an empty chunk is a valid (although unlikely) response. The returned chunk is given to the ABCI application via ApplySnapshotChunk until the snapshot is restored. If a chunk response is not returned within some time, it will be re-requested, possibly from a different peer. The ABCI application is able to request peer bans and chunk refetching as part of the ABCI protocol.

LightBlockRequest

To verify state and to provide state relevant information for consensus, the node will ask peers for light blocks at specified heights.
NameTypeDescriptionField Number
heightuint64Height of the light block1

LightBlockResponse

The receiver will retrieve and construct the light block from both the block and state stores. The receiver will verify the data by comparing the hashes and store the header, commit and validator set if necessary. The light block at the height of the snapshot will be used to verify the AppHash.
NameTypeDescriptionField Number
light_blockLightBlockLight block at the height requested1
State sync will use light client verification to verify the light blocks. If no state sync is in progress (i.e. during normal operation), any unsolicited response messages are discarded.

ParamsRequest

In order to build the state, the state provider will request the params at the height of the snapshot and use the header to verify it.
NameTypeDescriptionField Number
heightuint64Height of the consensus params1

ParamsResponse

A reciever to the request will use the state store to fetch the consensus params at that height and return it to the sender.
NameTypeDescriptionField Number
heightuint64Height of the consensus params1
consensus_paramsConsensusParamsConsensus params at the height requested2

Message

Message is a oneof protobuf type. The oneof consists of eight messages.
NameTypeDescriptionField Number
snapshots_requestSnapshotRequestRequest a recent snapshot from a peer1
snapshots_responseSnapshotResponseRespond with the most recent snapshot stored2
chunk_requestChunkRequestRequest chunks of the snapshot.3
chunk_responseChunkRequestResponse of chunks used to recreate state.4
light_block_requestLightBlockRequestRequest a light block.5
light_block_responseLightBlockResponseRespond with a light block6
params_requestParamsRequestRequest the consensus params at a height.7
params_responseParamsResponseRespond with the consensus params8