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
CredentialTypeWhether this is an initial or normal account.
Address
AccountAddressAddress of the newly created account.
RegId
CredentialRegistrationIdCredential registration ID of the first credential.
Properties
Address
Address of the newly created account.
public AccountAddress Address { get; init; }
Property Value
CredentialType
Whether this is an initial or normal account.
public CredentialType CredentialType { get; init; }
Property Value
RegId
Credential registration ID of the first credential.
public CredentialRegistrationId RegId { get; init; }