-
Notifications
You must be signed in to change notification settings - Fork 6.6k
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
New field tx_type #1901
Comments
Yes - this is a good idea - I considered it but did not yet find a good way to define it. IMHO it should be more universal than just tx type. "features": ["EIP1559",..] but then also realized we might need transition points (blocks?) |
Why not something like this? "features": [
{
"name": "EIP1559",
"since_block": 123,
...
},
...
]
If needed, we can always add extra properties to 'feature' at a later time, without compromising backward compatibility. |
yea - sometimes it might not be a block - but maybe this is enough for the MVP |
Thanks @ligi for the quick commit! I have made a pull request adding the |
Hi there!
Did you ever consider to add a tx_type field to differentiate between chains implementing EIP-1559 (tx_type=2) and those who don't (tx_type=1)?
It would be very useful for clients who need to send transactions on the chains, for example my project web3cli.
I am willing to make a PR if there's consensus on it 🙂
Cheers,
Cocco
The text was updated successfully, but these errors were encountered: