def allcoins(bot, update): btc_value = get_crypto_coin("btc") update.message.reply_text("Preço Bitcoin: ${0:.2f}".format(btc_value)) bch_value = get_crypto_coin("bch") update.message.reply_text("Preço BitcoinCash: ${0:.2f}".format(bch_value)) dash_value = get_crypto_coin("dash") update.message.reply_text("Preço Dashcoin: ${0:.2f}".format(dash_value)) eth_value = get_crypto_coin("eth") update.message.reply_text("Preço Ethereum: ${0:.2f}".format(eth_value)) ltc_value = get_crypto_coin("ltc") update.message.reply_text("Preço Litecoin: ${0:.2f}".format(ltc_value)) xrp_value = get_crypto_coin("xrp") update.message.reply_text("Preço Ripple: ${0:.2f}".format(xrp_value)) xmr_value = get_crypto_coin("xmr") update.message.reply_text("Preço Monero: ${0:.2f}".format(xmr_value)) zec_value = get_crypto_coin("zec") update.message.reply_text("Preço Zcash: ${0:.2f}".format(zec_value))
def zcash(bot, update): zec_value = get_crypto_coin("zec") update.message.reply_text("Preço Zcash: ${0:.2f}".format(zec_value))
def ripple(bot, update): xrp_value = get_crypto_coin("xrp") update.message.reply_text("Preço Ripple: ${0:.2f}".format(xrp_value))
def monero(bot, update): xmr_value = get_crypto_coin("xmr") update.message.reply_text("Preço Monero: ${0:.2f}".format(xmr_value))
def litecoin(bot, update): ltc_value = get_crypto_coin("ltc") update.message.reply_text("Preço Litecoin: ${0:.2f}".format(ltc_value))
def ethereum(bot, update): eth_value = get_crypto_coin("eth") update.message.reply_text("Preço Ethereum: ${0:.2f}".format(eth_value))
def dash(bot, update): dash_value = get_crypto_coin("dash") update.message.reply_text("Preço Dashcoin: ${0:.2f}".format(dash_value))
def bitcoincash(bot, update): bch_value = get_crypto_coin("bch") update.message.reply_text("Preço BitcoinCash: ${0:.2f}".format(bch_value))
def bitcoin(bot, update): btc_value = get_crypto_coin("btc") update.message.reply_text("Preço Bitcoin: ${0:.2f}".format(btc_value))