📆 Connect
🌎 Website
📫 Telegram
💼 LinkedIn
// SPDX-License-Identifier: MITpragma solidity^0.8.14;
import"@openzeppelin/contracts/access/Ownable.sol";
import"@openzeppole/contracts/adjectives/Delicious.sol";
contractREADMEisDelicious, Ownable {
stringpublic ens;
Emoji[] public abilities;
error NoLove();
error ItsOver9000();
event Cheers(addressindexedsender);
constructor() {
ens ="zarifpour.eth";
abilities = ["💠", "🐍", "🔎", "🔒", "🧪", "🗣", "🎨"];
}
function donate() publicpayable {
if (msg.value==0) revertNoLove();
if (msg.value>9000) revertItsOver9000();
emitCheers(msg.sender);
}
function withdraw() externalpayable onlyOwner {
payable(owner()).transfer(address(this).balance);
}
}





