PaginatedMintResponse
hasNextbooleanrequired
Indicates if there are more items to fetch
Example:
truenextCursorstring
Cursor to be used to fetch the next page of items
Example:
eyJpZCI6IjEyM2U0NTY3ZS1lODliLTEyZDMtYTQ1Ni00MjY2MTQxNzQwMDAifQ==items object[]required
Array [
idstring<uuid>required
Identifier of the mint transaction
Example:
123e4567-e89b-12d3-a456-426614174000tostringrequired
Account ID to which the tokens are minted
Possible values: Value must match regular expression ^0x[0-9a-fA-F]{40}$
Example:
0x2b563420722cbcfc84857129bef775e0dc5f1401amountstringrequired
Amount of tokens minted
Example:
1timestampnumberrequired
Timestamp of the mint transaction
Example:
1256953732txHashstringrequired
Hash of the mint transaction
Possible values: Value must match regular expression ^0x[0-9a-fA-F]{64}$
Example:
0x5c504edc5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5nftIdstring
NFT ID
Example:
9]
PaginatedMintResponse
{
"items": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"to": "0x2b563420722cbcfc84857129bef775e0dc5f1401",
"amount": "1",
"timestamp": 1256953732,
"txHash": "0x5c504edc5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5",
"nftId": "9"
}
],
"hasNext": true,
"nextCursor": "eyJpZCI6IjEyM2U0NTY3ZS1lODliLTEyZDMtYTQ1Ni00MjY2MTQxNzQwMDAifQ=="
}