Monad

Introduction

circle-info

Currently, the Monad RPC only supports the eth_sendRawTransaction method

This API is used to send signed raw transactions on Monad mainnet, supporting HTTP/HTTPS protocol.

Endpoint

Region
Endpoint

Frankfurt

http://frankfurt-monad.blockrazor.io

Virginia

http://virginia-monad.blockrazor.io

Tokyo

http://tokyo-monad.blockrazor.io

Rate Limit

circle-exclamation

Request Example

curl -X POST http://frankfurt-monad.blockrazor.io \
  -H "Authorization: <auth-token>" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "eth_sendRawTransaction",
    "params": [
      "0xd46e……e8b2c1"
    ]
  }'
  
  ## To maintain a persistent TCP connection, implementing a keep-alive mechanism is recommended

Response

Normal

Abnormal

Last updated