eth_sendRawTransaction
Introduction to eth_sendRawTransaction of BlockRazor Base Fast mode and integration methods
Last updated
Was this helpful?
Introduction to eth_sendRawTransaction of BlockRazor Base Fast mode and integration methods
eth_sendRawTransaction is a Fast mode 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 differ between RPC and Fast modes:
In RPC mode, eth_sendRawTransaction is more suitable as a standard sending entry point, emphasizing global multi-point deployment and intercontinental leased lines.
Fast is better suited for scenarios where the priority is to send single transactions quickly and enter execution path faster.
Fast Mode is not tied to the subscription plan, but each transaction sent in Fast Mode must include a tip sent to the address 0x9D70AC39166ca154307a93fa6b595CF7962fe8e5. The minimum tip amount is the greater of 0.000003 ETH or MaxPriorityFee * 5%.
http://base-fast.blockrazor.io
Fast Mode is not tied to the subscription plan, the rate limit default to 10 TPS for all users. Please contact us if you require an increase in your TPS limit.
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
}
'Normal
Abnormal
Last updated
Was this helpful?
Was this helpful?
{
"jsonrpc":"2.0",
"id":"1",
"result":"0xa06b……f7e8ec" // 交易哈希
}{
"jsonrpc":"2.0",
"id":"1",
"error":{
"code":-32000,
"message":"Tip verification failed"
}
}