Problem
The Hedera JSON-RPC Relay processes eth_sendRawTransaction requests asynchronously. When multiple transactions from the same sender arrive in rapid succession (within hundreds of milliseconds), async operations can reorder their execution
Solution
Use locks to lock sendRawTransaction processing - preserve transaction order as it is on arrival.
Alternatives
No response