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
TransactionTimeLatest time the credential deployment can included in a block.
Payload
ICredentialPayloadThe payload of the credential deployment.
Properties
MessageExpiry
Latest time the credential deployment can included in a block.
public TransactionTime MessageExpiry { get; init; }
Property Value
Payload
The payload of the credential deployment.
public ICredentialPayload Payload { get; init; }