The Giveaway contract is a highly configurable proof of concept for a Giveaway using Chainlink Automation and VRF. It is capable of creating and resolving giveaways on demand utilizing the VRF Direct Funding method and Automations to allow users full control of their own giveaway.
$ git clone [email protected]:linkpoolio/giveaway-chainlink-automation.git
See .env.example
This is set in your root directory.
# Network RPCs
export RPC_URL=
# Private key for contract deployment
export PRIVATE_KEY=
# Explorer API key used to verify contracts
export EXPLORER_KEY=
# From anvil
export LOCAL_RPC_URL="http://localhost:8545"
export ANVIL_PRIVATE_KEY="" # Get from anvil after running for the first time, see below
# UI
export UI_GIVEAWAY_MANAGER_CONTRACT_ADDRESS= # Get from anvil after deploying contract
export UI_LINK_TOKEN_CONTRACT_ADDRESS=
export UI_KEEPER_REGISTRY_CONTRACT_ADDRESS=
Install any wallet to your browser (currently supports Metamask)
# <root>
$ docker compose up
- Open browser at localhost:3005
# Download foundry
$ curl -L https://foundry.paradigm.xyz | bash
# Install foundry
$ foundryup
# (Mac only) Install anvil (prereq: Homebrew)
$ brew install libusb
# <root>/contracts
$ make install
# <root>/contracts (run in new terminal window)
$ anvil
Note: each time anvil is restarted, the contract will need to be re-deployed but will have the same contract address assuming no contract changes
# <root>/contracts
# If deploying locally
$ make deploy-local
# Or if deploying to public network, set RPC_URL to desired network:
$ make deploy
# <root>/client
$ nvm use
$ yarn
# <root>/client/packages/ui
$ yarn start
- Open browser at localhost:3005
# <root>/contracts
make test-contracts-all
# <root>/client/packages/ui
$ yarn test
$ yarn tsc
$ yarn lint
$ yarn prettier
As a creator of a giveaway, the minimum token requirments are needed to ensure that your giveaway is created and finished without issues. All unused LINK token amounts are able to be withdrawn after completion of giveaway.
- 5.1 LINK
- 0.1 (VRF request)
- 5 (Automation subscription)
After picking winners is initiated in the UI, the status of the giveaway is moved to pending
. Each subsequent block is then checked to see if the VRF request has been finished and winners picked. Once found, the status is automatically moved to finished
. The winners are then able to be viewed and leftover LINK is able to be withdrawn.
The Giveaway contract is able to be integrated with any application that is able to send a transaction to the contract. The user will need to call the enterGiveaway
function with the following parameters:
giveawayId
- The ID of the giveaway that the user is enteringentries
- The amount of entries the user is purchasingproof
The merkle proof of the user's entry if the giveaway is permissioned
This is how the UI in this repo calls the enterGiveaway
function using wagmi
:
export const enterGiveaway = async (params: contracts.EnterGiveawayParams) => {
try {
const { id, proof, fee } = params
const config = await prepareWriteContract({
address: giveawayManagerContractAddress,
abi: giveawayManagerABI,
functionName: 'enterGiveaway',
overrides: {
value: ethers.utils.parseEther(fee)
},
args: [id, params.entries ? params.entries : 1, proof ? proof : []]
})
const data = await writeContract(config)
return data
} catch (error: any) {
throw new Error(`Error entering giveaway: ${error.message}`)
}
}
export interface EnterGiveawayParams {
id: number
entries?: number
proof?: string[]
fee: string
}