Table of Contents

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

TransactionHash string

Keccak-256 identity of SignedTransaction.

SignedTransaction string

Canonical 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

string

TransactionHash

Keccak-256 identity of SignedTransaction.

public string TransactionHash { get; init; }

Property Value

string

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.