-
Notifications
You must be signed in to change notification settings - Fork 0
/
coinbaseprime.php
26 lines (21 loc) · 1005 Bytes
/
coinbaseprime.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
<?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 coinbaseprime extends gdax {
public function describe () {
return array_replace_recursive (parent::describe (), array (
'id' => 'coinbaseprime',
'name' => 'Coinbase Prime',
'urls' => array (
'test' => 'https://api-public.sandbox.prime.coinbase.com',
'logo' => 'https://user-images.githubusercontent.com/1294454/44539184-29f26e00-a70c-11e8-868f-e907fc236a7c.jpg',
'api' => 'https://api.prime.coinbase.com',
'www' => 'https://prime.coinbase.com',
'doc' => 'https://docs.prime.coinbase.com',
'fees' => 'https://support.prime.coinbase.com/customer/en/portal/articles/2945629-fees?b_id=17475',
),
));
}
}