Deprecated Uniswap Airdrop Metrics

    ⚠️

    Note: The Airdrop occurred in September 2020, but there are no more claims. Although data remains accessible through the API, we do not recommend its use.

    Definition

    The Uniswap Airdrop Metrics provide insights into the distribution of tokens resulting from the Uniswap protocol's decentralized exchange activity. This airdrop, which took place in September 2020, allocated tokens to users based on their past interactions with the Uniswap platform.

    Uniswap Airdrop Metrics:

    • uniswap_total_lp_claims_amount - The amount of tokens claimed by both users and liquidity providers up to that point in time
    • uniswap_user_claims_count - The amount of claims by users
    • uniswap_user_claims_amount - The amount of tokens claimed given to users
    • uniswap_lp_claims_amount - The amount of tokens claimed given to liquidity providers
    • uniswap_total_claims_percent - The percentage of claimed tokens
    • uniswap_total_claims_amount - The amount of tokens claimed by both users and liquidity providers up to that point in time
    • uniswap_top_claimers - The biggest claimers sorted by amount they claimed in a given period
    • uniswap_claims_amount - The amount of tokens claimed by both users and liquidity providers
    • uniswap_claims_count - The amount of claims claimed by both users and liquidity providers
    • uniswap_total_user_claims_amount - The amount of tokens claimed by users up to that point in time
    • uniswap_lp_claims_count - The amount of claims by liquidity providers
    • uniswap_total_claims_count - The total amount of claims by both users and liquidity providers up to that point in time
    • uniswap_total_user_claims_count - The total amount of claims by users up to that point in time
    • uniswap_total_lp_claims_count - The total amount of claims by liquidity providers up to that point in time

    Access

    Restricted Access


    Measuring Unit

    Metrics that have amount in name represent the number of tokens. Metrics that have count in name represent the number of claims. Metrics that have percent in name represent the percentage.


    Data Type

    Timeseries Data


    Frequency

    Five-minute frequency


    Latency

    On-Chain Latency


    Available Assets

    uniswap


    API

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "uniswap_claims_amount") {
        timeseriesData(
          slug: "uniswap"
          from: "2020-09-15T00:00:00Z"
          to: "2020-10-01T00:00:00Z"
          interval: "1d"
        ) {
          datetime
          value
        }
      }
    }

    Run in explorer