0xHaM-dLeaderboard[Mint/Redeem]
    Updated 2025-03-27
    with eventTb as (
    select
    EVENT_NAME,
    BLOCK_TIMESTAMP,
    TX_HASH,
    DECODED_LOG,
    DECODED_LOG:beneficiary::string as user_add,
    DECODED_LOG:collateral_amount::float/1e6 as collateral_amount_usdc,
    DECODED_LOG:avusd_amount::float/1e18 as avusd_amount,
    from avalanche.core.ez_decoded_event_logs
    where CONTRACT_ADDRESS = '0x1499cb3197427b78dc0e2d356a1e0e4149e0ed51'
    and EVENT_NAME in ('Mint', 'Redeem')
    and TX_SUCCEEDED = TRUE
    )
    select
    EVENT_NAME,
    user_add as wallet,
    count(*) as n_transactions,
    round(sum(avusd_amount),2) as total_avusd_amt,
    round(sum(collateral_amount_usdc),2) as total_coll_amt_usdc,
    from eventTb
    group by 1,2
    order by 4 desc
    limit 100





    Last run: 30 days ago
    EVENT_NAME
    WALLET
    N_TRANSACTIONS
    TOTAL_AVUSD_AMT
    TOTAL_COLL_AMT_USDC
    1
    Mint0xbcade668402fbce9af08ebd5012d2a729fbbb9fe5668041276804221.07
    2
    Mint0x2cd78ad719a8c74898c5283f5bc70920d8a061fd1023045052306510
    3
    Mint0x187b6ab771482ccfee7cd2c35176080631082368315000001500000
    4
    Mint0x5020c6eb0fe5321071942847b56349a68c7342dd4854345.41855000.41
    5
    Redeem0xbcade668402fbce9af08ebd5012d2a729fbbb9fe6544900542175.5
    6
    Mint0x23439166feec267f1a66e2815369a02f7b7920c41500000500000
    7
    Mint0x63e7549ea16f52bcb0415b308f17f3fee64151383318165.54318415.54
    8
    Mint0xa2e06c19ee14255889f0ec0ca37f6d0778d067541200000200000
    9
    Mint0x4fbdef91e2c63b5fc4bf3ec002b805b70c79843a2199167.16199283.66
    10
    Mint0xeb75f366a6ffe07c0ff12cf5ea01087bddb05dfb1149850150000
    11
    Mint0xb5360072a6252bba9844280b24cc00337ed2c5512146838.51146838.51
    12
    Mint0xc638fc731ffd77b17c486f5ae4a85d40ad9db4fc6114772.56114772.56
    13
    Mint0x465993dca24e5a95df1f79067c084dbf68804f312100000100000
    14
    Mint0x247c7b87bfa5c6f1638f83fb988f03b036c0dc55180170.680170.6
    15
    Mint0x0e3359c346553aa1304420424f9251c4928f21b4267722.8167722.81
    16
    Mint0xadd78875b8c993bd138ad2578381887e475361bc353338.5153378.51
    17
    Mint0xdbcb594b62f5aba69a9575da938a93286836228b151631.0151631.01
    18
    Mint0x8dee2dce2e3295d8931382d340e7b3566f258a89350647.0450697.74
    19
    Mint0x898170d98cba3213399a72b266a39fc93984b54c35010550105
    20
    Mint0x91eb12839003631e3a1550f0b4b59148be822dca15000050000
    100
    7KB
    3s