SajjadiiiDaily Active Addresses copy
    Updated 1 day ago
    -- forked from Masi / Daily Active Addresses @ https://flipsidecrypto.xyz/Masi/q/lOD1WUkl2aBU/daily-active-addresses

    with tb0_0 AS (
    SELECT
    block_timestamp,
    BLOCK_ID,
    tx_hash,
    ifnull(tx:actions[0]:Delegate:delegate_action:receiver_id::string, TX_RECEIVER)::string as receiver,
    ifnull(tx:actions[0]:Delegate:delegate_action:sender_id::string, TX_SIGNER)::string AS user
    FROM near.core.fact_transactions
    where block_timestamp::date >= current_date - 30
    )
    ,


    tb0 as ( select block_timestamp,
    from_address
    from thorchain.core.fact_transfers
    where block_timestamp::date >= current_date - 30
    UNION
    select block_timestamp,
    from_address
    from thorchain.defi.fact_swaps
    where block_timestamp::date >= current_date - 30
    UNION
    select block_timestamp,
    native_to_address as from_address
    from thorchain.defi.fact_swaps
    where block_timestamp::date >= current_date - 30),
    tb5 as (select address from avalanche.core.dim_contracts)
    select trunc(block_timestamp,'day') as daily ,
    'ethereum' as blockchain,
    count(DISTINCT from_address) as active_addresses
    from ethereum.core.fact_transactions
    where block_timestamp::date >= current_date - 30
    group by 1
    Last run: 1 day ago
    DAILY
    BLOCKCHAIN
    ACTIVE_ADDRESSES
    1
    2025-03-31 00:00:00.000ethereum404893
    2
    2025-03-31 00:00:00.000base951505
    3
    2025-03-31 00:00:00.000aptos1097525
    4
    2025-03-31 00:00:00.000arbitrum325276
    5
    2025-03-31 00:00:00.000blast6383
    6
    2025-03-31 00:00:00.000sei247377
    7
    2025-03-31 00:00:00.000avalanche29554
    8
    2025-03-31 00:00:00.000optimism65529
    9
    2025-03-31 00:00:00.000polygon547613
    10
    2025-03-31 00:00:00.000thorchain2291
    11
    2025-03-31 00:00:00.000kaia4164988
    12
    2025-03-31 00:00:00.000near3756948
    13
    2025-03-31 00:00:00.000solana3069465
    14
    2025-03-31 00:00:00.000Aleo7133
    15
    2025-03-31 00:00:00.000Core257063
    16
    2025-04-12 00:00:00.000ethereum335308
    17
    2025-04-16 00:00:00.000ethereum372145
    18
    2025-04-12 00:00:00.000base1309731
    19
    2025-04-16 00:00:00.000base646322
    20
    2025-04-12 00:00:00.000aptos915662
    ...
    441
    19KB
    271s