Skip to main content

JobResults

successboolean

Indicates whether the job was successful.

jobStatusstring

The current status of the job.

Possible values: [created, started, finished, failed, used, restarted]

errorstring

Error message if the job failed.

results object[]

Results for each transaction in the job.

  • Array [
  • successbooleanrequired

    Indicates whether the proof generation for this transaction was successful.

    errorstring

    Error message if proof generation failed for this transaction.

    txstring

    The transaction data.

    statusstring

    The status of the transaction.

    hashstring

    The transaction hash if broadcasted.

  • ]
  • JobResults
    {
    "success": true,
    "jobStatus": "created",
    "error": "string",
    "results": [
    {
    "success": true,
    "error": "string",
    "tx": "string",
    "status": "string",
    "hash": "string"
    }
    ]
    }