# Changelog All notable changes to this project are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] ### Added - Foundry project scaffolding (`forge-std`, CI workflow, `.gitignore`). - `Love`, an ERC-20 token (`LOVE`, 18 decimals) on OpenZeppelin v5, with an unrestricted public `mint(address,uint256)` — anyone can mint any amount. - Metadata, mint, transfer, approve/`transferFrom`, revert and fuzz tests. - Deployment script `script/Love.s.sol`, deploying with CREATE2 through the canonical deterministic deployer so `Love` gets the same address on every EVM network; salt defaults to `keccak256("LOVE")` and is overridable via `SALT`. - `predict()` entrypoint printing the deployment address without broadcasting, and CREATE2 tests pinning address determinism across chain IDs. - `foundry.toml` with pinned solc 0.8.30, optimizer, fmt rules, fuzz/invariant defaults, and Base Sepolia RPC/Etherscan endpoints driven by env vars. - `script/multichain-check.sh`, deploying `Love` on two local anvil nodes with different chain IDs and failing if the two addresses don't match. - `remappings.txt` for `@openzeppelin/contracts/` and `forge-std/`. - `.env.example` documenting required environment variables.