Skip to Content
Packages@tuwaio/pulsar-solanaType AliasesSolanaSignatureStatusResponse

SolanaSignatureStatusResponse

SolanaSignatureStatusResponse = object

Defined in: trackers/solanaTracker.ts:25 

The status of a Solana transaction that solanaFetcher reports: the signature status combined with details from getTransaction.

Properties

confirmations

confirmations: number | null

Defined in: trackers/solanaTracker.ts:29 

The number of confirmations (0 once the transaction is rooted).


confirmationStatus

confirmationStatus: "processed" | "confirmed" | "finalized" | null

Defined in: trackers/solanaTracker.ts:33 

The commitment level the transaction has reached.


err

err: TransactionError | null

Defined in: trackers/solanaTracker.ts:31 

The on-chain error of a failed transaction, or null.


fee?

optional fee?: number

Defined in: trackers/solanaTracker.ts:35 

The transaction fee, in lamports.


instructions?

optional instructions?: unknown[]

Defined in: trackers/solanaTracker.ts:39 

The instructions of the transaction.


recentBlockhash?

optional recentBlockhash?: string

Defined in: trackers/solanaTracker.ts:37 

The blockhash the transaction was signed with.


slot

slot: number

Defined in: trackers/solanaTracker.ts:27 

The slot in which the transaction was processed.

Last updated on