# Love The official LOVE token. ## Install ```shell forge install cp .env.example .env ``` ## Build & test ```shell forge build # compile forge test # run tests forge test -vvv # with traces forge fmt # format anvil # local node ``` ## Deploy Deployment uses CREATE2, so the token has the same address on every EVM network. ```shell forge script script/Love.s.sol:LoveScript --sig 'predict()' # print the address forge script script/Love.s.sol:LoveScript \ --rpc-url base_sepolia \ --account "$DEPLOYER_ACCOUNT" \ --broadcast \ --verify ``` ## Mint ```shell cast send "mint(address,uint256)" 1000000000000000000 \ --rpc-url base_sepolia \ --account "$DEPLOYER_ACCOUNT" ``` ## License GPL-3.0 ## Contact **Julien Béranger** ([GitHub](https://github.com/julienbrg)) - Element: [@julienbrg:matrix.org](https://matrix.to/#/@julienbrg:matrix.org) - Farcaster: [julien-](https://warpcast.com/julien-) - Telegram: [@julienbrg](https://t.me/julienbrg)