Skip to content

Commit d8cae4a

Browse files
committed
Return undefined when a value is not found
1 parent e9f2723 commit d8cae4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const getTokenMetadata = async (address, options) => {
99
const provider = new ethers.providers.JsonRpcProvider(options.rpcEndpoint);
1010
const contract = new ethers.Contract(address, abi, provider);
1111
const handleError = () => {
12-
return null;
12+
return undefined;
1313
};
1414

1515
const [name, symbol, decimals] = await Promise.all([

0 commit comments

Comments
 (0)