Sbhn_NPTotal XDAI stats
    Updated 2022-10-16
    with main as (select

    count(distinct(origin_from_address)) as count_sender,
    count(distinct(tx_hash)) as tx_count,
    sum(amount) as xdai_transferred
    from gnosis.core.ez_xdai_transfers
    where block_timestamp >= '2022-10-01'
    )

    select *
    from main
    Run a query to Download Data