-
Notifications
You must be signed in to change notification settings - Fork 758
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
Tx: get rid of BaseTransaction #3744
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files
Flags with carried forward coverage won't be shown. Click here to find out more. |
…onorepo into tx-remove-basetx
* @param bits Number of bits to check (64 or 256) | ||
* @param cannotEqual Pass true if the number also cannot equal one less the maximum value | ||
*/ | ||
export function valueBoundaryCheck( // TODO: better method name |
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.
For this and the other util methods:
In the context of composition rather than inheritance, I feel like we should be a bit more explicit with the naming (e.g. with reference to "sharedTxConstructor" rather than "shared constructor"). I'm not sure if this method (and the other method utils) are intended to be used outside of a transaction context, but if they are exported outside of the package, I think we have be particularly explicit with naming. This is actually one of the benefits of class-based methods imo (not that I don't prefer this pattern), is they are naturally namespaced by virtue of the class they belong to.
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.
These are not supposed to be exported outside of the package! These are only supposed to be used internally. These "shared" methods nevertheless have to be named differently. We also have the opportunity now (due to breaking releases) to give everything a more clear name!
tx.common = getCommon(opts.common) | ||
tx.common.updateParams(opts.params ?? paramsTx) | ||
|
||
validateNotArray(txData) // is this necessary? |
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.
As I recall, this got added because there was some weird edge case where we were accepting txData
where somehow an array got passed in.
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.
LGTM
Part of #3733
This PR is "phase 1" of the big tx refactor. This PR:
src/basetransaction.js
This PR does not intend to change any logic. Besides that, this PR:
AccessList2930Transaction
toAccessList2930Tx
andEOACode7702Transaction
toEOACode7702Tx
. This closes Tx: Class names not fully consistent yet #3723The current state is still WIP, need to: