-
Notifications
You must be signed in to change notification settings - Fork 141
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
Jumbo EthereumTransactions #1086
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Nana Essilfie-Conduah <nana@swirldslabs.com>
✅ Deploy Preview for hedera-hips ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Should we consider increasing the fees for malformed |
@Neurone, I agree the EthereumTransaction fee will go up based on the number of bytes in a non-linear way. That is, 12KB should cost more than 2x the price of 6KB. |
Signed-off-by: Richard Bair <rbair23@users.noreply.github.com>
Yep, my next update will include a suggestion for a tiered progressive pricing. Great minds .... |
@Nana-EC I think we should not include a suggestion for tiered progressive pricing. We should leave this to CoinCom. I avoided trying to get too specific because Coincom has to make that call. |
Signed-off-by: Richard Bair <rbair23@users.noreply.github.com>
Signed-off-by: Nana Essilfie-Conduah <nana@swirldslabs.com>
Description:
Hedera enforces a 6kb transaction limit which requires additional network complexity to support large callData
scenarios. This often means only about ~5kb is left for the transaction callData (1kb is used by signatures)
However, EVM type transactions on other EVM networks support callData sizes of up to 128kb.
This is partly because the cost of work is fully captured by
gas * gasPrice
on the network.This HIP proposes to support
EthereumTransaction
submissions with~5kb > callData > 128kb
for increased EVMequivalence.
Related issue(s):
Fixes #
Notes for reviewer:
Checklist