Open patrykadas opened 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
This is on hold because of lack of API for this functionality
Based on these events I was trying to create a creator and view for event-based posts, as seen below