Class AccountParticipation
- java.lang.Object
-
- com.algorand.algosdk.v2.client.common.PathResponse
-
- com.algorand.algosdk.v2.client.model.AccountParticipation
-
public class AccountParticipation extends PathResponse
AccountParticipation describes the parameters used by this account in consensus protocol.
-
-
Field Summary
Fields Modifier and Type Field Description byte[]selectionParticipationKeybyte[]stateProofKeyLongvoteFirstValidFirst round for which this participation is valid.LongvoteKeyDilutionNumber of subkeys in each batch of participation keys.LongvoteLastValidLast round for which this participation is valid.byte[]voteParticipationKey
-
Constructor Summary
Constructors Constructor Description AccountParticipation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringselectionParticipationKey()voidselectionParticipationKey(String base64Encoded)Selection public key (if any) currently registered for this round.StringstateProofKey()voidstateProofKey(String base64Encoded)Root of the state proof key (if any)StringvoteParticipationKey()voidvoteParticipationKey(String base64Encoded)root participation public key (if any) currently registered for this round.-
Methods inherited from class com.algorand.algosdk.v2.client.common.PathResponse
toString
-
-
-
-
Field Detail
-
selectionParticipationKey
public byte[] selectionParticipationKey
-
stateProofKey
public byte[] stateProofKey
-
voteFirstValid
public Long voteFirstValid
First round for which this participation is valid.
-
voteKeyDilution
public Long voteKeyDilution
Number of subkeys in each batch of participation keys.
-
voteLastValid
public Long voteLastValid
Last round for which this participation is valid.
-
voteParticipationKey
public byte[] voteParticipationKey
-
-
Method Detail
-
selectionParticipationKey
public void selectionParticipationKey(String base64Encoded)
Selection public key (if any) currently registered for this round.
-
selectionParticipationKey
public String selectionParticipationKey()
-
stateProofKey
public void stateProofKey(String base64Encoded)
Root of the state proof key (if any)
-
stateProofKey
public String stateProofKey()
-
voteParticipationKey
public void voteParticipationKey(String base64Encoded)
root participation public key (if any) currently registered for this round.
-
voteParticipationKey
public String voteParticipationKey()
-
-