[Gas] kaia_lowerBoundGasPrice
Returns lower bound gas price.
JSONRPC: kaia_lowerBoundGasPrice
Request
- application/json
Body
params array
Responses
- 200
Returns lower bound gas price.
- application/json
- Schema
- Example (from schema)
Schema
error
object
result hex
Lower bound gas price.
{
"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/kaia/lowerBoundGasPrice' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"method": "kaia_lowerBoundGasPrice",
"id": 1,
"jsonrpc": "2.0",
"params": []
}'
- CURL
curl -L 'https://public-en-kairos.node.kaia.io/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"method": "kaia_lowerBoundGasPrice",
"id": 1,
"jsonrpc": "2.0",
"params": [
null
]
}'
ResponseClear