9 lines
128 B
Protocol Buffer
9 lines
128 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package sol.block.v1;
|
|
|
|
message BlockMeta {
|
|
uint64 slot = 1;
|
|
string hash = 2;
|
|
string parent_hash = 3;
|
|
} |