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:20:57 -07:00
committed by GitHub
parent c7f7bb80de
commit 5b24f7c132

View File

@@ -136,7 +136,7 @@ Request the `account_nfts`. Set the `limit` to 400, the maximum amount, to retri
results += JSON.stringify(nfts,null,2)
```
If the list of NFTokens exceeds your limit, the result will include 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 not null, continue to request another batch of NFToken records.
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)