PHP code example of vaneves / bitcoin-php
1. Go to this page and download the library: Download vaneves/bitcoin-php library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
vaneves / bitcoin-php example snippets
use Vaneves\Bitcoin\Network;
use Vaneves\Bitcoin\Bitcoin;
use Vaneves\Bitcoin\BitcoinException;
try {
$network = new Network('http://username:[email protected]:18332');
$bitcoin = new Bitcoin($network);
$address = $bitcoin->account('vaneves')->newAddress();
echo $address;
} catch (BitcoinException $e) {
echo $e->getMessage();
} catch (\Exception $e) {
echo $e->getMessage();
}
use Vaneves\Bitcoin\Network;
use Vaneves\Bitcoin\Bitcoin;
use Vaneves\Bitcoin\BitcoinException;
try {
$network = new Network('http://username:[email protected]: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();
}
bash
composer