Transaction Methods
Submit a signed transaction
wss://honeycluster.io
rpc method: submit

Submits a signed transaction to the network. The transaction must be fully signed and serialized as a hex blob.

Try it now
Response · submit WS Response
{
  "result": {
    "engine_result": "tesSUCCESS",
    "engine_result_code": 0,
    "engine_result_message": "The transaction was applied. Only final in a validated ledger.",
    "tx_blob": "1200002200000000...",
    "tx_json": {
      "Account": "rG1QQv2nh2gr7RCZ1P8YYcBUKCCN633jCn",
      "TransactionType": "Payment",
      "hash": "E08D6E9754025BA2534A78707605E0601F03ACE063687A0CA1BDDACFCD1698C7"
    }
  },
  "status": "success",
  "type": "response",
  "id": 1
}
Request Message
submit WS Request
application/json
Submit a signed transaction
FieldTypeDescription
command
required
string
WebSocket command name
id
object
Client-supplied identifier to correlate requests with responses.
tx_blob
string
The complete, signed transaction as a hex string.
fail_hard
boolean
If true, do not retry or relay to other servers if the transaction fails locally.
api_version
object
API version for the response format. Version 2 is the default for rippled 2.0+.
Example
Json
{
  "command": "submit",
  "id": 1,
  "tx_blob": "1200002200000000240000004361D4838D7EA4C6800000000000000000000000000055534400000000004B4E9C06F24296074F7BC48F92A97916C6DC5EA968400000000000000C7321023693F15967AE357D0327974AD46FE3C127113B1110D6044520CC26B62CF1AD1674463044022040...(truncated)"
}
Response Message
submit WS Response
application/json
WebSocket response for submit
FieldTypeDescription
result
object
status
enum<string>
Available
successerror
type
string
id
stringnumber
Echo of the client-provided correlation ID
Example
Json
{
  "result": {
    "engine_result": "tesSUCCESS",
    "engine_result_code": 0,
    "engine_result_message": "The transaction was applied. Only final in a validated ledger.",
    "tx_blob": "1200002200000000...",
    "tx_json": {
      "Account": "rG1QQv2nh2gr7RCZ1P8YYcBUKCCN633jCn",
      "TransactionType": "Payment",
      "hash": "E08D6E9754025BA2534A78707605E0601F03ACE063687A0CA1BDDACFCD1698C7"
    }
  },
  "status": "success",
  "type": "response",
  "id": 1
}