bitcoind-php icon indicating copy to clipboard operation
bitcoind-php copied to clipboard

Low level PHP wrapper around bitcoind

Results 10 bitcoind-php issues
Sort by recently updated
recently updated
newest added

user can catch the error rather than return error 500 if your bitcoin server went down

PRing this for your consideration - noticed some weird errors from bitcoind when you send an unknown RPC command, figured it could be interesting to run integration tests against bitcoind...

It could be a good idea for such noobies as as me to add `require_once` installation instructions. Its real pain in the ass to figure out how to start working...

I can run these commands with curl in command line. But can not with php code.

The `php://temp` stream is not read from the beginning without issuing a seek command. There are some unexpected consequences of this behavior. For example, calling `$response->getBody()->getContents()` twice will return null...

I ran into problems with the curl driver. I iterate through some addresses and fire the 'getreceivedbyaddress' command. The first address gave me the correct output but as soon as...

travis-ci is building PR's, but doesn't post any status on the pull request.

Is there a way to safe some lines of code? As example: ``` $command = new \Nbobtc\Command\Command; $client = new \Nbobtc\Http\Client('http://***:***@localhost:18332'); $command = new $command('validateaddress', $request->input('address')); $response = $client->sendCommand($command); $contents...