blockchain-audit / labs

Our creative space
Other
1 stars 41 forks source link

T11-SOL Crowdfunding ERC20 contract project #38

Open henry-hz opened 6 months ago

henry-hz commented 6 months ago

Crowdfunding ERC20 contract

Your contract should have a createFundraiser() function with a goal and a deadline as arguments. Donators can donate() to a given fundraiserId. If the goal is reached before the deadline, the wallet that called createFundraiser() Can withdraw() all the funds associated with that campaign. Otherwise, if the deadline passes without reaching the goal, the donators can withdraw their donation. Build a contract that supports Ether and another that supports ERC20 tokens.

Some corner cases to think about:

what if the same address donates multiple times?

what if the same address donates to multiple different campaigns?