DAYS | MINTS | REDEEMS | TOKEN_MINTED_USD | TOKEN_REDEEMED_USD | ACTIVE_MINTERS | ACTIVE_REDEEMERS | TOTAL_TOKEN_MINTED_USD | TOTAL_TOKEN_REDEEMED_USD | TOKEN_AVAILABLE_USD | |
---|---|---|---|---|---|---|---|---|---|---|
1 | 2025-03-10 00:00:00.000 | 22 | 23 | 23153.440430628 | 26140.288418091 | 13 | 14 | 539618.694699493 | 249410.199462024 | 290208.495237469 |
2 | 2025-03-03 00:00:00.000 | 67 | 22 | 28277.389842984 | 129376.229641722 | 36 | 15 | 516465.254268865 | 223269.911043934 | 293195.343224931 |
3 | 2025-02-24 00:00:00.000 | 51 | 21 | 177891.932073075 | 55437.936207539 | 29 | 16 | 488187.864425881 | 93893.681402211 | 394294.183023669 |
4 | 2025-02-17 00:00:00.000 | 74 | 7 | 118290.476422574 | 8250.500546523 | 52 | 6 | 310295.932352806 | 38455.745194672 | 271840.187158133 |
5 | 2025-02-10 00:00:00.000 | 47 | 34 | 44250.668469437 | 30123.142926274 | 35 | 10 | 192005.455930231 | 30205.244648149 | 161800.211282082 |
6 | 2025-02-03 00:00:00.000 | 111 | 22 | 147754.787460794 | 82.101721876 | 61 | 3 | 147754.787460794 | 82.101721876 | 147672.685738919 |
adriaparcerisasstable jack protocol 2
Updated 2025-03-17
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 prices as (
select trunc(hour,'day') as day,
symbol,
token_address,
decimals,
avg(price) as price_usd
from avalanche.price.ez_prices_hourly
group by 1,2,3,4
),
mints as (
SELECT
block_timestamp,
tx_hash,
decoded_log:_tokenIn as token_address,
decoded_log:_amountIn as amount,
origin_from_address as wallet
from avalanche.core.ez_decoded_event_logs
where origin_to_address = '0x8a63943ac3f394ed73c7b06fecf3a81bc11b840e'
and event_name = 'YakSwap'
and origin_function_signature = '0xb4d50fcf'
),
redeems as (
SELECT
block_timestamp,
tx_hash,
decoded_log:_tokenIn as token_address,
decoded_log:_amountIn as amount,
origin_from_address as wallet
from avalanche.core.ez_decoded_event_logs
where origin_to_address = '0x8a63943ac3f394ed73c7b06fecf3a81bc11b840e'
and event_name = 'YakSwap'
and origin_function_signature = '0x4a99dcf1'
),
Last run: 29 days ago
6
730B
26s