pepijnolivier/laravel-bittrex
Composer 安装命令:
composer require pepijnolivier/laravel-bittrex
包简介
Bittrex API wrapper for Laravel
README 文档
README
Start trading on Bittrex right away using your favorite PHP framework.
Installation
composer require pepijnolivier/laravel-bittrex.
Add the service provider to your config/app.php:
'providers' => [
Pepijnolivier\Bittrex\BittrexServiceProvider::class,
],
...run php artisan vendor:publish to copy the config file.
Edit the config/bittrex.php or add Bittrex api and secret in your .env file
BITTREX_KEY={YOUR_API_KEY}
BITTREX_SECRET={YOUR_API_SECRET}
Add the alias to your config/app.php:
'aliases' => [
'Bittrex' => Pepijnolivier\Bittrex\Bittrex::class,
],
Usage
Please refer to the Api Documentation for more info, or read the docblocks !
use Pepijnolivier\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);
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.
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.
BTC: 1N5ET46r5Z4HdfhRjGMp7SpEMPes9S1H9n
pepijnolivier/laravel-bittrex 适用场景与选型建议
pepijnolivier/laravel-bittrex 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.89k 次下载、GitHub Stars 达 22, 最近一次更新时间为 2017 年 05 月 19 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 pepijnolivier/laravel-bittrex 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 pepijnolivier/laravel-bittrex 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 2.89k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 23
- 点击次数: 25
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-05-19