Show / Hide Table of Contents

Class AccountInfo

Information about a Hedera Address, including public key, evm address and other account related information.

Inheritance
object
AccountInfo
Implements
IEquatable<AccountInfo>
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Hiero
Assembly: Hiero.dll
Syntax
public sealed record AccountInfo : IEquatable<AccountInfo>

Properties

| Edit this page View Source

Address

The Hedera address of this account.

Declaration
public EntityId Address { get; }
Property Value
Type Description
EntityId
| Edit this page View Source

AutoAssociationLimit

The maximum number of tokens or NFTs that this account may be implicitly associated with (by means of being made a treasury or other related actions).

Declaration
public int AutoAssociationLimit { get; }
Property Value
Type Description
int
| Edit this page View Source

AutoRenewPeriod

Incremental period for auto-renewal of the account. If account does not have sufficient funds to renew at the expiration time, it will be renewed for a period of time the remaining funds can support. If no funds remain, the account will be deleted.

Declaration
public TimeSpan AutoRenewPeriod { get; }
Property Value
Type Description
TimeSpan
| Edit this page View Source

Balance

Address Balance in Tinybars

Declaration
public ulong Balance { get; }
Property Value
Type Description
ulong
| Edit this page View Source

Deleted

True

if this account has been deleted. Its existence in the network will cease after the expiration date for the account lapses. It cannot participate in transactions except to extend the expiration/removal date.

Declaration
public bool Deleted { get; }
Property Value
Type Description
bool
| Edit this page View Source

Endorsement

Address's Public Key (typically a single Ed25519 key).

Declaration
public Endorsement Endorsement { get; }
Property Value
Type Description
Endorsement
| Edit this page View Source

EvmAddress

The identity of the Hedera Address in a form to be used with smart contracts. This can also be the ID of a smart contract instance if this is the account associated with a smart contract.

Declaration
public EvmAddress EvmAddress { get; }
Property Value
Type Description
EvmAddress
| Edit this page View Source

EvmNonce

The smart contract (EVM) transaction counter nonce associated with this account.

Declaration
public long EvmNonce { get; }
Property Value
Type Description
long
| Edit this page View Source

Expiration

The account expiration time, at which it will attempt to renew if sufficient funds remain in the account.

Declaration
public ConsensusTimeStamp Expiration { get; }
Property Value
Type Description
ConsensusTimeStamp
| Edit this page View Source

KeyAlias

The alternate identifier associated with this account that is
in the form of a public key.  If an alternate identifier for this
account does not exist, this value will be 
None

.

Declaration
public Endorsement KeyAlias { get; }
Property Value
Type Description
Endorsement
| Edit this page View Source

Ledger

Identification of the Ledger (Network) this account information was retrieved from.

Declaration
public BigInteger Ledger { get; }
Property Value
Type Description
BigInteger
| Edit this page View Source

Memo

A short description associated with the account.

Declaration
public string Memo { get; }
Property Value
Type Description
string
| Edit this page View Source

NftCount

The number of NFTs (non fungible tokens) held by this account.

Declaration
public long NftCount { get; }
Property Value
Type Description
long
| Edit this page View Source

ReceiveSignatureRequired

True

if any receipt of funds requires a signature from this account.

Declaration
public bool ReceiveSignatureRequired { get; }
Property Value
Type Description
bool
| Edit this page View Source

StakingInfo

Staking Metadata Information for the account.

Declaration
public StakingInfo StakingInfo { get; }
Property Value
Type Description
StakingInfo
| Edit this page View Source

Tokens

[DEPRECATED] Balances of tokens and NFTs associated with this account.

Declaration
[Obsolete("This field is deprecated by HIP-367")]
public IReadOnlyList<TokenBalance> Tokens { get; }
Property Value
Type Description
IReadOnlyList<TokenBalance>

Implements

IEquatable<T>
  • Edit this page
  • View Source
In this article
Back to top .NET Client Library for Hiero Network and Hedera Hashgraph