permarytx_fee by activity
    Updated 2025-04-05
    WITH activity_data AS (
    -- Minting Transactions
    SELECT
    'Card Mints' AS activity_type,
    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,
    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',
    '0xd650132a7cad9fe7456a6d9bde31152a79c0f8e136974063a84e045a2cdb7842'
    )
    Last run: 2 months ago
    ACTIVITY_TYPE
    TRANSACTION_COUNT
    TOTAL_TX_FEE
    AVG_TX_FEE
    MAX_TX_FEE
    MIN_TX_FEE
    PERCENTAGE_OF_TOTAL_FEES
    1
    Card Mints262199353315.9095167490.020334115896.212148644063.366119006
    2
    Card Sales62641315287.6948977640.02440513670.2307662985018.16947142
    3
    Owner Interaction1636174505.2585140570.027535393720.22825276805.35451331
    4
    Card Burns2028094246.2187842310.020937033296.21214864405.046643811
    5
    Special Card Burn941842425.18650.02574945320.0257502.882341458
    6
    Accepted Card Bids1557241435.5433743420.0092185107910.01107754701.706147623
    7
    Card Listings8070341315.1096060930.0016295591090.27301.563011727
    8
    Card Bid Cancelled4489961180.1868451110.0026285019130.0032835401.402655619
    9
    Card Upgrades54839428.1330074150.007807089980.008149720500.5088373685
    10
    Other150.21763183740.014508789160.1528312770.0037669750.0002586560941
    10
    798B
    179s