mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-04 20:05:50 +00:00
Update content/tutorials/quickstart/batch-minting.md
Co-authored-by: Rome Reginelli <rome@ripple.com>
This commit is contained in:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user