Total Claimed USDB Yield | |
---|---|
1 | 44722.979595214 |
rezarwzClaimed USDB Yield
Updated 2025-02-26
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
with total_claimed_yield as (
SELECT
ev.tx_hash,
ev.block_timestamp,
ev.DECODED_LOG:user as user,
tr.amount
FROM
blast.core.ez_decoded_event_logs ev
left join blast.core.ez_token_transfers tr on tr.tx_hash = ev.tx_hash
where
ev.CONTRACT_ADDRESS = '0xfebfe111423bf02ae8090265d4446458afdba20d'
and ev.EVENT_NAME = 'RewardClaimed'
)
SELECT
sum(amount) as "Total Claimed USDB Yield"
FROM
total_claimed_yield
Last run: about 2 months ago
1
19B
21s