You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The hex value of the priority fee needed to be included in a block
Example
fromqan.qan.output_max_priority_fee_per_gasimportOutputMaxPriorityFeePerGas# TODO update the JSON string belowjson="{}"# create an instance of OutputMaxPriorityFeePerGas from a JSON stringoutput_max_priority_fee_per_gas_instance=OutputMaxPriorityFeePerGas.from_json(json)
# print the JSON string representation of the objectprint(OutputMaxPriorityFeePerGas.to_json())
# convert the object into a dictoutput_max_priority_fee_per_gas_dict=output_max_priority_fee_per_gas_instance.to_dict()
# create an instance of OutputMaxPriorityFeePerGas from a dictoutput_max_priority_fee_per_gas_from_dict=OutputMaxPriorityFeePerGas.from_dict(output_max_priority_fee_per_gas_dict)