Download the PHP package koolm/laravel-bittrex without Composer
On this page you can find all versions of the php package koolm/laravel-bittrex. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package laravel-bittrex
Laravel Bittrex
Communicate with the Bittrex API.
Configuration
Publish the default configuration:
php artisan vendor:publish --provider="Koolm\Bittrex\BittrexServiceProvider"
Add your Bittrex client credentials to the environment variables:
BITTREX_KEY=key
BITTREX_SECRET=secret
Usage
use Koolm\Bittrex\Facades\Bittrex;
// Public API
Bittrex::getMarkets();
Bittrex::getCurrencies();
Bittrex::getTicker($market);
Bittrex::getMarketSummaries();
Bittrex::getMarketSummary($market);
Bittrex::getOrderBook($market, $type);
Bittrex::getMarketHistory($market);
// Market API
Bittrex::buyLimit($market, $quantity, $rate);
Bittrex::sellLimit($market, $quantity, $rate);
Bittrex::cancelOrder($uuid);
Bittrex::getOpenOrders($market);
// Account API
Bittrex::getBalances();
Bittrex::getBalance($currency);
Bittrex::getDepositAddress($currency);
Bittrex::withdraw($currency, $quantity, $address, $paymentid);
Bittrex::getOrder($uuid);
Bittrex::getOrderHistory($market);
Bittrex::getWithdrawalHistory($currency);
Bittrex::getDepositHistory($currency);
See https://bittrex.com/Home/Api for the documentation.
All versions of laravel-bittrex with dependencies
PHP Build Version
Package Version
The package koolm/laravel-bittrex contains the following files
Loading the files please wait ....