doriannakamoto on Nostr: pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; ...
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
contract BitcoinWorldCurrencyGuess {
// Address of the NFT collection
address public nftCollection;
// Mapping of NFT token IDs to boolean values indicating whether a guess has been made
mapping(uint256 => bool) public guessMade;
// Mapping of dates to number of guesses made for that date
mapping(uint256 => uint256) public dateToGuesses;
// Total number of guesses allowed
uint256 public totalGuesses;
// ETH amount locked up in the contract from the mint of the NFT token
uint256 public lockedETH;
// Address of the oracle providing the Bitcoin/USD exchange rate
address public oracle;
// Aggregator interface for the Bitcoin/USD exchange rate
AggregatorV3Interface internal priceFeed;
// Uniswap V2 router contract address
address public uniswapRouter;
// Address of the wrapped Bitcoin contract
address public wbtcAddress;
// Event emitted when a guess is made for an NFT
event GuessMade(address indexed guesser, uint256 indexed tokenId, uint256 guessDate);
// Event emitted when the correct date is verified and the ETH is swapped for WBTC and distributed to the winner(s)
event WinnerSelected(address indexed winner, uint256 indexed winningDate, uint256 wbtcAmount);
constructor(address _nftCollection, uint256 _totalGuesses, uint256 _lockedETH, address _oracle, address _uniswapRouter, address _wbtcAddress) {
nftCollection = _nftCollection;
totalGuesses = _totalGuesses;
lockedETH = _lockedETH;
oracle = _oracle;
priceFeed = AggregatorV3Interface(oracle);
uniswapRouter = _uniswapRouter;
wbtcAddress = _wbtcAddress;
}
// Function to make a guess for an NFT
function makeGuess(uint256 _tokenId, uint256 _guessDate) public {
require(msg.sender == ownerOf(_tokenId), "BitcoinWorldCurrencyGuess: sender is not owner of NFT");
require(!guessMade[_tokenId], "BitcoinWorldCurrencyGuess: guess already made for NFT");
require(dateToGuesses[_guessDate] < totalGuesses, "BitcoinWorldCurrencyGuess: too many guesses for that date");
// Record the guess for the NFT and the date
guessMade[_tokenId] = true;
dateToGuesses[_guessDate]++;
// Emit GuessMade event
emit GuessMade(msg.sender, _tokenId, _guessDate);
}
// Function to select the winner(s), swap ETH for WBTC, and distribute the WBTC to the winner(s)
function selectWinner() public {
require(isBitcoinWorldCurrency(), "BitcoinWorldCurrencyGuess: Bitcoin is not the world currency yet");
// Calculate the winning date and the number of winners
uint256 winningDate;
uint256 maxGuesses = 0;
uint256 numWinners = 0;
for (uint256 i = 0; i < totalGuesses; i++) {
if (dateToGuesses[i] > maxGuesses) {
winningDate = i;
Published at
2023-03-04 18:52:41Event JSON
{
"id": "b30f0357942ea395f00341ff5e5201cf935247720892bb1a136884822e7cb17d",
"pubkey": "6259db72febb72d436266013eb43c5ad7a754665ec5376924bc9957a6a47d515",
"created_at": 1677955961,
"kind": 1,
"tags": [
[
"e",
"9f86492d0796984b9edfe6aa52315291182b1123c895cfb1339e27fb9bc33520"
],
[
"p",
"82341f882b6eabcd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"
],
[
"p",
"79b647ba67c6f434b348e4af011e0984af14a459b6d86fd05e8f2ee8d32ec8c9"
],
[
"p",
"c7dccba4fe4426a7b1ea239a5637ba40fab9862c8c86b3330fe65e9f667435f6"
],
[
"p",
"d349022f454cdf3d64a6074d95b042b7ec288907798f5b4cfe54ee27d3e2caf8"
],
[
"p",
"2f6605a9deb041466d07cdc76ff8f1da4386011a3ad59699b07603a69f164b06"
]
],
"content": "pragma solidity ^0.8.0;\n\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport \"@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol\";\nimport \"@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol\";\n\ncontract BitcoinWorldCurrencyGuess {\n\n // Address of the NFT collection\n address public nftCollection;\n\n // Mapping of NFT token IDs to boolean values indicating whether a guess has been made\n mapping(uint256 =\u003e bool) public guessMade;\n\n // Mapping of dates to number of guesses made for that date\n mapping(uint256 =\u003e uint256) public dateToGuesses;\n\n // Total number of guesses allowed\n uint256 public totalGuesses;\n\n // ETH amount locked up in the contract from the mint of the NFT token\n uint256 public lockedETH;\n\n // Address of the oracle providing the Bitcoin/USD exchange rate\n address public oracle;\n\n // Aggregator interface for the Bitcoin/USD exchange rate\n AggregatorV3Interface internal priceFeed;\n\n // Uniswap V2 router contract address\n address public uniswapRouter;\n\n // Address of the wrapped Bitcoin contract\n address public wbtcAddress;\n\n // Event emitted when a guess is made for an NFT\n event GuessMade(address indexed guesser, uint256 indexed tokenId, uint256 guessDate);\n\n // Event emitted when the correct date is verified and the ETH is swapped for WBTC and distributed to the winner(s)\n event WinnerSelected(address indexed winner, uint256 indexed winningDate, uint256 wbtcAmount);\n\n constructor(address _nftCollection, uint256 _totalGuesses, uint256 _lockedETH, address _oracle, address _uniswapRouter, address _wbtcAddress) {\n nftCollection = _nftCollection;\n totalGuesses = _totalGuesses;\n lockedETH = _lockedETH;\n oracle = _oracle;\n priceFeed = AggregatorV3Interface(oracle);\n uniswapRouter = _uniswapRouter;\n wbtcAddress = _wbtcAddress;\n }\n\n // Function to make a guess for an NFT\n function makeGuess(uint256 _tokenId, uint256 _guessDate) public {\n require(msg.sender == ownerOf(_tokenId), \"BitcoinWorldCurrencyGuess: sender is not owner of NFT\");\n require(!guessMade[_tokenId], \"BitcoinWorldCurrencyGuess: guess already made for NFT\");\n require(dateToGuesses[_guessDate] \u003c totalGuesses, \"BitcoinWorldCurrencyGuess: too many guesses for that date\");\n\n // Record the guess for the NFT and the date\n guessMade[_tokenId] = true;\n dateToGuesses[_guessDate]++;\n\n // Emit GuessMade event\n emit GuessMade(msg.sender, _tokenId, _guessDate);\n }\n\n // Function to select the winner(s), swap ETH for WBTC, and distribute the WBTC to the winner(s)\n function selectWinner() public {\n require(isBitcoinWorldCurrency(), \"BitcoinWorldCurrencyGuess: Bitcoin is not the world currency yet\");\n\n // Calculate the winning date and the number of winners\n uint256 winningDate;\n uint256 maxGuesses = 0;\n uint256 numWinners = 0;\n for (uint256 i = 0; i \u003c totalGuesses; i++) {\n if (dateToGuesses[i] \u003e maxGuesses) {\n winningDate = i;",
"sig": "060b565d7b99523c3c6ab049c099a2579d36cc0f75746fc5fc37d0ca12628b565b04ba750723d46061c9451421907b186c169f011447a2ed365df734329f1749"
}