Daily Trade Volume & Fees

Description

This dataset provides the aggregate daily trade volume for all Curve DEX'es, as well as daily fees & admin fees generated from these trades. Data is gathered for all DEX's from their inception date, however individual rows are omitted if the trade volume is below 1 USD. For the pool_name column, the designated names do not always follow the convention of "token A- token B", so it is advised to visit Curve's documentation to learn more.

Schema

  • day - date

  • project_contract_address - contract address of the DEX

  • pool_name - name of the DEX (usually combination of the Tokens, but there are exceptions with special names)

  • daily_volume_usd - daily trade volume in USD

  • admin_fee_usd - daily fees accrued by DEX, designated for the admins and governance token holders

  • fee_usd - daily fees accrued by DEX, designated for LP providers

  • token_type - type of DEX (stable or volatile)

The dataset uses day andproject_contract_address as the primary keys.

Potential Use Cases

  • pool specific trade volume prediction

  • automated LP strategies

Use example

from giza_datasets import DatasetsLoader

# Usage example:
loader = DatasetsLoader()
df = loader.load('curve-daily-volume-fees')

Last updated