Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
serderovsh committed Sep 11, 2018
2 parents 912859e + d84d6ac commit 9f366c6
Showing 1 changed file with 41 additions and 3 deletions.
44 changes: 41 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,44 @@
# ripple-api
A PHP API for interacting with the XRP Ledger
<h1 align="center">
Ripple API
<br>
</h1>
<h4 align="center">
A PHP API for interacting with the XRP Ledger
</h4>


## 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:

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

Then install the library:

```bash
> composer require iexbase/ripple-api
```

Additional examples are available in the [examples](examples/) directory

## Usage

Use the Ripple

```php
$address = "";
$secret_key = "";

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

dump($ripple->getAccount());
```

## Features

Expand All @@ -8,7 +47,6 @@ A PHP API for interacting with the XRP Ledger
+ Sign and submit transactions to the XRP Ledger

## More Information

+ [Ripple Developer Center](https://ripple.com/build/)

## Donations
Expand Down

0 comments on commit 9f366c6

Please sign in to comment.