ValiMohammadiinto osmo daily
Updated 2023-02-13
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
SELECT
DATE_TRUNC('day', BLOCK_TIMESTAMP) AS days,
SUM(amount / 1e18) AS transfer_amount,
COUNT(*) AS number_of_tranfers,
currency AS currency_transfer
FROM
axelar.core.fact_transfers
WHERE
currency IN ('wbnb-wei', 'wmatic-wei', 'wavax-wei', 'weth-wei')
AND receiver LIKE 'osmo%'
GROUP BY
currency_transfer,
days
Run a query to Download Data