This file contains hidden or 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.24; | |
import {AggregatorV3Interface} from "@chainlink/[email protected]/src/v0.8/shared/interfaces/AggregatorV3Interface.sol"; | |
import {Ownable} from "@openzeppelin/[email protected]/access/Ownable.sol"; | |
import {MyERC20} from "./MyERC20_OpenZeppelin.sol"; | |
contract TokenShop is Ownable { |
This file contains hidden or 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.24; | |
interface IERC165 { | |
function supportsInterface(bytes4 interfaceId) external pure returns (bool); | |
} | |
/* ERC721 MUST implement ERC165 */ | |
interface IERC721 is IERC165 { |