From 7b030d8e5b9c7d597905c1a31382c5d27c213d81 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sun, 2 Jan 2022 23:09:31 +0000 Subject: [PATCH] :sparkles: Adds current Eth gas price widget --- docs/widgets.md | 28 ++- src/components/Widgets/EthGasPrices.vue | 228 ++++++++++++++++++++++++ src/components/Widgets/WidgetBase.vue | 8 + src/utils/defaults.js | 2 + 4 files changed, 265 insertions(+), 1 deletion(-) create mode 100644 src/components/Widgets/EthGasPrices.vue diff --git a/docs/widgets.md b/docs/widgets.md index 852d516a..7829ce88 100644 --- a/docs/widgets.md +++ b/docs/widgets.md @@ -21,6 +21,7 @@ Dashy has support for displaying dynamic content in the form of widgets. There a - [Public Holidays](#public-holidays) - [TFL Status](#tfl-status) - [Stock Price History](#stock-price-history) + - [ETH Gas Prices](#eth-gas-prices) - [Joke of the Day](#joke) - [XKCD Comics](#xkcd-comics) - [News Headlines](#news-headlines) @@ -129,7 +130,7 @@ Displays the weather (temperature and conditions) for the next few days for a gi **Field** | **Type** | **Required** | **Description** --- | --- | --- | --- -**`apiKey`** | `string` | Required | Your OpenWeatherMap API key. You can get one for free at [openweathermap.org](https://openweathermap.org/) +**`apiKey`** | `string` | Required | Your OpenWeatherMap API key. You can get one at [openweathermap.org](https://openweathermap.org/) or for free via the [OWM Student Plan](https://home.openweathermap.org/students) **`city`** | `string` | Required | A city name to use for fetching weather. This can also be a state code or country code, following the ISO-3166 format **`numDays`** | `number` | _Optional_ | The number of days to display of forecast info to display. Defaults to `4`, max `16` days **`units`** | `string` | _Optional_ | The units to use for displaying data, can be either `metric` or `imperial`. Defaults to `metric` @@ -526,6 +527,31 @@ Shows recent price history for a given publicly-traded stock or share --- +### ETH Gas Prices + +Renders the current Gas cost of transactions on the Ethereum network (in both GWEI and USD), along with recent historical prices. Useful for spotting a good time to transact. Uses data from [ethgas.watch](https://ethgas.watch/) + +

+ +##### Options + +_No config options._ + +##### Example + +```yaml +- type: eth-gas-prices +``` + +##### Info +- **CORS**: 🟢 Enabled +- **Auth**: 🟢 Not Required +- **Price**: 🟢 Free +- **Host**: Managed Instance or Self-Hosted (see [wslyvh/ethgaswatch](https://github.com/wslyvh/ethgaswatch)) +- **Privacy**: ⚫ No Policy Available + +--- + ### Joke Renders a programming or generic joke. Data is fetched from the [JokesAPI](https://github.com/Sv443/JokeAPI) by @Sv443. All fields are optional. diff --git a/src/components/Widgets/EthGasPrices.vue b/src/components/Widgets/EthGasPrices.vue new file mode 100644 index 00000000..3ce6d455 --- /dev/null +++ b/src/components/Widgets/EthGasPrices.vue @@ -0,0 +1,228 @@ + + + + + diff --git a/src/components/Widgets/WidgetBase.vue b/src/components/Widgets/WidgetBase.vue index 3b810030..65610814 100644 --- a/src/components/Widgets/WidgetBase.vue +++ b/src/components/Widgets/WidgetBase.vue @@ -67,6 +67,13 @@ @error="handleError" :ref="widgetRef" /> + import('@/components/Widgets/CryptoWatchList.vue'), CveVulnerabilities: () => import('@/components/Widgets/CveVulnerabilities.vue'), EmbedWidget: () => import('@/components/Widgets/EmbedWidget.vue'), + EthGasPrices: () => import('@/components/Widgets/EthGasPrices.vue'), ExchangeRates: () => import('@/components/Widgets/ExchangeRates.vue'), Flights: () => import('@/components/Widgets/Flights.vue'), GitHubTrending: () => import('@/components/Widgets/GitHubTrending.vue'), diff --git a/src/utils/defaults.js b/src/utils/defaults.js index d952f23c..c353a5bb 100644 --- a/src/utils/defaults.js +++ b/src/utils/defaults.js @@ -213,6 +213,8 @@ module.exports = { cryptoPrices: 'https://api.coingecko.com/api/v3/coins/', cryptoWatchList: 'https://api.coingecko.com/api/v3/coins/markets/', cveVulnerabilities: 'https://www.cvedetails.com/json-feed.php', + ethGasPrices: 'https://ethgas.watch/api/gas', + ethGasHistory: 'https://ethgas.watch/api/gas/trend', exchangeRates: 'https://v6.exchangerate-api.com/v6/', flights: 'https://aerodatabox.p.rapidapi.com/flights/airports/icao/', githubTrending: 'https://gh-trending-repos.herokuapp.com/',