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
Use withdrawals as a minted value in reconcilations.
We store <bn.txid> in our index. When we spin through that list, we sometimes encounter <bn.99995> as one of the transactions which means the address took a withdrawal in that block -- but -- in many cases the address takes more than one withdrawal in the same block. We don't have that ability since we handle one transaction at a time, so only one withdrawal gets reported.
We can make a new category of token income/outflow by assuming that a transfer in with sender == 0x0 or a transfer out with the sender == 0x0 is either a mint or burn, respectivly. Also, we can select a few of the more common ways to mint or burn to decode and parse the data. A small set of functions is better than nothing probably.
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: