- Real-time Gas Prices: Live gas price tracking from HyperEVM network
- Three Speed Tiers: Normal 🚶, Fast 🏃, and Instant ⚡ gas options
- USD Cost Estimates: See transaction costs in USD using live HYPE token prices
- Beautiful UI: Clean, modern interface with HyperEVM branding
- Privacy-First: No tracking, minimal permissions, works completely offline
- Lightweight: Fast and efficient with smart caching
- Auto-refresh: Background updates every minute with rate limiting
Extension Icon with real-time gwei updates:
Extension Popup:
-
Download: Clone or download this repository
git clone https://github.com/Drarox/HyperEVM-Real-Time-Gas.git
-
Chromium-based browsers:
- Open
chrome://extensions/
- Enable "Developer mode"
- Click "Load unpacked"
- Select the extension folder
- Open
-
Firefox:
- Open
about:debugging
- Click "This Firefox"
- Click "Load Temporary Add-on"
- Select the
manifest.json
file
- Open
The extension connects directly to the HyperEVM RPC endpoint to fetch real-time gas prices and displays them in three tiers:
- 🚶 Normal: Current network gas price (base fee)
- 🏃 Fast: Base price + 25% premium for faster confirmation
- ⚡ Instant: Base price + 50% premium for immediate confirmation
USD costs are calculated using live HYPE token prices from CoinGecko API with smart caching to respect rate limits.
storage
: Store gas price data locallyalarms
: Schedule background updates- No tracking permissions: We don't collect any personal data
- ✅ No user tracking or analytics
- ✅ No personal data collection
- ✅ Local data storage only
- ✅ Open source and auditable
- ✅ Minimal API calls with smart caching
The extension only makes requests to:
https://rpc.hyperliquid.xyz/evm
- HyperEVM RPC for gas priceshttps://api.coingecko.com/api/v3/simple/price
- HYPE token price (cached for 60 seconds)
// Formula for USD cost estimation
const gasLimit = 46000; // Standard ERC20 token transfer
const costInHype = (gasPriceGwei * gasLimit) / 1000000000;
const costInUsd = costInHype * hypePrice;
- Gas prices: Updated every 5 seconds via Chrome alarms
- HYPE price: Cached for 60 seconds to respect API limits
- Local storage: Persistent across browser sessions
We welcome contributions! Here's how you can help:
Found a bug? Please open an issue with:
- Browser version and OS
- Steps to reproduce
- Expected vs actual behavior
- Screenshots if applicable
Have an idea? Create a feature request with:
- Clear description of the feature
- Use case and benefits
- Any implementation ideas
- Fork the repository
- Clone your fork:
git clone https://github.com/yourusername/HyperEVM-Real-Time-Gas.git
- Make changes and test locally
- Submit a pull request with:
- Clear description of changes
- Screenshots for UI changes
- Test results
This project is licensed under the GPL-3.0 License - see the LICENSE file for details.
- HyperEVM for the amazing network
- CoinGecko for price data API
- The open-source community for inspiration and tools
⭐ Star this repo if you find it helpful!
Made with ❤️ for the HyperEVM community