For the complete documentation index, see llms.txt. This page is also available as Markdown.

Send Tx

This section introduces the integration of sendTx provided by BlockRazor Robinhood Chain RPC

eth_sendRawTransaction is a transaction sending interface provided by BlockRazor for Robinhood Chain. Users can use this method to send signed raw transactions to the chain with low latency. Currently, HTTPS protocol is supported.

Compared to eth_sendRawTransaction, Send Tx undergo pre-flight checks before being sent to the Robinhood Chain official sequencer, including but not limited to whether the nonce is correct, whether the balance is sufficient, and whether contract execution has been reverted.

Endpoint

Region
Endpoint

Global

https://robinhood.blockrazor.io

Frankfurt

https://eu.robinhood.blockrazor.io

Ohio

https://us.robinhood.blockrazor.io

Japan

https://ap.robinhood.blockrazor.io

Singapore

https://ap2.robinhood.blockrazor.io

Request parameters

Parameters
Mandatory
Format
Example
Description

-

Mandatory

String

"0x…4b"

Signed raw transaction

Request Example

curl https://robinhood.blockrazor.io \
  -H 'content-type: application/json' \
  -H 'Authorization: Bearer <auth-token>' \
  --data '{
  "jsonrpc": "2.0",
  "id": "1",
  "method": "sendTx",
  "params": ["0x…9c"]
}'

Response Example

Last updated

Was this helpful?