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
/rates
base
Currently, there is no way for the ASE to specify the base currency for the /rates API. In the MASE, we are returning an object like:
{ base: 'USD', rates: { EUR: 1.1602, ZAR: 17.3792 } }
However, the base would need to be different based on what is passed in the /rates API, eg: http://cloud-nine-wallet/rates?base=EUR would return
http://cloud-nine-wallet/rates?base=EUR
{ base: 'EUR', rates: { USD: 0.8619, ZAR: ... } }
make sure to update the code to the MASE to handle this new parameter as well.
The text was updated successfully, but these errors were encountered:
mkurapov
Successfully merging a pull request may close this issue.
Currently, there is no way for the ASE to specify the base currency for the
/rates
API.In the MASE, we are returning an object like:
However, the
base
would need to be different based on what is passed in the/rates
API, eg:http://cloud-nine-wallet/rates?base=EUR
would returnmake sure to update the code to the MASE to handle this new parameter as well.
The text was updated successfully, but these errors were encountered: