Browse Source
Merge pull request #5211 from FrancisPouliot/master
Add Bylls BTC/CAD rates
regtest_lnd
ghost43
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
10 additions and
0 deletions
-
electrum/currencies.json
-
electrum/exchange_rate.py
|
|
@ -386,6 +386,9 @@ |
|
|
|
"TWD", |
|
|
|
"USD" |
|
|
|
], |
|
|
|
"Bylls": [ |
|
|
|
"CAD" |
|
|
|
], |
|
|
|
"CoinCap": [ |
|
|
|
"USD" |
|
|
|
], |
|
|
|
|
|
@ -238,6 +238,13 @@ class BlockchainInfo(ExchangeBase): |
|
|
|
return dict([(r, Decimal(json[r]['15m'])) for r in json]) |
|
|
|
|
|
|
|
|
|
|
|
class Bylls(ExchangeBase): |
|
|
|
|
|
|
|
async def get_rates(self, ccy): |
|
|
|
json = await self.get_json('bylls.com', '/api/price?from_currency=BTC&to_currency=CAD') |
|
|
|
return {'CAD': Decimal(json['public_price']['to_price'])} |
|
|
|
|
|
|
|
|
|
|
|
class Coinbase(ExchangeBase): |
|
|
|
|
|
|
|
async def get_rates(self, ccy): |
|
|
|