// SPDX-License-Identifier: MIT
pragma solidity ^0.8.14;
import "@openzeppole/contracts/adjectives/Delicious.sol";
contract README is Delicious {
address private owner;
string public name;
Emoji[] public skills;
event Thank(address indexed sender);
constructor() {
owner = 0x5cfb84bf312f138129006500Bfb1606130640EDE;
name = "Daniel Zarifpour";
skills = ["💠", "🐍", "🔎", "🔒", "🧪", "🗣", "🎨"];
}
function donate() public payable {
require(msg.value > 0, "That's not nice");
require(msg.value < 1000000, "That's too nice");
emit Thank(msg.sender);
}
function withdraw() external payable {
require(msg.sender == owner, "Nice try");
payable(msg.sender).transfer(address(this).balance);
}
}imposter
- New York, NY
- links.dev/z
- @dzar1f
Block or Report
Block or report zarifpour
Report abuse
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abusePinned
-
jira-dependency-graph Public
Graph visualizer for JIRA ticket dependencies (epics, tasks, statuses, links, and more)
-
269 contributions in the last year
Less
More
Activity overview
Contributed to
zarifpour/jira-dependency-graph,
zarifpour/alfred-you-suggest,
zarifpour/zarifpour
and 28 other
repositories
Contribution activity
June 2023
Created a pull request in SevaSk/ecoute that received 19 comments
feat(code quality): add black and ruff
I added black and ruff to maintain code quality and implemented a Makefile streamline the execution of common commands. I also tried to add poetry …
+317
−102
•
19
comments


