Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lessmore92/php-ripple-lib

PHP API for interacting with the XRP Ledger
https://github.com/lessmore92/php-ripple-lib

Last synced: about 1 month ago
JSON representation

PHP API for interacting with the XRP Ledger

Awesome Lists containing this project

README

        

# php-ripple-lib
PHP API for interacting with the XRP Ledger

Upgrade guzzle to version 7.*

Min php supported version 7.2

## Installation
`composer require lessmore92/php-ripple-lib`

## Sample Usage
```php
require_once "vendor/autoload.php";

$options = [
'server' => 'https://s.altnet.rippletest.net:51234',
'timeOut' => 5,
];

$api = new \Lessmore92\Ripple\RippleAPI($options);
$server = $api->serverInfo();
var_dump($server);

$address = 'rEdhDpVvmryJcMNcFTzXW3hAmiCkUXUru6';
$balance = $api->accountInfo($address)->balance->toXrp();
var_dump($balance);

$txs = $api->accountTx($address, []);
var_dump($txs);

$fee = $api->getFee();
var_dump($fee);

```