sui.core Table: dim_labels Type: Base Table
The labels table is a store of one-to-one address identifiers, or an address name. Labels are broken
out into a “type” (such as cex, dex, dapp, games, etc.) and a “subtype” (ex: contract_deployer,
hot_wallet, token_contract, etc.) in order to help classify each address name into similar groups.
Our labels are sourced from many different places, but can primarily be grouped into two categories:
automatic and manual. Automatic labels are continuously labeled based on certain criteria, such as a
known contract deploying another contract, behavior based algorithms for finding deposit wallets,
and consistent data pulls of custom protocol APIs. Manual labels are done periodically to find
addresses that cannot be found programmatically such as finding new protocol addresses, centralized
exchange hot wallets, or trending addresses. Labels can also be added by our community by using our
add-a-label tool (https://science.flipsidecrypto.xyz/add-a-label/).A label can be removed by our
labels team if it is found to be incorrect or no longer relevant; this generally will only happen
for mislabeled deposit wallets.
Columns
| Column Name | Data Type | Description |
|---|---|---|
| BLOCKCHAIN | TEXT | In this table, always ton. Used to join to cross-chain tables. |
| CREATOR | TEXT | Name of the label creator - for now, this will always be “Flipside.” |
| ADDRESS | TEXT | Raw address string |
| LABEL_TYPE | TEXT | A broad category that describes what a label is representing. |
| LABEL_SUBTYPE | TEXT | Adds more detail to the label type. |
| LABEL | TEXT | The label or name of the address. |
| ADDRESS_NAME | TEXT | Name of the labeled address |
| DIM_LABELS_ID | TEXT | Unique primary key for the dimension table, used as the main identifier for each record. |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | Timestamp when this record was inserted. |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | Timestamp when this record was last modified. |