TransactionExecutionStatus
The execution status of the transaction.
Import
You can import the entire package and access the function:
_10import * as sdk from "@onflow/sdk"_10_10sdk.TransactionExecutionStatus()
Or import directly the specific function:
_10import { TransactionExecutionStatus } from "@onflow/sdk"_10_10TransactionExecutionStatus()
Returns
_10{ readonly UNKNOWN: 0; readonly PENDING: 1; readonly FINALIZED: 2; readonly EXECUTED: 3; readonly SEALED: 4; readonly EXPIRED: 5; }