Changeset View
Changeset View
Standalone View
Standalone View
chronik/chronik-proto/proto/chronik.proto
| Show All 16 Lines | message Blocks { | ||||
| // Queried blocks | // Queried blocks | ||||
| repeated BlockInfo blocks = 1; | repeated BlockInfo blocks = 1; | ||||
| } | } | ||||
| // Header on the blockchain | // Header on the blockchain | ||||
| message BlockHeader { | message BlockHeader { | ||||
| // Raw data | // Raw data | ||||
| bytes raw_header = 1; | bytes raw_header = 1; | ||||
| // Merkle root | |||||
| bytes root = 2; | |||||
| // Merkle branch of header up to root, deepest pairing first | |||||
| repeated bytes branch = 3; | |||||
| } | } | ||||
| // Range of headers | // Range of headers | ||||
| message BlockHeaders { | message BlockHeaders { | ||||
| // Queried headers | // Queried headers | ||||
| repeated BlockHeader headers = 1; | repeated BlockHeader headers = 1; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 530 Lines • Show Last 20 Lines | |||||