-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
This should be a mix of:
- tracking the factory (ERC721 version: https://etherscan.io/address/0x7581871e1c11f85ec7f02382632b8574fad11b22) and using dynamic contracts
- on every dynamically tracked contract:
- track
ClaimMint (index_topic_1 address creatorContract, index_topic_2 uint256 claimIndex)
- track
I was expecting that from there we could
- use the Effects API to call
factory.getClaim(creatorContract, claimIndex)
- from the response be able to figure out the token id and the price of the mint
But unfortunately it does not seem that it is possible to derive the actual token id for contracts with multiple mints, eg, https://etherscan.io/address/0x3f67703ef00c9408bd1a378988a49a07319bba3f
The other option is that for every ClaimMint, we:
- fetch rest of tx log via the Effects API
- should be able to derive the price from the
ReceiveETH
event and the token id from theTransfer
event.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request