UNPKG

@hyperlane-xyz/sdk

Version:

The official SDK for the Hyperlane Network

13 lines 328 B
export function findMatchingLogEvents(logs, iface, eventName) { return logs .map((log) => { try { return iface.parseLog(log); } catch { return undefined; } }) .filter((log) => !!log && log.name === eventName); } //# sourceMappingURL=logUtils.js.map