github.com/aychain/blockbook@v0.1.1-0.20181121092459-6d1fc7e07c5b/bchain/coins/eth/tx.proto (about)

     1  syntax = "proto3";
     2  	package eth;
     3  		
     4  	message ProtoTransaction {
     5          uint64 AccountNonce = 1;
     6          bytes Price = 2;
     7          uint64 GasLimit = 3;
     8          bytes Value = 4;
     9          bytes Payload = 5;
    10          bytes Hash = 6;
    11          uint32 BlockNumber = 7;
    12          uint64 BlockTime = 8;
    13          bytes To = 9;
    14          bytes From = 10;
    15          uint32 TransactionIndex = 11;
    16          bytes V = 12;
    17          bytes R = 13;
    18          bytes S = 14;
    19      }