adambalaUnique Users on Algorand
    Updated 2022-04-08

    with

    harmony as (
    select
    date_trunc('day',block_timestamp) as date ,count(distinct from_address) as number_transaction,'harmony' as title
    from mdao_harmony.txs
    where block_timestamp>'2022-02-01' group by 1,3 ),
    algorand as (
    select
    date_trunc('day',block_timestamp) as date ,count(distinct sender) as number_transaction,'algorand' as title
    from algorand.TRANSACTIONs
    where block_timestamp>'2022-02-01' group by 1,3 ),

    polygon as (
    select
    date_trunc('day',block_timestamp) as date ,count(distinct from_address) as number_transaction ,'polygon' as title
    from polygon.TRANSACTIONs
    where block_timestamp>'2022-02-01' group by 1,3 ),

    ethereum as (
    select
    date_trunc('day',block_timestamp) as date ,count(distinct from_address) as number_transaction,'ethereum' as title
    from ethereum.TRANSACTIONs
    where block_timestamp>'2022-02-01' group by 1,3 ),

    solana as (
    select
    date_trunc('day',block_timestamp) as date ,count(distinct tx_from_address) as number_transaction,'solana' as title
    from solana.TRANSACTIONs
    where block_timestamp>'2022-02-01' group by 1,3 ),

    terra as (
    select
    date_trunc('day',block_timestamp) as date ,count(distinct tx_id) as number_transaction,'terra' as title
    Run a query to Download Data