Skip to content
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

draft(optimism): sendRawTransactionConditional #13926

Closed

Conversation

hamdiallam
Copy link
Contributor

@hamdiallam hamdiallam commented Jan 22, 2025

Leaving a few comments in the different places that might require changes. Will flesh out an implementation after a soft approval/guidance in the right direction

  1. OpTransactionSigned / OpPooledTransaction. References to conditional and notion of rejected

    • The builder interfaces with OpTransactionSigned. We need reference to the conditional to validate during execute_best_transactions and a means to invalidate from the pool.
  2. L2EthApiExt & OpTransactionSigned: Can the conditional be attached as an optional field on the deserialized tx? This way pool::add_transaction is simply used. Or should a pool wrapper have a separate interface for submission.

  3. PoolWrapper -> If we wrap the Pool interface, should this filter out the rejected txs and in a background task remove them from the pool?

    • We could implement the validation logic in validate_one which would duplicate the conditional checks

@emhane emhane added A-block-building Related to block building A-tx-pool Related to the transaction mempool A-op-reth Related to Optimism and op-reth labels Jan 22, 2025
@@ -10,6 +10,10 @@ pub struct RollupArgs {
#[arg(long = "rollup.sequencer-http", value_name = "HTTP_URL")]
pub sequencer_http: Option<String>,

/// Enable transaction conditional support on sequencer
#[arg(long = "rollup.sequencer-transaction-conditional-enabled", default_value = "false")]
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

let's rename this to enable-transaction-conditional

Comment on lines +54 to +55
/// Indiciator if this transaction has been marked as rejected
rejected: AtomicBool // (is AtomicBool appropriate here?)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we can remove this for now, because we'll handle eviction differently


/// Optional conditional attached to this transaction. Is this
/// needed if this field is on OpTransactionSigned?
conditional: Option<TransactionConditional>,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes we need this field here.

this option is also fine because this tx type is always wrapped in an Arc so it's always on the heap anyway

Comment on lines +48 to +50

/// Can we attach a conditional the moment a transaction is deserialized?
pub conditional: Option<TransactionConditional>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this we shouldn't do, because this is a representation fo the actual tx type and shouldn't be annotated with out of protocol data

}

// TEMPORARY since TransactionConditional does not impl eq
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

mind submitting a pr on alloy for this?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes definitely

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looping back to these changes this week. Saw alloy-rs/alloy#1953. Thanks for adding that in there

@fgimenez
Copy link
Member

fgimenez commented Feb 6, 2025

hey @hamdiallam thanks a lot for your PR!

we need to speed up the implementation of features that this PR touches, see this tracking issue for reference #14192

I've started extracting part of your work from here in this PR #14264, picked your commit as the base so that your work is accredited. will take care of rebasing this one and fixing any eventual conflicts as soon as it is merged

@hamdiallam
Copy link
Contributor Author

hey @hamdiallam thanks a lot for your PR!

we need to speed up the implementation of features that this PR touches, see this tracking issue for reference #14192

I've started extracting part of your work from here in this PR #14264, picked your commit as the base so that your work is accredited. will take care of rebasing this one and fixing any eventual conflicts as soon as it is merged

Hey! I'm fine closing this since this was one to gather questions and I have an idea of how better implement this now.

Now taking a more incremental approach and had #14086 open for a while. Do you mind looking at the latest comment I left in there? That one was in a state ready to merge in but the latest changes to main resulted a lot of conflicts

@fgimenez
Copy link
Member

fgimenez commented Feb 6, 2025

Hey! I'm fine closing this since this was one to gather questions and I have an idea of how better implement this now.

ok sgtm thanks!

Now taking a more incremental approach and had #14086 open for a while. Do you mind looking at the latest comment I left in there? That one was in a state ready to merge in but the latest changes to main resulted a lot of conflicts

looks like the issue #14086 was meant to close is already fixed, not sure if more changes in that regard are required, probably @mattsse can confirm

@hamdiallam
Copy link
Contributor Author

hamdiallam commented Feb 6, 2025

Hey! I'm fine closing this since this was one to gather questions and I have an idea of how better implement this now.

ok sgtm thanks!

Now taking a more incremental approach and had #14086 open for a while. Do you mind looking at the latest comment I left in there? That one was in a state ready to merge in but the latest changes to main resulted a lot of conflicts

looks like the issue #14086 was meant to close is already fixed, not sure if more changes in that regard are required, probably @mattsse can confirm

The interface for PayloadTransactions was updated. But that PR's main goal was to update the OpPayloadBuilder to operate on the OpPooled tx type which will hold reference to the conditional. I'm rebasing the PR right now so it can leverage the latest changes.

The PR was tackling both since an update to PayloadTransactions was required #13901

@hamdiallam hamdiallam closed this Feb 6, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-block-building Related to block building A-op-reth Related to Optimism and op-reth A-tx-pool Related to the transaction mempool
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants