dogeparty-assets / README.md
ArchibaldAI's picture
Full Dogeparty data with issuer/owner (55969 assets)
49f482f verified
metadata
language:
  - en
license: cc0-1.0
tags:
  - dogecoin
  - dogeparty
  - blockchain
  - crypto
  - nft
  - tokens
  - web3
pretty_name: Dogeparty Assets
size_categories:
  - 100K<n<1M
dataset_info:
  features:
    - name: asset
      dtype: large_string
    - name: asset_longname
      dtype: large_string
    - name: description
      dtype: large_string
    - name: supply
      dtype: float64
    - name: divisible
      dtype: bool
    - name: locked
      dtype: bool
    - name: issuer
      dtype: large_string
    - name: owner
      dtype: large_string
    - name: type
      dtype: large_string
    - name: block_index
      dtype: int64
    - name: timestamp
      dtype: int64
    - name: asset_id
      dtype: large_string
  splits:
    - name: train
      num_bytes: 22917784
      num_examples: 55969
  download_size: 15406888
  dataset_size: 22917784
configs:
  - config_name: default
    data_files:
      - split: train
        path: data/train-*

Dogeparty Assets Dataset

A complete snapshot of all assets issued on the Dogeparty protocol — the token/NFT layer built on top of the Dogecoin blockchain.

What is Dogeparty?

Dogeparty is a decentralized protocol that enables token creation, NFTs, and smart contracts on the Dogecoin network. It is the Dogecoin equivalent of Counterparty (which runs on Bitcoin). Assets are issued on-chain and tracked via the OP_RETURN data embedded in Dogecoin transactions.

Key features:

  • Token issuance: Create custom named tokens (e.g. RAREDOGE, SHIBART)
  • NFTs: Issue non-divisible tokens with unique descriptions/metadata
  • DEX: Peer-to-peer trading built into the protocol
  • Native currency: XDP (Dogeparty token) used for protocol fees

Dataset Contents

Column Type Description
asset string Asset name (e.g. RAREDOGE, A12345678901234)
owner string Current owner's Dogecoin address
issuer string Original issuer's Dogecoin address
supply int64 Total supply (in base units; divide by 1e8 if divisible)
divisible bool Whether the asset has decimal places (8 decimal places if true)
locked bool Whether the supply is permanently locked
description string Asset description (often a URL to metadata/artwork)
first_issuance_block_index int64 Dogecoin block when the asset was first issued
last_issuance_block_index int64 Dogecoin block of most recent issuance event

Statistics

  • Total assets: 247,283
  • Data source: public.coindaddy.io Dogeparty JSON-RPC API
  • Snapshot date: February 2026

Usage

from datasets import load_dataset

ds = load_dataset("ArchibaldAI/dogeparty-assets", split="train")
df = ds.to_pandas()

# Find assets with descriptions (likely NFTs/art)
nfts = df[df["description"].str.len() > 0]
print(f"{len(nfts)} assets with descriptions")

# Find locked supply assets
locked = df[df["locked"] == True]
print(f"{len(locked)} locked assets")

# Find non-divisible tokens (typical NFTs)
nondivisible = df[df["divisible"] == False]
print(f"{len(nondivisible)} non-divisible assets")

Related Datasets

Data Collection

Data was collected via the Dogeparty JSON-RPC API using a Hugging Face Job. The collection script is available at github.com/ArchibaldAI.

License

Released under CC0 1.0 — public domain, no restrictions.

Citation

@dataset{dogeparty_assets_2026,
  author    = {ArchibaldAI},
  title     = {Dogeparty Assets},
  year      = {2026},
  publisher = {Hugging Face},
  url       = {https://huggingface.co/datasets/ArchibaldAI/dogeparty-assets}
}