@@ -23,6 +23,7 @@ import { AbstractProvider, UnmanagedSubscriber } from "./abstract-provider.js";
23
23
import { AbstractSigner } from "./abstract-signer.js" ;
24
24
import { Network } from "./network.js" ;
25
25
import { FilterIdEventSubscriber , FilterIdPendingSubscriber } from "./subscriber-filterid.js" ;
26
+ import { PollingEventSubscriber } from "./subscriber-polling.js" ;
26
27
27
28
import type { TypedDataDomain , TypedDataField } from "../hash/index.js" ;
28
29
import type { TransactionLike } from "../transaction/index.js" ;
@@ -628,6 +629,9 @@ export abstract class JsonRpcApiProvider extends AbstractProvider {
628
629
if ( sub . type === "pending" ) { return new FilterIdPendingSubscriber ( this ) ; }
629
630
630
631
if ( sub . type === "event" ) {
632
+ if ( this . _getOption ( "polling" ) ) {
633
+ return new PollingEventSubscriber ( this , sub . filter ) ;
634
+ }
631
635
return new FilterIdEventSubscriber ( this , sub . filter ) ;
632
636
}
633
637
@@ -806,74 +810,6 @@ export abstract class JsonRpcApiProvider extends AbstractProvider {
806
810
) ;
807
811
e . info = { error, payload } ;
808
812
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
- */
877
813
}
878
814
879
815
// Only estimateGas and call can return arbitrary contract-defined text, so now we
@@ -904,7 +840,7 @@ export abstract class JsonRpcApiProvider extends AbstractProvider {
904
840
905
841
if ( message . match ( / i n s u f f i c i e n t f u n d s | b a s e f e e e x c e e d s g a s l i m i t / i) ) {
906
842
return makeError ( "insufficient funds for intrinsic transaction cost" , "INSUFFICIENT_FUNDS" , {
907
- transaction
843
+ transaction, info : { error }
908
844
} ) ;
909
845
}
910
846
@@ -926,7 +862,7 @@ export abstract class JsonRpcApiProvider extends AbstractProvider {
926
862
927
863
if ( message . match ( / t h e m e t h o d .* d o e s n o t e x i s t / i) ) {
928
864
return makeError ( "unsupported operation" , "UNSUPPORTED_OPERATION" , {
929
- operation : payload . method
865
+ operation : payload . method , info : { error }
930
866
} ) ;
931
867
}
932
868
0 commit comments