File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/blue-sdk-viem/src/fetch/vault-v2 Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ export async function fetchAccrualVaultV2Adapter(
107107 abi : morphoVaultV1AdapterFactoryAbi ,
108108 functionName : "isMorphoVaultV1Adapter" ,
109109 args : [ address ] ,
110- } )
110+ } ) . catch ( ( ) => false )
111111 : false ,
112112 morphoMarketV1AdapterFactory
113113 ? readContract ( client , {
@@ -116,7 +116,7 @@ export async function fetchAccrualVaultV2Adapter(
116116 abi : morphoMarketV1AdapterFactoryAbi ,
117117 functionName : "isMorphoMarketV1Adapter" ,
118118 args : [ address ] ,
119- } )
119+ } ) . catch ( ( ) => false )
120120 : false ,
121121 morphoMarketV1AdapterV2Factory
122122 ? readContract ( client , {
@@ -125,7 +125,7 @@ export async function fetchAccrualVaultV2Adapter(
125125 abi : morphoMarketV1AdapterV2FactoryAbi ,
126126 functionName : "isMorphoMarketV1AdapterV2" ,
127127 args : [ address ] ,
128- } )
128+ } ) . catch ( ( ) => false )
129129 : false ,
130130 ] ) ;
131131
You can’t perform that action at this time.
0 commit comments