| 380 | // Events |
| 381 | // =========================================== |
| 382 | interface EVMEventLogMetadata { |
| 383 | readonly address: string; |
| 384 | readonly blockNumber: number; |
| 385 | readonly currentBlock: number; |
| 386 | readonly minConfirmations: number; |
| 387 | readonly transactionHash: string; |
| 388 | readonly logIndex: number; |
| 389 | readonly chainId: string; |
| 390 | } |
| 391 | |
| 392 | export type AirnodeLogDescription<Event> = Event extends { readonly args: infer EventArgs } |
| 393 | ? Omit<ethers.utils.LogDescription, 'args'> & { readonly args: EventArgs } |
nothing calls this directly
no outgoing calls
no test coverage detected