Cyfrin / 2023-10-Puppy-Raffle

7 stars 10 forks source link

First Flight #2: Puppy Raffle

Contest Details

Prize Pool

Stats

Puppy Raffle

This project is to enter a raffle to win a cute dog NFT. The protocol should do the following:

  1. Call the enterRaffle function with the following parameters:
    1. address[] participants: A list of addresses that enter. You can use this to enter yourself multiple times, or yourself and a group of your friends.
  2. Duplicate addresses are not allowed
  3. Users are allowed to get a refund of their ticket & value if they call the refund function
  4. Every X seconds, the raffle will be able to draw a winner and be minted a random puppy
  5. The owner of the protocol will set a feeAddress to take a cut of the value, and the rest of the funds will be sent to the winner of the puppy.

Roles

Owner - Deployer of the protocol, has the power to change the wallet address to which fees are sent through the changeFeeAddress function. Player - Participant of the raffle, has the power to enter the raffle with the enterRaffle function and refund value through refund function.

Getting Started

Requirements

Quickstart

git clone https://github.com/Cyfrin/2023-10-Puppy-Raffle
cd 2023-10-Puppy-Raffle
make

Optional Gitpod

If you can't or don't want to run and install locally, you can work with this repo in Gitpod. If you do this, you can skip the clone this repo part.

Open in Gitpod

Usage

Testing

forge test

Test Coverage

forge coverage

and for coverage based testing:

forge coverage --report debug

Audit Scope Details

./src/
└── PuppyRaffle.sol

Compatibilities

Known Issues

None