1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-16 04:24:56 +02:00
thalos/api/message/protobuf/schema.proto

20 lines
368 B
Protocol Buffer

syntax = "proto3";
package protobuf;
option go_package = "message/protobuf";
message Heartbeat {
uint32 block_num = 1;
uint32 head_blocknum = 2;
uint32 last_irreversible_blocknum = 3;
}
message ActionTrace {
string tx_id = 1;
string name = 2;
string contract = 3;
string receiver = 4;
// NOTE: Data is json encoded.
bytes data = 5;
string hex_data = 6;
}