DAILY | event | TRANSACTIONS | |
---|---|---|---|
1 | 2025-03-21 00:00:00.000 | Rod Minted | 4586 |
2 | 2025-04-12 00:00:00.000 | Rod Minted | 1098 |
3 | 2025-03-22 00:00:00.000 | Fish Burned | 133 |
4 | 2025-03-21 00:00:00.000 | Fish Minted | 145 |
5 | 2025-04-02 00:00:00.000 | Chest Minted | 6 |
6 | 2025-04-04 00:00:00.000 | Chest Minted | 8 |
7 | 2025-04-02 00:00:00.000 | Rod Minted | 1 |
8 | 2025-04-13 00:00:00.000 | Chest Burned | 882 |
9 | 2025-03-22 00:00:00.000 | Rod Minted | 1619 |
10 | 2025-04-09 00:00:00.000 | Chest Burned | 3362 |
11 | 2025-04-08 00:00:00.000 | Fish Minted | 5 |
12 | 2025-04-03 00:00:00.000 | Chest Minted | 12 |
13 | 2025-04-08 00:00:00.000 | Chest Burned | 14 |
14 | 2025-03-25 00:00:00.000 | Rod Minted | 5400 |
15 | 2025-04-15 00:00:00.000 | Chest Minted | 317 |
16 | 2025-03-26 00:00:00.000 | Chest Minted | 40 |
17 | 2025-03-24 00:00:00.000 | Rod Minted | 2657 |
18 | 2025-04-04 00:00:00.000 | Chest Burned | 3 |
19 | 2025-04-15 00:00:00.000 | Rod Minted | 882 |
20 | 2025-04-09 00:00:00.000 | Chest Minted | 3335 |
SniperDaily Transactions by Event (Mint, Burn)
Updated 2025-04-18
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
›
⌄
select
trunc(BLOCK_TIMESTAMP::date,'day') as daily,
case
when EVENT_NAME = 'RodMintedBatch' then 'Rod Minted'
when EVENT_NAME = 'ChestMintedBatch' then 'Chest Minted'
when EVENT_NAME = 'ChestBurned' then 'Chest Burned'
when EVENT_NAME = 'FishBurnedBatch' then 'Fish Burned'
when EVENT_NAME = 'FishMintedBatch' then 'Fish Minted'
-- else 'other'
end as "event",
-- EVENT_NAME,
count(DISTINCT tx_hash ) as Transactions,
from ronin.core.ez_decoded_event_logs where
CONTRACT_ADDRESS in (
'0x4079da822e8972982b8569e38cdf719a21069934',--fish
'0x9c76fc5bd894e7f51c422f072675c876d5998a9e',--chests
'0x77ce5148b7ad284e431175ad7258b54a64816da6'--rods
-- '0x3fa1e076bd4e7f4b7469ad1646332c09b275082d'-- Fishing Frenzy Founders Pass
)
and TX_SUCCEEDED='TRUE'
and BLOCK_TIMESTAMP::date>= '2025-03-21'
--and EVENT_NAME not in ('TokensMintedWithSignature','Transfer','OwnershipTransferred','RoleGranted','ChestTierUpdated','DefaultRoyaltySet','RoleRevoked')
and EVENT_NAME in ('RodMintedBatch','ChestMintedBatch','FishBurnedBatch','FishMintedBatch','ChestBurned')
group by 1,2
Last run: 11 days ago
97
4KB
4s