@project-serum/anchor#EventParser TypeScript Examples
The following examples show how to use
@project-serum/anchor#EventParser.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: index.ts From protocol with Apache License 2.0 | 5 votes |
constructor(
private readonly program: anchor.Program,
private readonly eventHandler: EventHandler,
) {
this.eventParser = new EventParser(program.programId, program.coder);
}
Example #2
Source File: index.ts From protocol with Apache License 2.0 | 5 votes |
private readonly eventParser: EventParser;