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
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/archiveTransaction 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;
};
The text was updated successfully, but these errors were encountered:
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?The text was updated successfully, but these errors were encountered: