We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
async def get_ping_apollo(self,): ping_url = ( settings.dex_apollo_url + "fapi/v1/ping" ) ping_response = await self._get( url=ping_url, params=None, headers=settings.headers ) self.logger.debug("get_ping_apollo %s", ping_response) async def get_quote_apollo(self,): quote_url = ( settings.dex_apollo_url + "/fapi/v1/ticker/price" ) quote_response = await self._get( url=quote_url, params=None, headers=settings.headers ) self.logger.debug("get_quote_apollo %s", quote_response) quote = quote_response['price'] return quote async def get_swap_apollo(self): self.logger.warning("Not available") # $ curl -H "X-MBX-APIKEY: dsdfsdf" -X POST # 'https://fapi/apollox.finance/fapi/v1/order?symbol=BTCUSDT&side=BUY& # type=LIMIT&quantity=1&price=9000&timeInForce=GTC&recvWindow=5000×tamp=1591702613943& # signature= 3c661234138461fcc7a7d8746c6558c9 # 842d4e10870d2ecbedf7777cad694af9' return
The text was updated successfully, but these errors were encountered:
No branches or pull requests
apollo finance
The text was updated successfully, but these errors were encountered: