SajjadiiiDaily Active Addresses copy
    Updated 3 days 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: 3 days ago
    DAILY
    BLOCKCHAIN
    ACTIVE_ADDRESSES
    1
    2025-04-12 00:00:00.000ethereum335308
    2
    2025-04-16 00:00:00.000ethereum372145
    3
    2025-04-12 00:00:00.000base1309731
    4
    2025-04-16 00:00:00.000base646322
    5
    2025-04-12 00:00:00.000aptos915662
    6
    2025-04-16 00:00:00.000aptos629247
    7
    2025-04-12 00:00:00.000arbitrum282423
    8
    2025-04-16 00:00:00.000arbitrum193159
    9
    2025-04-12 00:00:00.000sei273824
    10
    2025-04-16 00:00:00.000sei260345
    11
    2025-04-12 00:00:00.000avalanche28099
    12
    2025-04-16 00:00:00.000avalanche29760
    13
    2025-04-12 00:00:00.000optimism90767
    14
    2025-04-16 00:00:00.000optimism103409
    15
    2025-04-12 00:00:00.000polygon442231
    16
    2025-04-16 00:00:00.000polygon459822
    17
    2025-04-16 00:00:00.000thorchain2209
    18
    2025-04-12 00:00:00.000thorchain2414
    19
    2025-04-12 00:00:00.000kaia5481650
    20
    2025-04-16 00:00:00.000kaia2409540
    ...
    446
    19KB
    298s