| Name |
Type |
Description |
Notes |
| var_schema |
str |
A URL to the JSON Schema for this object. |
[optional] [readonly] |
| block_count |
int |
The number of blocks in the requested range. Between 1 and 1024 blocks can be requested in a single query. It will return less than the requested range if not all blocks are available |
[default to 2] |
| newest_block |
str |
The highest number block of the requested range in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions. |
[default to 'latest'] |
| reward_percentiles |
List[int] |
A list of percentile values with a monotonic increase in value. The transactions will be ranked by effective tip per gas for each block in the requested range, and the corresponding effective tip for the percentile will be calculated while taking gas consumption into consideration |
|
from qan.qan.input_fee_history import InputFeeHistory
# TODO update the JSON string below
json = "{}"
# create an instance of InputFeeHistory from a JSON string
input_fee_history_instance = InputFeeHistory.from_json(json)
# print the JSON string representation of the object
print(InputFeeHistory.to_json())
# convert the object into a dict
input_fee_history_dict = input_fee_history_instance.to_dict()
# create an instance of InputFeeHistory from a dict
input_fee_history_from_dict = InputFeeHistory.from_dict(input_fee_history_dict)
[Back to Model list] [Back to API list] [Back to README]