Table of Contents

Class CredentialDeployment

Namespace
Concordium.Sdk.Transactions
Assembly
Concordium.Sdk.dll

Credential deployments create new accounts. They are not paid for directly by the sender. Instead, bakers are rewarded by the protocol for including them.

public record CredentialDeployment : BlockItemType, IEquatable<BlockItemType>, IEquatable<CredentialDeployment>
Inheritance
CredentialDeployment
Implements
Inherited Members

Constructors

CredentialDeployment(TransactionTime, ICredentialPayload)

Credential deployments create new accounts. They are not paid for directly by the sender. Instead, bakers are rewarded by the protocol for including them.

public CredentialDeployment(TransactionTime MessageExpiry, ICredentialPayload Payload)

Parameters

MessageExpiry TransactionTime

Latest time the credential deployment can included in a block.

Payload ICredentialPayload

The payload of the credential deployment.

Properties

MessageExpiry

Latest time the credential deployment can included in a block.

public TransactionTime MessageExpiry { get; init; }

Property Value

TransactionTime

Payload

The payload of the credential deployment.

public ICredentialPayload Payload { get; init; }

Property Value

ICredentialPayload