Eman-RazTotal Transfers Data
    Updated 2023-04-13
    select sum(amount)/pow(10,6) as "Total Transfers Volume", count(distinct sender) as "Total Senders Count",
    count(distinct receiver) as "Total Receivers Count", count(distinct tx_id) as "Total Transfers Count"
    from terra.core.ez_transfers
    where currency='uluna' and block_timestamp::date>='2023-01-01' and tx_succeeded='TRUE'

    Run a query to Download Data