Releases: pinax-network/firehose-antelope
Releases · pinax-network/firehose-antelope
v0.0.5
v0.0.4
- 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
- bump streamingfast dependencies
- Add
TransactionTraces
to protobuf types
message TransactionTraces {
repeated TransactionTrace transaction_traces = 1;
}
v0.0.2 Release
- Include
ActionTraces
&DBOps
protobufs
message ActionTraces {
repeated ActionTrace action_traces = 1;
}
message DBOps {
repeated DBOp db_ops = 1;
}
v0.0.1 Initial Release
What's Changed
- Adapted Antelope console reader by @fschoell in #8
- Added some merger flags by @fschoell in #12
- fix nil pointer in console reader by @fschoell in #13
- remove docker workflow by @fschoell in #14
- fix parsing stats by @fschoell in #16
- add antelope substreams package by @fschoell in #17
Full Changelog: https://github.com/EOS-Nation/firehose-antelope/commits/v0.0.1