-
Notifications
You must be signed in to change notification settings - Fork 53
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
feat(op-consensus): op-alloy-consensus
#4
Conversation
e6f9bd5
to
3c16cb7
Compare
3c16cb7
to
3e6c21c
Compare
3e6c21c
to
4ae4b22
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.
great start,
we should reuse as much as possible from alloy-consensus
Thanks - this should be the minimal amount we need to port, without changing the upstream API of
Update: alloy-rs/alloy#529 |
2fb8518
to
fbe2cdd
Compare
b15ea35
to
aa904b4
Compare
aa904b4
to
2d72c8e
Compare
506dcad
to
bb22136
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.
this is great,
only have two questions re receipt stuff
/// | ||
/// [deposit]: https://specs.optimism.io/protocol/deposits.html | ||
#[cfg_attr(feature = "serde", serde(rename = "0x7E", alias = "0x7E"))] | ||
Deposit(OpReceiptWithBloom<T>), |
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.
hmm, only this variant needs the Op specific receipt type, right?
the others could reuse the the alloy-consensus one?
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, only this variant needs it. Decided to use all OpReceiptWithBloom
s to avoid type conversion within as_receipt_with_bloom
+ as_receipt
.
Technically, all of the receipts within OP consensus do use this format, though the extra deposit_nonce
+ deposit_receipt_version
fields are omitted from the RLP if they don't exist. Could reuse the ReceiptWithBloom<T>
type for others -- would you rather have the type conversions?
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] | ||
#[cfg_attr(feature = "serde", serde(tag = "type"))] | ||
#[non_exhaustive] | ||
pub enum OpReceiptEnvelope<T = Log> { |
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.
PTAL at the review here w.r.t type duplication between alloy upstream and op-alloy #2
it should be possible to wrap the internal receipt type, I would think? maybe not
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.
hmm, I'd prefer if we could reuse the alloy-consensus receipt envelope type or even the entire variant and then only add an additional deposit variant
adding pub struct OpReceipt<T = Log> {
doesn't make much sense to me
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] | ||
#[cfg_attr(feature = "serde", serde(tag = "type"))] | ||
#[non_exhaustive] | ||
pub enum OpReceiptEnvelope<T = Log> { |
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 think we should just reuse the regular alloy consensus types here
#[derive(Clone, Debug, PartialEq, Eq, Default)] | ||
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] | ||
#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))] | ||
pub struct OpReceipt<T = Log> { |
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.
this should be OpDepositReceipt
which wraps the alloy-consensus receipt and adds extra fields for deposit
adds a little work for you, but it's all easy: |
superseded by #8 |
Overview
Adds a periphery crate for
alloy-consensus
,op-alloy-consensus
, that contains OP-specific types for theTxEnvelope
(to includeTxDeposit
) as well as theReceipt
+ReceiptEnvelope
. For all unmodified types, such as theHeader
, consumers should usealloy-consensus
.Note
Blocked by alloy-rs/alloy#529, will update the
alloy
dependency after this has been merged.