questions/blockchain/page/18
I had the same problem. Instead ethereum:web3 Meteor package ...READ MORE
You include ether to send in the ...READ MORE
I believe the issue is the reuse ...READ MORE
def get_spot_price(self, **params): """https://developers.coinbase.com/api/v2#get-spot-price""" ...READ MORE
You can try the following examples on ...READ MORE
I followed here and it is done. https://github.com/openblockchain/obc-peer/issues/885 Configure ...READ MORE
Upgrade to the lastest version of ethereum-serpent ...READ MORE
os.listdir(path) return names, not fullpaths change parseBlockFile(file) to fullpath = os.path.join(path,file) if os.path.isfile(fullpath) ...READ MORE
You can try this code transferTokensTo: function(contract, address_from, ...READ MORE
It turns out that you need to create ...READ MORE
Try this: print r.json()['address'],' has ', r.json()['n_tx'], 'tr ...READ MORE
print in python3 is a method not a ...READ MORE
It is due to the fact you ...READ MORE
Outputting the Trade will just show you ...READ MORE
The web3.js library has dependencies on bignumber.js and crypto-js.js (See dependencies here). You will ...READ MORE
In Windows, you will find geth.exe in ...READ MORE
selfdestruct takes one argument an address and then sends all ...READ MORE
I had a similiar issue connecting this API, ...READ MORE
Yes you can do this by modifying ...READ MORE
On the line where it shows error, ...READ MORE
When you pass multiple arguments, you need ...READ MORE
You have already made the test async ...READ MORE
You can do it with something like ...READ MORE
The Web3 API uses error first style callbacks. Your ...READ MORE
I am developing a smart contract using ...READ MORE
Alternatively you could assign this to a local variable ...READ MORE
With any approach, you need a bitcoin ...READ MORE
Convert string private key into bytes[]: ECKey key = ...READ MORE
Try the following: // Initialize contract variable with ...READ MORE
The calling contract will need the ABI ...READ MORE
In the for loop, your indexing going ...READ MORE
You are missing the padding in the ...READ MORE
You need to use the state of ...READ MORE
Try this func (t *SimpleChaincode) setDetails(stub shim.ChaincodeStubInterface, args ...READ MORE
In your generate_address_from_public_key_hash method, the checksum should be over ...READ MORE
You can restrict access to the port ...READ MORE
The answer is let a=web3.personal.newAccount('!@superpassword') H ...READ MORE
Remove the constant modifier from getArray(). constant functions do not write state ...READ MORE
<?php require_once(dirname(__FILE__) . '/../lib/Coinbase.php'); // Create an application at ...READ MORE
According to bitcoin.it (https://en.bitcoin.it/wiki/Bitcoin_symbol), The ISO 4217 currency code for ...READ MORE
Hey, Renu353. There could be more than ...READ MORE
You need to do import the Web3 ...READ MORE
Hey, I found a simple solution for ...READ MORE
Works fine for me: pragma solidity ^0.4.0; contract Test ...READ MORE
//public-key var address = eckey.getBitcoinAddress().toString(); var privateKeyBytesCompressed = privateKeyBytes.slice(0); ...READ MORE
The problem actually was with the input ...READ MORE
Blockchain is not just any chain of any blocks. Blockchain is when there ...READ MORE
This should work: #!/usr/bin/env python import getpass import json import requests ...READ MORE
This code worked for me: pragma solidity ^0.4.2; contract ...READ MORE
You can do something like: infuraProvider.getBlockNumber().then(function(blockNumber) { ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.