SYMBOL | TYPE | VOLUME_USD | TX | USERS | |
---|---|---|---|---|---|
1 | EZETH | Borrow | 704651.603566102 | 56 | 12 |
2 | EZETH | Repay | 559485.469890219 | 41 | 10 |
3 | EZETH | Deposit | 3045704.42323461 | 142 | 58 |
4 | EZETH | Withdraw | 2367512.39247318 | 79 | 34 |
5 | PZETH | Borrow | 378593.027534965 | 11 | 5 |
6 | PZETH | Repay | 379068.98846565 | 12 | 5 |
7 | PZETH | Deposit | 2000691.52352164 | 47 | 26 |
8 | PZETH | Withdraw | 1979196.66257235 | 35 | 20 |
9 | RSETH | Borrow | 281403.915061919 | 20 | 9 |
10 | RSETH | Repay | 251977.268426099 | 29 | 7 |
11 | RSETH | Deposit | 600346.066746909 | 72 | 31 |
12 | RSETH | Withdraw | 484892.501482302 | 72 | 24 |
13 | RSWETH | Borrow | 99733.044587133 | 35 | 13 |
14 | RSWETH | Repay | 83585.256337852 | 27 | 11 |
15 | RSWETH | Deposit | 587979.110954707 | 93 | 54 |
16 | RSWETH | Withdraw | 198877.350444814 | 49 | 30 |
17 | WSTETH | Borrow | 254923.929275388 | 63 | 15 |
18 | WSTETH | Repay | 186306.078682447 | 82 | 14 |
19 | WSTETH | Deposit | 820338.862705352 | 194 | 32 |
20 | WSTETH | Withdraw | 427558.622613131 | 103 | 25 |
SniperBorrow
Updated 6 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 tbl as( select
'Borrow' as type,
case
when c.contract_address = '0x10d0d11a8b693f4e3e33d09bbab7d4afc3c03ef3' then 'WEETH'
when c.contract_address = '0x49c077b74292aa8f589d39034bf9c1ed1825a608' then 'WETH'
when c.contract_address = '0x29c85c752e854b0cf2372e6b6c56f260755f5120' then 'PZETH'
when c.contract_address = '0x4a5c95a0e3fca4148f91ceb637fba0e1080be40e' then 'EZETH'
when c.contract_address = '0x3c12aa52b014acf7957308808362909b5757cca8' then 'WSTETH'
when c.contract_address = '0x1773002742a2bcc7666e38454f761ce8fe613de5' then 'RSWETH'
when c.contract_address = '0xf34253ec3dd0cb39c29cf5eeb62161fb350a9d14' then 'SWETH'
when c.contract_address = '0x46e3c018798d6de4517a3c98358e4bd8d334b79c' then 'RSETH'
when c.contract_address = '0xf18de8d3bcf95da46bb667c8a222956199b94e6c' then 'WETH'
when c.contract_address = '0x522d58aefb7b4f54fc1bd31b5063e55c7984badd' then 'SWELL'
end as symbol,
count(DISTINCT a.tx_hash) as tx,
count(DISTINCT a.from_address) as users,
sum(DECODED_LOG:assets/pow(10,18)) as volume
from
swell.core.fact_transactions a
left join
swell.core.fact_event_logs b
on a.tx_hash = b.tx_hash
join
swell.core.ez_decoded_event_logs c
on b.contract_address = c.contract_address and a.tx_hash = c.tx_hash
where
-- a.TO_ADDRESS = '0x08739cbede6e28e387685ba20e6409bd16969cde'
--and
c.EVENT_NAME = 'Borrow'
and b.topics[0] = '0x80b61abbfc5f73cfe5cf93cec97a69ed20643dc6c6f1833b05a1560aa164e24c'
and c.topics[0] = '0xcbc04eca7e9da35cb1393a6135a199ca52e450d5e9251cbd99f7847d33a36750'
-- and c.contract_address = '0x10d0d11a8b693f4e3e33d09bbab7d4afc3c03ef3'
-- and c.contract_address = '0x49c077b74292aa8f589d39034bf9c1ed1825a608'
and c.TX_SUCCEEDED = 'TRUE'
GROUP by 1,2
Last run: 6 days ago
32
1KB
14s