NFT History Sales
The world's largest NFT data resource
@kaggle.mathurinache_nft_history_sales
The world's largest NFT data resource
@kaggle.mathurinache_nft_history_sales
Make money using NFT + AI | How to get started?
Introduction
By now, you would have at least heard about NFT. If not, you would have heard about art which sold for $69 million. May be at-least record sales on NBA and with NFT. This got me curious, I started to research more on it recently by wearing my Data Scientist hat. Data Scientists follow when some numbers are there! In this article, I will share about NFT’s and how to get started.
CREATE TABLE nft_sales (
"date" TIMESTAMP,
"sales_usd_cumsum" DOUBLE,
"number_of_sales_cumsum" BIGINT,
"active_market_wallets_cumsum" DOUBLE,
"primary_sales_cumsum" BIGINT,
"secondary_sales_cumsum" DOUBLE,
"averageusd_cum" DOUBLE,
"sales_usd" DOUBLE,
"number_of_sales" DOUBLE,
"active_market_wallets" DOUBLE,
"primary_sales" DOUBLE
);Anyone who has the link will be able to view this.