Gas
import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';
The RPC API enables you to query the gas price for a specific block or hash.
Gas Price
Returns gas price for a specific
block_height
orblock_hash
.
Using
[null]
will return the most recent block's gas price.
method:
gas_price
params:
[block_height]
,["block_hash"]
, or[null]
[block_height]
["block_hash"]
[null]
What could go wrong?
When API request fails, RPC server returns a structured error response with a limited number of well-defined error variants, so client code can exhaustively handle all the possible error cases. Our JSON-RPC errors follow verror convention for structuring the error response:
Heads up
The fields
code
,data
, andmessage
in the structure above are considered legacy ones and might be deprecated in the future. Please, don't rely on them.
Here is the exhaustive list of the error variants that can be returned by gas_price
method:
ERROR_TYPE
| ERROR_CAUSE
| Reason | Solution |
HANDLER_ERROR | UNKNOWN_BLOCK | The requested block has not been produced yet or it has been garbage-collected (cleaned up to save space on the RPC node) |
|
REQUEST_VALIDATION_ERROR | PARSE_ERROR | Passed arguments can't be parsed by JSON RPC server (missing arguments, wrong format, etc.) |
|
INTERNAL_ERROR | INTERNAL_ERROR | Something went wrong with the node itself or overloaded |
|