Update content/tutorials/quickstart/batch-minting.md

Co-authored-by: Rome Reginelli <rome@ripple.com>
This commit is contained in:
Dennis Dawson
2022-09-26 15:21:07 -07:00
committed by GitHub
parent 5b24f7c132
commit c58ad766b6

View File

@@ -139,7 +139,7 @@ Request the `account_nfts`. Set the `limit` to 400, the maximum amount, to retri
If the list of `NFTokens` exceeds your limit, the result includes a `marker` field that you can use as a parameter for the next `account_nfts` request. The `marker` indicates where the next batch of records starts. While the `marker` field is present, continue to request another batch of NFToken records.
```javascript
while (nfts.result.marker != null)
while (nfts.result.marker)
{
nfts = await client.request({
method: "account_nfts",