Skip to content

dividendcash/php-dvdrpc

 
 

Repository files navigation

Simple Dividend JSON-RPC client.

Installation

Run php composer.phar require cppdevcrypto/php-dividendrpc in your project directory or add following lines to composer.json

"require": {
    "cppdevcrypto/php-dividendrpc": "^2.0"
}

and run php composer.phar install.

Requirements

PHP 7.0 or higher

Usage

Create new object with url as parameter

/**
 * Don't forget to include composer autoloader by uncommenting line below
 * if you're not already done it anywhere else in your project.
 **/
// require 'vendor/autoload.php';

use Cppdevcrypto\Dividend\Client as DividendClient;

$Dividendd = new DividendClient('http://rpcuser:rpcpassword@localhost:19998/');

or use array to define your Dividendd settings

/**
 * Don't forget to include composer autoloader by uncommenting line below
 * if you're not already done it anywhere else in your project.
 **/
// require 'vendor/autoload.php';

use Cppdevcrypto\Dividend\Client as DividendClient;

$Dividendd = new DividendClient([
    'scheme'   => 'http',                 // optional, default http
    'host'     => 'localhost',            // optional, default localhost
    'port'     => 19998,                  // optional, default 19998
    'user'     => 'dividendcashrpc',      // required
    'password' => 'rpcpassword',          // required
    'ca'       => '/etc/ssl/ca-cert.pem'  // optional, for use with https scheme
]);
/**
 * Get block info.
 */
$block = $Dividendd->getBlock('000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f');

$block('hash')->get();     // 000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f
$block['height'];          // 0 (array access)
$block->get('tx.0');       // 4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b
$block->count('tx');       // 1
$block->has('version');    // key must exist and CAN NOT be null
$block->exists('version'); // key must exist and CAN be null
$block->contains(0);       // check if response contains value
$block->values();          // array of values
$block->keys();            // array of keys
$block->random(1, 'tx');   // random block txid
$block('tx')->random(2);   // two random block txid's
$block('tx')->first();     // txid of first transaction
$block('tx')->last();      // txid of last transaction

/**
 * Send transaction.
 */
$result = $Dividendd->sendToAddress('mmXgiR6KAhZCyQ8ndr2BCfEq1wNG2UnyG6', 0.1);
$txid = $result->get();

/**
 * Get transaction amount.
 */
$result = $Dividendd->listSinceBlock();
$dividend = $result->sum('transactions.*.amount');
$divtoshi = \Cppdevcrypto\Dividend\to_divtoshi($dividend);

To send asynchronous request, add Async to method name:

$Dividendd->getBlockAsync(
    '000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f',
    function ($response) {
        // success
    },
    function ($exception) {
        // error
    }
);

You can also send requests using request method:

/**
 * Get block info.
 */
$block = $Dividendd->request('getBlock', '000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f');

$block('hash');            // 000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f
$block['height'];          // 0 (array access)
$block->get('tx.0');       // 4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b
$block->count('tx');       // 1
$block->has('version');    // key must exist and CAN NOT be null
$block->exists('version'); // key must exist and CAN be null
$block->contains(0);       // check if response contains value
$block->values();          // get response values
$block->keys();            // get response keys
$block->first('tx');       // get txid of the first transaction
$block->last('tx');        // get txid of the last transaction
$block->random(1, 'tx');   // get random txid

/**
 * Send transaction.
 */
$result = $Dividendd->request('sendtoaddress', 'mmXgiR6KAhZCyQ8ndr2BCfEq1wNG2UnyG6', 0.06);
$txid = $result->get();

or requestAsync method for asynchronous calls:

$Dividendd->requestAsync(
    'getBlock',
    '000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f',
    function ($response) {
        // success
    },
    function ($exception) {
        // error
    }
);

Multi-Wallet RPC

/**
 * Get wallet2.dat balance.
 */
$balance = $Dividendd->wallet('wallet2.dat')->getbalance();

echo $balance->get(); // 0.10000000

Helpers

Package provides following helpers to assist with value handling.

to_dividend()

Converts value in divtoshi to dividend.

echo Cppdevcrypto\Dividend\to_dividend(100000); // 0.00100000

to_divtoshi()

Converts value in dividend to divtoshi.

echo Cppdevcrypto\Dividend\to_divtoshi(0.001); // 100000

to_udvd()

Converts value in dividend to udvd/bits.

echo Cppdevcrypto\Dividend\to_udvd(0.001); // 1000.0000

to_mdvd()

Converts value in dividend to mdvd.

echo Cppdevcrypto\Dividend\to_mdvd(0.001); // 1.0000

to_fixed()

Trims float value to precision without rounding.

echo Cppdevcrypto\Dividend\to_fixed(0.1236, 3); // 0.123

License

This product is distributed under MIT license.

Donations

If you like this project, please consider donating:
DVD: DKyuMrEnnwCnYNU1b58fHoh34CKcstqrxL
BTC: 1BkThcnmn4jyst6kyMdLbHvR86yx2xidhR

❤Thanks for your support!❤