eth_maxPriorityFeePerGas
Last updated
curl --request POST \
--url https://mainnet.valuechain.xyz \
--header 'Content-Type: application/json' \
--data '{"jsonrpc": "2.0", "id": 1, "method": "eth_maxPriorityFeePerGas", "params": []}'const options = {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({"jsonrpc": "2.0", "id": 1, "method": "eth_maxPriorityFeePerGas", "params": []})
};
fetch('https://mainnet.valuechain.xyz', options)
.then((res) => res.json())
.then((res) => console.log(res))
.catch((err) => console.error(err));import requests
url = "https://mainnet.valuechain.xyz"
payload = {
"jsonrpc": "2.0",
"id": 1,
"method": "eth_maxPriorityFeePerGas",
"params": []
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)