Elprognerd5 - IBC dai
Updated 2023-03-08
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
SELECT
date_trunc('week', block_timestamp) as date,
TRANSFER_TYPE as "Event type",
count(DISTINCT tx_id) as "Number of TXs",
count(DISTINCT sender) as "Number of users"
FROM
axelar.core.fact_transfers
WHERE
not transfer_type LIKE 'AXELAR'
GROUP BY
1,
2
order by
1
Run a query to Download Data