Php Bitcoinrpc Versions Save

Fully unit-tested Bitcoin JSON-RPC client based on GuzzleHttp.

v2.2.0

2 years ago

What's Changed

New Contributors

v2.1.3

3 years ago
  • bump guzzle to 7.0.* (closes #55)

v2.1.2

4 years ago
  • Added ability to set connection timeout

v2.1.1

4 years ago
  • Fixed issue in to_satoshi helper function when dealing with large sums (thanks @partyka1)

v2.1.0

5 years ago

First release of v2.1.x branch.

Note: This release only supports PHP version 7.1 or later.
If you want to continue to use PHP 5.6 or 7.0, use latest release of 2.0.x branch. Please be aware, that PHP 7.0 approaches it's end of life in just 10 days and PHP 5.6 will follow in a month, so upgrade ASAP.
See: http://php.net/supported-versions.php and http://php.net/eol.php

  • Re-implemented client with strict types enabled
  • Improved helper functions.
  • Improved exception handling.
  • Improved async response handling.
  • Fixed some minor bugs.
  • Improved test suite.

v2.0.13

5 years ago
  • Added support for ethereum JSON-RPC (must set 'preserve_case' setting to true) See: #26 #27 Thanks @M-Shahbaz

v2.0.12

5 years ago

v2.0.11

5 years ago
  • Added ability to change response handler class via getResponseHandler() method, when extending Denpa\Bitcoin\Client class. This allows for further response customizations in dependent packages like denpa\laravel-bitcoinrpc. See: BitcoindResponse.php and Response.php
  • Improved namespace structure.

v2.0.10

5 years ago
  • contains(), keys() and values() methods of BitcoindResponse are now context-aware (can be used with dotted-notation path)
  • added helpers to convert bitcoin to mbtc and ubtc/bits (see README)
  • added ability to cast response object to string

v2.0.9

5 years ago
  • Improved handling of asynchronous requests.
  • Separated helper methods from main client class (see Helpers).
  • Minor code improvements.