Skip to content

LogDescription

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/interface.d.ts:23

When using the [[Interface-parseLog]] to automatically match a Log to its event for parsing, a LogDescription is returned.

new LogDescription(
fragment,
topic,
args): LogDescription;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/interface.d.ts:47

@_ignore:

ParameterType
fragmentEventFragment
topicstring
argsResult

LogDescription

readonly args: Result;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/interface.d.ts:43

The arguments passed into the Event with emit.


readonly fragment: EventFragment;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/interface.d.ts:27

The matching fragment for the topic0.


readonly name: string;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/interface.d.ts:31

The name of the Event.


readonly signature: string;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/interface.d.ts:35

The full Event signature.


readonly topic: string;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/interface.d.ts:39

The topic hash for the Event.