2017 © Pedro Peláez
 

library blocktrail-sdk

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

image

blocktrail/blocktrail-sdk

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  • Friday, July 27, 2018
  • by blocktrail
  • Repository
  • 10 Watchers
  • 35 Stars
  • 14,600 Installations
  • PHP
  • 3 Dependents
  • 0 Suggesters
  • 39 Forks
  • 27 Open issues
  • 100 Versions
  • 11 % Grown

The README.md

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, (*1)

Latest Stable Version Latest Unstable Version License, (*2)

Build Status, (*3)

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!!, (*4)

Upgrading from v1.x to v2.0.0

IMPORTANT v2.0.0 has a few BC breaks, please check docs/CHANGELOG.md!!, (*5)

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!!, (*6)

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!, (*7)

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., (*8)

use Blocktrail\SDK\BlocktrailSDK;

echo "123456789 Satoshi to BTC: " . BlocktrailSDK::toBTC(123456789) . " \n";
echo "1.23456789 BTC to Satoshi: " . BlocktrailSDK::toSatoshi(1.23456789) . " \n";

A bit more about this can be found in our documentation., (*9)

Requirements

The SDK requires PHP 5.6+ and the Intl, GMP and BCMath PHP extensions.
To install these on Ubuntu use:, (*10)

sudo apt-get install php5-bcmath php5-intl php5-gmp
sudo php5enmod mcrypt

BCMath should already be part of the default php5 package, (*11)

On Windows you need to uncomment the extensions in your php.ini if they are not already enabled:, (*12)

extension=php_intl.dll  
extension=php_gmp.dll  

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., (*13)

# Install Composer
curl -sS https://getcomposer.org/installer | php

# Add the BlockTrail SDK as a dependency
php composer.phar require blocktrail/blocktrail-sdk

Next, require Composer's autoloader, in your application, to automatically load the BlockTrail SDK in your project:, (*14)

require 'vendor/autoload.php';
use Blocktrail\SDK\BlocktrailSDK;

Or if put the following in your composer.json:, (*15)

"blocktrail/blocktrail-sdk": "1.2.*"

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:, (*16)

  1. 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.
  2. open your php.ini and add/edit the following line (use an absolute path to where you placed the cert bundle):
    curl.cainfo = C:\php\certs\cacert.pem

(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!, (*17)

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., (*18)

https://github.com/Bit-Wasp/secp256k1-php#to-install, (*19)

MAKE SURE TO RUN THE TESTSUITE OF secp256k1-php AFTER THE INSTALL BEFORE ENABLING THE EXTENSION!!, (*20)

Usage

Please visit our official documentation at https://dev.btc.com/docs/php for the usage., (*21)

Support and Feedback

Be sure to visit the BlockTrail API official documentation website for additional information about our API., (*22)

If you find a bug, please submit the issue in Github directly. BlockTrail-PHP-SDK Issues, (*23)

If you need additional assistance, contact one of our developers at support@btc.com., (*24)

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, (*25)

Release

# make sure you've committed everything?
git status

# desired new tag
TAG="v1.1.1"

# strips off the v from your input
TAG=$(echo $TAG | sed 's/^v//g')

# update version number in src/Blocktrail.php
sed -i 's/const SDK_VERSION = "[0-9].[0-9].[0-9]";/const SDK_VERSION = "'$TAG'";/g' src/Blocktrail.php

# commit the updated version number
git commit -am "release v${TAG}"

# tag the version
git tag v$TAG

# push
git push
git push --tags

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., (*26)

The Versions

27/07 2018

dev-test-refactoring

dev-test-refactoring

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

30/04 2018

dev-curl-issues

dev-curl-issues

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

17/04 2018

dev-master

9999999-dev

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

17/04 2018

v3.2.2

3.2.2.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

11/04 2018

v3.2.1

3.2.1.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

11/04 2018

v3.2.0

3.2.0.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

19/03 2018

dev-btccomapi

dev-btccomapi

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

16/03 2018
13/03 2018

dev-fork-blocktrail-backend

dev-fork-blocktrail-backend

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

05/03 2018

dev-2fatoken

dev-2fatoken

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

19/02 2018

dev-remove-discovery

dev-remove-discovery

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

16/02 2018

v3.1.10

3.1.10.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

16/02 2018

dev-release-script

dev-release-script

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

16/02 2018

dev-rest-client

dev-rest-client

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

16/02 2018

dev-cash-address-try-with-prefix

dev-cash-address-try-with-prefix

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

01/02 2018

v3.1.9

3.1.9.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

07/01 2018

dev-handle-topublic-as-if-immutable

dev-handle-topublic-as-if-immutable

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

05/01 2018

dev-cashaddr

dev-cashaddr

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

02/01 2018

v3.1.8

3.1.8.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

30/12 2017

dev-network-instance

dev-network-instance

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

27/12 2017

dev-high-priority-feerate

dev-high-priority-feerate

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

20/12 2017

v3.1.7

3.1.7.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

19/12 2017

dev-size-estimation-tests

dev-size-estimation-tests

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

18/12 2017

v3.1.6

3.1.6.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

13/12 2017

v3.1.5

3.1.5.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

11/12 2017

v3.1.4

3.1.4.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

27/11 2017

dev-phpecc-bump

dev-phpecc-bump

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

27/11 2017

v3.1.3

3.1.3.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

27/11 2017

dev-size-estimation-static-fixtures

dev-size-estimation-static-fixtures

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

27/11 2017

dev-v3-backup-scenarios

dev-v3-backup-scenarios

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

25/11 2017

dev-php7.2

dev-php7.2

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

25/11 2017

dev-size-estimation-data-test

dev-size-estimation-data-test

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

23/11 2017

dev-normalizebip32key-check

dev-normalizebip32key-check

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

23/11 2017

dev-unit-test-sdk

dev-unit-test-sdk

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

23/11 2017

dev-segwit-on-change-only

dev-segwit-on-change-only

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

22/11 2017

dev-segwit-scripts

dev-segwit-scripts

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

07/11 2017

dev-release-v1.x

dev-release-v1.x

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

07/11 2017

v1.3.11

1.3.11.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

07/11 2017

dev-release-v2.x

dev-release-v2.x

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

07/11 2017

v2.1.5

2.1.5.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

07/11 2017

v2.1.6

2.1.6.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

06/11 2017

v1.3.10

1.3.10.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

06/11 2017

v2.1.4

2.1.4.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

06/11 2017

v3.1.2

3.1.2.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

06/11 2017

v1.3.9

1.3.9.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

06/11 2017

dev-input-dont-sign

dev-input-dont-sign

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

06/11 2017

v3.1.1

3.1.1.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

29/09 2017

dev-txbuilder

dev-txbuilder

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

28/09 2017

dev-check-own-backup-key

dev-check-own-backup-key

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

22/09 2017

dev-coveralls

dev-coveralls

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

21/09 2017

dev-scrutinzr

dev-scrutinzr

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

21/09 2017

dev-scrutinizer

dev-scrutinizer

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

04/09 2017

v1.2.x-dev

1.2.9999999.9999999-dev

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

04/09 2017

v1.2.21

1.2.21.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

25/08 2017

v3.1.0

3.1.0.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

25/08 2017

dev-extract-and-test-apinetwork-parsing

dev-extract-and-test-apinetwork-parsing

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

25/08 2017

dev-bcc

dev-bcc

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

25/07 2017

dev-bcc-replay-protection

dev-bcc-replay-protection

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

24/07 2017

dev-split-up-test-files

dev-split-up-test-files

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

27/06 2017

dev-regtest

dev-regtest

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

27/06 2017

v3.0.5

3.0.5.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

23/05 2017

dev-rbf

dev-rbf

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

23/05 2017

dev-fix-travis

dev-fix-travis

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

19/05 2017

v3.0.4

3.0.4.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

12/04 2017

dev-fix-hmac

dev-fix-hmac

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

27/03 2017

dev-bip32-key-network-param

dev-bip32-key-network-param

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

07/03 2017

v3.0.3

3.0.3.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

31/01 2017

dev-debug1

dev-debug1

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

28/01 2017

dev-remove-pr-framework-test

dev-remove-pr-framework-test

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

26/01 2017

dev-framework-test-weekly

dev-framework-test-weekly

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

12/01 2017

dev-rest-client-interface

dev-rest-client-interface

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

20/12 2016

v3.0.2

3.0.2.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

20/12 2016

v3.0.1

3.0.1.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

20/12 2016

v3.0.0

3.0.0.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

06/12 2016

v2.1.3

2.1.3.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

02/12 2016

v2.1.2

2.1.2.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

24/11 2016

dev-release-v2.1.1

dev-release-v2.1.1

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

24/11 2016

v2.1.1

2.1.1.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

21/11 2016

dev-release-v2.1.0

dev-release-v2.1.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

21/11 2016

v2.1.0

2.1.0.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

16/11 2016

dev-wallet-path-from-bip32

dev-wallet-path-from-bip32

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

16/11 2016

dev-wallet-path-from-bip39path

dev-wallet-path-from-bip39path

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

09/11 2016

dev-v3_crypt_1

dev-v3_crypt_1

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

08/11 2016

v1.3.8

1.3.8.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

27/09 2016

v1.3.7

1.3.7.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

15/07 2016

dev-tmp-ruben

dev-tmp-ruben

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

15/07 2016

dev-wallets-v2b

dev-wallets-v2b

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

13/07 2016

v1.3.6

1.3.6.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

11/07 2016

v1.3.5

1.3.5.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

02/06 2016

v1.3.4

1.3.4.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

18/05 2016

v1.3.3

1.3.3.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

17/03 2016

v1.3.2

1.3.2.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

01/03 2016

v1.3.1

1.3.1.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

18/02 2016

v1.3.0

1.3.0.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

27/01 2016

v1.2.20

1.2.20.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

02/11 2015

v1.2.19

1.2.19.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

15/10 2015

v1.2.18

1.2.18.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

07/08 2015

v1.2.17

1.2.17.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

07/07 2015

dev-cli-tool

dev-cli-tool

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature

01/07 2015

v1.2.16

1.2.16.0

The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Oisin Akiboye Conolly

api payment sdk bitcoin blockchain transaction wallet blocktrail bitcoin data multi-signature