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
ChainIdBigIntegerExpected EIP-155 chain identifier.
TostringDestination contract.
Databyte[]ABI calldata.
Properties
ChainId
Expected EIP-155 chain identifier.
public BigInteger ChainId { get; init; }
Property Value
Data
ABI calldata.
public byte[] Data { get; init; }
Property Value
- byte[]
To
Destination contract.
public string To { get; init; }