Table of Contents

Class AccountCreationDetails

Namespace
Concordium.Sdk.Types
Assembly
Concordium.Sdk.dll

Details of an account creation. These transactions are free, and we only ever get a response for them if the account is created, hence no failure cases.

public sealed record AccountCreationDetails : IBlockItemSummaryDetails, IEquatable<AccountCreationDetails>
Inheritance
AccountCreationDetails
Implements
Inherited Members

Constructors

AccountCreationDetails(CredentialType, AccountAddress, CredentialRegistrationId)

Details of an account creation. These transactions are free, and we only ever get a response for them if the account is created, hence no failure cases.

public AccountCreationDetails(CredentialType CredentialType, AccountAddress Address, CredentialRegistrationId RegId)

Parameters

CredentialType CredentialType

Whether this is an initial or normal account.

Address AccountAddress

Address of the newly created account.

RegId CredentialRegistrationId

Credential registration ID of the first credential.

Properties

Address

Address of the newly created account.

public AccountAddress Address { get; init; }

Property Value

AccountAddress

CredentialType

Whether this is an initial or normal account.

public CredentialType CredentialType { get; init; }

Property Value

CredentialType

RegId

Credential registration ID of the first credential.

public CredentialRegistrationId RegId { get; init; }

Property Value

CredentialRegistrationId