Skip to content

A PHP API for interacting with Ripple

License

Notifications You must be signed in to change notification settings

kilvn/ripple-api

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ripple API

A PHP API for interacting with the XRP Ledger

Installation

The preferred method is via composer. Follow the installation instructions if you do not already have composer installed. Once composer is installed, execute the following command in your project root to install this library:

Installation is possible using Composer.

If you don't already use Composer, you can download the composer.phar binary:

> curl -sS https://getcomposer.org/installer | php

Then install the library:

> composer require kilvn/ripple-api -vvv

Additional examples are available in the examples directory

Usage

Use the Ripple

$address = "";
$secret_key = "";

$ripple = new \IEXBase\RippleAPI\Ripple($address, $secret_key = "");

//$account = $ripple->getAccount();
//dump($account);
$balance = $ripple->getAccountBalances();
dump($balance);

Features

  • Forked from iexbase/ripple-api, transfered to english and fixed some bug.
  • Issue rippled API requests
  • Listen to events on the XRP Ledger (transaction, ledger, etc.)
  • Sign and submit transactions to the XRP Ledger

More Information

Donations(iexbase)

Ripple: rKhWrsiQpUhcdjH3CkM8feHxcrsjSnEx9m

About

A PHP API for interacting with Ripple

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%