-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Signalling #89
base: main
Are you sure you want to change the base?
Signalling #89
Conversation
todo comments bytes memory
The value is what you want to signal i.e. a message. A signal is what actually ends up being stored
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just did a first pass on the signaling mechanism, will continue with the CheckpointSyncer and briding. The most important feedback so far is that we are missing some parameters when verifying the signals
/// @dev Signal a `value` at a namespaced slot. See `deriveSlot`. | ||
function signal(uint64 chainId, address account, bytes32 value) internal returns (bytes32) { | ||
bytes32 slot = deriveSlot(chainId, account, value); | ||
slot.getBytes32Slot().value = value; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since we already have the storage slot, is there any gas savings from doing this directly with assembly? I'm not familiar with the implementation of getBytes32Slot
, I'll check it out - this is just not to miss the idea
assembly {
sstore(slot, value)
}
Co-authored-by: Gustavo Gonzalez <gustavo.gonzalez@openzeppelin.com>
Co-authored-by: Gustavo Gonzalez <gustavo.gonzalez@openzeppelin.com>
98f3244
to
89056bc
Compare
simplify comment updated event explain root
aa0ee38
to
d7da73f
Compare
re-do order comment
baa218e
to
96c4b94
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know this is still in draft, but I like how it is looking, much cleaner!
One question: Do you think it is worth implementing the ring buffer mechanism now or do you prefer to implement that later?
src/protocol/CheckpointSyncer.sol
Outdated
abstract contract CheckpointSyncer is ICheckpointSyncer { | ||
address private _trustedSyncer; | ||
|
||
mapping(uint256 height => bytes32 checkpoint) private _checkpoints; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We use the term checkpoint to represent a struct with the publicationId and the commitment(state root or block hash). I think it might be confusing if we are also naming this checkpoints(which is a subset of the actual checkpoint). Not sure if this is the best, bust perhaps:
mapping(uint256 height => bytes32 checkpoint) private _checkpoints; | |
mapping(uint256 height => bytes32 commitment) private _commitments; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah i was in between the two, its just in my mind a commitment is an unproven checkpoint and this only tracks "proven checkpoints" aka block hash / state root but yes confusing with our custom checkpoint struct
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changed everything to reflect commitment, also changed contract to commitment store as syncing is probably the wrong verb
comment better error
index event
added the ring buffer now |
comment typo
comments comments
This PR aims at adding additional signalling functionality.
QUESTIONS:
Checkpoint Tracker