1
1
"use client" ;
2
2
3
- import { AbiEvent , AbiFunction , toFunctionSelector } from "viem" ;
3
+ import { AbiFunction , AbiItem , toFunctionSelector } from "viem" ;
4
4
import { formatAbiItem } from "viem/utils" ;
5
5
import * as z from "zod" ;
6
6
import { useState } from "react" ;
@@ -22,36 +22,50 @@ import {
22
22
import { Input } from "../../../../../../components/ui/Input" ;
23
23
import { Skeleton } from "../../../../../../components/ui/Skeleton" ;
24
24
import { cn } from "../../../../../../utils" ;
25
+ import { useSystemAbisQuery } from "../../../../queries/useSystemAbisQuery" ;
25
26
import { useWorldAbiQuery } from "../../../../queries/useWorldAbiQuery" ;
26
27
import { getErrorSelector } from "./getErrorSelector" ;
27
28
29
+ type AbiError = AbiItem & { type : "error" } ;
30
+
28
31
const formSchema = z . object ( {
29
32
selector : z . string ( ) . min ( 1 ) . optional ( ) ,
30
33
} ) ;
31
34
35
+ function isAbiFunction ( item : AbiItem ) : item is AbiFunction {
36
+ return item . type === "function" ;
37
+ }
38
+
39
+ function isAbiError ( item : AbiItem ) : item is AbiItem & { type : "error" } {
40
+ return item . type === "error" ;
41
+ }
42
+
32
43
export function DecodeForm ( ) {
33
- const { data, isLoading } = useWorldAbiQuery ( ) ;
44
+ const { data : worldData , isLoading : isWorldAbiLoading } = useWorldAbiQuery ( ) ;
45
+ const { data : systemData , isLoading : isSystemAbisLoading } = useSystemAbisQuery ( ) ;
46
+ const [ abiItem , setAbiItem ] = useState < AbiFunction | AbiError > ( ) ;
34
47
const form = useForm < z . infer < typeof formSchema > > ( {
35
48
resolver : zodResolver ( formSchema ) ,
36
49
} ) ;
37
- const [ result , setResult ] = useState < AbiFunction | AbiEvent > ( ) ;
38
50
39
51
function onSubmit ( { selector } : z . infer < typeof formSchema > ) {
40
- const items = data ?. abi . filter ( ( item ) => item . type === "function" || item . type === "error" ) ;
41
- const abiItem = items ?. find ( ( item ) => {
42
- if ( item . type === "function" ) {
52
+ const worldAbi = worldData ?. abi || [ ] ;
53
+ const systemsAbis = systemData ? Object . values ( systemData ) : [ ] ;
54
+ const abis = [ worldAbi , ...systemsAbis ] . flat ( ) ;
55
+
56
+ const abiItem = abis . find ( ( item ) : item is AbiFunction | AbiError => {
57
+ if ( isAbiFunction ( item ) ) {
43
58
return toFunctionSelector ( item ) === selector ;
44
- } else if ( item . type === "error" ) {
59
+ } else if ( isAbiError ( item ) ) {
45
60
return getErrorSelector ( item ) === selector ;
46
61
}
47
-
48
62
return false ;
49
63
} ) ;
50
64
51
- setResult ( abiItem ) ;
65
+ setAbiItem ( abiItem ) ;
52
66
}
53
67
54
- if ( isLoading ) {
68
+ if ( isWorldAbiLoading || isSystemAbisLoading ) {
55
69
return < Skeleton className = "h-[152px] w-full" /> ;
56
70
}
57
71
@@ -76,14 +90,14 @@ export function DecodeForm() {
76
90
{ form . formState . isSubmitted && (
77
91
< pre
78
92
className = { cn ( "text-md relative mt-4 rounded border border-white/20 p-3 text-sm" , {
79
- "border-red-400 bg-red-100" : ! result ,
93
+ "border-red-400 bg-red-100" : ! abiItem ,
80
94
} ) }
81
95
>
82
- { result ? (
96
+ { abiItem ? (
83
97
< >
84
- < span className = "mr-2 text-sm opacity-50" > { result . type === "function" ? "function" : "error" } </ span >
85
- < span > { formatAbiItem ( result ) } </ span >
86
- < CopyButton value = { JSON . stringify ( result , null , 2 ) } className = "absolute right-1.5 top-1.5" />
98
+ < span className = "mr-2 text-sm opacity-50" > { abiItem . type === "function" ? "function" : "error" } </ span >
99
+ < span > { formatAbiItem ( abiItem ) } </ span >
100
+ < CopyButton value = { JSON . stringify ( abiItem , null , 2 ) } className = "absolute right-1.5 top-1.5" />
87
101
</ >
88
102
) : (
89
103
< span className = "text-red-700" > No matching function or error found for this selector</ span >
0 commit comments