LittlerDatasatellite Bridges and total bridges
    Updated 2023-04-20

    select
    date_trunc('week',block_timestamp) "Date"
    ,count(distinct tx_hash) Bridges
    ,sum(bridges) over (order by "Date" asc) "Total Bridges"
    from axelar.core.ez_satellite
    group by 1


    Run a query to Download Data