Table of Contents

Class EvmTransactionRequest

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

A contract call to sign and submit.

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

Constructors

EvmTransactionRequest(BigInteger, string, byte[])

A contract call to sign and submit.

public EvmTransactionRequest(BigInteger ChainId, string To, byte[] Data)

Parameters

ChainId BigInteger

Expected EIP-155 chain identifier.

To string

Destination contract.

Data byte[]

ABI calldata.

Properties

ChainId

Expected EIP-155 chain identifier.

public BigInteger ChainId { get; init; }

Property Value

BigInteger

Data

ABI calldata.

public byte[] Data { get; init; }

Property Value

byte[]

To

Destination contract.

public string To { get; init; }

Property Value

string