github.com/pdaian/flashboys2@v0.0.0-20190718175736-b101c35361f0/etherdelta/readme.txt (about)

     1  The file contract_addr.txt contains all the contracts (including EtherDelta contract itself) with successful trade transactions sent to it within [3900000, 5550000) 
     2  
     3  for each file:
     4  
     5  all_txs/all_txs-{begin_block}-{end_block}-1.txt
     6  
     7  contains all the transactions sent to the addresses in contract_addr.txt in the block range [begin_block, end_block).
     8  
     9  There are 5 coloumns in each file, each line represents one transaction:
    10  
    11  BlockNumber TransactionHash From To GasPrice(Wei) GasUsed InputData
    12  
    13  
    14  for each file:
    15  
    16  succ_txs/succ_txs-{begin_block}-{end_block}-1.txt
    17  
    18  contains all the transactions with one or more Etherdelta Trade Event in the block range [begin_block, end_block),
    19  
    20  There are 6 coloumns in each file, each line represents one transaction:
    21  
    22  BlockNumber TransactionHash Tag From To InputData
    23  
    24  
    25  The Tag is one of { Trade, Arbitrage, Unknown}:
    26  
    27  Trade means this transctions only generated one Trade Event, which means it is a normal trade transaction.
    28  
    29  Arbitrage mean this transction generated exactly 2 Trade Events and the buy/sell tokens form a pair.
    30  
    31  Otherwise, the transation will be tagged as Unknown.
    32  
    33