Abolfazl_771025total count of active NFT seller at each chain
    Updated 2022-12-20
    select
    'Flow' as "chain",
    count (distinct BUYER) as "users count"
    from flow.core.ez_nft_sales
    where block_timestamp >= '2022-01-01'
    group by 1
    union
    select
    'Ethereum' as "chain",
    count (distinct SELLER_ADDRESS) as "users count"
    from ethereum.core.ez_nft_sales
    where block_timestamp >= '2022-01-01'
    group by 1
    union
    select
    'Terra' as "chain",
    count (distinct PURCHASER) as "users count"
    from terra.core.fact_nft_sales
    where block_timestamp >= '2022-01-01'
    group by 1
    union
    select
    'Solana' as "chain",
    count (distinct PURCHASER) as "users count"
    from solana.core.fact_nft_sales
    where block_timestamp >= '2022-01-01'
    group by 1
    union
    select
    'Algorand' as "chain",
    count (distinct PURCHASER) as "users count"
    from algorand.nft.fact_nft_sales
    where block_timestamp >= '2022-01-01'
    group by 1
    union
    select
    Run a query to Download Data