datavortexWITHDRAWALS
    Updated 9 hours ago
    SELECT
    COUNT(DISTINCT sender_id) AS "Withdrawer",
    COUNT(DISTINCT tx_hash) AS "Total Withdraw Transactions",
    SUM(amount_usd) AS "Total Withdrawn Volume",
    AVG(amount_usd) AS "Avg Withdrawn Amount"
    FROM
    near.defi.ez_lending
    WHERE
    symbol IN (
    'USDT',
    'USDt',
    'DAI',
    'FRAX',
    'USDT.e',
    'USDC.e',
    'USN'
    )
    AND actions ='withdraw_succeeded';

    Last run: about 9 hours ago
    Withdrawer
    Total Withdraw Transactions
    Total Withdrawn Volume
    Avg Withdrawn Amount
    1
    379111572771157341484.789910130.258256656
    1
    48B
    3s