-
Notifications
You must be signed in to change notification settings - Fork 0
/
coinbasepro.php
29 lines (24 loc) · 1.06 KB
/
coinbasepro.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
namespace ccxt;
// PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN:
// https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code
use Exception as Exception; // a common import
class coinbasepro extends gdax {
public function describe () {
return array_replace_recursive (parent::describe (), array (
'id' => 'coinbasepro',
'name' => 'Coinbase Pro',
'urls' => array (
'test' => 'https://api-public.sandbox.pro.coinbase.com',
'logo' => 'https://user-images.githubusercontent.com/1294454/41764625-63b7ffde-760a-11e8-996d-a6328fa9347a.jpg',
'api' => 'https://api.pro.coinbase.com',
'www' => 'https://pro.coinbase.com/',
'doc' => 'https://docs.pro.coinbase.com/',
'fees' => array (
'https://docs.pro.coinbase.com/#fees',
'https://support.pro.coinbase.com/customer/en/portal/articles/2945310-fees',
),
),
));
}
}