fix: add until param to getConfirmedSignaturesForAddress2 (#16459)
This commit is contained in:
@ -119,6 +119,8 @@ export type ConfirmedSignaturesForAddress2Options = {
|
|||||||
* @remark If not provided the search starts from the highest max confirmed block.
|
* @remark If not provided the search starts from the highest max confirmed block.
|
||||||
*/
|
*/
|
||||||
before?: TransactionSignature;
|
before?: TransactionSignature;
|
||||||
|
/** Search until this transaction signature is reached, if found before `limit`. */
|
||||||
|
until?: TransactionSignature;
|
||||||
/** Maximum transaction signatures to return (between 1 and 1,000, default: 1,000). */
|
/** Maximum transaction signatures to return (between 1 and 1,000, default: 1,000). */
|
||||||
limit?: number;
|
limit?: number;
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user