We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6915ed commit b9e68b7Copy full SHA for b9e68b7
src/handler.ts
@@ -48,6 +48,7 @@ export async function handleRequest(request: Request) {
48
'eth_submitWork',
49
'eth_submitHashrate',
50
'eth_getProof',
51
+ 'eth_feeHistory',
52
];
53
54
const httpClient = new HttpClient(url, <RequestInit>{
src/httpClient.ts
@@ -59,6 +59,8 @@ export class HttpClient {
59
// Should always be from the latest block
60
case "eth_blockNumber":
61
case "eth_estimateGas":
62
+ case "eth_feeHistory":
63
+ case "eth_gasPrice":
64
defaultBlock = "latest";
65
break;
66
// Extract the blocknumber / label
0 commit comments