Files
substreams-explorers/ethereum-explorer/proto/transaction.proto
2023-07-20 01:45:17 +02:00

13 lines
189 B
Protocol Buffer

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