Package com.algorand.algosdk.transaction
Class HeartbeatProof
- java.lang.Object
-
- com.algorand.algosdk.transaction.HeartbeatProof
-
- All Implemented Interfaces:
Serializable
public class HeartbeatProof extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description Ed25519PublicKey
pk
Signature
pk1Sig
Ed25519PublicKey
pk2
Signature
pk2Sig
Signature
sig
-
Constructor Summary
Constructors Constructor Description HeartbeatProof()
HeartbeatProof(byte[] sig, byte[] pk, byte[] pk2, byte[] pk1Sig, byte[] pk2Sig)
HeartbeatProof(Signature sig, Ed25519PublicKey pk, Ed25519PublicKey pk2, Signature pk1Sig, Signature pk2Sig)
-
-
-
Field Detail
-
sig
public Signature sig
-
pk
public Ed25519PublicKey pk
-
pk2
public Ed25519PublicKey pk2
-
pk1Sig
public Signature pk1Sig
-
pk2Sig
public Signature pk2Sig
-
-
Constructor Detail
-
HeartbeatProof
public HeartbeatProof()
-
HeartbeatProof
public HeartbeatProof(Signature sig, Ed25519PublicKey pk, Ed25519PublicKey pk2, Signature pk1Sig, Signature pk2Sig)
-
HeartbeatProof
public HeartbeatProof(byte[] sig, byte[] pk, byte[] pk2, byte[] pk1Sig, byte[] pk2Sig)
-
-