Gas Optimizer
Installation
SKILL.md
Usage Examples
1. Real-Time Gas Price Monitoring
from scripts.gas_estimator import GasEstimator
estimator = GasEstimator()
prices = estimator.get_gas_prices(chain_id=1)
print(f"Fast: {prices['fast']} Gwei")
print(f"Standard: {prices['standard']} Gwei")
print(f"Economical: {prices['economical']} Gwei")
print(f"Base Fee: {prices['base_fee']} Gwei")