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 '{ 
  "jsonrpc": "2.0",
  "method": "eth_sendRawTransaction",
  "params": [
    "0x8f4e927ce7a1c5a0291f11a38f6adbc7c043e5f81617f07e7a408ab0c694e400a7c617865c81c4ba4543b7f525a862c5f90eb01be108369f5393b159752c48e7b62e"
  ],
  "id": 1
}'

Sample Response

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

Last updated