Skip to content

Latest commit

 

History

History
66 lines (53 loc) · 1.83 KB

sendrawtransaction.md

File metadata and controls

66 lines (53 loc) · 1.83 KB

sendrawtransaction Method

Broadcast a transaction over the NEO network.

{
  "jsonrpc": "2.0",
  "method": "sendrawtransaction",
  "params": [hex]
  "id": 1
}

Parameter Description

  • hex: A hexadecimal string that has been serialized after transaction signed in the program.

Example

Request body:

{
  "jsonrpc": "2.0",
  "method": "sendrawtransaction",
  "params": ["80000001195876cb34364dc38b730077156c6bc3a7fc570044a66fbfeeea56f71327e8ab0000029b7cffdaa674beae0f930ebe6085af9093e5fe56b34a5c220ccdcf6efc336fc500c65eaf440000000f9a23e06f74cf86b8827a9108ec2e0f89ad956c9b7cffdaa674beae0f930ebe6085af9093e5fe56b34a5c220ccdcf6efc336fc50092e14b5e00000030aab52ad93f6ce17ca07fa88fc191828c58cb71014140915467ecd359684b2dc358024ca750609591aa731a0b309c7fb3cab5cd0836ad3992aa0a24da431f43b68883ea5651d548feb6bd3c8e16376e6e426f91f84c58232103322f35c7819267e721335948d385fae5be66e7ba8c748ac15467dcca0693692dac"],
  "id": 1
}

Response body in successful cases:

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "hash":"64af42150db8b15db6778f3efbbd8713f443e7447f854aab854cb1941950c218"
  }
}

Response body in unsuccessful cases:

{
    "jsonrpc": "2.0",
    "id": 1,
    "error": {
        "code": -501,
        "message": "Block or transaction already exists and cannot be sent repeatedly."
    }
}

Response Description:

When result is false, the current transaction has failed to broadcast and an exception occurs. The following error codes can be expected

Error code Message
-501 Block or transaction already exists and cannot be sent repeatedly.
-502 The memory pool is full and no more transactions can be sent.
-503 The block cannot be validated.
-504 Block or transaction validation failed.
-505 One of the Policy filters failed.
-500 Unknown error.