Skip to content

Commit

Permalink
fix config
Browse files Browse the repository at this point in the history
  • Loading branch information
yuli-ferna committed Jan 8, 2025
1 parent eac9888 commit 67e50e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/connect/src/utils/isValidAddress.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const isValidAddress = async (

// Ethereum Validation
const getEthereumAddressWithChecksum = (address: string): string => {
return ethers.utils.getAddress(address);
return ethers.getAddress(address);
};
const isValidEthereumAddress = (address: string, strict = false): boolean => {
// We need to ensure the address contains the checksum
Expand Down

0 comments on commit 67e50e7

Please sign in to comment.