このページは英語からの機械翻訳を使用しており、誤りや不明瞭な表現が含まれている可能性があります。最も正確な情報については、オリジナルの英語版をご覧ください。頻繁な更新のため、一部のコンテンツはオリジナルの英語になっている可能性があります。Crowdinでの取り組みに参加して、このページの翻訳改善にご協力ください。 (Crowdin translation page, Contributing guide)
[Gas] klay_gasPrice
Returns a recommended gasPrice for a new transaction.
- Before Magma, returns the fixed UnitPrice
- After Magma, returns the twice of next baseFee (2*baseFee)
- After Kaia, returns slightly buffered baseFee plus recommended tip (BaseFee * (1.10 or 1.15) + eth_maxPriorityFeePerGas)
JSONRPC: klay_gasPrice
Request
- application/json
Body
params array
Responses
- 200
Recommended gas price in kei.
- application/json
- Schema
- Example (from schema)
Schema
error
object
result hex
Recommended gas price in kei.
{
"jsonrpc": "2.0",
"id": 0,
"error": {
"code": -32700,
"message": "Parse error",
"data": "string"
},
"result": "0xAE9F7BCC00"
}
- curl
- python
- nodejs
- java
- Curl
curl -X 'POST' \
'https://public-en-kairos.node.kaia.io' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"method": "klay_gasPrice",
"id": 1,
"jsonrpc": "2.0",
"params": []
}'
- CURL
ResponseClear