com.hedera.hashgraph.sdk.proto.RunningHashesOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-full Show documentation
Show all versions of sdk-full Show documentation
Hedera™ Hashgraph SDK for Java
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: running_hashes.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface RunningHashesOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.RunningHashes)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* A running hash of all record stream items
*
*
* bytes running_hash = 1;
* @return The runningHash.
*/
com.google.protobuf.ByteString getRunningHash();
/**
*
**
* The previous running hash of all record stream items
*
*
* bytes n_minus_1_running_hash = 2;
* @return The nMinus1RunningHash.
*/
com.google.protobuf.ByteString getNMinus1RunningHash();
/**
*
**
* The previous, previous running hash of all record stream items
*
*
* bytes n_minus_2_running_hash = 3;
* @return The nMinus2RunningHash.
*/
com.google.protobuf.ByteString getNMinus2RunningHash();
/**
*
**
* The previous, previous, previous running hash of all record stream items
*
*
* bytes n_minus_3_running_hash = 4;
* @return The nMinus3RunningHash.
*/
com.google.protobuf.ByteString getNMinus3RunningHash();
}