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
TransactionHashstringSuccessful claim transaction.
DeliveredAmountBigIntegerExact amount proven by the canonical ERC20 Transfer event.
Preimagebyte[]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
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; }