Download the PHP package blocktrail/blocktrail-sdk without Composer
On this page you can find all versions of the php package blocktrail/blocktrail-sdk. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download blocktrail/blocktrail-sdk
More information about blocktrail/blocktrail-sdk
Files in blocktrail/blocktrail-sdk
Package blocktrail-sdk
Short Description The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API
License MIT
Informations about the package blocktrail-sdk
BlockTrail PHP SDK
This is the BlockTrail PHP SDK. This SDK contains methods for easily interacting with the BlockTrail API. Below are examples to get you started. For additional examples, please see our official documentation at https://dev.btc.com/docs/php
Upgrading from v2.x to v3.0.0
IMPORTANT v3.0.0
introduces a new DEFAULT wallet encryption, please make sure you upgrade the SDK everywhere you're using it!!
Upgrading from v1.x to v2.0.0
IMPORTANT v2.0.0
has a few BC breaks, please check docs/CHANGELOG.md!!
Upgrading from v1.2.x to v1.3.0
IMPORTANT v1.3.0
adds the option to choose a fee strategy and by default chooses DYNAMIC, please check docs/CHANGELOG.md for the details!!
IMPORTANT! FLOATS ARE EVIL!!
As is best practice with financial data, The API returns all values as an integer, the Bitcoin value in Satoshi's. In PHP even more than in other languages it's really easy to make mistakes whem converting from float to integer etc!
When doing so it's really important that you use the bcmath
or gmp
libraries to avoid weird rounding errors!
The BlockTrail SDK has some easy to use functions to do this for you, we recommend using these
and we also strongly recommend doing all Bitcoin calculation and storing of data in integers
and only convert to/from Bitcoin float values for displaying it to the user.
A bit more about this can be found in our documentation.
Requirements
The SDK requires PHP 5.6+ and the Intl, GMP and BCMath PHP extensions.
To install these on Ubuntu use:
BCMath should already be part of the default php5 package
On Windows you need to uncomment the extensions in your php.ini
if they are not already enabled:
Installation
To install the SDK, you will need to be using Composer in your project. If you aren't using Composer yet, it's really simple! Here's how to install composer and the BlockTrail PHP SDK.
Next, require Composer's autoloader, in your application, to automatically load the BlockTrail SDK in your project:
Or if put the following in your composer.json
:
Windows Developers
A note for windows developers: you may encounter an issue in php with cURL and SSL certificates, where cURL is unable to verify a server's cert with a CA ((error 60)[http://curl.haxx.se/libcurl/c/libcurl-errors.html]).
Too often the suggested solution is to disable ssl cert verification in cURL, but this completely defeats the point of using SSL. Instead you should take two very simple steps to solve the issue permanently:
- download
cacert.pem
from the curl website. This is a bundle of trusted CA root certs extracted from mozilla.org. Save it in a folder within your php installation. - open your
php.ini
and add/edit the following line (use an absolute path to where you placed the cert bundle):
(Optional) Use libsecp256k1
The underlying bitcoin-php
library that is used to sign transactions can use libsecp256k1
for (A LOT) faster signing of transactions.
If the secp256k1-php
PHP extension is installed it will be automatically used and will greatly improve performance!
The installation is a bit cumbersome though and because libsecp256k1
still changes a lot building might not always work!
If you can get it to install; AWESOME, if not, have patience while we're working on figuring out how to provide installers for them.
https://github.com/Bit-Wasp/secp256k1-php#to-install
MAKE SURE TO RUN THE TESTSUITE OF secp256k1-php
AFTER THE INSTALL BEFORE ENABLING THE EXTENSION!!
Usage
Please visit our official documentation at https://dev.btc.com/docs/php for the usage.
Support and Feedback
Be sure to visit the BlockTrail API official documentation website for additional information about our API.
If you find a bug, please submit the issue in Github directly. BlockTrail-PHP-SDK Issues
If you need additional assistance, contact one of our developers at [email protected].
Unit Tests and Coding Style
The project follows the PSR2 coding style, which can easily be validated with ./vendor/bin/phpcs --standard=./phpcs.xml -n -a ./src/
.
Unit Tests are created with PHPunit and can be ran with ./vendor/bin/phpunit
Release
License
The BlockTrail PHP SDK is released under the terms of the MIT license. See LICENCE.md for more information or see http://opensource.org/licenses/MIT.
All versions of blocktrail-sdk with dependencies
ext-intl Version *
ext-gmp Version *
ext-bcmath Version *
ext-gd Version *
ext-dom Version *
ext-curl Version *
bitwasp/bitcoin Version v0.0.34.1
btccom/justencrypt Version v0.2.0
btccom/cashaddress Version v0.0.3
mdanter/ecc Version v0.4.*
guzzlehttp/guzzle Version 6.*
99designs/http-signatures-guzzlehttp Version 2.0.*
rych/hash_pbkdf2-compat Version ~1.0
ramsey/array_column Version ~1.1
dompdf/dompdf Version 0.6.*
endroid/qrcode Version 1.5.*
blocktrail/cryptojs-aes-php Version 0.1.*
spomky-labs/php-aes-gcm Version v1.2.0