Interface ITransactionEvent

interface ITransactionEvent {
    address: IAddress;
    data: string;
    identifier: string;
    topics: ITransactionEventTopic[];
    findFirstOrNoneTopic(predicate): undefined | ITransactionEventTopic;
    getLastTopic(): ITransactionEventTopic;
}

Properties

address: IAddress
data: string
identifier: string

Methods

Generated using TypeDoc