-
After some investigation, it seems that Additionally, Will the relay return all transactions (for example, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @tom-hbar The Ethereum JSON RPC Spec only applies to EVM type transactions. This means transactions of type This may have been a bug at the time, lots of improvements since then. These should be sufficient for EVM developers as it matches behaviour of other EVM chains. Let me know if you believe there's a gap. |
Beta Was this translation helpful? Give feedback.
-
Closing off. |
Beta Was this translation helpful? Give feedback.
Hi @tom-hbar
Thanks for the questions. Apologies for the late reply we missed this.
The Ethereum JSON RPC Spec only applies to EVM type transactions. This means transactions of type
CONTRACTCREATE
,CONTRACTCALL
andETHEREUMTRANSACTION
.Other HAPI transactions will not be supported with the exception of HTS tokens transfers.
This may have been a bug at the time, lots of improvements since then.
Notably, we've added support for synthetic transactions that capture the event logs of HTS transfers similar to ERC20 and ERC721 events.
These should be sufficient for EVM developers as it matches behaviour of other EVM chains.
If you'd like details of non EVM executions transaction the Mirror Node A…