Skip to main content

eth_gasPrice

Returns the current gas price on Moonbase Alpha in wei.

Why Moonbase? Build on the Moonbeam testnet for risk-free EVM dApp development and deployment testing with free testnet tokens, full EVM compatibility, XCM testing capabilities, and identical feature set to Moonbeam mainnet.

Use Cases#

The eth_gasPrice method is essential for:

  • Transaction pricing - Set appropriate gas prices
  • Cost estimation - Calculate transaction costs before sending
  • Gas monitoring - Track network congestion
  • DeFi operations - Optimize costs for EVM dApp testing, XCM integration validation, and pre-mainnet deployment verification

Parameters#

This method accepts no parameters.

Request#

{
"jsonrpc": "2.0",
"method": "eth_gasPrice",
"params": [],
"id": 1
}

Returns#

TypeDescription
QUANTITYCurrent gas price in wei (hexadecimal)

Response#

{
"jsonrpc": "2.0",
"id": 1,
"result": "0x3b9aca00"
}

Note: 0x3b9aca00 = 1 Gwei (1,000,000,000 wei)

Code Examples#

curl -X POST https://api-moonbase-alpha.n.dwellir.com/YOUR_API_KEY \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "eth_gasPrice",
"params": [],
"id": 1
}'

Error Handling#

Error CodeMessageDescription
-32603Internal errorNode error