Files
2023-07-20 01:45:17 +02:00

13 lines
191 B
Protocol Buffer

syntax = "proto3";
package eth.event.v1;
message Events {
repeated Event events = 1;
}
message Event {
string address = 1;
repeated string topics = 2;
string tx_hash = 3;
}