Browse Source

more price sources

bip39-recovery
Gustavo 5 years ago
parent
commit
a073ea6050
  1. 8
      electrum/currencies.json
  2. 14
      electrum/exchange_rate.py

8
electrum/currencies.json

@ -891,5 +891,11 @@
"Zaif": [
"JPY"
],
"itBit": []
"itBit": [],
"Bitragem": [
"BRL"
],
"Biscoint": [
"BRL"
]
}

14
electrum/exchange_rate.py

@ -389,6 +389,20 @@ class Zaif(ExchangeBase):
return {'JPY': Decimal(json['last_price'])}
class Bitragem(ExchangeBase):
async def get_rates(self,ccy):
json = await self.get_json('api.bitragem.com', '/v1/index?asset=BTC&market=BRL')
return {'BRL': Decimal(json['response']['index'])}
class Biscoint(ExchangeBase):
async def get_rates(self,ccy):
json = await self.get_json('api.biscoint.io', '/v1/ticker?base=BTC&quote=BRL')
return {'BRL': Decimal(json['data']['last']['last'])}
def dictinvert(d):
inv = {}
for k, vlist in d.items():

Loading…
Cancel
Save