vaneves / bitcoin-php
There is no license information available for the latest version (0.0.1) of this package.
Library for lists of transactions Bitcoin
0.0.1
2018-02-28 03:21 UTC
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2024-12-19 10:31:33 UTC
README
Installing
Via Composer
composer require vaneves/bitcoin-php
Usage
Create Address
Creates a new address.
use Vaneves\Bitcoin\Network; use Vaneves\Bitcoin\Bitcoin; use Vaneves\Bitcoin\BitcoinException; try { $network = new Network('http://username:password@127.0.0.1:18332'); $bitcoin = new Bitcoin($network); $address = $bitcoin->account('vaneves')->newAddress(); echo $address; } catch (BitcoinException $e) { echo $e->getMessage(); } catch (\Exception $e) { echo $e->getMessage(); }
List Transactions
List all transactions received and sent.
use Vaneves\Bitcoin\Network; use Vaneves\Bitcoin\Bitcoin; use Vaneves\Bitcoin\BitcoinException; try { $network = new Network('http://username:password@127.0.0.1:18332'); $bitcoin = new Bitcoin($network); $offset = 0; $limit = 100; $transactions = $bitcoin->transaction()->paginate($offset, $limit); print_r($transactions); } catch (BitcoinException $e) { echo $e->getMessage(); } catch (\Exception $e) { echo $e->getMessage(); }
License
The MIT License (MIT)
Donate
Bitcoin address: 1H6ssXbPbLeDVQNf9PqaarTEeG9sjurEgm