Skip to main content
Version: 24.2.x

Enumeration: TransactionStatus

base/types.TransactionStatus

Enumeration Members

Aborted

Aborted = "Aborted"

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

Defined in

base/types.ts:50


Failed

Failed = "Failed"

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

Defined in

base/types.ts:45


Idle

Idle = "Idle"

the transaction is prepped to run

Defined in

base/types.ts:25


Rejected

Rejected = "Rejected"

the transaction was rejected by the signer

Defined in

base/types.ts:37


Running

Running = "Running"

the transaction is being executed

Defined in

base/types.ts:33


Succeeded

Succeeded = "Succeeded"

the transaction was run successfully

Defined in

base/types.ts:41


Unapproved

Unapproved = "Unapproved"

the transaction is waiting for the user's signature

Defined in

base/types.ts:29