getrawtransaction method in details

2

1

Referring to https://en.bitcoin.it/wiki/Raw_Transactions, I`m using getrawtrasaction method call to define as much information about incoming payment transaction details as possibe. Is there any detailed information about fields that are returned by getrawtransaction method? For example what means "vout" field? How can be useful "scriptSig" field that consists of "asm" and "hex"?

tokyo

Posted 2014-01-15T19:51:18.877

Reputation: 65

Answers

0

A bitcoin transaction takes a number of inputs and spends those input to the specified outputs. If the value of inputs exceeds outputs the network treats that as a miner's fee.

vout is the list of output transactions.

scriptSig is only useful if you're trying to do some non-standard stuff.

See https://en.bitcoin.it/wiki/Transactions for more information on what's in a transaction.

user789235

Posted 2014-01-15T19:51:18.877

Reputation: 126

0

Yeah, check out this excellent post.

Loourr

Posted 2014-01-15T19:51:18.877

Reputation: 3 022