@@ -3,6 +3,8 @@ import { usePublicClient } from "wagmi";
3
3
import { getIHomeGateway } from "hooks/contracts/generated" ;
4
4
import { isUndefined } from "utils/index" ;
5
5
import { GENESIS_BLOCK_ARBSEPOLIA } from "src/consts" ;
6
+ import { debounceErrorToast } from "utils/debounceErrorToast" ;
7
+ import { HttpRequestError , RpcError } from "viem" ;
6
8
7
9
interface IIsCrossChainDispute {
8
10
isCrossChainDispute : boolean ;
@@ -20,36 +22,43 @@ export const useIsCrossChainDispute = (disputeID?: string, arbitrableAddress?: `
20
22
staleTime : Infinity ,
21
23
queryFn : async ( ) => {
22
24
if ( isEnabled ) {
23
- const arbitrable = getIHomeGateway ( {
24
- address : arbitrableAddress ,
25
- } ) ;
26
- const crossChainDisputeFilter = await arbitrable . createEventFilter . CrossChainDisputeIncoming (
27
- {
28
- _arbitratorDisputeID : BigInt ( disputeID ) ,
29
- } ,
30
- {
31
- fromBlock : GENESIS_BLOCK_ARBSEPOLIA ,
32
- toBlock : "latest" ,
33
- }
34
- ) ;
35
- const crossChainDisputeEvents = await publicClient . getFilterLogs ( {
36
- filter : crossChainDisputeFilter ,
37
- } ) ;
25
+ try {
26
+ const arbitrable = getIHomeGateway ( {
27
+ address : arbitrableAddress ,
28
+ } ) ;
29
+ const crossChainDisputeFilter = await arbitrable . createEventFilter . CrossChainDisputeIncoming (
30
+ {
31
+ _arbitratorDisputeID : BigInt ( disputeID ) ,
32
+ } ,
33
+ {
34
+ fromBlock : GENESIS_BLOCK_ARBSEPOLIA ,
35
+ toBlock : "latest" ,
36
+ }
37
+ ) ;
38
+ const crossChainDisputeEvents = await publicClient . getFilterLogs ( {
39
+ filter : crossChainDisputeFilter ,
40
+ } ) ;
38
41
39
- if ( crossChainDisputeEvents . length > 0 ) {
40
- return {
41
- isCrossChainDispute : true ,
42
- crossChainId : crossChainDisputeEvents [ 0 ] . args . _arbitrableChainId ?? 0n ,
43
- crossChainTemplateId : crossChainDisputeEvents [ 0 ] . args . _templateId ?? 0n ,
44
- crossChainArbitrableAddress : crossChainDisputeEvents [ 0 ] . args . _arbitrable ?? "0x" ,
45
- } ;
46
- } else {
47
- return {
48
- isCrossChainDispute : false ,
49
- crossChainId : 0n ,
50
- crossChainTemplateId : 0n ,
51
- crossChainArbitrableAddress : "0x" ,
52
- } ;
42
+ if ( crossChainDisputeEvents . length > 0 ) {
43
+ return {
44
+ isCrossChainDispute : true ,
45
+ crossChainId : crossChainDisputeEvents [ 0 ] . args . _arbitrableChainId ?? 0n ,
46
+ crossChainTemplateId : crossChainDisputeEvents [ 0 ] . args . _templateId ?? 0n ,
47
+ crossChainArbitrableAddress : crossChainDisputeEvents [ 0 ] . args . _arbitrable ?? "0x" ,
48
+ } ;
49
+ } else {
50
+ return {
51
+ isCrossChainDispute : false ,
52
+ crossChainId : 0n ,
53
+ crossChainTemplateId : 0n ,
54
+ crossChainArbitrableAddress : "0x" ,
55
+ } ;
56
+ }
57
+ } catch ( error ) {
58
+ if ( error instanceof HttpRequestError || error instanceof RpcError ) {
59
+ debounceErrorToast ( "RPC failed!, Please avoid voting." ) ;
60
+ }
61
+ throw Error ;
53
62
}
54
63
} else throw Error ;
55
64
} ,
0 commit comments