Show / Hide Table of Contents

Class ContractStateData

Represents the data for a slot on a contract.

Inheritance
object
ContractStateData
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Hiero.Mirror
Assembly: Hiero.dll
Syntax
public class ContractStateData

Properties

| Edit this page View Source

EvmAddress

The contract's EVM Address

Declaration
[JsonPropertyName("address")]
public EvmAddress EvmAddress { get; set; }
Property Value
Type Description
EvmAddress
| Edit this page View Source

HapiAddress

The contract's HAPI Address

Declaration
[JsonPropertyName("contract_id")]
public EntityId HapiAddress { get; set; }
Property Value
Type Description
EntityId
| Edit this page View Source

Slot

Slot ID

Declaration
[JsonPropertyName("slot")]
[JsonConverter(typeof(BigIntegerConverter))]
public BigInteger Slot { get; set; }
Property Value
Type Description
BigInteger
| Edit this page View Source

StakePeriodStart

Timestamp when data was retrieved.

Declaration
[JsonPropertyName("timestamp")]
public ConsensusTimeStamp StakePeriodStart { get; set; }
Property Value
Type Description
ConsensusTimeStamp
| Edit this page View Source

Value

The slot data value

Declaration
[JsonPropertyName("value")]
[JsonConverter(typeof(HexStringToBytesConverter))]
public ReadOnlyMemory<byte> Value { get; set; }
Property Value
Type Description
ReadOnlyMemory<byte>
  • Edit this page
  • View Source
In this article
Back to top .NET Client Library for Hiero Network and Hedera Hashgraph