Skip to content

types.TransactionStatus

prashantasdeveloper edited this page Sep 11, 2024 · 48 revisions

Enumeration: TransactionStatus

types.TransactionStatus

Table of contents

Enumeration Members

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

types/index.ts:93


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

types/index.ts:88


Idle

Idle = "Idle"

the transaction is prepped to run

Defined in

types/index.ts:68


Rejected

Rejected = "Rejected"

the transaction was rejected by the signer

Defined in

types/index.ts:80


Running

Running = "Running"

the transaction is being executed

Defined in

types/index.ts:76


Succeeded

Succeeded = "Succeeded"

the transaction was run successfully

Defined in

types/index.ts:84


Unapproved

Unapproved = "Unapproved"

the transaction is waiting for the user's signature

Defined in

types/index.ts:72

Clone this wiki locally