Skip to main content
Version: v29.0.x

Enumeration: TransactionStatus

Defined in: src/base/types.ts:20

Enumeration Members

Aborted

Aborted: "Aborted"

Defined in: src/base/types.ts:49

the transaction couldn't be broadcast. It was either dropped, usurped or invalidated see https://github.com/paritytech/substrate/blob/master/primitives/transaction-pool/src/pool.rs#L58-L110


Failed

Failed: "Failed"

Defined in: src/base/types.ts:44

the transaction's execution failed due to a an on-chain validation error, insufficient balance for fees, or other such reasons


Idle

Idle: "Idle"

Defined in: src/base/types.ts:24

the transaction is prepped to run


Rejected

Rejected: "Rejected"

Defined in: src/base/types.ts:36

the transaction was rejected by the signer


Running

Running: "Running"

Defined in: src/base/types.ts:32

the transaction is being executed


Succeeded

Succeeded: "Succeeded"

Defined in: src/base/types.ts:40

the transaction was run successfully


Unapproved

Unapproved: "Unapproved"

Defined in: src/base/types.ts:28

the transaction is waiting for the user's signature