Files
2023-07-21 18:33:05 +02:00

13 lines
194 B
Protocol Buffer

syntax = "proto3";
package eth.transaction.v1;
message Transactions {
repeated Transaction transactions = 1;
}
message Transaction {
string from = 1;
string to = 2;
string hash = 3;
}