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

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;
};