REPOSITORY OVERVIEWLive repository statistics
★ 278Stars
⑂ 240Forks
◯ 0Open issues
◉ 278Watchers
26/100
OPENREPOHUB HEALTH SIGNALLimited signals
A transparent discovery signal based on current public GitHub metadata.
Recent activity35% weight
0 Community adoption25% weight
52 Maintenance state20% weight
0 License clarity10% weight
100 Project information10% weight
35 This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
README preview
EasyBitcoin-PHP
A simple class for making calls to Bitcoin's API using PHP.
Getting Started
-
Include easybitcoin.php into your PHP script:
require_once('easybitcoin.php');
-
Initialize Bitcoin connection/object:
$bitcoin = new Bitcoin('username','password');
Optionally, you can specify a host, port. Default is HTTP on localhost port 8332.
$bitcoin = new Bitcoin('username','password','localhost','8332');
If you wish to make an SSL connection you can set an optional CA certificate or leave blank
$bitcoin->setSSL('/full/path/to/mycertificate.cert');
-
Make calls to bitcoind as methods for your object. Examples:
$bitcoin->getinfo();
$bitcoin->getrawtransaction('0e3e2357e806b6cdb1f70b54c3a3a17b6714ee1f0e68bebb44a74b1efd512098',1);
$bitcoin->getblock('000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f');
$bitcoin->bumpfee('f4184fc596403b9d638783cf57adfe4c75c605f6356fbc91338530e9831e9e16', ["fee_rate" => 50]);
Additional Info
-
When a call fails for any reason, it will return false and put the error message in $bitcoin->error
-
The HTTP status code can be found in $bitcoin->status and will either be a valid HTTP status code or will be 0 if cURL was unable to connect.
-
The full response (not usually needed) is stored in $bitcoin->response while the raw JSON is stored in $bitcoin->raw_response
ALGORITHMICALLY RELATEDSimilar Open-Source Projects
Selected from shared topics, language and repository description—not editorial ratings.
The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection API that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.
32/100 healthHas homepageArchived
PHPMIT#reflection
⑂ 18 forks◯ 0 issuesUpdated 1 day ago
Project homepage ↗A PHP class that makes working with images and GD as simple as possible.
84/100 healthRecently updatedActive repository
PHPMIT#gd#image-processing#php
⑂ 378 forks◯ 18 issuesUpdated 3 days ago