Releases: denpamusic/php-bitcoinrpc
Releases · denpamusic/php-bitcoinrpc
php-bitcoinrpc v2.0.8
- Fixed missing splat operator on synchronous request done via magic calls.
php-bitcoinrpc v2.0.7
- Fixed bug in multi-wallet RPC call with async requests.
- Changed 'pass' variable to 'password' for consistency with denpa/laravel-bitcoinrpc.
php-bitcoinrpc v2.0.6
- Added ability to use multi-wallet RPC calls (see wiki and README, thanks @M-Shahbaz for feature request)
php-bitcoinrpc v2.0.5
- Switched to GuzzleHttp 6.3.x branch
- Minor fixes
php-bitcoinrpc v2.0.4
- Improved parseKey() method of ResponseArray trait.
php-bitcoinrpc v2.0.3
- Implemented ability to use keys in
first(string $key)
andlast(string $key)
methods in ResponseArray trait. - Optimized exception handling
- Small CS improvements and fixes
php-bitcoinrpc v2.0.2
- Removed dependency on deprecated codeclimate reporter.
- CS fixes
php-bitcoinrpc v2.0.1
- Added support for wildcards in key. e. g.
$response->get('transactions.*.address');
- Added flatten() and sum() response methods.
- Added toBtc(), toSatoshi() and toFixed() helpers. e. g.
\Denpa\Bitcoin\Client::toSatoshi(0.1);
- Fixed count.
php-bitcoinrpc v2.0.0
First release of php-bitcoinrpc v2.x branch
- Added Bitcoind Response object that contains various useful helper methods like first() or has() and provides array and invoker access.
- Added BitcoindException Exception that gets thrown on error message from Bitcoin Core
- Improved exception handling
- Improved async request
- Minor bugfixes
php-bitcoinrpc v2.0.0rc1
- Improved Response object
- Bugfixes