MCPcopy Index your code
hub / github.com/api3dao/airnode / EVMEventLogMetadata

Interface EVMEventLogMetadata

packages/airnode-node/src/types.ts:382–390  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

380// Events
381// ===========================================
382interface 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
392export type AirnodeLogDescription<Event> = Event extends { readonly args: infer EventArgs }
393 ? Omit<ethers.utils.LogDescription, 'args'> & { readonly args: EventArgs }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected