64 lines
2.5 KiB
Python
64 lines
2.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN:
|
|
# https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code
|
|
|
|
from ccxt.bybit import bybit
|
|
from ccxt.abstract.bybiteu import ImplicitAPI
|
|
from ccxt.base.types import Any
|
|
|
|
|
|
class bybiteu(bybit, ImplicitAPI):
|
|
|
|
def describe(self) -> Any:
|
|
return self.deep_extend(super(bybiteu, self).describe(), {
|
|
'id': 'bybiteu',
|
|
'name': 'Bybit EU',
|
|
'countries': ['EU'], # European Union
|
|
'version': 'v5',
|
|
'rateLimit': 20,
|
|
'hostname': 'bybit.eu',
|
|
'pro': True,
|
|
'certified': False,
|
|
'urls': {
|
|
'test': {
|
|
'spot': 'https://api-testnet.{hostname}',
|
|
'futures': 'https://api-testnet.{hostname}',
|
|
'v2': 'https://api-testnet.{hostname}',
|
|
'public': 'https://api-testnet.{hostname}',
|
|
'private': 'https://api-testnet.{hostname}',
|
|
},
|
|
'logo': 'https://github.com/user-attachments/assets/97a5d0b3-de10-423d-90e1-6620960025ed',
|
|
'api': {
|
|
'spot': 'https://api.{hostname}',
|
|
'futures': 'https://api.{hostname}',
|
|
'v2': 'https://api.{hostname}',
|
|
'public': 'https://api.{hostname}',
|
|
'private': 'https://api.{hostname}',
|
|
},
|
|
'demotrading': {
|
|
'spot': 'https://api-demo.{hostname}',
|
|
'futures': 'https://api-demo.{hostname}',
|
|
'v2': 'https://api-demo.{hostname}',
|
|
'public': 'https://api-demo.{hostname}',
|
|
'private': 'https://api-demo.{hostname}',
|
|
},
|
|
'www': 'https://www.bybit.com',
|
|
'doc': [
|
|
'https://bybit-exchange.github.io/docs/inverse/',
|
|
'https://bybit-exchange.github.io/docs/linear/',
|
|
'https://github.com/bybit-exchange',
|
|
],
|
|
'fees': 'https://help.bybit.com/hc/en-us/articles/360039261154',
|
|
'referral': 'https://www.bybit.com/invite?ref=XDK12WP',
|
|
},
|
|
'has': {
|
|
'CORS': True,
|
|
'spot': True,
|
|
'margin': True,
|
|
'swap': False,
|
|
'future': False,
|
|
'option': None,
|
|
},
|
|
})
|