nsa2000Number of Minted Pooly NFTs
    Updated 2022-06-22
    select DISTINCT
    date_trunc('day', block_timestamp::date) as date,
    sum(ORIGIN_FROM_ADDRESS) as Minted_Pooly_NFTs
    from ethereum.core.fact_event_logs
    where EVENT_NAME= 'Transfer' and CONTRACT_ADDRESS= '0x90b3832e2f2ade2fe382a911805b6933c056d6ed'
    group by 1
    order by 1
    Run a query to Download Data