thea[Blur Mega] Blur's trader from
    Updated 2023-04-13
    with first_market as (
    select platform_name,
    wallet
    from (
    select *,
    row_number() over (partition by wallet order by block_timestamp) as rnk
    from (
    select block_timestamp,
    platform_name,
    buyer_address as wallet
    from ethereum.core.ez_nft_sales
    where price_usd is not null
    union all
    select block_timestamp,
    platform_name,
    seller_address as wallet
    from ethereum.core.ez_nft_sales
    where price_usd is not null
    )
    )
    where rnk = 1
    )
    , blur_trader as (
    select distinct wallet
    from (
    select buyer_address as wallet
    from ethereum.core.ez_nft_sales
    where platform_name = 'blur'
    and price_usd is not null
    union all
    select seller_address as wallet
    from ethereum.core.ez_nft_sales
    where platform_name = 'blur'
    and price_usd is not null
    )
    )
    Run a query to Download Data