# TransactionStatus

## Index

### Enumeration members

* [Aborted](#aborted)
* [Failed](#failed)
* [Idle](#idle)
* [Rejected](#rejected)
* [Running](#running)
* [Succeeded](#succeeded)
* [Unapproved](#unapproved)

## Enumeration members

### Aborted

• **Aborted**: = "Aborted"

*Defined in* [*src/types/index.ts:57*](https://github.com/PolymathNetwork/polymesh-sdk/blob/bf2b7a12/src/types/index.ts#L57)

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/types/index.ts:52*](https://github.com/PolymathNetwork/polymesh-sdk/blob/bf2b7a12/src/types/index.ts#L52)

the transaction's execution failed due to a revert

### Idle

• **Idle**: = "Idle"

*Defined in* [*src/types/index.ts:32*](https://github.com/PolymathNetwork/polymesh-sdk/blob/bf2b7a12/src/types/index.ts#L32)

the transaction is prepped to run

### Rejected

• **Rejected**: = "Rejected"

*Defined in* [*src/types/index.ts:44*](https://github.com/PolymathNetwork/polymesh-sdk/blob/bf2b7a12/src/types/index.ts#L44)

the transaction was rejected by the signer

### Running

• **Running**: = "Running"

*Defined in* [*src/types/index.ts:40*](https://github.com/PolymathNetwork/polymesh-sdk/blob/bf2b7a12/src/types/index.ts#L40)

the transaction is being executed

### Succeeded

• **Succeeded**: = "Succeeded"

*Defined in* [*src/types/index.ts:48*](https://github.com/PolymathNetwork/polymesh-sdk/blob/bf2b7a12/src/types/index.ts#L48)

the transaction was run successfully

### Unapproved

• **Unapproved**: = "Unapproved"

*Defined in* [*src/types/index.ts:36*](https://github.com/PolymathNetwork/polymesh-sdk/blob/bf2b7a12/src/types/index.ts#L36)

the transaction is waiting for the user's signature
