13 lines
194 B
Protocol Buffer
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;
|
|
} |