You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_(Requires the [MPTokensV1 amendment][] {% not-enabled /%})_
11
14
12
-
For a given `MPTokenIssuanceID` and ledger sequence, `mpt_holders` returns all holders of that MPT and their balance. This method likely returns very large data sets, so you should expect to implement paging via the `marker` field. This API is only available using Clio, not rippled.
15
+
For a given `MPTokenIssuanceID` and ledger sequence, `mpt_holders` returns all holders of that [MPT](../../../../concepts/tokens/fungible-tokens/multi-purpose-tokens.md) and their balance. This method likely returns very large data sets, so you should expect to implement paging via the `marker` field. This API is only available using Clio, not `rippled`. {% badge href="https://github.com/XRPLF/clio/releases/tag/2.3.0" %}New in: Clio v2.3.0{% /badge %}
|`mpt_issuance_id`|string| Yes | The `MPTokenIssuance` to query. |
46
-
|`ledger_index`|string or number (positive integer) | No | The ledger index of the max ledger to use, ora shortcut string to choose a ledger automatically. You must specify either ledger_index or ledger_hash. |
47
-
|`ledger_hash`|string| No | A 32-byte hex string for the ledger version to use. You must specify either ledger_index or ledger_hash. |
48
-
|`marker`|string| No | Used to continue your query where it left off in paginating. |
49
-
|`limit`|number (positive integer) | No | Specify a limit to the number of MPTs returned. |
|`mpt_issuance_id`|String | Yes | The `MPTokenIssuance` to query. |
54
+
|`ledger_index`|[Ledger Index][]| No | The [Ledger Index][] of the max ledger to use, or a shortcut string to choose a ledger automatically. You must specify either `ledger_index` or `ledger_hash`. See [Specifying Ledgers][].|
55
+
|`ledger_hash`|String| No | A 32-byte hex string for the ledger version to use. You must specify either `ledger_index` or ledger_hash. See [Specifying Ledgers][]. |
56
+
|`marker`|[Marker][]| No | Used to continue your query where it left off in paginating. |
57
+
|`limit`|Number (positive integer) | No| Specify a limit to the number of MPTs returned. |
|`mpt_issuance_id`| String | The `MPTokenIssuance` queried. |
130
+
|`mptokens`| Array | An array of [MPTokens](#mptoken). Includes all relevant fields in the underlying `MPToken` object. |
131
+
|`marker`|[Marker][]| Used to continue querying where we left off when paginating. Omitted if there are no more entries after this result. |
132
+
|`limit`| Number | The limit, as specified in the request. |
133
+
|`ledger_index`|[Ledger Index][]| The index of the ledger used. |
134
+
|`validated`| Boolean | If `true`, the ledger has been validated by the consensus process and is immutable. Otherwise, the contents of the ledger are not final and may change. In Clio, this is _always_ true as Clio stores and returns validated ledger data. |
An `mpt_issuance_id` field is provided in JSON MPTokenIssuance objects (not available for binary). The following APIs are impacted: `ledger_data` and `account_objects`.
0 commit comments