Skip to content

Instantly share code, notes, and snippets.

View moesalih's full-sized avatar

MOΞ moesalih

View GitHub Profile
@moesalih
moesalih / Ethereum Gas Price.js
Created May 17, 2021 14:04
Ethereum Gas Price - Scriptable
// Variables used by Scriptable.
// These must be at the very top of the file. Do not edit.
// icon-color: deep-blue; icon-glyph: link;
const req = new Request('https://www.gasnow.org/api/v3/gas/price')
let json = await req.loadJSON()
let price = Math.round(json.data.fast/1000000000)
let hueRange = Math.min(price / 300, 1)