Base eth_sendRawTransaction(tip)
Introduction to eth_sendRawTransaction of BlockRazor Base Fast mode and integration methods
Introduction
eth_sendRawTransaction(tip) is a transaction sending interface provided by BlockRazor for Base, used to send signed transactions with lower latency. It currently supports standard JSON-RPC style requests, allowing users to quickly integrate it with their existing sending logic.
The capabilities of eth_sendRawTransaction and eth_sendRawTransaction(tip) differs, eth_sendRawTransaction is more suitable as a standard sending entry point, emphasizing global multi-point deployment and intercontinental leased lines. while eth_sendRawTransaction(tip) is better suited for scenarios where the priority is to send single transactions quickly and enter execution path faster.
Endpoint
http://base-fast.blockrazor.io
Rate Limit
The rate limit default to 10 TPS for all users. Please contact us if you require an increase in your TPS limit.
Request
curl http://base-fast.blockrazor.io \
-X POST \
-H "Authorization: Bearer <auth>" \
-H "Content-Type: application/json" \
--data '
{
"jsonrpc": "2.0",
"method": "eth_sendRawTransaction",
"params": [
"Signed Transaction"
],
"id": 1
}
'Response
Normal
Abnormal
Last updated
Was this helpful?