In the example provided in the readme, to only grab current sales without history. There seems to be an issue when setting the signatures variable with const. If you change this to let it won't break the rest of the function.
while (true) {
**let signatures** = await solanaConnection.getSignaturesForAddress(projectPubKey, options);
In the example provided in the readme, to only grab current sales without history. There seems to be an issue when setting the signatures variable with const. If you change this to let it won't break the rest of the function.