UNPKG

@ticketto/protocol

Version:

Library that defines the interfaces of the ticketto protocol to be implemented on a client

10 lines (9 loc) 272 B
import { AccountId, EventId, TicketId, Timestamp } from "@ticketto/types"; export type AttandancesEvent = AttendanceMarked; export type AttendanceMarked = { type: "AttendanceMarked"; issuer: EventId; id: TicketId; owner: AccountId; time: Timestamp; };