fix: add until param to getConfirmedSignaturesForAddress2 (#16459)

This commit is contained in:
Tyera Eulberg 2021-04-11 12:20:22 -06:00 committed by GitHub
parent 278c125d99
commit 1d2cae433c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -119,6 +119,8 @@ export type ConfirmedSignaturesForAddress2Options = {
* @remark If not provided the search starts from the highest max confirmed block.
*/
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). */
limit?: number;
};