You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(specs): add realtime_sendRawTransaction method for MegaETH (#1122)
Add the missing realtime_sendRawTransaction endpoint which submits a
transaction and returns the receipt in a single call, timing out after
10 seconds. Added as a manual exception (x-bot-ignore) since the
Daikon workflow skips non-eth_ prefixed custom methods.
Copy file name to clipboardExpand all lines: src/openrpc/chains/_components/custom/methods.yaml
+37Lines changed: 37 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1347,6 +1347,43 @@ components:
1347
1347
logs: []
1348
1348
status: "0x1"
1349
1349
1350
+
realtime_sendRawTransaction:
1351
+
name: realtime_sendRawTransaction
1352
+
summary: Submits a transaction and returns the receipt in a single call.
1353
+
description: |
1354
+
Submits a signed transaction and returns the transaction receipt without polling. This method combines submission and receipt retrieval into one call, returning the receipt as soon as the transaction is executed in a mini block.
1355
+
1356
+
If the transaction is not executed within 10 seconds, the method returns a `realtime transaction expired` error.
1357
+
params:
1358
+
- name: Transaction
1359
+
required: true
1360
+
description: The signed transaction data, encoded as a hexadecimal string.
0 commit comments