Robinhood Chain eth_sendBatch
This section introduces the integration of eth_sendBatch provided by BlockRazor Robinhood Chain Transaction Sending mode
eth_sendBatch is a transaction batch sending interface provided by BlockRazor for Robinhood Chain. Users can use this method to send signed raw transactions in batches to the chain with low latency. Currently, HTTPS protocol is supported.
A batch has a maximum transaction capacity of 10 transactions, which are sent sequentially to Robinhood's official sequencer every 5ms. It's important to note that batches are not atomic and there is no guarantee that the final on-chain order will match the expected request order.
What is Robinhood Chain
Robinhood Chain is a Ethereum Layer 2 built on Arbitrum, optimized for tokenized real-world assets including equities and ETFs, enabling 24/7 onchain trading and self-custody.
Robinhood Chain Website:https://robinhood.com/us/en/chain/
Robinhood Chain Stats:https://robinhoodchain.blockscout.com/stats
Request parameters
-
Mandatory
String[]
["0x…9c","0x…6a"]
Signed raw transactions
Request Example
curl https://robinhood.blockrazor.io \
-H 'content-type: application/json' \
-H 'Authorization: Bearer <auth-token>' \
--data '{
"jsonrpc": "2.0",
"id": "1",
"method": "eth_sendBatch",
"params": ["0x…9c","0x…6a"]
}'Response Example
Last updated
Was this helpful?