adriaparcerisasThorchain bonds
    Updated 2024-06-15
    select
    trunc(block_timestamp,'week') as date,
    count(distinct node_address) as new_nodes,
    sum(new_nodes) over (order by date) as total_nodes
    from thorchain.gov.fact_new_node_events
    group by 1
    order by 1 desc


    QueryRunArchived: QueryRun has been archived