Skip to content

Commit 400d576

Browse files
committedFeb 13, 2023
Fixed ignored polling override for JsonRpcApiProvider.
1 parent 3145951 commit 400d576

File tree

1 file changed

+6
-70
lines changed

1 file changed

+6
-70
lines changed
 

‎src.ts/providers/provider-jsonrpc.ts

+6-70
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import { AbstractProvider, UnmanagedSubscriber } from "./abstract-provider.js";
2323
import { AbstractSigner } from "./abstract-signer.js";
2424
import { Network } from "./network.js";
2525
import { FilterIdEventSubscriber, FilterIdPendingSubscriber } from "./subscriber-filterid.js";
26+
import { PollingEventSubscriber } from "./subscriber-polling.js";
2627

2728
import type { TypedDataDomain, TypedDataField } from "../hash/index.js";
2829
import type { TransactionLike } from "../transaction/index.js";
@@ -628,6 +629,9 @@ export abstract class JsonRpcApiProvider extends AbstractProvider {
628629
if (sub.type === "pending") { return new FilterIdPendingSubscriber(this); }
629630

630631
if (sub.type === "event") {
632+
if (this._getOption("polling")) {
633+
return new PollingEventSubscriber(this, sub.filter);
634+
}
631635
return new FilterIdEventSubscriber(this, sub.filter);
632636
}
633637

@@ -806,74 +810,6 @@ export abstract class JsonRpcApiProvider extends AbstractProvider {
806810
);
807811
e.info = { error, payload };
808812
return e;
809-
/*
810-
let message = "missing revert data during JSON-RPC call";
811-
812-
const action = <"call" | "estimateGas" | "unknown">(({ eth_call: "call", eth_estimateGas: "estimateGas" })[method] || "unknown");
813-
let data: null | string = null;
814-
let reason: null | string = null;
815-
const transaction = <{ from: string, to: string, data: string }>((<any>payload).params[0]);
816-
const invocation = null;
817-
let revert: null | { signature: string, name: string, args: Array<any> } = null;
818-
819-
if (result) {
820-
// @TODO: Extract errorSignature, errorName, errorArgs, reason if
821-
// it is Error(string) or Panic(uint25)
822-
message = "execution reverted during JSON-RPC call";
823-
data = result.data;
824-
825-
let bytes = getBytes(data);
826-
if (bytes.length % 32 !== 4) {
827-
message += " (could not parse reason; invalid data length)";
828-
829-
} else if (data.substring(0, 10) === "0x08c379a0") {
830-
// Error(string)
831-
try {
832-
if (bytes.length < 68) { throw new Error("bad length"); }
833-
bytes = bytes.slice(4);
834-
const pointer = getNumber(hexlify(bytes.slice(0, 32)));
835-
bytes = bytes.slice(pointer);
836-
if (bytes.length < 32) { throw new Error("overrun"); }
837-
const length = getNumber(hexlify(bytes.slice(0, 32)));
838-
bytes = bytes.slice(32);
839-
if (bytes.length < length) { throw new Error("overrun"); }
840-
reason = toUtf8String(bytes.slice(0, length));
841-
revert = {
842-
signature: "Error(string)",
843-
name: "Error",
844-
args: [ reason ]
845-
};
846-
message += `: ${ JSON.stringify(reason) }`;
847-
848-
} catch (error) {
849-
console.log(error);
850-
message += " (could not parse reason; invalid data length)";
851-
}
852-
853-
} else if (data.substring(0, 10) === "0x4e487b71") {
854-
// Panic(uint256)
855-
try {
856-
if (bytes.length !== 36) { throw new Error("bad length"); }
857-
const arg = getNumber(hexlify(bytes.slice(4)));
858-
revert = {
859-
signature: "Panic(uint256)",
860-
name: "Panic",
861-
args: [ arg ]
862-
};
863-
reason = `Panic due to ${ PanicReasons.get(Number(arg)) || "UNKNOWN" }(${ arg })`;
864-
message += `: ${ reason }`;
865-
} catch (error) {
866-
console.log(error);
867-
message += " (could not parse panic reason)";
868-
}
869-
}
870-
}
871-
872-
return makeError(message, "CALL_EXCEPTION", {
873-
action, data, reason, transaction, invocation, revert,
874-
info: { payload, error }
875-
});
876-
*/
877813
}
878814

879815
// Only estimateGas and call can return arbitrary contract-defined text, so now we
@@ -904,7 +840,7 @@ export abstract class JsonRpcApiProvider extends AbstractProvider {
904840

905841
if (message.match(/insufficient funds|base fee exceeds gas limit/i)) {
906842
return makeError("insufficient funds for intrinsic transaction cost", "INSUFFICIENT_FUNDS", {
907-
transaction
843+
transaction, info: { error }
908844
});
909845
}
910846

@@ -926,7 +862,7 @@ export abstract class JsonRpcApiProvider extends AbstractProvider {
926862

927863
if (message.match(/the method .* does not exist/i)) {
928864
return makeError("unsupported operation", "UNSUPPORTED_OPERATION", {
929-
operation: payload.method
865+
operation: payload.method, info: { error }
930866
});
931867
}
932868

0 commit comments

Comments
 (0)
Please sign in to comment.