github.com/bchainhub/blockbook@v0.3.2/bchain/coins/eth/tx.proto (about) 1 syntax = "proto3"; 2 package eth; 3 4 message ProtoCompleteTransaction { 5 message TxType { 6 uint64 AccountNonce = 1; 7 bytes GasPrice = 2; 8 uint64 GasLimit = 3; 9 bytes Value = 4; 10 bytes Payload = 5; 11 bytes Hash = 6; 12 bytes To = 7; 13 bytes From = 8; 14 uint32 TransactionIndex = 9; 15 } 16 message ReceiptType { 17 message LogType { 18 bytes Address = 1; 19 bytes Data = 2; 20 repeated bytes Topics = 3; 21 } 22 bytes GasUsed = 1; 23 bytes Status = 2; 24 repeated LogType Log = 3; 25 } 26 uint32 BlockNumber = 1; 27 uint64 BlockTime = 2; 28 TxType Tx = 3; 29 ReceiptType Receipt = 4; 30 }