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

eth_sendRawTransaction

Introduce how to integrate BlockRazor Ethereum RPC’s `eth_sendRawTransaction` method.

eth_sendRawTransaction of BlockRazor RPC is compatible with native JSON-RPC methods and requires no additional modifications.

If you need to modify parameters such as hint, refund address and revert protection, you can configure the dedicated RPC in the portal.

Endpoint

For project RPC, please refer to the Integration

Endpoint type
URL

General RPC

https://eth.blockrazor.xyz

Project Default RPC

https://eth.blockrazor.xyz/<rpc_id>

Project Custom RPC

https://<custom_domain>.eth.blockrazor.xyz

Request parameters

Parameters
Mandatory
Format
Example
Remark

-

Mandatory

bytes

"0xd46e……445675"

raw tx

Request Example

curl -X POST -H "Content-Type: application/json" --data '{
    "id": 1,
    "jsonrpc": "2.0",
    "method": "eth_sendRawTransaction",
    "params": [
        "0xd46e……445675"
    ]
}' https://bsc.blockrazor.xyz

Response Example

normal

abnormal

Other JSON-RPC Methods

BlockRazor RPC supports standard JSON-RPC method, you can refer to https://ethereum.org/zh/developers/docs/apis/json-rpc/#json-rpc-methods

Last updated

Was this helpful?