hessShare of Transactions
    Updated 2025-03-16
    with gmp as ( select CREATED_AT,
    'GMP' as type,
    id as tx_hash
    from axelar.axelscan.fact_gmp
    UNION
    select CREATED_AT,
    'Transfers' as type,
    id as tx_hash
    from axelar.axelscan.fact_transfers)

    select
    type,
    count(DISTINCT tx_hash) as transactions
    from gmp
    group by 1


    Last run: 17 days ago
    TYPE
    TRANSACTIONS
    1
    GMP2473827
    2
    Transfers599308
    2
    38B
    2s