mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 18:23:55 +00:00
13 lines
229 B
Python
13 lines
229 B
Python
""" Kraken exchange subclass """
|
|
import logging
|
|
from typing import Dict
|
|
|
|
from freqtrade.exchange import Exchange
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class Kraken(Exchange):
|
|
|
|
_params: Dict = {"trading_agreement": "agree"}
|