fix: add confirmation status to ConfirmedSignatureInfo web3.js response (#28555)
* Add confirmation status to ConfirmedSignatureInfo web3 response * Update web3.js/src/connection.ts Co-authored-by: Austin Milt <austin.w.milt@gmail.com> Co-authored-by: Austin Milt <austin.w.milt@gmail.com>
This commit is contained in:
parent
ea5bbc8ce0
commit
3922f3d685
|
@ -2621,6 +2621,8 @@ export type ConfirmedSignatureInfo = {
|
||||||
memo: string | null;
|
memo: string | null;
|
||||||
/** The unix timestamp of when the transaction was processed */
|
/** The unix timestamp of when the transaction was processed */
|
||||||
blockTime?: number | null;
|
blockTime?: number | null;
|
||||||
|
/** Cluster confirmation status, if available. Possible values: `processed`, `confirmed`, `finalized` */
|
||||||
|
confirmationStatus?: TransactionConfirmationStatus;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue