Bitcoin Forum
May 10, 2024, 08:39:43 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Createrawtransaction: How does this actually work?  (Read 1184 times)
theonewhowaskazu (OP)
Sr. Member
****
Offline Offline

Activity: 448
Merit: 250


View Profile
May 10, 2014, 12:27:50 AM
 #1

I understand the createrawtransaction command looks like this:

bitcoind createrawtransaction [\{\"txid\":\"sometxid\",\"vout\":1\}, ...] {\"receivingaddr1\":amount, ...}

I understand that first bit represents inputs, and the second part represents the outputs. How does a TXID represent an input, though? What do I do, find the last txid sent to the addresses I want to send from? What if I got 2 transactions for 0.5 each, leaving my address with a balance of 1, and now I want to send that whole 1 BTC all at once. What do I do?

Also, how do I set the TX fee?

1715373583
Hero Member
*
Offline Offline

Posts: 1715373583

View Profile Personal Message (Offline)

Ignore
1715373583
Reply with quote  #2

1715373583
Report to moderator
1715373583
Hero Member
*
Offline Offline

Posts: 1715373583

View Profile Personal Message (Offline)

Ignore
1715373583
Reply with quote  #2

1715373583
Report to moderator
1715373583
Hero Member
*
Offline Offline

Posts: 1715373583

View Profile Personal Message (Offline)

Ignore
1715373583
Reply with quote  #2

1715373583
Report to moderator
Transactions must be included in a block to be properly completed. When you send a transaction, it is broadcast to miners. Miners can then optionally include it in their next blocks. Miners will be more inclined to include your transaction if it has a higher transaction fee.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
Foxpup
Legendary
*
Offline Offline

Activity: 4354
Merit: 3044


Vile Vixen and Miss Bitcointalk 2021-2023


View Profile
May 10, 2014, 02:38:46 AM
Last edit: May 10, 2014, 03:01:42 AM by Foxpup
 #2

An input is one of the outputs of a transaction you have previously received. The output must not been previously spent (used as an input for another transaction) and you must have the private key(s) necessary to spend it. The listunspent command will give a list of transaction outputs which satisfy these criteria. A transaction can (and often does) have multiple inputs.

Each input specified will be spent completely. It is not possible to partially spend an input. If you wish to send an amount smaller than the inputs, you must create a change address and send the remainder there (as a second output).

The transaction fee is simply the difference between the sum of the transaction's inputs and the sum of the transaction's outputs. If you forget to make change, or calculate it incorrectly, you will pay an unexpectedly large transaction fee. I forget whether Bitcoin Core gives a warning when this happens; I think it just assumes anyone using raw transactions knows what they're doing.

Do not create raw transactions unless you know what you're doing.

EDIT: Typo

Will pretend to do unspeakable things (while actually eating a taco) for bitcoins: 1K6d1EviQKX3SVKjPYmJGyWBb1avbmCFM4
I am not on the scammers' paradise known as Telegram! Do not believe anyone claiming to be me off-forum without a signed message from the above address! Accept no excuses and make no exceptions!
DeathAndTaxes
Donator
Legendary
*
Offline Offline

Activity: 1218
Merit: 1079


Gerald Davis


View Profile
May 10, 2014, 02:54:08 AM
Last edit: May 10, 2014, 06:59:36 PM by DeathAndTaxes
 #3

A txid alone doesn't represent an input.

An input is a reference to an unspent output of a previous transaction.  A transaction can have multiple outputs so a tx id alone is insufficient.   You can uniquely identify any output in the blockchain by a TXID (gets you to the tx in question) AND an index or vout which get identifies which output of the tx is being referenced.  

There is no such thing as balances.  Bitcoin works on inputs and outputs.  In your example you have two unspent outputs worth 0.5 BTC ea.  So you would have two inputs (each w/ a txid and vout).  The tx now has 1 BTC in input.  If you want to spend the whole 1 BTC then you would just have 1 BTC - desired fee in a single output.  If you wanted to spend less (say 0.8 BTC w/ 0.05 BTC fee) then you would have two outputs one for 0.8 BTC and one for 0.15 BTC ("change").  The difference between inputs and outputs is the fee sent to miners.  Don't get this part wrong it is a quick way to lose a small fortune.   Say you select for your input an output worth 50 BTC and your tx only has a single output worth 1 BTC.   How much did you just pay the miners in fees?  Yup 49 BTC.
cp1
Hero Member
*****
Offline Offline

Activity: 616
Merit: 500


Stop using branwallets


View Profile
May 10, 2014, 03:21:22 AM
 #4

Each {} is a list, so you can have as many inputs and outputs as you want.

Guide to armory offline install on USB key:  https://bitcointalk.org/index.php?topic=241730.0
luv2drnkbr
Hero Member
*****
Offline Offline

Activity: 793
Merit: 1016



View Profile
May 10, 2014, 09:38:41 AM
 #5

Every txid is basically just a unique hash generated from the components of the tx.  So a txid points to a transaction.  Then since a transaction can have multiple outputs, the vout points to which output in the tx to use.  Remember, bitcoins are always just chained together from being minted in a block then to address to address to address-- so when you are sending them, all you are doing is making a tx saying "hey i own this address with bitcoins and i'd like them to go to that address" and then you sign that message with your private key.  So what txid and vout do is give you an input.  A single vout from a tx is a singlular specific amount of bitcoins from a single address, and so that's that first part of the message saying "see here, this address has these bitcoins from this tx and they aren't spent yet", and then the rest of the tx is the explanation of how to spend them, and then the signature is from the private key of the address of that vout, as proof that you OWN the address that you are trying to spend from.  The txid and vout form a single input for the transaction.  And you can use multiple txid/vout combos to have more than one input so you have a total that's enough to spend for your transaction.

DannyHamilton
Legendary
*
Offline Offline

Activity: 3388
Merit: 4653



View Profile
May 10, 2014, 01:20:01 PM
 #6

Use testnet.

Let me repeat that for you...

USE TESTNET!

Learning rawtransactions is financially dangerous.  It is EXTREMELY easy to make a very small mistake and lose ALL of your bitcoins.

Do not try to learn rawtransactions on the bitcoin network.
theonewhowaskazu (OP)
Sr. Member
****
Offline Offline

Activity: 448
Merit: 250


View Profile
May 10, 2014, 09:15:43 PM
 #7

Ok thanks.

Let me repeat what I've learned, to make sure I know what I'm doing, and also for posterity in case anyone else has this question.

createrawtransaction command looks like this:

bitcoind createrawtransaction [\{\"txid\":\"sometxid\",\"vout\":index\}, ...] {\"receivingaddr1\":amount, ...}

obviously you can put multiple inputs and outputs to each txn.

The first list represents the source of your expenditures. The sometxid represents a transaction where you received BTC, while index represents the index of the receiving address from that transaction which you're sending from. The balance of the sending addr doesn't matter, just the total amnt it received from the txns with the txids you selected, so you might need to put multiple txs from one address as the inputs for any given txn.

And if the inputs are greater than the outputs, that amount is the transaction fee.

One final question: How do I tell the "index" of my address from any given txn? Only way is to just decoderawtransaction always?

cp1
Hero Member
*****
Offline Offline

Activity: 616
Merit: 500


Stop using branwallets


View Profile
May 10, 2014, 09:47:40 PM
 #8

It's the n value, you need some way of reading the raw transaction, such as you suggested.

Guide to armory offline install on USB key:  https://bitcointalk.org/index.php?topic=241730.0
DeathAndTaxes
Donator
Legendary
*
Offline Offline

Activity: 1218
Merit: 1079


Gerald Davis


View Profile
May 10, 2014, 10:04:19 PM
 #9

One final question: How do I tell the "index" of my address PubKey from any given txn? Only way is to just decoderawtransaction always?

decoderawtransaction is one option.  If the keys for the tx are in your wallet another option is listunspentoutputs which returns a list of all the unspent outputs for which your wallet has the keys necessary for signing.  The wallet is already checking in realtime all blocks and transactions for outputs which it can spend, the listunspentoutputs returns that list.
DannyHamilton
Legendary
*
Offline Offline

Activity: 3388
Merit: 4653



View Profile
May 11, 2014, 01:42:11 AM
 #10

One final question: How do I tell the "index" of my address PubKey from any given txn? Only way is to just decoderawtransaction always?

decoderawtransaction is one option.  If the keys for the tx are in your wallet another option is listunspentoutputs which returns a list of all the unspent outputs for which your wallet has the keys necessary for signing.  The wallet is already checking in realtime all blocks and transactions for outputs which it can spend, the listunspentoutputs returns that list.

Been a while since you worked with raw transactions in the reference client?

The command you're looking for is:

listunspent

(not listunspentoutputs)
DeathAndTaxes
Donator
Legendary
*
Offline Offline

Activity: 1218
Merit: 1079


Gerald Davis


View Profile
May 11, 2014, 01:56:03 AM
 #11

No just going from memory (probably not a good idea).  I use the bitcoind API everyday just not manually.
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!