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.
Constructors
Section titled “Constructors”Constructor
Section titled “Constructor”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:
Parameters
Section titled “Parameters”| Parameter | Type | 
|---|---|
fragment | EventFragment | 
topic | string | 
args | Result | 
Returns
Section titled “Returns”LogDescription
Properties
Section titled “Properties”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.
fragment
Section titled “fragment”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.
signature
Section titled “signature”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.