2017 © Pedro Peláez
 

library laravel-bittrex

Bittrex API wrapper for Laravel

image

angelkurten/laravel-bittrex

Bittrex API wrapper for Laravel

  • Tuesday, October 24, 2017
  • by angelkurten
  • Repository
  • 1 Watchers
  • 0 Stars
  • 35 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 18 Forks
  • 0 Open issues
  • 6 Versions
  • 0 % Grown

The README.md

Laravel-Bittrex

Start trading on Bittrex right away using your favorite PHP framework., (*1)

Installation

composer require angelkurten/laravel-bittrex., (*2)

Add the service provider to your config/app.php:, (*3)

'providers' => [
    AngelKurten\Bittrex\BittrexServiceProvider::class,
],

...run php artisan vendor:publish to copy the config file., (*4)

Edit the config/bittrex.php or add Bittrex api and secret in your .env file, (*5)

BITTREX_KEY={YOUR_API_KEY}
BITTREX_SECRET={YOUR_API_SECRET}

Add the alias to your config/app.php:, (*6)

'aliases' => [
    'Bittrex' => Angelkurten\Bittrex\Bittrex::class,
],

Usage

Please refer to the Api Documentation for more info, or read the docblocks !, (*7)

use Angelkurten\Bittrex\Bittrex;

// public API methods
Bittrex::getMarkets();
Bittrex::getCurrencies();
Bittrex::getTicker($marker);
Bittrex::getMarketSummaries();
Bittrex::getMarketSummary($market);
Bittrex::getOrderBook($market, $type, $depth = 20);
Bittrex::getMarketHistory($market);

// Public API 2.0 methods
Bittrex::getValidChartDataTickIntervals();
Bittrex::getChartData($market, $tickInterval = 'hour');

// market API methods
Bittrex::buyLimit($market, $quantity, $rate);
Bittrex::sellLimit($market, $quantity, $rate);
Bittrex::cancelOrder($uuid);
Bittrex::getOpenOrders($market = null);

// account API methods
Bittrex::getBalances();
Bittrex::getBalance($currency);
Bittrex::getDepositAddress($currency);
Bittrex::withdraw($currency, $quantity, $address, $paymentId = null);
Bittrex::getOrder($uuid);
Bittrex::getOrderHistory($market = null);
Bittrex::getWithdrawalHistory($currency = null);
Bittrex::getDepositHistory($currency = null);

// For multiple accounts
Bittrex::setAuthKey($key);
Bittrex::setAuthSecret($secret);

This package is provided as-is. Do with it what you want ! PR's will be looked into. I personally believe in freedom and equality, which is one of the reasons I'm in crypto. It's also the reason I'm sharing most of the reusable code I write., (*8)

If you're feeling generous, you can always leave a tip. Any satoshi will do. May the chain be with you. And may you be with the chain., (*9)

The Versions

24/10 2017

dev-master

9999999-dev

Bittrex API wrapper for Laravel

  Sources   Download

MIT

The Requires

 

by Avatar angelkurten

24/10 2017

v1.2.2

1.2.2.0

Bittrex API wrapper for Laravel

  Sources   Download

MIT

The Requires

 

by Avatar angelkurten

28/09 2017

v1.2.1

1.2.1.0

Bittrex API wrapper for Laravel

  Sources   Download

MIT

The Requires

 

by Avatar angelkurten

28/09 2017

v1.2

1.2.0.0

Bittrex API wrapper for Laravel

  Sources   Download

MIT

The Requires

 

by Avatar angelkurten

28/08 2017

v1.0.1

1.0.1.0

Bittrex API wrapper for Laravel

  Sources   Download

MIT

The Requires

 

20/05 2017

v1.0.0

1.0.0.0

Bittrex API wrapper for Laravel

  Sources   Download

MIT

The Requires