CryptoIcicle$OP Airdrop - Holders
    Updated 2023-07-24
    -- $OP Airdrop
    -- Earlier this summer, Optimism offered an airdrop to users. Let’s examine the airdrop after a few months.

    -- Pay by Quality
    -- Your score determines your final payout.
    -- Grand Prize 75 USDC (A score of 11 or 12 earns you a Grand Prize title)
    -- Payout 50 USDC
    -- Score Multiplier0-7 : 0% 8 : 50% 9 : 75% 10 : 100% 11 : 125% 12 : 150%
    -- Payout Network Ethereum
    -- Level Beginner
    -- Difficulty Medium
    -- Earlier this summer, Optimism offered an airdrop to users. Let’s examine the airdrop after a few months.
    -- How many users claimed optimism airdrop? How much of total airdrop was claimed?
    -- How many wallets are still holding tokens from airdrop? How much of users delegated their OPs?
    -- Feel free to provide any information that you think is related to token price.

    -- example TX: 0xd564e9ed9de239c71b4d118c5b523bdba0926536e708d80a02c15cd67b2fc8a8
    -- SQL_CREDIT https://app.flipsidecrypto.com/velocity/queries/15afc966-e617-4c55-8f0c-1b45b13becf6
    WITH
    -- $OP Airdrop 1 metadata from https://dune.com/queries/1307843
    op_airdrop_1_metadata AS (
    SELECT 214748364.8 AS op_tokens_to_claim
    , 248699 AS eligible_users
    ),

    op_transfers AS (
    SELECT block_timestamp::date AS utc_date
    , tx_hash
    , from_address AS wallet
    , -raw_amount / power(10,18) AS amount
    , 'send' AS tx_type
    , from_address AS _from_address
    , to_address AS _to_address
    FROM optimism.core.fact_token_transfers
    Run a query to Download Data