feat: Implement TempoTransactionValidator#125
Merged
Conversation
mattsse
reviewed
Aug 27, 2025
Contributor
mattsse
left a comment
There was a problem hiding this comment.
provided some refs and suggestions
mattsse
approved these changes
Aug 27, 2025
Contributor
mattsse
left a comment
There was a problem hiding this comment.
makes sense,
I think to make this slightly for performant we need to make a few things pub in reth, can take of this in a followup
Zygimantass
pushed a commit
that referenced
this pull request
Sep 5, 2025
* wip: fee token balance * wip: ensure sufficient balance * wip: balance check * wip: validate transactions * wip: validate txs with origin * chore: clippy * fix: restructure validation, remove async * wip: init provider once * wip: restructure balance checks * chore: clippy, regen cargo lock * chore: move TIPStorageProvider to precompiles crate * chore: clippy * wip: use const for USD_DECIMAL_FACTOR * docs: TIPFeeStorageProvider doc comments * docs: tx validator comments * test: test sufficient balance * test: update balance test * chore: clippy * feat: use tempo tx validator in node
legion2002
pushed a commit
that referenced
this pull request
Oct 9, 2025
* wip: fee token balance * wip: ensure sufficient balance * wip: balance check * wip: validate transactions * wip: validate txs with origin * chore: clippy * fix: restructure validation, remove async * wip: init provider once * wip: restructure balance checks * chore: clippy, regen cargo lock * chore: move TIPStorageProvider to precompiles crate * chore: clippy * wip: use const for USD_DECIMAL_FACTOR * docs: TIPFeeStorageProvider doc comments * docs: tx validator comments * test: test sufficient balance * test: update balance test * chore: clippy * feat: use tempo tx validator in node
unbalancedparentheses
pushed a commit
to unbalancedparentheses/tempo
that referenced
this pull request
Feb 23, 2026
* wip: fee token balance * wip: ensure sufficient balance * wip: balance check * wip: validate transactions * wip: validate txs with origin * chore: clippy * fix: restructure validation, remove async * wip: init provider once * wip: restructure balance checks * chore: clippy, regen cargo lock * chore: move TIPStorageProvider to precompiles crate * chore: clippy * wip: use const for USD_DECIMAL_FACTOR * docs: TIPFeeStorageProvider doc comments * docs: tx validator comments * test: test sufficient balance * test: update balance test * chore: clippy * feat: use tempo tx validator in node
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #78
Depends on paradigmxyz/reth#18086
This PR introduces a
TempoTransactionValidatorthat extends the standardEthTransactionValidatorwith a balance check against theTIPFeeManagercontract, ensuring senders have enoughfeeTokenfunds before transactions are inserted into the transaction pool.