-
-
Save dendisuhubdy/be37dfb3b64a94317db132bcef41721d to your computer and use it in GitHub Desktop.
USDC Faucet in Goerli
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// Copyright (c) 2020 petejkim | |
pragma solidity 0.6.12; | |
import { Ownable } from "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.2.0/contracts/access/Ownable.sol"; | |
import { IERC20 } from "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.2.0/contracts/token/ERC20/IERC20.sol"; | |
import { SafeERC20 } from "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.2.0/contracts/token/ERC20/SafeERC20.sol"; | |
contract USDCFaucet is Ownable { | |
using SafeERC20 for IERC20; | |
mapping (address => uint256) public lastClaimedAt; | |
uint256 public amount = 100000000; | |
uint256 public waitPeriod = 3600; | |
address public tokenAddress = 0x2f3A40A3db8a7e3D09B0adfEfbCe4f6F81927557; | |
function configure(uint256 newAmount, uint256 newWaitPeriod, address newTokenAddress) external onlyOwner { | |
amount = newAmount; | |
waitPeriod = newWaitPeriod; | |
tokenAddress = newTokenAddress; | |
} | |
function canClaim(address account) external view returns (bool) { | |
return lastClaimedAt[account] + waitPeriod < now; | |
} | |
function claim() external { | |
require(lastClaimedAt[msg.sender] + waitPeriod < now, "You cannot claim again so soon!"); | |
lastClaimedAt[msg.sender] = now; | |
IERC20(tokenAddress).safeTransfer(msg.sender, amount); | |
} | |
function drain() external onlyOwner { | |
IERC20 token = IERC20(tokenAddress); | |
token.safeTransfer(msg.sender, token.balanceOf(address(this))); | |
} | |
function destroy() external onlyOwner { | |
selfdestruct(msg.sender); | |
} | |
} |
0x16e8F6Cc161A3d6a80aee4323D5E724bD6743555
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
0xF34B73f56a7F8EF5d3EADC6ebf75F80Fd2926D92