Skip to content

types.TransactionStatus

polymath-eric edited this page Nov 9, 2022 · 49 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:66


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:61


Idle

Idle = "Idle"

the transaction is prepped to run

Defined in

types/index.ts:41


Rejected

Rejected = "Rejected"

the transaction was rejected by the signer

Defined in

types/index.ts:53


Running

Running = "Running"

the transaction is being executed

Defined in

types/index.ts:49


Succeeded

Succeeded = "Succeeded"

the transaction was run successfully

Defined in

types/index.ts:57


Unapproved

Unapproved = "Unapproved"

the transaction is waiting for the user's signature

Defined in

types/index.ts:45

Clone this wiki locally