Documentation Index
Fetch the complete documentation index at: https://docs.dune.com/llms.txt
Use this file to discover all available pages before exploring further.
Table Description
Represents all fungible tokens (IOUs) and Multi-Purpose Tokens (MPTs) issued on the XRP Ledger, one row per token. Tracks token supply, holder counts, compliance flags, and lifecycle metadata for token analytics, issuer monitoring, and market analysis. Links to accounts for issuer identity.Column Descriptions
| Column | type | Description |
|---|---|---|
| token_id | bigint | Unique surrogate primary key for the token record |
| currency | string | Raw currency code as stored on the ledger |
| currency_iso | string | ISO 4217 currency code representation, if applicable (e.g., USD, EUR) |
| currency_hex | string | Hexadecimal representation of the currency code |
| currency_ascii | string | Human-readable ASCII representation of the currency code |
| issuer | bigint | Surrogate key for the account that issued this token (→ accounts) |
| issuer_address | string | XRPL address of the token issuer |
| is_active | boolean | Whether the token currently has active supply or trust lines on the ledger |
| is_blackholed | boolean | Whether the issuing account’s keys have been disabled, making the supply immutable (a trust signal for token holders) |
| created_transaction_hash | string | Hash of the transaction that first created this token |
| created_ledger_index | bigint | Ledger index when the token was first issued |
| created_timestamp | timestamp | Timestamp when the token was first issued |
| last_seen_timestamp | timestamp | Timestamp of the most recent ledger activity involving this token |
| total_outstanding_supply | double | Total circulating supply of this token across all trust lines or MPT holdings |
| has_positive_supply | boolean | Flag indicating whether total outstanding supply is greater than zero |
| holders_count | bigint | Number of accounts currently holding a non-zero balance of this token |
| trustline_count | bigint | Number of open trust lines established for this token (IOU tokens only) |
| is_mpt | boolean | Whether this token is a Multi-Purpose Token (MPT) rather than a traditional IOU trust-line token |
| mpt_issuance_id | string | Unique issuance identifier for MPT tokens on the ledger |
| mptoken_count | bigint | Number of MPToken objects held by accounts for this MPT issuance |
| maximum_value_mpt | bigint | Maximum supply cap defined at issuance for MPT tokens |
| mpt_metadata | string | Arbitrary metadata attached to the MPT issuance at creation |
| transfer_fee | double | Fee charged on peer-to-peer transfers of this token, expressed as a percentage |
| clawback_enabled | boolean | Whether the issuer has enabled the ability to reclaim tokens from holder accounts |
| burnable | boolean | Whether token holders or the issuer can permanently destroy (burn) tokens |
| token_script | string | On-chain script or logic associated with the token, if applicable |