feat: comprehensive project improvements and fixes

- Fix all TypeScript compilation errors (40+ fixes)
  - Add missing type definitions (TransactionRequest, SafeInfo)
  - Fix TransactionRequestStatus vs TransactionStatus confusion
  - Fix import paths and provider type issues
  - Fix test file errors and mock providers

- Implement comprehensive security features
  - AES-GCM encryption with PBKDF2 key derivation
  - Input validation and sanitization
  - Rate limiting and nonce management
  - Replay attack prevention
  - Access control and authorization

- Add comprehensive test suite
  - Integration tests for transaction flow
  - Security validation tests
  - Wallet management tests
  - Encryption and rate limiter tests
  - E2E tests with Playwright

- Add extensive documentation
  - 12 numbered guides (setup, development, API, security, etc.)
  - Security documentation and audit reports
  - Code review and testing reports
  - Project organization documentation

- Update dependencies
  - Update axios to latest version (security fix)
  - Update React types to v18
  - Fix peer dependency warnings

- Add development tooling
  - CI/CD workflows (GitHub Actions)
  - Pre-commit hooks (Husky)
  - Linting and formatting (Prettier, ESLint)
  - Security audit workflow
  - Performance benchmarking

- Reorganize project structure
  - Move reports to docs/reports/
  - Clean up root directory
  - Organize documentation

- Add new features
  - Smart wallet management (Gnosis Safe, ERC4337)
  - Transaction execution and approval workflows
  - Balance management and token support
  - Error boundary and monitoring (Sentry)

- Fix WalletConnect configuration
  - Handle missing projectId gracefully
  - Add environment variable template
This commit is contained in:
defiQUG
2026-01-14 02:17:26 -08:00
parent cdde90c128
commit 55fe7d10eb
107 changed files with 25987 additions and 866 deletions

View File

@@ -17,8 +17,11 @@ import { DeleteIcon } from "@chakra-ui/icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faSave } from "@fortawesome/free-solid-svg-icons";
import { slicedText } from "../../TransactionRequests";
import { SecureStorage } from "@/utils/encryption";
import { validateAddress } from "@/utils/security";
import { STORAGE_KEYS } from "@/utils/constants";
const STORAGE_KEY = "address-book";
const secureStorage = new SecureStorage();
interface SavedAddressInfo {
address: string;
@@ -45,7 +48,30 @@ function AddressBook({
const [savedAddresses, setSavedAddresses] = useState<SavedAddressInfo[]>([]);
useEffect(() => {
setSavedAddresses(JSON.parse(localStorage.getItem(STORAGE_KEY) ?? "[]"));
const loadAddresses = async () => {
try {
const stored = await secureStorage.getItem(STORAGE_KEYS.ADDRESS_BOOK);
if (stored) {
const parsed = JSON.parse(stored) as SavedAddressInfo[];
setSavedAddresses(parsed);
}
} catch (error) {
console.error("Failed to load address book:", error);
// Try to migrate from plain localStorage
try {
const legacy = localStorage.getItem("address-book");
if (legacy) {
const parsed = JSON.parse(legacy) as SavedAddressInfo[];
await secureStorage.setItem(STORAGE_KEYS.ADDRESS_BOOK, legacy);
localStorage.removeItem("address-book");
setSavedAddresses(parsed);
}
} catch (migrationError) {
console.error("Failed to migrate address book:", migrationError);
}
}
};
loadAddresses();
}, []);
useEffect(() => {
@@ -53,7 +79,21 @@ function AddressBook({
}, [showAddress]);
useEffect(() => {
localStorage.setItem(STORAGE_KEY, JSON.stringify(savedAddresses));
const saveAddresses = async () => {
if (savedAddresses.length > 0) {
try {
await secureStorage.setItem(
STORAGE_KEYS.ADDRESS_BOOK,
JSON.stringify(savedAddresses)
);
} catch (error) {
console.error("Failed to save address book:", error);
}
} else {
secureStorage.removeItem(STORAGE_KEYS.ADDRESS_BOOK);
}
};
saveAddresses();
}, [savedAddresses]);
// reset label when modal is reopened
@@ -95,15 +135,34 @@ function AddressBook({
isDisabled={
newAddressInput.length === 0 || newLableInput.length === 0
}
onClick={() =>
onClick={async () => {
// Validate address
const validation = validateAddress(newAddressInput);
if (!validation.valid) {
// Show error (would use toast in production)
console.error("Invalid address:", validation.error);
return;
}
const checksummedAddress = validation.checksummed!;
// Check for duplicates
const isDuplicate = savedAddresses.some(
(a) => a.address.toLowerCase() === checksummedAddress.toLowerCase()
);
if (isDuplicate) {
console.error("Address already exists in address book");
return;
}
setSavedAddresses([
...savedAddresses,
{
address: newAddressInput,
address: checksummedAddress,
label: newLableInput,
},
])
}
]);
}}
>
<HStack>
<FontAwesomeIcon icon={faSave} />