permaryDaily OS
    Updated 2025-05-07
    WITH nft_collections AS (
    SELECT DISTINCT
    contract_address,
    name
    FROM ronin.nft.ez_nft_transfers
    ),

    zero_token_sales AS (
    SELECT DISTINCT
    tx_hash,
    decoded_log:consideration[0]:amount::STRING/pow(10,18) AS sale_amount,
    decoded_log:offer[0]:identifier AS nft_id
    FROM ronin.core.ez_decoded_event_logs
    WHERE event_name = 'OrderFulfilled'
    AND CONTRACT_ADDRESS = '0x0000000000000068f116a894984e2db1123eb395'
    AND decoded_log:offer[0]:identifier = 0
    HAVING sale_amount IS NOT NULL
    ),

    marketplace_transactions AS (
    -- Regular sales
    SELECT
    DATE_TRUNC('day', block_timestamp) AS transaction_date,
    tx_hash,
    CASE
    WHEN origin_from_address = decoded_log:offerer::string THEN decoded_log:recipient::string
    ELSE decoded_log:offerer::string
    END AS seller_address,
    origin_from_address,
    CASE
    WHEN origin_from_address = decoded_log:recipient::string THEN origin_from_address
    ELSE decoded_log:offerer::string
    END AS buyer_address,
    decoded_log:consideration[0]:amount::STRING/pow(10,18) AS sale_amount,
    decoded_log:offer[0]:identifier::string AS nft_id,
    decoded_log:offer[0]:token::STRING AS nft_contract,
    Last run: 17 days ago
    DATE
    TOTAL_SALES
    VOLUME
    PLATFORM_FEE
    BUYERS
    SELLERS
    Highest Sale (USD)
    Average Sale (USD)
    Number of Collections
    Daily Unique Users
    1
    2025-03-25 00:00:00.000229822751.928684182568.798217105902722683.5876729175.430054579671077
    2
    2025-03-26 00:00:00.000841174200.0182503041855.000456258333023271290.551531223.8137344911113562
    3
    2025-03-27 00:00:00.0001256596066.6171886912401.66542971744493824935.508954.1934007241264970
    4
    2025-03-28 00:00:00.00015750111606.6103367492790.16525841949004244513.5823665883.8311973611925499
    5
    2025-03-29 00:00:00.000434316302.993252283407.57483130719631216670.6527986812.639306015742392
    6
    2025-03-30 00:00:00.000387316177.705624781404.44264062136910121075.035783.089706957911653
    7
    2025-03-31 00:00:00.000664264717.5066954481617.93766738624552006299.9020028256.1788721311313234
    8
    2025-04-01 00:00:00.00053496982988.04187612924574.70104690317645113531681.5680437512.2043608726518592
    9
    2025-04-02 00:00:00.000890931447322.2721346436183.0568033662536922047713.92194141712.20380343530927312
    10
    2025-04-03 00:00:00.0001176441423267.0847344635581.6771183623396228377775.7568891048.81361788928636381
    11
    2025-04-04 00:00:00.000100015974926.19835648124373.1549589122848422783994.337257.98413042821230550
    12
    2025-04-05 00:00:00.0001970884411.5359824192110.2883995687306714744.669591753.41899372113410655
    13
    2025-04-06 00:00:00.0001572767142.0733270831678.55183317774986548800.6588395313.451857145988878
    14
    2025-04-07 00:00:00.0001736449500.3735435451237.50933858986867359833.893832.45964589999727
    15
    2025-04-08 00:00:00.0001401854728.4391899151368.21097974871116265734.7903689843.13917857938694
    16
    2025-04-09 00:00:00.000977357575.0175168291439.37543792148604070843.6373538914.9934967491346061
    17
    2025-04-10 00:00:00.000721030473.623867582761.8405966933713780589.7947875423.163461421995931
    18
    2025-04-11 00:00:00.00022885834.420867328145.8605216838371247158.2291000122.084466191671603
    19
    2025-04-12 00:00:00.00022416647.962574989166.19906437512531008301.5656240212.518167642541852
    20
    2025-04-13 00:00:00.00013353107.86738519177.69668463673633274.4307784831.8858418650972
    44
    5KB
    16s