| 1 | <?php |
||
| 9 | class Exchanges extends Api |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @param array $params |
||
| 13 | * @return array |
||
| 14 | * @throws Exception |
||
| 15 | */ |
||
| 16 | 1 | public function getExchanges(array $params = []): array |
|
| 20 | |||
| 21 | /** |
||
| 22 | * @return array |
||
| 23 | * @throws Exception |
||
| 24 | */ |
||
| 25 | 1 | public function getList(): array |
|
| 29 | |||
| 30 | /** |
||
| 31 | * @param string $id |
||
| 32 | * @return array |
||
| 33 | * @throws Exception |
||
| 34 | */ |
||
| 35 | 1 | public function getExchange(string $id): array |
|
| 39 | |||
| 40 | /** |
||
| 41 | * @param string $id |
||
| 42 | * @param array $params |
||
| 43 | * @return array |
||
| 44 | * @throws Exception |
||
| 45 | */ |
||
| 46 | 1 | public function getTickers(string $id, array $params = []): array |
|
| 50 | |||
| 51 | /** |
||
| 52 | * @param string $id |
||
| 53 | * @param array $params |
||
| 54 | * @return array |
||
| 55 | * @throws Exception |
||
| 56 | */ |
||
| 57 | 1 | public function getStatusUpdates(string $id, array $params = []): array |
|
| 61 | |||
| 62 | /** |
||
| 63 | * @param string $id |
||
| 64 | * @param string $days |
||
| 65 | * @return array |
||
| 66 | * @throws Exception |
||
| 67 | */ |
||
| 68 | 1 | public function getVolumeChart(string $id, string $days): array |
|
| 72 | } |
||
| 73 |