samyan / coinbase-pro

Coinbase Pro 客户端

1.1 2020-12-18 20:38 UTC

This package is auto-updated.

Last update: 2024-09-19 04:47:51 UTC


README

Latest Stable Version Total Downloads License

适用于 PHP 7.0+ 的 Coinbase Pro 基本客户端

安装

composer.json 中要求该软件包

"require": {
    "samyan/coinbase-pro": "1.*"
},

基本用法

use Samyan\ApiAuth;
use Samyan\Coinbase;

$auth = new ApiAuth('YOUR_API_KEY', 'YOUR_SECRET_KEY', 'YOUR_PASSPHRASE');
$coinbaseClient = new Coinbase($auth, false, false);

$result = $coinbaseClient->withdrawal('0.05', 'BTC', 'bc1qzep2wle7f9ane6aa2kchvnu5r2z4340h09ypx7');

实现 API 列表

  • getServerTime
  • listAccounts
  • getAccount
  • getCurrentExchangeLimits
  • listWithdrawals
  • getWithdrawal
  • withdrawal
  • getFeeEstimate