-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Getting streaming data of NFT events on Eth blockchain [D: Hazel] #9
Comments
|
Hi folks this api from moralis is very helpful. It gives all nft events. Moralis APIs are a little unreliable, however. |
@yaseenkhanmohmand Yes, What we mentioned above was talking about this nft transfer API : ) |
Amazzzing!! Just to confirm IAN, There are two APIs, both look very similar: One is contract address agnostic: The other API is : nft/{address}/trades We are using the first one for our use case? |
okay disregard! :D I got access to the database it seems even the mints are being accounted for!! Great!! |
HI Hazel, How does this look? Please let me know if i can help, i extracted data for this purpose using Python in the past, so i can share my experience doing this. |
Hi hazel, I am looking at the front end, And looked at the nft_trades table, I don't see new data in there. I run this query: I am getting 133 projects. This should be a much higher number like in the thousands, given that there are many new projects being launched every day. We should be able to see all those projects. |
It seems we currently have a static list of projects on nft-hunter, can we make it so that we can get all Eth NFTs on the website. This will mean that viewers will have the ability to detect activity on new project as soon as new projects hit the market.
This will require using the nft/transfers api from moralis, which does not need an NFT contract address to provide transfers information. It instead only needs the block number and then provides live data based on what is happening on the block.
The text was updated successfully, but these errors were encountered: