DAY | TYPES | TRANSACTIONS | |
---|---|---|---|
1 | 2024-11-06 00:00:00.000 | Defi | 17 |
2 | 2024-11-06 00:00:00.000 | Unknown | 152 |
3 | 2024-11-06 00:00:00.000 | Dex | 81 |
4 | 2024-11-06 00:00:00.000 | Lend and Borrow | 20 |
5 | 2024-11-06 00:00:00.000 | Bridge | 39 |
6 | 2024-11-07 00:00:00.000 | Dex | 111 |
7 | 2024-11-07 00:00:00.000 | Unknown | 204 |
8 | 2024-11-07 00:00:00.000 | Bridge | 72 |
9 | 2024-11-07 00:00:00.000 | Lend and Borrow | 61 |
10 | 2024-11-07 00:00:00.000 | game | 3 |
11 | 2024-11-07 00:00:00.000 | Defi | 22 |
12 | 2024-11-08 00:00:00.000 | Lend and Borrow | 34 |
13 | 2024-11-08 00:00:00.000 | Dex | 92 |
14 | 2024-11-08 00:00:00.000 | Unknown | 134 |
15 | 2024-11-08 00:00:00.000 | game | 4 |
16 | 2024-11-08 00:00:00.000 | Bridge | 66 |
17 | 2024-11-08 00:00:00.000 | Defi | 14 |
18 | 2024-11-09 00:00:00.000 | Lend and Borrow | 30 |
19 | 2024-11-09 00:00:00.000 | Defi | 17 |
20 | 2024-11-09 00:00:00.000 | Bridge | 42 |
hessDaily Share
Updated 2025-01-05
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
›
⌄
-- forked from Top Projects by Bridge Users @ https://flipsidecrypto.xyz/studio/queries/c354f43c-b8cc-46e2-bc2f-148aec10c8d6
with avalanche_base as ( select DISTINCT tx_hash,
block_timestamp,
from_address,
origin_from_address,
symbol,
amount,
amount_usd
from avalanche.core.ez_token_transfers
where origin_to_address = lower('0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae')
and block_timestamp::Date >= current_date - 60
UNION
select DISTINCT tx_hash,
block_timestamp,
from_address,
origin_from_address,
'AVAX' as symbol,
amount,
amount_usd
from avalanche.core.ez_native_transfers
where origin_to_address = lower('0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae')
and block_timestamp::Date >= current_date - 60
)
,
avalanche_baseII as (select a.block_timestamp::date as date,
a.tx_hash,
b.origin_from_address,
'Avalanche' as chain,
decoded_log:bridgeData:bridge::string as bridge,
b.amount_usd,
b.symbol
from avalanche.core.fact_decoded_event_logs a join avalanche_base b on a.tx_hash = b.tx_hash
where a.contract_address = lower('0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae')
and decoded_log:bridgeData:destinationChainId::string = '1329'
and b.from_address = b.origin_from_address
Last run: about 1 month ago
...
357
14KB
208s