package tktoaster.tktoaster.opfarm.Tktoaster.helpers;
import org.bukkit.Material;
import java.util.HashMap;
public class Colors {
public static final HashMap<String, Material> Wool = new HashMap<String, Material>() {{
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 | |
pragma solidity ^0.8.0; | |
import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; | |
import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; | |
contract ERC721TokenSwap is ReentrancyGuard { | |
event SwapCreated(uint256 indexed swapId, address indexed trader1, address indexed trader2); | |
event SwapExecuted(uint256 indexed swapId); |