Skip to content

Include minting events in archive? #6

@jorgenbuilder

Description

@jorgenbuilder

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;
};

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions