How to broadcast a Bitcoin Gold transaction

1

I'd like to broadcast a signed BTG transaction - In Bitcoin it's very easy to do with tools like coinb.in. Is there a public RPC/API endpoint similar to the following examples where you can broadcast a signed transaction:

  • coinb.in
  • chain.so
  • block.io

ohad serfaty

Posted 2017-11-26T01:06:57.753

Reputation: 123

Answers

1

Bitcoin Gold is a fork of Bitcoin. You can just start up a Bitcoin Gold node and broadcast transactions using sendrawtransaction.

Another option is to use an insight-api.

https://btgexplorer.com/ is a fork of the famous insight block explorer. You can use their API to broadcast your raw transaction using these docs:
https://github.com/bitpay/insight-api#transaction-broadcasting

Send a POST request to https://btgexplorer.com/api/tx/send with rawtx as a parameter.

Monstrum

Posted 2017-11-26T01:06:57.753

Reputation: 1 021

Thats's great, Answers my questions, thanks a lot.ohad serfaty 2017-11-28T14:36:46.460