2017-25 © Pedro Peláez
 

library laravel-bittrex

A simple wrapper to seamlessly communicate with the Bittrex API

image

koolm/laravel-bittrex

A simple wrapper to seamlessly communicate with the Bittrex API

  • Monday, June 11, 2018
  • by JasonK
  • Repository
  • 1 Watchers
  • 0 Stars
  • 1 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Laravel Bittrex

Communicate with the Bittrex API., (*1)

Configuration

Publish the default configuration:, (*2)

php artisan vendor:publish --provider="Koolm\Bittrex\BittrexServiceProvider"

Add your Bittrex client credentials to the environment variables:, (*3)

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., (*4)

The Versions

11/06 2018

dev-master

9999999-dev

A simple wrapper to seamlessly communicate with the Bittrex API

  Sources   Download

MIT

The Requires

 

by Jason Koolman

laravel api php crypto exchange bittrex

11/06 2018

1.0.0

1.0.0.0

A simple wrapper to seamlessly communicate with the Bittrex API

  Sources   Download

MIT

The Requires

 

by Jason Koolman

laravel api php crypto exchange bittrex