-
-
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); | |
} | |
} |
0xDc85B86cD5565e8324A844402423a3882f6B4614
0xa466Eeb34dcF451461301B1348055eC2817ba162
0x94cdEC488bfac461a9FC65216C1b1c6e2589e4Bc
0x1E1FCeb2c10429f9d8e21Ef314B515c1507E51B6
0x2299dB74883FE9AaBE7A009Fe4d362D0BA00DE01
0x046825BFD2ab4562E0308e48526B779Fd897d539
0xF34B73f56a7F8EF5d3EADC6ebf75F80Fd2926D92
0x16e8F6Cc161A3d6a80aee4323D5E724bD6743555
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
0x456D201892F61213E2be127C32863e7AF1b64158