mirror of
https://github.com/discountry/ritmex-bot.git
synced 2026-09-09 16:28:06 +00:00
321 B
321 B
<?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";
?>