HolonymWallet activity by transactions- holonym
    Updated 2025-02-03
    with Holonym as ( select
    d.value:"USER" as address
    from (
    select livequery.live.udf_api(
    'https://flipsidecrypto.xyz/api/v1/queries/3c35838a-05de-41b4-9daf-f8b2f90dfc95/data/latest'
    ):"data" as data
    ) responses join lateral flatten (input => responses.data) d
    ),



    total as (
    select * from Holonym
    ),

    t2 as(
    select
    from_address as users,
    Count(distinct tx_hash) as no_txn


    -- from total join ethereum.core.fact_transactions on (address = from_address)
    from ethereum.core.fact_transactions

    where from_address in (select address from total)
    group by 1

    union all

    select
    from_address as users,
    Count(distinct tx_hash) as no_txn

    -- from total join avalanche.core.fact_transactions on (address = from_address)
    from avalanche.core.fact_transactions

    QueryRunArchived: QueryRun has been archived