SYMBOL | BRIDGE_VOLUME | |
---|---|---|
1 | MOVE | 2314804.60437758 |
2 | WETH.e | 9635716.9656914 |
3 | USDT.e | 12010165.174523 |
4 | WBTC.e | 18533804.396753 |
5 | USDC.e | 24434286.020163 |
BlockTrackerinbound bridge [ based of tokens ]
Updated 2025-05-08
999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with Lz_bridge_data as (
select
block_timestamp,
tx_hash,
sender,
'inbound' as event_type,
event_address,
EVENT_RESOURCE,
event_data : amount_received_ld ::int as amount_raw,
event_data : guid as guid,
30325 as dst_eid,
event_data : src_eid as src_eid,
event_data : to_address as wallet_address
from movement.core.fact_events a
where 1 = 1
and event_module = 'oft_core'
and EVENT_RESOURCE = 'OftReceived'
and block_timestamp::date >= '2025-03-03'
and SUCCESS
union all
select
block_timestamp,
tx_hash,
sender,
'outbound' as event_type,
event_address,
EVENT_RESOURCE,
event_data : amount_sent_ld ::int as amount_raw,
event_data : guid as guid,
event_data : dst_eid as dst_eid,
30325 as src_eid,
event_data : from_address as wallet_address
from movement.core.fact_events
where 1 = 1
and event_module = 'oft_core'
and EVENT_RESOURCE = 'OftSent'
Last run: 22 days ago
5
135B
17s