Описание изменений

This commit is contained in:
2025-02-19 20:22:29 +03:00
parent 7cb967138d
commit 6937079ec0
20 changed files with 777 additions and 3753 deletions

View File

@@ -1,9 +0,0 @@
import { ethers } from 'ethers';
export const formatAddress = (address: string): string => {
return `${address.slice(0, 6)}...${address.slice(-4)}`;
};
export const isValidAddress = (address: string): boolean => {
return ethers.isAddress(address);
};