Class StateProofFields
- java.lang.Object
-
- com.algorand.algosdk.v2.client.common.PathResponse
-
- com.algorand.algosdk.v2.client.model.StateProofFields
-
public class StateProofFields extends PathResponse
(sp) represents a state proof. Definition: crypto/stateproof/structs.go : StateProof
-
-
Field Summary
Fields Modifier and Type Field Description MerkleArrayProof
partProofs
(P)List<BigInteger>
positionsToReveal
(pr) Sequence of reveal positions.List<StateProofReveal>
reveals
(r) Note that this is actually stored as a map[uint64] - Reveal in the actual msgpLong
saltVersion
(v) Salt version of the merkle signature.byte[]
sigCommit
BigInteger
signedWeight
(w)MerkleArrayProof
sigProofs
(S)
-
Constructor Summary
Constructors Constructor Description StateProofFields()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
sigCommit()
void
sigCommit(String base64Encoded)
(c)-
Methods inherited from class com.algorand.algosdk.v2.client.common.PathResponse
toString
-
-
-
-
Field Detail
-
partProofs
public MerkleArrayProof partProofs
(P)
-
positionsToReveal
public List<BigInteger> positionsToReveal
(pr) Sequence of reveal positions.
-
reveals
public List<StateProofReveal> reveals
(r) Note that this is actually stored as a map[uint64] - Reveal in the actual msgp
-
saltVersion
public Long saltVersion
(v) Salt version of the merkle signature.
-
sigCommit
public byte[] sigCommit
-
sigProofs
public MerkleArrayProof sigProofs
(S)
-
signedWeight
public BigInteger signedWeight
(w)
-
-