Bitcoin Forum
May 01, 2024, 07:41:22 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: How to sendmany with low transaction fee  (Read 2092 times)
likl3sfuhjh (OP)
Sr. Member
****
Offline Offline

Activity: 335
Merit: 250


View Profile
May 26, 2013, 03:37:17 PM
 #1

What options do i have to sendmany bitcoins with a small transaction fee. Bitcoin-qt dosnt allow custom fees for dust payments, so what other platforms can i use that will allow me to set my fee.

Thanks

Where do I get free bitcoins?
www.bitcoinforest.com - Bitcoin faucet and survey site. Get .001 bitcoins for each survey, and .00001 for each captcha.
1714592482
Hero Member
*
Offline Offline

Posts: 1714592482

View Profile Personal Message (Offline)

Ignore
1714592482
Reply with quote  #2

1714592482
Report to moderator
1714592482
Hero Member
*
Offline Offline

Posts: 1714592482

View Profile Personal Message (Offline)

Ignore
1714592482
Reply with quote  #2

1714592482
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
DannyHamilton
Legendary
*
Offline Offline

Activity: 3388
Merit: 4612



View Profile
May 26, 2013, 03:43:59 PM
 #2

createrawtransaction
signrawtransaction
sendrawtransaction


You can set any fee you like.

However, if you don't set a high enough fee, your connected peers will refuse to relay the transaction.  Your intended recipient won't see it, it won't show up anywhere on the bitcoin network, and it won't get any confirmations.
likl3sfuhjh (OP)
Sr. Member
****
Offline Offline

Activity: 335
Merit: 250


View Profile
May 26, 2013, 03:48:22 PM
 #3

sendmany "" '{"address"}'


this is what im using now can you mabey give an example of how createrawtransaction would be used in the console. i cant connect directly with the api side cause i cant open the ports on this router.

I know there is a wiki page but those dont explain what the json output is supposed to look like

Where do I get free bitcoins?
www.bitcoinforest.com - Bitcoin faucet and survey site. Get .001 bitcoins for each survey, and .00001 for each captcha.
DannyHamilton
Legendary
*
Offline Offline

Activity: 3388
Merit: 4612



View Profile
May 26, 2013, 04:13:08 PM
 #4

Code:
createrawtransaction [{\"txid\":\"firstUnspentOutputTransactionIDHere\",\"vout\":#},{\"txid\":\"secondUnspentOutputTransactionIDHere\",\"vout\":#},{\"txid\":\"thirdUnspentOutputTransactionIDHere\",\"vout\":#}] {\"1yourChangeAddressHere\":0.00000000,\"1firstRecipientAddrHere\":0.00000000,\"1secondRecipientAddrHere\":0.00000000,\"1thirdRecipientAddrHere\":0.00000000}

Replacing:

  • The various TransactionID and RecipientAddr with the appropriate information
  • # with the output index of the output that you intend to use as an input into the transaction
  • 0.00000000 with the amount of BTC you intend to send to each recipient

Subtract the sum of the outputs from the sum of the inputs.  The difference must be greater than or equal to zero, or the transaction is invalid.  If the difference is greater than zero, then the difference is the transaction fee that the miner will receive.  You can adjust the fee by changing the selected inputs, outputs, or altering the value sent to your change address.
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!