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

eth_sendRawTransaction

Introduction to eth_sendRawTransaction of BlockRazor Base Fast mode and integration methods

Introduction

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%.

Endpoint

http://base-fast.blockrazor.io

Rate Limit

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.

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?