rackhaelFLOW bridgoors
Updated 2023-04-29
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
SELECT date_trunc('day', block_timestamp) date,
sum(amount) as amount_bridged,
count(distinct tx_id) as transactions,
CASE
when direction = 'inbound' then 'inbound'
when direction = 'outbound' then 'outbound'
END as direction,
CASE
when bridge = 'blocto' then 'blocto teleport bridge'
when bridge = 'cbridge' then 'celer bridge'
END as bridge,
count(distinct flow_wallet_address) as users
FROM flow.core.ez_bridge_transactions
WHERE block_timestamp::date >= '2023-01-01'
GROUP BY date, direction, bridge
ORDER BY date;
Run a query to Download Data