Table of Contents

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

Address string

Contract that emitted the log.

Topics IReadOnlyList<string>

Ordered log topics.

Data string

Hex-encoded log data.

Properties

Address

Contract that emitted the log.

public string Address { get; init; }

Property Value

string

Data

Hex-encoded log data.

public string Data { get; init; }

Property Value

string

Topics

Ordered log topics.

public IReadOnlyList<string> Topics { get; init; }

Property Value

IReadOnlyList<string>