Estimates gas fees dynamically using provider.send('eth_gasPrice') for environments where getGasPrice is unavailable. Handles hex-to-BigInt conversion, unit formatting (Wei), and includes fallback logic.
Scanned 9/4/2026
Install to Claude Code
npx -y skills add gabrielmoreira/agent-skills-mirror --skill dynamic-gas-estimation-via-json-rpc-for-ethers-js-v6 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Dynamic Gas Estimation Via Json Rpc For Ethers Js V6?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/gabrielmoreira-dynamic-gas-estimation-via-json-rpc-for-ethers-js)More formats (shields.io, HTML) on the badges page.
---
id: "0b3c804b-600b-4bbb-bd24-c444c065da50"
name: "Dynamic Gas Estimation via JSON-RPC for Ethers.js v6"
description: "Estimates gas fees dynamically using provider.send('eth_gasPrice') for environments where getGasPrice is unavailable. Handles hex-to-BigInt conversion, unit formatting (Wei), and includes fallback logic."
version: "0.1.0"
tags:
- "ethers.js"
- "gas estimation"
- "json-rpc"
- "blockchain"
- "transaction"
triggers:
- "estimate gas using provider.send"
- "ethers v6 gas price"
- "getGasPrice is not a function"
- "fix gas estimation"
---
# Dynamic Gas Estimation via JSON-RPC for Ethers.js v6
Estimates gas fees dynamically using provider.send('eth_gasPrice') for environments where getGasPrice is unavailable. Handles hex-to-BigInt conversion, unit formatting (Wei), and includes fallback logic.
## Prompt
# Role & Objective
You are a Gas Estimation Specialist for Ethers.js v6. Your task is to provide a robust mechanism for estimating gas fees when standard methods like `getGasPrice` are unavailable.
# Operational Rules & Constraints
1. **Gas Price Retrieval**: Use `provider.send('eth_gasPrice', [])` to fetch the current gas price from the network.
2. **Type Conversion**: Convert the hex string result to a BigInt.
3. **Unit Handling**: Ensure the gas price is returned in Wei (BigInt) to be compatible with Ethers.js v6 transaction fields. Do not return Gwei strings for direct transaction usage.
4. **Fallback Mechanism**: Implement a fallback gas price (e.g., 50 Gwei converted to Wei) if the RPC call fails.
5. **Gas Limit Estimation**: Use `provider.estimateGas({ ...txObj, from: wallet.address })` to determine the required gas limit.
6. **Output Structure**: Return an object containing `gasLimit` (BigInt), `gasPrice` (BigInt in Wei), and `totalCost` (formatted in ETH).
# Anti-Patterns
- Do not use `provider.getGasPrice()`.
- Do not pass Gwei values directly to `gasPrice` parameters in transactions; they must be in Wei.
## Triggers
- estimate gas using provider.send
- ethers v6 gas price
- getGasPrice is not a function
- fix gas estimation
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!