Files
ccxt_with_mt5/ccxt/async_support/fmfwio.py
lz_db 0fab423a18 add
2025-11-16 12:31:03 +08:00

36 lines
1.3 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.async_support.hitbtc import hitbtc
from ccxt.abstract.fmfwio import ImplicitAPI
from ccxt.base.types import Any
class fmfwio(hitbtc, ImplicitAPI):
def describe(self) -> Any:
return self.deep_extend(super(fmfwio, self).describe(), {
'id': 'fmfwio',
'name': 'FMFW.io',
'countries': ['KN'],
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/159177712-b685b40c-5269-4cea-ac83-f7894c49525d.jpg',
'api': {
'public': 'https://api.fmfw.io/api/3',
'private': 'https://api.fmfw.io/api/3',
},
'www': 'https://fmfw.io',
'doc': 'https://api.fmfw.io/',
'fees': 'https://fmfw.io/fees-and-limits',
'referral': 'https://fmfw.io/referral/da948b21d6c92d69',
},
'fees': {
'trading': {
'maker': self.parse_number('0.005'),
'taker': self.parse_number('0.005'),
},
},
})