Most answered questions in Blockchain

0 votes
1 answer

How to resolve Blockchain DNS using Python Requests?

Look at this example: import requests from random import ...READ MORE

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

Not receiving any data from the BitStamp API.

I saw a code online that was ...READ MORE

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

How to convert Bitcoin rate to USD?

You can use blockchain.info API: URL: https://blockchain.info/ticker Response: { "USD" ...READ MORE

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

How to use bitcoin price as place holder in php?

You can do it by providing an ...READ MORE

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

How to get data from Google Finance to Google sheets?

You need to have a from and ...READ MORE

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

Bitcoin transaction “amount is below the current minimum” error

I went through the code and the ...READ MORE

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

Cant Decode Bitcoin Base58 address to byte array

In your for-loop: for (int k = b256.Length ...READ MORE

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

Generating Bitcoin addresses from a xpubkey

Via https://bitcointalk.org/index.php?topic=1242247.0 var pubkey = ExtPubKey.Parse("xpub6CUGRUonZSQ4TWtTMmzXdrXDtypWKiKrhko4egpiMZbpiaQL2jkwSB1icqYh2cfDfVxdx4df189oLKnC5fSwqPfgyP3hooxujYzAu3fDVmz"); var newAddress = pubkey.Derive(0).Derive(0).PubKey.GetAddress(Network.Main); Console.WriteLine(newAddress); It ...READ MORE

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

How to create address in BitcoinLib.

Regarding this specific library and assuming that ...READ MORE

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

How to solve Yobit API connection 503 server error?

Try to use "https://www.yobit.net/api/3/info" URL Instead of ...READ MORE

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

How do i add images in hyperledger?

In your registry, you can Base64-ify your ...READ MORE

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

How can I store picture in hypereldger channel?

Design of relationships between assets, participants and ...READ MORE

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

How to get current value of bitcoin?

You can use json_decode to transform it ...READ MORE

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

Getting error while building Bitcoind on MAC OS

First of all try building a non-GUI ...READ MORE

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

Cant connect Jsonrpc to bitcoin.

I tried the following code and it ...READ MORE

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

Bitcoin transaction “"You must provide a recipient address" ” error.

You need an account with BlockChain to ...READ MORE

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

Bitcoin Wallet address validation using Json and bitcoin/blockexplorer.

The URL isn't returning JSON. So instead ...READ MORE

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

Bitcoin pool mining using stratum

JSON string shouldn't have any spaces. So ...READ MORE

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

Terminating transaction-cli

You can use the -f, -finish <script> which executes ...READ MORE

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

Sending keep-alive packet, bitcoin.

You can use Websocket Eventmachine Client (https://github.com/imanel/websocket-eventmachine-client) gem to ...READ MORE

Aug 20, 2018 in Blockchain by digger
• 26,740 points
617 views
+1 vote
1 answer

How to generate Bitcoin address?

Convert the hex string back to bytes ...READ MORE

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

How to resolve blockchain DNS using Python Requests?

You could use one of their publicly ...READ MORE

Aug 20, 2018 in Blockchain by Omkar
• 69,230 points
1,658 views
0 votes
1 answer

Who decided the rules for Cryptocurrency in the first place?

A single miner can tamper with a ...READ MORE

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

How to parse Json data from remote server?

Yes, you can do it use the ...READ MORE

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

How to install Magento Bitcoin Currency extension on linux box?

Follow these steps to install it: Copy files ...READ MORE

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

OpenSSL i2o_ECPublicKey not working

When your right something in the buffer, ...READ MORE

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

Implementing Giveaways in Blockchain

I have found a similar question. The ...READ MORE

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

How to control bitcoind from another machine?

In your bitcoin.config file replace rpcallowip with ...READ MORE

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

How to convert byte array to hex string?

You are missing the padding in the ...READ MORE

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

How to see bitcoin transaction info?

You can view foreign transactions using bitcoind. Set txindex=1 in ...READ MORE

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

How to use Blockchain receive API without exchange rate?

Your code contains the amount in USD ...READ MORE

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

How to add Bitcoin as currency for my website?

You cannot use BTC as the currency ...READ MORE

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

How to check payment in Blockchain.info wallet?

The above error is probably occurring due ...READ MORE

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

Blockchain peer not able to min block in Azure.

After trying out various ideas, making sure ...READ MORE

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

How to create Quorum rawTransaction?

Unfortunately this capability is not currently supported ...READ MORE

Aug 17, 2018 in Blockchain by Shashank
• 10,400 points
587 views
0 votes
1 answer

Where is query displayed in Hyperledger?

Composer configures the named queries for a ...READ MORE

Aug 17, 2018 in Blockchain by Shashank
• 10,400 points
608 views
0 votes
1 answer

Solidity invalid opcode error

In the for loop, your indexing going ...READ MORE

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

Solidity difference array with and without new keyword.

Creating arrays with variable length in memory ...READ MORE

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

How to get return value from solidity contract?

Once you call a constant function, you ...READ MORE

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

Function not working from class

Try this code:  // Add new block ...READ MORE

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

How do I change default service names in Corda Demobench?

Each Corda node individually advertises the services ...READ MORE

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

Planning to deploy IBM bluemix fabric images on Docker, do I need Amazon ECS or EC2 instances?

Bluemix has an excellent documentation which provides ...READ MORE

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

What files are supported by BigchainDB?

BigchainDB supports .json file format. It can ...READ MORE

Feb 26, 2019 in Blockchain by anonymous
443 views
0 votes
1 answer

How to get return value of external function?

You can do this. I have shared ...READ MORE

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

How to call smart contract methods from transactions?

You can do this using a wrapper. ...READ MORE

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

Encoding integers in solidity

There are different ways to do this ...READ MORE

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

How to access member functions of smart contract using web3?

I have implemented a similar feature and ...READ MORE

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

Why does Blockchain comes under Distributed Ledger Technology instead of being merely a replicated database?

1. Data in a database is generally subject ...READ MORE

Aug 10, 2018 in Blockchain by Christine
• 15,790 points
542 views
+1 vote
1 answer

How to create participant and there identities via rest API in Hyperledger Composer?

If you have already imported an Identity ...READ MORE

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

How do I convert to Crystal ruby's multiple assignments of Array

When decomposing an Array into a multiple ...READ MORE

Aug 10, 2018 in Blockchain by Perry
• 17,100 points
596 views