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

     1  syntax = "proto3";
     2  	package bchain;
     3  		
     4      message ProtoTransaction {
     5          message VinType {
     6              string Coinbase = 1;
     7              bytes Txid = 2;
     8              uint32 Vout = 3;
     9              bytes ScriptSigHex = 4;
    10              uint32 Sequence = 5;
    11              repeated string Addresses = 6;
    12          }
    13          message VoutType {
    14              bytes ValueSat = 1;
    15              uint32 N = 2;
    16              bytes ScriptPubKeyHex = 3;
    17              repeated string Addresses = 4;
    18          }
    19          bytes Txid = 1;
    20          bytes Hex = 2;
    21          uint64 Blocktime = 3;
    22          uint32 Locktime = 4;
    23          uint32 Height = 5;
    24          repeated VinType Vin = 6;
    25          repeated VoutType Vout = 7;
    26      }