Skip to content

types.TransactionQueueStatus

VictorVicente edited this page Sep 6, 2022 · 14 revisions

Enumeration: TransactionQueueStatus

types.TransactionQueueStatus

Table of contents

Enumeration Members

Enumeration Members

Failed

Failed = "Failed"

a critical transaction's execution failed. This might mean the transaction was rejected, failed due to a revert or never entered a block

Defined in

types/index.ts:80


Idle

Idle = "Idle"

the queue is prepped to run

Defined in

types/index.ts:70


Running

Running = "Running"

transactions in the queue are being executed

Defined in

types/index.ts:74


Succeeded

Succeeded = "Succeeded"

the queue finished running all of its transactions. Non-critical transactions might still have failed

Defined in

types/index.ts:85

Clone this wiki locally