TOKEN_SYMBOL | VOLUME_DAILY | |
---|---|---|
1 | PIXEL | 69455399.0895628 |
2 | WETH | 62875171.9950872 |
3 | USDC | 20729969.9233865 |
4 | AXS | 19958967.5644437 |
5 | YGG | 4336515.4982699 |
6 | APRS | 2330848.37237548 |
7 | JAIHOZ | 1033050.73775212 |
8 | ZENT | 942519.831788468 |
9 | BANANA | 164658.273138175 |
10 | LUAUSD | 99030.759336064 |
11 | KOGIN | 74213.359914536 |
12 | LINK | 55689.321045558 |
13 | CGX | 23699.234133354 |
14 | SLP | 16051.60897896 |
15 | WBTC | 15245.66587071 |
16 | LUA | 6400.12161105 |
0xHaM-dTest III by Asset
Updated 3 days ago
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 eth_to_ronin_native as (
select
'ethereum'::VARCHAR as blockchain
, 'axie infinity: ronin bridge v2'::VARCHAR as platform
, edl.block_number::INT as block_number
, edl.block_timestamp::TIMESTAMP as block_timestamp
, edl.tx_hash::VARCHAR as tx_hash
, 'ethereum'::VARCHAR as source_chain
, 'ronin'::VARCHAR as destination_chain
, edl.origin_to_address::VARCHAR as bridge_address
, edl.origin_from_address::VARCHAR as source_address
, edl.decoded_log['receipt']['ronin']['addr']::VARCHAR as destination_address
, 'outbound'::VARCHAR as direction
, edl.decoded_log['receipt']['mainchain']['tokenAddr']::VARCHAR as token_address
, coalesce(pr.symbol,dc.symbol)::VARCHAR as token_symbol
, edl.decoded_log['receipt']['info']['quantity']::DOUBLE as amount_unadj
, (edl.decoded_log['receipt']['info']['quantity']/pow(10,pr.decimals))::DOUBLE as amount
, (edl.decoded_log['receipt']['info']['quantity']/pow(10,pr.decimals))*pr.price::DOUBLE as amount_usd
, current_timestamp() as inserted_timestamp
, current_timestamp() as modified_timestamp
-- , row_number() over (order by edl.block_timestamp asc, edl.tx_hash asc) as ez_bridge_activity_id
from ethereum.core.ez_decoded_event_logs edl
left join crosschain.price.ez_prices_hourly pr
on (date_trunc('hour',edl.block_timestamp)=pr.hour and edl.decoded_log['receipt']['mainchain']['tokenAddr']=pr.token_address)
left join ethereum.core.dim_contracts dc
on (edl.decoded_log['receipt']['mainchain']['tokenAddr']=dc.address)
where 1=1
and edl.block_timestamp >= '2025-01-01'
and edl.topics[0]=lower('0xd7b25068d9dc8d00765254cfb7f5070f98d263c8d68931d937c7362fa738048b')
and pr.blockchain='ethereum'
)
, ronin_to_ethereum_native_bridge as
(
with bridge_data as
(
select regexp_substr_all(SUBSTR(data,3),'.{64}') as segmented
Last run: 3 days ago
16
408B
230s