eth_sendRawTransaction

Creates new message call transaction or a contract creation for signed transactions.

Parameters

Data of the signed transaction.

Sample Request

curl https://lb.nodies.app/v1/<INSERT URL> \
   -H "x-api-key: <API-KEY>" \
   -X POST \
   -H "Content-Type: application/json" \
   -d '{ 
  "id": 1,
  "jsonrpc": "2.0",
  "method": "eth_sendRawTransaction",
  "params": [
    "0x3a7b6f8c945207d04f9b6c34a8c2b1a1dce384319f87c19e8276c7f2b7e295c670f7d6382b6d9921e2c586ef2a770adebdfc0911d066d47e15179404c509ed8918"
  ]
}'

Sample Response

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": "0x8bcdfae12e9f70476b96b81aee120c5c19dcb81e1a7a99f6b33d0c3aae7ec0b5"
}

Last updated