# TransactionResultEventsConnectionEdge **Type:** GraphQL objects ## Fields - cursor (String) - node (Event, Not Null): undefined - id (ID): Globally unique identifier for this event. - name (String): The name of the event as defined in the smart contract. Example: `"TRANSFER"`. - block (Block): The block in which this event was emitted. - chainId (BigInt): The ID of the chain where the event occurred. - height (BigInt): The height of the block in which this event was emitted. - moduleName (String): The name of the module that emitted the event. Example: `"coin"`. - orderIndex (BigInt): The index position of this event within the transaction’s event list. Useful when multiple events are emitted by the same transaction. - requestKey (String): The request key of the transaction that emitted this event. - parameters (String): The raw JSON-encoded event parameters as emitted by the contract. - parameterText (String): A human-readable text representation of the event parameters. - qualifiedName (String): The fully qualified event name, combining the module and event name. Example: `"coin.TRANSFER"`. - transaction (Transaction): The transaction that emitted this event.