How do I send a transaction directly to a miner or pool for processing?

6

1

I am interested in sending a transaction directly to a miner or a pool for processing. I have general familiarity with Bitcoin-QT. What additional knowledge and steps must I have in order to send a transaction directly to a pool?

goodguys_activate

Posted 2012-11-13T08:20:39.020

Reputation: 11 898

Answers

3

First, you will need to find out an IP adresses of pools e.g. from this list, but most likely it has inaccuracies. Another option is to connect to Hub Nodes.

Hub Nodes

Shows the nodes who have relayed the most transactions first to blockchain.info. The nodes on this page are well connected often hub nodes for merchants or miners.


Bitcoind

Create bitcoin.conf file in required directory with rpc connection commands

rpcuser=youruser
rpcpassword=yourpw

and addnode commands e.g.

addnode=69.164.218.197
addnode=10.0.0.2:8333

and then run bitcoind. To verify that bitcoind is connected to specified nodes open command prompt or terminal, navigate to bicoind's folder and then run the command:

bitcoind getpeerinfo

Sending bitcoin transaction by using bitcoind server will send transactions directly to the specified nodes.

Bitcoin-qt

When opened will use the same bitcoin.conf file. To verify that it's connected to specified nodes click

Help -> Debug Window -> Console and type getpeerinfo

Serith

Posted 2012-11-13T08:20:39.020

Reputation: 5 220

How did you compile or find that list you linked to in Pastebin?goodguys_activate 2012-11-20T05:11:50.387

1Bitcoin-Qt should use the same bitcoin.conf file, and you can issue getpeerinfo from the "Debug Window" in the latest version. – None – 2012-11-21T02:01:49.120

@PeterCooperJr. You're right, that's the new feature that I didn't know about, so I edited my answer.Serith 2012-11-21T21:47:08.007

4

You can use this service.

https://blockchain.info/pushtx

It will transmit transactions for you. Useful for testing or for sending money over TOR.

wyager

Posted 2012-11-13T08:20:39.020

Reputation: 51