You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nodes produce chunks with a specified amount of claimed resources. When a block is built from a set of chunks, the aggregate must fit below the required block limits.
Chunks should include the fees.Dimensions consumed by the transactions they have included.
When nodes sign chunks received from a chunk builder, they should apply configurable rate limiting that limits the number of chunks/s, bandwidth consumed by the full chunk, and the fees.Dimensions claimed to be included by the transactions within the chunk.
Details
in ChunkSignatureRequestVerifier[T]::Verify, we want to make sure the following takes place:
Valid signature
The chunk came from the expected person ( todo : what's person ? )
Check that the expiry is valid for the node to sign right now. Don't sign a chunk too far into the future, or in the past )
Does the producer had the right to produce this chunk ?
a. Are they the a valid chunk producer in this epoch ?
b. Do I need to rate limit their chunk production at this time ?
What information is needed to perform this verification ?
a. who sent the chunk.
b. in order to verify a signature, the verifier must have access to the wrap verification context.
The text was updated successfully, but these errors were encountered:
Overview
Nodes produce chunks with a specified amount of claimed resources. When a block is built from a set of chunks, the aggregate must fit below the required block limits.
Chunks should include the
fees.Dimensions
consumed by the transactions they have included.When nodes sign chunks received from a chunk builder, they should apply configurable rate limiting that limits the number of chunks/s, bandwidth consumed by the full chunk, and the
fees.Dimensions
claimed to be included by the transactions within the chunk.Details
in
ChunkSignatureRequestVerifier[T]::Verify
, we want to make sure the following takes place:The chunk came from the expected person ( todo : what's person ? )a. Are they the a valid chunk producer in this epoch ?
b. Do I need to rate limit their chunk production at this time ?
a. who sent the chunk.
b. in order to verify a signature, the verifier must have access to the wrap verification context.
The text was updated successfully, but these errors were encountered: