Latest questions in Blockchain

0 votes
1 answer

First block of bitcoin block gives empty string

Most likely the first byte is not ...READ MORE

Sep 4, 2018 in Blockchain by slayer
• 29,350 points
693 views
0 votes
1 answer

How to get genesis block value at new bitcoin source?

chainparams.cpp contains a line of code that ...READ MORE

Sep 4, 2018 in Blockchain by digger
• 26,740 points
830 views
0 votes
1 answer

BitcoinJ generate address from private key

Convert string private key into bytes[]: ECKey key = ...READ MORE

Sep 4, 2018 in Blockchain by slayer
• 29,350 points
2,127 views
0 votes
2 answers

Passing AJAX GET results to location

Set a variable in global scope and ...READ MORE

Sep 4, 2018 in Blockchain by eddy
535 views
0 votes
1 answer

Bitcoin private key: translate from bash to perl

use bignum; # Get arbitrary precision arithmetic # ...READ MORE

Sep 4, 2018 in Blockchain by slayer
• 29,350 points
1,080 views
0 votes
1 answer

Trying to understand nbits value from stratum protocol

You are right, nbits is current network difficulty. Difficulty encoding ...READ MORE

Sep 3, 2018 in Blockchain by Perry
• 17,100 points
1,000 views
+1 vote
1 answer

Is there a way to send funds from a specific bitcoin address in a wallet?

I'll answer my own question, It was unbelievably ...READ MORE

Sep 3, 2018 in Blockchain by Perry
• 17,100 points
1,288 views
0 votes
1 answer

Bitcoin sendfrom does not process transaction

Try this; $wammount = floatval(trim($_POST['wammount'])); READ MORE

Sep 3, 2018 in Blockchain by digger
• 26,740 points
403 views
+2 votes
5 answers

How do I parse this JSON array in PHP?

/** * Firstly collect the ...READ MORE

Sep 3, 2018 in Blockchain by slayer
• 29,350 points
6,031 views
0 votes
1 answer

client_id in Bitstamp's API

You can use this Ruby code: require 'open-uri' require ...READ MORE

Sep 3, 2018 in Blockchain by digger
• 26,740 points
1,065 views
0 votes
1 answer

Can't open a to big .csv file in python

You can't "split a file", but you can read ...READ MORE

Sep 3, 2018 in Blockchain by slayer
• 29,350 points
821 views
0 votes
1 answer

Vertically centering text in a div

Try this code: .smallUnitBox { ...READ MORE

Sep 3, 2018 in Blockchain by digger
• 26,740 points
636 views
0 votes
1 answer

PHP Bitcoin validate from form

isValid($addr, $version) $addr: A bitcoin address $version: The ...READ MORE

Sep 3, 2018 in Blockchain by slayer
• 29,350 points
1,336 views
0 votes
1 answer

Angular 4: not able to iterate over an array

Replace this : <div *ngFor="let price of prices"> ...READ MORE

Sep 3, 2018 in Blockchain by digger
• 26,740 points
870 views
0 votes
1 answer

Extract data from Json url result php

Try this code, it worked for me: $balance ...READ MORE

Sep 3, 2018 in Blockchain by slayer
• 29,350 points
9,420 views
0 votes
1 answer

How to return Google protobuff object using python Django

Protocol buffer is a binary format. You ...READ MORE

Sep 3, 2018 in Blockchain by digger
• 26,740 points
995 views
+1 vote
3 answers

How to convert timestamp to readable format in blockchain.info?

You are talking about the block_time property ...READ MORE

Apr 29, 2019 in Blockchain by Raghu
10,131 views
0 votes
1 answer

How to get the number of tokens in the Bitcoin network?

This information can easily be calculated by ...READ MORE

Aug 31, 2018 in Blockchain by Christine
• 15,790 points
902 views
0 votes
1 answer

BitcoinJ instance shutting down before transaction confirmation

Instead of attaching to an individual transaction ...READ MORE

Aug 31, 2018 in Blockchain by Christine
• 15,790 points
446 views
0 votes
1 answer

How to compute SHA256 hash for bitcoin header

header_hex = "02000000aaf8ab82362344f49083ee4edef795362cf135293564c4070000000000000000c009bb6222e9bc4cdb8f26b2e8a2f8d163509691a4038fa692abf9a474c9b21476800755c02e17181fe6c1c3" # Decode header hex into ...READ MORE

Aug 31, 2018 in Blockchain by digger
• 26,740 points
1,341 views
0 votes
2 answers

Coinbase button creation and callback

You can use the following code for generating ...READ MORE

Sep 3, 2018 in Blockchain by Nitika
1,219 views
0 votes
1 answer

(0.7/0.001)%10 does not return 0

bcmath module can help you bcmod(bcdiv("0.7", "0.001"), "10"); // ...READ MORE

Aug 31, 2018 in Blockchain by digger
• 26,740 points
699 views
0 votes
1 answer

What encoding or data type can be used to get alphanumeric string in elixir?

Integers in Elixir are arbitrary precision integers, ...READ MORE

Aug 31, 2018 in Blockchain by digger
• 26,740 points
600 views
0 votes
2 answers

sendmany bitcoin command problem in Dynamic PHP array

You might consider spliiting that array up ...READ MORE

Sep 3, 2018 in Blockchain by Tenneb
753 views
0 votes
1 answer

Unable to establish session using blockchain-wallet-service

I have the same error. It gets ...READ MORE

Aug 31, 2018 in Blockchain by Sumit
770 views
0 votes
1 answer

Stuck while using call_back_address and ipn url in coinpayment.net gateway

To make use of this api, just ...READ MORE

Aug 31, 2018 in Blockchain by digger
• 26,740 points
3,278 views
0 votes
1 answer

MtGox Gem Failing to Login

Try using a smaller nonce for v1 ...READ MORE

Aug 31, 2018 in Blockchain by slayer
• 29,350 points
393 views
0 votes
1 answer

How to get property of non object in Coinbase API

First, your sendMoney() call is stored into ...READ MORE

Aug 31, 2018 in Blockchain by digger
• 26,740 points
557 views
0 votes
1 answer

mingw32 set command not working

From standard cmd, the unquoted original works just ...READ MORE

Aug 31, 2018 in Blockchain by slayer
• 29,350 points
454 views
0 votes
1 answer

How to create a version control for a simple array using blockchain?

For tracking changes you may simply save ...READ MORE

Aug 31, 2018 in Blockchain by Christine
• 15,790 points
615 views
0 votes
1 answer

Can I fork an existing blockchain?

You know it's important to realize what ...READ MORE

Aug 31, 2018 in Blockchain by Christine
• 15,790 points
448 views
0 votes
2 answers

Coinbase-php createButton() throws 401 error

I found the explanation for this on ...READ MORE

Aug 30, 2018 in Blockchain by Naman
897 views
0 votes
1 answer

Coinbase currency_exchange error

This is the fix: $(document).ready(function () { ...READ MORE

Aug 30, 2018 in Blockchain by digger
• 26,740 points
769 views
0 votes
1 answer

Required parameter missing: account error

You need to swap out the place ...READ MORE

Aug 30, 2018 in Blockchain by slayer
• 29,350 points
1,326 views
0 votes
1 answer

Bitcoinjs browser compile creates an empty file

Try the following: Create index.js with the ...READ MORE

Aug 30, 2018 in Blockchain by digger
• 26,740 points
419 views
0 votes
1 answer

Bitcoin payment system not working

I found the problem, it was actually ...READ MORE

Aug 30, 2018 in Blockchain by slayer
• 29,350 points
661 views
0 votes
1 answer

Problem while compiling BitcoinJS for browser

The problem iss that you are using browserify wrong ...READ MORE

Aug 30, 2018 in Blockchain by digger
• 26,740 points
1,070 views
0 votes
1 answer

Cant locate english.txt file while intalling Python Bitcoin module

This is related to a pybitcointools bug where the ...READ MORE

Aug 30, 2018 in Blockchain by slayer
• 29,350 points
630 views
0 votes
1 answer

How to make POST request on C# to blockr.io

By default UploadValues doesn't format the data ...READ MORE

Aug 30, 2018 in Blockchain by digger
• 26,740 points
1,476 views
0 votes
1 answer

Can not find sayText method in QtBitcoinTrader

You've not added the ApplicationServices and CoreFoundation frameworks to your build, ...READ MORE

Aug 30, 2018 in Blockchain by slayer
• 29,350 points
618 views
0 votes
1 answer

How can I create an online wallet without any 3rd party API on my PHP server?

With any approach, you need a bitcoin ...READ MORE

Aug 30, 2018 in Blockchain by Perry
• 17,100 points
2,446 views
0 votes
1 answer

Is there a way to get a trade history report from the Bitfinex API?

You can still fetch your private trades ...READ MORE

Aug 30, 2018 in Blockchain by Perry
• 17,100 points
1,488 views
0 votes
1 answer

Intrinsic gas too low and exceeds block limit

If you are talking about the public ...READ MORE

Aug 29, 2018 in Blockchain by digger
• 26,740 points
2,693 views
0 votes
1 answer

Kraken Api, withdrawal issue “Invalid asset”

asset need to be specified as lowercase, so you ...READ MORE

Aug 29, 2018 in Blockchain by Sumit
1,182 views
0 votes
1 answer

Android Socket connection to bitcoin node

The checkSum field is mandatory and fellow ...READ MORE

Aug 29, 2018 in Blockchain by slayer
• 29,350 points
634 views
0 votes
1 answer

How to generate litecoin using pycoin?

In the secret_exponent_to_wif function def secret_exponent_to_wif(se, compressed): ...READ MORE

Aug 29, 2018 in Blockchain by digger
• 26,740 points
1,762 views
0 votes
1 answer

How to receive Json callback?

Try using $get = file_get_contents("php://input"); READ MORE

Aug 29, 2018 in Blockchain by slayer
• 29,350 points
919 views
0 votes
1 answer

How to access bitcoin Daemon from other services?

You don't need all these things to ...READ MORE

Aug 29, 2018 in Blockchain by digger
• 26,740 points
1,781 views
0 votes
1 answer

How to generate coin address using bitcoin-ruby?

The only difference between the addresses is ...READ MORE

Aug 29, 2018 in Blockchain by slayer
• 29,350 points
603 views
0 votes
1 answer

Not able to generate WIF from extended private key

I found the answer to this in the ...READ MORE

Aug 29, 2018 in Blockchain by digger
• 26,740 points
959 views