> ## 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.

# xrpl.annotations

> The 'xrpl.annotations' table is a lookup of labeled addresses providing human-readable names for known XRPL wallets, exchanges, and entities.

export const TableSample = ({tableName, tableSchema}) => <>
    <div className="hidden dark:block">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}&darkMode=true`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
    <div className="dark:hidden">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
  </>;

## Table Description

A lookup table of labeled addresses providing human-readable names for known XRPL wallets, exchanges, and entities. Used to enrich account and transaction data with contextual identity information. Referenced by accounts to annotate well-known addresses.

## Column Descriptions

| **Column**         | **type** | **Description**                                                         |
| ------------------ | -------- | ----------------------------------------------------------------------- |
| **annotation\_id** | bigint   | Unique surrogate primary key for the annotation record                  |
| **source**         | string   | Origin of the annotation (e.g. third-party data provider)               |
| **name**           | string   | Human-readable label for the address (e.g., exchange name, institution) |
| **address**        | string   | The XRPL account address this annotation describes                      |

## Table Sample

<TableSample tableSchema="xrpl" tableName="annotations" />
