Class EvmLog
- Namespace
- NArk.ArkadeIntents.Evm
- Assembly
- NArk.ArkadeIntents.dll
One EVM log entry.
public sealed record EvmLog : IEquatable<EvmLog>
- Inheritance
-
EvmLog
- Implements
- Inherited Members
Constructors
EvmLog(string, IReadOnlyList<string>, string)
One EVM log entry.
public EvmLog(string Address, IReadOnlyList<string> Topics, string Data)
Parameters
AddressstringContract that emitted the log.
TopicsIReadOnlyList<string>Ordered log topics.
DatastringHex-encoded log data.
Properties
Address
Contract that emitted the log.
public string Address { get; init; }
Property Value
Data
Hex-encoded log data.
public string Data { get; init; }
Property Value
Topics
Ordered log topics.
public IReadOnlyList<string> Topics { get; init; }