You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 lines
292 B

  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Exchanges;
  4. use App\Utils\Money\CurrencyPair;
  5. use App\Utils\Order\Book\OrderBook;
  6. interface MarketInterface
  7. {
  8. public function getPair(): CurrencyPair;
  9. public function getOrderBook(): OrderBook;
  10. public function getFee(): float;
  11. }