Delamir-6014number of bonding node addresses by node operators
    Updated 2022-09-20
    select
    BLOCK_TIMESTAMP::date as date,
    FROM_ADDRESS as node_operator,
    count(split_part(memo,':',2)) as number
    from flipside_prod_db.thorchain.bond_events
    where bond_type = 'bond_paid'
    group by 1,2
    order by 3
    Run a query to Download Data