This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Hitbtc; | |
class TradingApi { | |
const HITBTC_API_URL = 'http://api.hitbtc.com'; | |
const HITBTC_TRADING_API_BASE_URI = '/api/1/trading/'; | |
private $key; | |
private $secret; |