Table of Contents

Class EvmClaimResult

Namespace
NArk.ArkadeIntents.Evm
Assembly
NArk.ArkadeIntents.dll

Verified ERC20 delivery resulting from claimFor.

public sealed record EvmClaimResult : IEquatable<EvmClaimResult>
Inheritance
EvmClaimResult
Implements
Inherited Members

Constructors

EvmClaimResult(string, BigInteger, byte[])

Verified ERC20 delivery resulting from claimFor.

public EvmClaimResult(string TransactionHash, BigInteger DeliveredAmount, byte[] Preimage)

Parameters

TransactionHash string

Successful claim transaction.

DeliveredAmount BigInteger

Exact amount proven by the canonical ERC20 Transfer event.

Preimage byte[]

Preimage proven by the canonical Claim event.

Properties

DeliveredAmount

Exact amount proven by the canonical ERC20 Transfer event.

public BigInteger DeliveredAmount { get; init; }

Property Value

BigInteger

Preimage

Preimage proven by the canonical Claim event.

public byte[] Preimage { get; init; }

Property Value

byte[]

TransactionHash

Successful claim transaction.

public string TransactionHash { get; init; }

Property Value

string