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

tx: Fix EIP-155 transaction encoding on chain ID 0. #2671

Merged
merged 1 commit into from
Apr 29, 2023

Conversation

MicahZoltu
Copy link
Contributor

When preparing Ethereum data for RLP encoding, you must convert all values to either byte arrays or lists. Scalar values (positive integers) are converted to byte arrays by using the fewest bytes possible to represent the value in big endian format. The canonical form of any scalar value prepped for RLP encoding is that any leading 0 bytes stripped. In the case of 0, this means that the only byte (0x00) is stripped and you are left with an empty array.

Most of the values in this code are properly 0-stripped using bigIntToUnpaddedBuffer. Unfortunately, it appears that the chainId was added without stripping leading zeros. In most cases this doesn't matter, but if someone is running a chainId 0 blockchain and they want to EIP-155 encode their transaction, the previous code would result in an invalid transaction because only the canonical form is allowed.

This change fixes this bug and correctly prepares the chainId in EIP-155 transactions for RLP encoding.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
When preparing Ethereum data for RLP encoding, you must convert all values to either byte arrays or lists.  Scalar values (positive integers) are converted to byte arrays by using the fewest bytes possible to represent the value in big endian format.  The canonical form of any scalar value prepped for RLP encoding is that any leading `0` bytes stripped.  In the case of `0`, this means that the only byte (`0x00`) is stripped and you are left with an empty array.

Most of the values in this code are properly 0-stripped using `bigIntToUnpaddedBuffer`.  Unfortunately, it appears that the `chainId` was added without stripping leading zeros.  In most cases this doesn't matter, but if someone is running a chainId 0 blockchain and they want to EIP-155 encode their transaction, the previous code would result in an invalid transaction because only the canonical form is allowed.

This change fixes this bug and correctly prepares the chainId in EIP-155 transactions for RLP encoding.
@MicahZoltu MicahZoltu changed the title Update legacyTransaction.ts Fixe EIP-155 transaction encoding on chain ID 0. Apr 29, 2023
Copy link
Contributor

@g11tech g11tech left a comment

Choose a reason for hiding this comment

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

👍

@g11tech g11tech changed the title Fixe EIP-155 transaction encoding on chain ID 0. tx: Fix EIP-155 transaction encoding on chain ID 0. Apr 29, 2023
@g11tech g11tech added PR state: merge ready package: tx target: master Work to be done towards master branch labels Apr 29, 2023
@codecov
Copy link

codecov bot commented Apr 29, 2023

Codecov Report

Merging #2671 (7b148ed) into master (49c2d93) will increase coverage by 0.46%.
The diff coverage is 100.00%.

Additional details and impacted files

Impacted file tree graph

Flag Coverage Δ
block 90.18% <ø> (ø)
blockchain 90.40% <ø> (ø)
client 87.14% <ø> (+0.01%) ⬆️
common 95.74% <ø> (ø)
devp2p 91.97% <ø> (?)
ethash ∅ <ø> (∅)
evm 79.39% <ø> (ø)
rlp ∅ <ø> (?)
statemanager 89.61% <ø> (ø)
trie 90.36% <ø> (+0.34%) ⬆️
tx 94.43% <100.00%> (ø)
util 85.19% <ø> (ø)
vm 84.54% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

@g11tech g11tech merged commit c9b0a45 into master Apr 29, 2023
@gitpoap-bot
Copy link

gitpoap-bot bot commented Apr 29, 2023

Congrats, your important contribution to this open-source project has earned you a GitPOAP!

GitPOAP: 2023 EthereumJS Contributor:

GitPOAP: 2023 EthereumJS Contributor GitPOAP Badge

Head to gitpoap.io & connect your GitHub account to mint!

Learn more about GitPOAPs here.

@holgerd77 holgerd77 deleted the MicahZoltu-patch-1 branch April 29, 2023 20:05
@holgerd77
Copy link
Member

Just to note: we have somewhat of a master branch merge stop since we did our last planned round of releases for this branch last week.

So we might take this change over to our develop-v7 branch where we are planning the next round of breaking releases.

(@MicahZoltu or is this an urgent bug fix for you?)

@MicahZoltu
Copy link
Contributor Author

It is not an urgent bugfix.

The ethers test suite used this library to generate its test cases which resulted in a large number of test cases that are invalid/incorrect, and I ran across it when testing my library against that suite. Getting this fixed would let ethers fix its test suite which would let me test my library more completely. 😄

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
package: tx PR state: merge ready target: master Work to be done towards master branch
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants