All Downloads are FREE. Search and download functionalities are using the official Maven repository.

stream.block_item.proto Maven / Gradle / Ivy

There is a newer version: 0.54.0
Show newest version
/**
 * # Block Item
 * A single item in the block stream, such as transaction data, event metadata,
 * or a a system transaction.
* Each block consists of a block header, one or more block items, * and a block state proof. Within the block are a series of events delimited * by start_event block items. * * This structure here MUST support a stream of block items with no enclosing * message.
* Implementations SHOULD behave in a reasonable manner if used in a gRPC * bidirectional streaming RPC similar to * `rpc processBlocks(stream BlockItem) returns (stream Acknowledgement);`. * * ### Keywords * The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", * "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this * document are to be interpreted as described in * [RFC2119](https://www.ietf.org/rfc/rfc2119) and clarified in * [RFC8174](https://www.ietf.org/rfc/rfc8174). */ syntax = "proto3"; package com.hedera.hapi.block.stream; /* * Copyright (C) 2024 Hedera Hashgraph, LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ option java_package = "com.hedera.hapi.block.stream.protoc"; // <<>> This comment is special code for setting PBJ Compiler java package option java_multiple_files = true; import "event/event_transaction.proto"; import "stream/block_proof.proto"; import "stream/record_file_item.proto"; import "stream/input/event_metadata.proto"; import "stream/input/round_header.proto"; import "stream/output/block_header.proto"; import "stream/output/state_changes.proto"; import "stream/output/transaction_output.proto"; import "stream/output/transaction_result.proto"; /** * A single item within a block stream. * * Each item in the block stream SHALL be self-contained and independent, * with the following constraints applicable to the _unfiltered_ stream. * - A block SHALL start with a `header`. * - A block SHALL end with a `state_proof`. * - A `block_header` SHALL be followed by an `event_header`. * - An `event_header` SHALL be followed by one or more * `event_transaction` items. * - An `event_transaction` SHALL be followed by a `transaction_result`. * - A `transaction_result` MAY be followed by a `transaction_output`. * - A `transaction_result` (or a `transaction_output`, if present) MAY be * followed by one or more `state_changes`. * * This forms the following required sequence for each block, which is then * repeated within the block stream, indefinitely. Note that there is no * container structure in the stream, the indentation below is only to * highlight repeated subsequences.
* The order of items within each block below is REQUIRED and SHALL NOT change. * * ```text * header * repeated { * start_event * repeated { * event_transaction * transaction_result * (optional) transaction_output * (optional) repeated state_changes * } * } * state_proof * ``` * A filtered stream may exclude some items above, depending on filter * criteria. A filtered item is replaced with a merkle path and hash value * to maintain block stream verifiability. * * A BlockItem SHALL be individually and directly processed to create the * item hash.
* Items to be hashed MUST NOT be contained within another item.
* Items which might be filtered out of the stream MUST NOT be * contained in other items. */ message BlockItem { oneof item { /** * An header for the block, marking the start of a new block. */ com.hedera.hapi.block.stream.output.BlockHeader block_header = 1; /** * An header emitted at the start of a new network "event". *

* This item SHALL contain the properties relevant to a single * gossip event. */ com.hedera.hapi.block.stream.input.EventHeader event_header = 2; /** * An header emitted at the start of a new consensus "round". *

* This item SHALL contain the properties relevant to a single * consensus round. */ com.hedera.hapi.block.stream.input.RoundHeader round_header = 3; /** * A single transaction. *

* This item SHALL contain the serialized bytes of a * single transaction.
* Each event transaction SHALL be either a `SignedTransaction` or * an internal system-generated transaction.
* This item MUST NOT contain data for more than one * `SignedTransaction` or system-generated transaction. */ com.hedera.hapi.platform.event.EventTransaction event_transaction = 4; /** * The result of running a transaction. *

* This item SHALL be present immediately after an * `event_transaction` item.
* This item MAY be redacted in some circumstances, and SHALL be * replaced with a `filtered_item` if removed. */ com.hedera.hapi.block.stream.output.TransactionResult transaction_result = 5; /** * A transaction output. *

* This item MAY not be present if a transaction does not produce * an output.
* If a transaction does produce an output that is not reflected * in state changes, then this item MUST be present after the * `transaction_result` for that transaction. */ com.hedera.hapi.block.stream.output.TransactionOutput transaction_output = 6; /** * A set of state changes. *

* All changes to values in network state SHALL be described by * stream items of this type.
* The source of these state changes SHALL be described by the * `reason` enumeration. */ com.hedera.hapi.block.stream.output.StateChanges state_changes = 7; /** * Verification data for an item filtered from the stream.
* This is a hash for a merkle tree node where the contents of that * part of the merkle tree have been removed from this stream. *

* Items of this type SHALL NOT be present in the full (unfiltered) * block stream.
* Items of this type SHALL replace any item removed from a partial * (filtered) block stream.
* Presence of `filtered_item` entries SHALL NOT prevent verification * of a block, but MAY preclude verification or reconstruction of * consensus state.
*/ FilteredItemHash filtered_item_hash = 8; /** * A signed block proof.
* The signed merkle proof for this block. This will validate * a "virtual" merkle tree containing the previous block "virtual" * root, an "input" subtree, an "output" subtree, and * a "state changes" subtree. *

* This item is not part of the block stream hash chain/tree, and * MUST follow after the end of a block. */ BlockProof block_proof = 9; /** * A record file and associated data. *

* This MUST contain a single Record file, associated Sidecar files, * and data from related Signature files. * If this item is present, special treatment is * REQUIRED for this block. *

    *
  • The block SHALL NOT have a `BlockHeader`.
  • *
  • The block SHALL NOT have a `BlockProof`.
  • *
  • The block SHALL contain _exactly one_ `RecordFileItem`.
  • *
  • The block SHALL NOT contain any item other than a * `RecordFileItem`.
  • *
  • The content of the `RecordFileItem` MUST be validated using * the signature data and content provided within according to * the process used for Record Files prior to the creation * of Block Stream.
  • *
*/ RecordFileItem record_file = 10; } } /** * Verification data for an item filtered from the stream. * * Items of this type SHALL NOT be present in the full (unfiltered) block * stream.
* Items of this type SHALL replace any item removed from a partial (filtered) * block stream.
* Presence of `filtered_item` entries SHALL NOT prevent verification * of a block, but MAY preclude verification or reconstruction * of consensus state.
*/ message FilteredItemHash { /** * A hash of an item filtered from the stream. *

* The hash algorithm used MUST match the hash algorithm specified in * the block header for the containing block.
* This field is REQUIRED. */ bytes item_hash = 1; /** * A record of the merkle path to the item that was filtered * from the stream.
* This path begins at the root of the block proof merkle tree. *

* This REQUIRED field SHALL describe the full path in the virtual * merkle tree constructed for the block proof that contained the * item filtered from the stream. */ uint64 filtered_path = 3; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy