HyperEVM Real-Time Gas

A privacy-focused browser extension for tracking real-time gas fees on the HyperEVM network.

Websitegithub
  • 4,503 Raised
  • 447 Views
  • 4 Judges

Categories

  • 01. 🛠️ Public Goods

Description

HyperEVM Real-Time Gas

A privacy-focused browser extension for tracking real-time gas fees on the HyperEVM network.

🚀 Features

  • 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

📸 Preview

Extension Icon with real-time gwei updates:

Extension Popup:

🔧 Installation

Chrome Web Store (Chrome, Edge, Brave, Opera, etc.)

Firefox Add-ons

🎯 How It Works

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.

🔒 Privacy & Security

Minimal Permissions

  • storage: Store gas price data locally
  • alarms: Schedule background updates
  • No tracking permissions: We don't collect any personal data

Privacy-First Design

  • ✅ No user tracking or analytics
  • ✅ No personal data collection
  • ✅ Local data storage only
  • ✅ Open source and auditable
  • ✅ Minimal API calls with smart caching

Network Requests

The extension only makes requests to:

  • https://rpc.hyperliquid.xyz/evm - HyperEVM RPC for gas prices
  • https://api.coingecko.com/api/v3/simple/price - HYPE token price (cached for 60 seconds)

🏗️ Technical Details

Gas Price Calculation

// Formula for USD cost estimation
const gasLimit = 46000; // Standard ERC20 token transfer
const costInHype = (gasPriceGwei * gasLimit) / 1000000000;
const costInUsd = costInHype * hypePrice;

Caching Strategy

  • 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

🙏 Acknowledgments

  • HyperEVM for the amazing network
  • CoinGecko for price data API
  • The open-source community for inspiration and tools