CryptoverseCC / cryptopurr

CryptoPurr - Purrbook, Facebook For CryptoKitties
https://userfeeds.github.io/cryptopurr/
The Unlicense
9 stars 13 forks source link

Event - based posts #16

Open patrykadas opened 6 years ago

patrykadas commented 6 years ago
event AuctionCreated(uint256 tokenId, uint256 startingPrice, uint256 endingPrice, uint256 duration);
event AuctionSuccessful(uint256 tokenId, uint256 totalPrice, address winner);
event AuctionCancelled(uint256 tokenId);
event Transfer(address from, address to, uint256 tokenId);
event Birth(address owner, uint256 kittyId, uint256 matronId, uint256 sireId, uint256 genes);
event Pregnant(address owner, uint256 matronId, uint256 sireId, uint256 cooldownEndBlock);

Based on these events I was trying to create a creator and view for event-based posts, as seen below

events-post

michalwarda commented 6 years ago

This is on hold because of lack of API for this functionality