Show / Hide Table of Contents

Class StakingRewardData

A single staking reward paid to an account, as reported by the /api/v1/accounts/{id}/rewards mirror-node endpoint.

Inheritance
object
StakingRewardData
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 StakingRewardData
Remarks

Distinct from StakingRewardTransferData, which is the narrower per-transaction form carried inside StakingRewards. The top-level form additionally names the consensus instant at which the reward was paid.

Properties

| Edit this page View Source

Account

The account that received the staking reward.

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

Amount

The amount of the staking reward in tinybars.

Declaration
[JsonPropertyName("amount")]
[JsonConverter(typeof(LongMirrorConverter))]
public long Amount { get; set; }
Property Value
Type Description
long
| Edit this page View Source

Timestamp

The consensus timestamp at which the reward was paid.

Declaration
[JsonPropertyName("timestamp")]
public ConsensusTimeStamp Timestamp { get; set; }
Property Value
Type Description
ConsensusTimeStamp
  • Edit this page
  • View Source
In this article
Back to top .NET Client Library for Hiero Network and Hedera Hashgraph