diff --git a/src/electrumx.js b/src/electrumx.js index 035e417..af2f00e 100644 --- a/src/electrumx.js +++ b/src/electrumx.js @@ -142,7 +142,7 @@ class ElectrumX { * (async () => { * try { * let balance = await bchjs.Electrumx.balance('bitcoincash:qrdka2205f4hyukutc2g0s6lykperc8nsu5u2ddpqf'); - * console.log(utxo); + * console.log(balance); * } catch(error) { * console.error(error) * } @@ -159,7 +159,7 @@ class ElectrumX { * (async () => { * try { * let balance = await bchjs.Electrumx.balance(['bitcoincash:qrdka2205f4hyukutc2g0s6lykperc8nsu5u2ddpqf', 'bitcoincash:qpdh9s677ya8tnx7zdhfrn8qfyvy22wj4qa7nwqa5v']); - * console.log(utxo); + * console.log(balance); * } catch(error) { * console.error(error) * } diff --git a/src/price.js b/src/price.js index dcf094d..c571132 100644 --- a/src/price.js +++ b/src/price.js @@ -58,7 +58,7 @@ class Price { * let current = await bchjs.Price.getUsd(); * console.log(current); * } catch(err) { - * console.err(err) + * console.error(err) * } *})() * @@ -94,7 +94,7 @@ class Price { * let current = await bchjs.Price.rates(); * console.log(current); * } catch(err) { - * console.err(err) + * console.error(err) * } *})() * @@ -128,7 +128,7 @@ class Price { * @apiGroup Price * @apiDescription Return current price of BCHA in USD. * This endpoint gets the USD price of XEC from the Coinex API. The price - * denominated in BCHA comes from bch-api, so it has a better chance of + * denominated in BCHA comes from bch-api, so it has a better chance of * working in Tor. * * @apiExample Example usage: @@ -137,7 +137,7 @@ class Price { * let current = await bchjs.Price.getBchaUsd(); * console.log(current); * } catch(err) { - * console.err(err) + * console.error(err) * } *})() * @@ -150,7 +150,7 @@ class Price { this.axiosOptions ) // console.log(`response.data: ${JSON.stringify(response.data, null, 2)}`) - + const bchaPrice = response.data.usd * 1000000 // Convert XEC denomination to BCHA denomination @@ -161,7 +161,7 @@ class Price { } } - /** + /** * @api price.getXecUsd() getXecUsd() * @apiName Price getXecUsd() * @apiGroup Price @@ -175,13 +175,13 @@ class Price { * let current = await bchjs.Price.getXecUsd(); * console.log(current); * } catch(err) { - * console.err(err) + * console.error(err) * } *})() * - * // 0.00021234 + * // 0.00021234 */ - async getXecUsd () { + async getXecUsd () { try { const response = await this.axios.get( `${this.restURL}price/bchausd`, @@ -210,7 +210,7 @@ class Price { * let current = await bchjs.Price.getBchUsd(); * console.log(current); * } catch(err) { - * console.err(err) + * console.error(err) * } *})() *