Search found 2 matches

Go to advanced search

by maesitos
Fri Feb 16, 2018 3:36 pm
Forum: Development & Technical Discussion
Topic: bitcoin.com api for check price
Replies: 2
Views: 2443

Re: bitcoin.com api for check price

https://apiv2.bitcoinaverage.com/indices/local/ticker/BCHUSD
https://apiv2.bitcoinaverage.com/indices/local/ticker/BCHEUR



#!/usr/bin/env ruby
uri = URI.parse("https://apiv2.bitcoinaverage.com/indices/local/ticker/BCHUSD")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true

request ...
by maesitos
Fri Feb 16, 2018 2:57 pm
Forum: Development & Technical Discussion
Topic: How to accept a 0 confirmations transaction
Replies: 1
Views: 1766

How to accept a 0 confirmations transaction

We are integrating Bitcoin Cash in our business (I'll disclose the URL once it's ready in production) and the site is now waiting till the first confirmation to accept the payment. From what I understand I can trust a 0 confirmation tx if I wait long enough to know that the transaction I see is the ...

Go to advanced search