PHP package to access and interact with Cryptoprocessing API.
You can install this package via Composer.
composer require oomag/cryptoprocessing
composer update
//Register new user
$user = Cryptoprocessing\Authentication::register($email,$password);
//Send transaction to different addresses
$transaction = Cryptoprocessing\Transaction::createTransaction($accountId, array(
'from' => [
$mainAddress, $testAddress
],
'to' =>
[
array('amount' => '100','address' => $firstAddress),
array('amount' => '100','address' => $secondAddress)
],
));
The package is available as open source under the terms of the MIT License.