Bitcoin transactions to the network

-1

New to bitcoins is it possible to send transactions to the network without having a local node installed and how I'm coding in c#

user31889

Posted 2016-01-25T19:30:46.837

Reputation: 31

Answers

0

is it possible to send transactions to the network without having a local node installed

Definetely yes.

and how

  • Open socket connection to someone ip:8333
  • Handshake
  • Send tx
  • Close connection
  • Quit

amaclin

Posted 2016-01-25T19:30:46.837

Reputation: 5 763

Thanks amaclin, do you have an example, Im running this in a console program, thanksuser31889 2016-01-25T20:55:02.047

You maight take a look at this git: https://github.com/GeorgeKimionis/BitcoinLib

Richard 2016-01-26T00:08:23.347

Thanks Richard but as far as I understand BitcoinLib requires that you install Bitcoin Core or at least a full node on your systemuser31889 2016-01-26T22:07:33.440