charliemarketplaceNFT Collection Volume
    Updated 2 hours ago
    with top_10_collections AS (
    select
    nft_address,
    sum(nft_volume) as nft_volume
    from datascience_public_misc.near_analytics.nft_collection_daily_metrics
    where day_ >= '2024-01-01'
    group by nft_address
    order by nft_volume desc
    limit 10
    )

    select
    date_trunc('week', day_) as week_,
    case when nft_address IN (select nft_address from top_10_collections) then collection_name else 'other' end as collection_,
    sum(nft_volume) as nft_volume,
    sum(affiliate_volume) as affiliate_volume,
    sum(platform_fee_volume) as platform_revenue,
    sum(royalty_volume) as royalty_volume,
    sum(n_tx) as n_transactions,
    sum(n_receipts) as n_receipts
    from datascience_public_misc.near_analytics.nft_collection_daily_metrics
    where day_ >= '2024-01-01'
    group by week_, collection_
    order by week_ asc, nft_volume desc
    Last run: about 2 hours agoAuto-refreshes every 12 hours
    WEEK_
    COLLECTION_
    NFT_VOLUME
    AFFILIATE_VOLUME
    PLATFORM_REVENUE
    ROYALTY_VOLUME
    N_TRANSACTIONS
    N_RECEIPTS
    1
    2024-01-01 00:00:00.000tinkerunion_nft1566.5031.465123.164646
    2
    2024-01-01 00:00:00.000other1523.8778670.02532.6952423457.6595293144144
    3
    2024-01-01 00:00:00.000herewallet49.700.9940.745522
    4
    2024-01-08 00:00:00.000other1310.44999990.00187522.75517499850.3563224929595
    5
    2024-01-08 00:00:00.000tinkerunion_nft837.18017.966147.41442222
    6
    2024-01-08 00:00:00.000herewallet15803.162.3788
    7
    2024-01-15 00:00:00.000other1755.600990.05497532.327999880.60685575122122
    8
    2024-01-15 00:00:00.000tinkerunion_nft775.699015.9424855.199921717
    9
    2024-01-15 00:00:00.000herewallet59.9901.19980.8998522
    10
    2024-01-22 00:00:00.000other1473.59331.9011287515.9190037528.8465625191191
    11
    2024-01-22 00:00:00.000tinkerunion_nft1360.6027.89497.9362525
    12
    2024-01-22 00:00:00.000herewallet232.7904.905052.744199
    13
    2024-01-29 00:00:00.000herewallet1885.99040.4797520.012626
    14
    2024-01-29 00:00:00.000tinkerunion_nft1516.11030.3222121.28882222
    15
    2024-01-29 00:00:00.000other1497.8709999991.987328.4060569.0756105401401
    16
    2024-02-05 00:00:00.000other2162.4125.57757542.017935100.59195975247247
    17
    2024-02-05 00:00:00.000herewallet2162048.1819.1456252121
    18
    2024-02-05 00:00:00.000tinkerunion_nft1015020.381.21111
    19
    2024-02-12 00:00:00.000herewallet8213.330189.451647.644956565
    20
    2024-02-12 00:00:00.000other1913.11491.193762540.858960572.90408525189189
    ...
    505
    37KB
    2s