bedri / bitfinex-v1

Bitfinex API 封装 V1

v1.0.1 2022-02-09 10:57 UTC

This package is auto-updated.

Last update: 2024-09-04 17:16:52 UTC


README

Bitfinex API 封装 V1

我从某处(记不清楚了,抱歉)获取了这个 API,并对其进行了一些修改以满足自己的需求。

安装

composer require bedri/bitfinex-v1

用法

<?php

// Autoload files using the Composer autoloader.
require_once __DIR__ . '/../../vendor/autoload.php';

use Bitfinex\BitfinexV1;

$apiKey     = 'x';
$apiSecret  = 'y';

$bitfinex = new BitfinexV1($apiKey, $apiSecret);

print_r($bitfinex->platform_status());