SELECT COUNT(DISTINCT TX_ID) AS "Transfers Count",
count(distinct sender) as "Senders Count", count(distinct receiver) as "Receivers Count",
sum(amount)/pow(10,8) as "Transfers Amount", avg(amount)/pow(10,8) as "Avg Amount"
from sei.core.fact_transfers
where currency='factory/sei10hud5e5er4aul2l7sp2u9qp2lag5u4xf8mvyx38cnjvqhlgsrcls5qn5ke/seilor'
and tx_succeeded='TRUE' and block_timestamp::date between '{{Start_Date}}' and '{{End_Date}}'