-
Notifications
You must be signed in to change notification settings - Fork 87
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
Implement EIP-2718 on Tomochain #355
Comments
following this commit ethereum/go-ethereum@bbfb1e4 |
Currently, TomoChain only supports the "Legacy Transaction" format, which is encoded using the RLP (Recursive Length Prefix) method. The encoding follows the pattern However, there is a proposed improvement known as EIP-2718 by the Ethereum Team. This proposal suggests the creation of a new transaction type, which would be encoded using the format To differentiate between legacy transactions and the new typed transactions, clients can examine the first byte of the encoded transaction. If the byte falls within the range |
Motivation
As part of our ongoing efforts to enhance the functionality and flexibility of our blockchain platform, Ethereum team are proposing the implementation of Ethereum Improvement Proposal (EIP) 2718 - Typed Transaction Envelope. This EIP introduces a standardized format for transactions, allowing for the inclusion of additional transaction types beyond the current simple value transfers.
Benefits
Reference
The text was updated successfully, but these errors were encountered: