Tx Range¶
-
class
blocksci.
AnyTxRange
¶ -
all
¶ Returns a list of all of the objects in the range
-
block
¶ For each transaction: The block that this transaction was in
-
block_height
¶ For each transaction: The height of the block that this transaction was in
-
block_time
¶ For each transaction: The time that the block containing this transaction arrived
-
change_output
¶ For each transaction: If the change address in this transaction can be determined via the fresh address criteria, return it. Otherwise return None.
-
fee
¶ For each transaction: The fee paid by this transaction
-
fee_per_byte
¶ For each transaction: The ratio of fee paid to size in bytes of this transaction
-
hash
¶ For each transaction: The 256-bit hash of this transaction
-
index
¶ For each transaction: The internal index of this transaction
-
input_count
¶ For each transaction: The number of inputs this transaction has
-
input_value
¶ For each transaction: The sum of the value of all of the inputs
-
inputs
¶ A list of lists of the inputs of each transaction
-
is_coinbase
¶ For each transaction: Return’s true if this transaction is a Coinbase transaction
-
locktime
¶ For each transaction: The locktime of this transasction
-
op_return
¶ For each transaction: If this transaction included a null data script, return its output. Otherwise return None
-
output_count
¶ For each transaction: The number of outputs this transaction has
-
output_value
¶ For each transaction: The sum of the value of all of the outputs
-
outputs
¶ A list of lists of the outputs of each transaction
-
size_bytes
¶ For each transaction: The size of this transaction in bytes
-