Perhaps I'm missing something, but I don't see a way to keep track of minting events in the standard right now. Transactions are there, but not minting events. Update the @ext/archive Transaction type to include minting events?
type Transaction = {
txid : TransactionId;
data: { #TransferRequest; #MintingEvent; }; // Renamed request -> data
date : Date; // Sidenote: I think "timestamp" might be a better name
};
type MintingEvent = {
minter : User;
to : User;
token : TokenIdentifier;
amount : Balance;
memo : Memo;
};
Perhaps I'm missing something, but I don't see a way to keep track of minting events in the standard right now. Transactions are there, but not minting events. Update the
@ext/archiveTransactiontype to include minting events?