Skip to content

Stable Release

Compare
Choose a tag to compare
@jaggedsoft jaggedsoft released this 13 Apr 00:37
· 281 commits to master since this release

More constructor options:

Default way

require 'vendor/autoload.php';
$api = new Binance\API("<api key>","<secret>");

Config file (JSON)

Your json should have "api-key" and "api-secret" values set

require 'vendor/autoload.php';
$api = new Binance\API("config.json");