POST

/

id
jsonrpc
method
params
curl --request POST \
  --url https://rpc1.taurus.axiomesh.io/

Submits a pre-signed transaction for broadcast to the Ethereum network

Body

id
number

Serves as a unique identifier for the request

jsonrpc
string

Indicates the version of JSON-RPC being used

method
string

Represents the name of the remote procedure or method to be called

params
array

Contains the list of parameters passed to the remote method

transactionData
string

The signed transaction data.

Response

id
number

Returns unique identifier for the request

jsonrpc
string

Returns the version of JSON-RPC being used

transactionHash
string

32 Bytes - the transaction hash, or the zero hash if the transaction is not yet available

curl  'https://example-rpc.axiomesh.io' \
--header 'Content-Type: application/json' \
--data '{
    "jsonrpc": "2.0",
    "method": "eth_sendRawTransaction",
    "params": ["0xf8700582c350825208942299e9b1a4e08b5d67017e19d75d3a24bb1074df8d0c9f2c9cd04674edea4000000080820abca0ca99eb4e5a825b8bc9ac4e6cc973c0e43a8c2632257313f1ff100407470ea79aa058e89b16ad22c4b8677cdefa10c9fc04b08a45bae9389062faed7ec659d08bc7"],
    "id": 1
}'
{
    "jsonrpc": "2.0",
    "id": 1,
    "result": "0xe81ddc36ff71b2e6e08ef7e912d05fe3549757a030a3476eb5c5bf0570286c32"
}