Skip to content

Instantly share code, notes, and snippets.

@0xtrou
0xtrou / EventParser.ts
Last active May 8, 2024 09:25
Handle Events in Cosmos
const EVENT_LEVEL = {
TX_LEVEL: 'tx_level',
MSG_LEVEL: 'msg_level',
}
export class TxEventParserProvider {
constructor(
private _registry: any,
private tx: any
) {}