Back to Ccxt

Coinone Markets

wiki/examples/php/coinone-markets.md

4.5.52321 B
Original Source
php
<?php

include './ccxt.php';

$exchange = new \ccxt\coinone(array(
   // 'verbose' => true, // uncomment for verbose output
));

$markets = $exchange->load_markets();

var_dump($markets);
echo "\n" . $exchange->name . " supports " . count($markets) . " pairs\n";

?>