Overview

Namespaces

  • Sotr
    • Crypto
      • Bitstamp
      • Btce

Classes

  • Sotr\Crypto\AbstractApi
  • Sotr\Crypto\AbstractRequestSigner
  • Sotr\Crypto\AccountBalance
  • Sotr\Crypto\Bitstamp\BitstampApi
  • Sotr\Crypto\Bitstamp\BitstampRequestSigner
  • Sotr\Crypto\Btce\BtceApi
  • Sotr\Crypto\Btce\BtceCurrencyPairResolver
  • Sotr\Crypto\Btce\BtceRequestSigner
  • Sotr\Crypto\CurrencyPair
  • Sotr\Crypto\Ticker
  • Sotr\Crypto\TimestampNonceGenerator

Interfaces

  • Sotr\Crypto\CurrencyPairResolverInterface
  • Sotr\Crypto\ExchangeApiInterface
  • Sotr\Crypto\NonceGeneratorInterface
  • Sotr\Crypto\RequestSignerInterface
  • Overview
  • Namespace
  • Class
 1: <?php
 2: namespace Sotr\Crypto;
 3: 
 4: use Sotr\Crypto\CurrencyPair;
 5: 
 6: interface CurrencyPairResolverInterface
 7: {
 8:     /**
 9:      * Returns the exchange-specific text
10:      * representation of the given currency
11:      * pair.
12:      *
13:      * @param   Sotr\Crypto\CurrencyPair    $pair
14:      * @return  string
15:      * @throws  RuntimeException
16:      */
17:     public function resolve(CurrencyPair $pair);
18: }
19: 
API documentation generated by ApiGen