You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
with call-block-log-extraction we already download the entire ownership history of music NFTs and then we filter it down with call-block-logs-transformation into mint events
we do this by identifying events where from=address(0):
however, did we have a guarantee that call-block-logs-transformation is sorted (which for now btw we don't have) then we could construct an ownership history given the parameters of event Transfer(from, to, tokenId) by tracking the tokenId and from to to a token was transferred over time
The text was updated successfully, but these errors were encountered:
Regarding this issue, we maybe need one more strategy to generate fully detailed token ownership history.
Anyway, at first, we should filter all transfer events, not only mint events and also can arrange or group events by token address or platform name and token Id in call-block-logs-transformation.
Regarding this issue, we maybe need one more strategy to generate fully detailed token ownership history.
sound good
Anyway, at first, we should filter all transfer events, not only mint events and also can arrange or group events by token address or platform name and token Id in call-block-logs-transformation.
from=address(0)
:strategies/src/strategies/call-block-logs/transformer.mjs
Line 46 in 54631d9
event Transfer(from, to, tokenId)
by tracking thetokenId
andfrom
toto
a token was transferred over timeThe text was updated successfully, but these errors were encountered: