LaravelPackages.net
Acme Inc.
Toggle sidebar
adman9000/laravel-cryptoexchange

Cryptoexchange Trading integration for Laravel

9
2
About adman9000/laravel-cryptoexchange

adman9000/laravel-cryptoexchange is a Laravel package for cryptoexchange trading integration for laravel. It currently has 2 GitHub stars and 9 downloads on Packagist. Install it with composer require adman9000/laravel-cryptoexchange. Discover more Laravel packages by adman9000 or browse all Laravel packages to compare alternatives.

Last updated

laravel-cryptoexchange

Crypto trading via multiple exchanges for Laravel

Install

Install via Composer

composer require adman9000/laravel-cryptoexchange

Requires

https://github.com/adman9000/laravel-binance

https://github.com/adman9000/laravel-cryptopia

https://github.com/adman9000/laravel-kraken

https://github.com/adman9000/laravel-bittrex

Features

Price tickers, markets and currencies

Allows consistent interaction between multiple cryptoexchange APIs. Currently works with Binance, Kraken, Bittrex, Cryptopia.

Usage

Pass the exchange name in as the first parameter on the constructor, API key and secret as 2nd & 3rd if needed.

$exchange = new Exchange('kraken', $key, $secret);
$data = $exchange->getCurrencies();

Returned data will be consistently in the following format:

[
'success' => boolean,
'fail' => boolean,
'errors' => array(),
'data' => array()
]
Comments