permaryDaily Transaction fee generated by Activity
    Updated 2025-04-05
    WITH activity_data AS (
    -- Minting Transactions
    SELECT
    'Card Mints' AS activity_type,
    DATE_TRUNC('day', block_timestamp) AS activity_date,
    tx_hash,
    tx_fee
    FROM monad.testnet.fact_transactions t
    WHERE tx_hash IN (
    SELECT tx_hash
    FROM monad.testnet.fact_event_logs
    WHERE topic_0 IN (
    '0x7a7be958aedb09208ae6ed49fc0841ccb7f951498c9afc1c2bfa4abbd0e3ff82',
    '0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef'
    )
    AND contract_address IN (
    LOWER('0x9077D31A794D81c21b0650974d5F581F4000CD1a'),
    LOWER('0x04edB399CC24a95672BF9B880EE550dE0b2D0B1e')
    )
    )

    UNION ALL

    -- Sales Transactions (excluding special burns)
    SELECT
    'Card Sales' AS activity_type,
    DATE_TRUNC('day', block_timestamp) AS activity_date,
    tx_hash,
    tx_fee
    FROM monad.testnet.fact_transactions t
    WHERE tx_hash IN (
    SELECT tx_hash
    FROM monad.testnet.fact_event_logs
    WHERE topic_0 IN (
    '0x1c00f7c02cc752f52ca92cf2b6897abad5e66fa9a43920cad9e44f5ccb4a8a4e',
    '0xb197f0b7d29f585d30223a9c287a1309a7c3371a57036eb30995ae25ba906dae',
    Last run: 21 days ago
    ACTIVITY_DATE
    ACTIVITY_TYPE
    TRANSACTION_COUNT
    TOTAL_TX_FEE
    AVG_TX_FEE
    PERCENTAGE_OF_DAILY_FEES
    1
    2025-04-05 00:00:00.000Card Mints46713736.7412922090.015771654452.682828441
    2
    2025-04-05 00:00:00.000Card Sales12595324.321250.0257523.191534063
    3
    2025-04-05 00:00:00.000Owner Interaction6139169.11950.0275483792112.093381624
    4
    2025-04-05 00:00:00.000Special Card Burn254565.533750.025754.686181357
    5
    2025-04-05 00:00:00.000Accepted Card Bids460542.9759183780.0093324469883.073118012
    6
    2025-04-05 00:00:00.000Card Bid Cancelled840721.7543287320.0025876446691.555606535
    7
    2025-04-05 00:00:00.000Card Listings954615.1739887370.0015895651311.085060188
    8
    2025-04-05 00:00:00.000Card Upgrades154211.6836061070.007576917060.835470229
    9
    2025-04-05 00:00:00.000Card Burns224911.1430969730.0049546896280.7968195516
    10
    2025-04-04 00:00:00.000Card Mints55537876.3842882420.0157801877754.023752375
    11
    2025-04-04 00:00:00.000Card Sales13830356.12250.0257521.952782602
    12
    2025-04-04 00:00:00.000Owner Interaction7103195.346250.027501935812.041906249
    13
    2025-04-04 00:00:00.000Special Card Burn277071.32750.025754.396905843
    14
    2025-04-04 00:00:00.000Accepted Card Bids575553.6911310510.0093294754223.309731139
    15
    2025-04-04 00:00:00.000Card Bid Cancelled1201030.7306158610.0025587523611.894355255
    16
    2025-04-04 00:00:00.000Card Listings836013.2742486770.0015878287890.8182765633
    17
    2025-04-04 00:00:00.000Card Upgrades168812.9562708110.0076755158830.798675165
    18
    2025-04-04 00:00:00.000Card Burns245112.3875145960.0050540655230.7636148092
    19
    2025-04-03 00:00:00.000Card Mints35825586.4902637250.0163709773555.966685667
    20
    2025-04-03 00:00:00.000Card Sales7180184.8850.0257517.642919788
    ...
    431
    37KB
    130s