Skip to content

Releases: pinax-network/firehose-antelope

v0.0.5

31 Jan 16:51
Compare
Choose a tag to compare
v0.0.5 Pre-release
Pre-release

What's Changed

  • Add test support for decoded table operations

Full Changelog: v0.0.4...v0.0.5

v0.0.4

24 Jan 22:17
Compare
Choose a tag to compare
  • Add HeaderOnlyBlock to protobuf message definitions
// HeaderOnlyBlock is used to optimally unpack the [Block] structure (note the
// corresponding message number for the `header` field) while consuming less
// memory, when only the `header` is desired.
//
// WARN: this is a client-side optimization pattern and should be moved in the
// consuming code.
message HeaderOnlyBlock {
  // id is the block's hash.
  string id = 1;

  // Number is the block's height at which this block was mined.
  uint32 number = 2;

  // Header contain's the block's header information like its parent hash, the merkel root hash
  // and all other information the form a block.
  BlockHeader header = 4;

  // A blockroot Merkle tree is a data structure that uses hash functions to organize and 
  // verify the integrity of data blocks in a blockchain.
  // Each leaf node contains a hash of a data block, while each non-leaf node contains the hash of its child nodes.
  // The root node contains a single hash that represents all the data in the tree,
  // allowing for efficient verification of data integrity by only checking the root hash.
  BlockRootMerkle blockroot_merkle = 11;
}

v0.0.3

10 Jan 20:00
Compare
Choose a tag to compare
  • bump streamingfast dependencies
  • Add TransactionTraces to protobuf types
message TransactionTraces {
  repeated TransactionTrace transaction_traces = 1;
}

v0.0.2 Release

05 Jan 01:28
Compare
Choose a tag to compare
  • Include ActionTraces & DBOps protobufs
message ActionTraces {
  repeated ActionTrace action_traces = 1;
}

message DBOps {
  repeated DBOp db_ops = 1;
}

v0.0.1 Initial Release

13 Oct 16:16
811283e
Compare
Choose a tag to compare

What's Changed

Full Changelog: https://github.com/EOS-Nation/firehose-antelope/commits/v0.0.1