Class EvmPreparedTransaction
- Namespace
- NArk.ArkadeIntents.Evm
- Assembly
- NArk.ArkadeIntents.dll
A signed transaction that can be durably stored and rebroadcast byte-for-byte.
public sealed record EvmPreparedTransaction : IEquatable<EvmPreparedTransaction>
- Inheritance
-
EvmPreparedTransaction
- Implements
- Inherited Members
Constructors
EvmPreparedTransaction(string, string)
A signed transaction that can be durably stored and rebroadcast byte-for-byte.
public EvmPreparedTransaction(string TransactionHash, string SignedTransaction)
Parameters
TransactionHashstringKeccak-256 identity of
SignedTransaction.SignedTransactionstringCanonical lower-case type-2 transaction hex, including secret calldata.
Properties
SignedTransaction
Canonical lower-case type-2 transaction hex, including secret calldata.
public string SignedTransaction { get; init; }
Property Value
TransactionHash
Keccak-256 identity of SignedTransaction.
public string TransactionHash { get; init; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.