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 59594b1Copy full SHA for 59594b1
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
@@ -72,6 +72,9 @@ export class HttpClient {
72
case "eth_getStorageAt":
73
defaultBlock = params[2];
74
break;
75
+ case "eth_feeHistory":
76
+ defaultBlock = params[1];
77
+ break;
78
};
79
80
switch (defaultBlock) {
0 commit comments