Last active
January 10, 2022 14:10
-
-
Save ColinPlatt/69584f0f08176062ec374b6d5e963bc7 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.10+commit.fc410830.js&optimize=false&runs=200&gist=
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
// File: contracts/Base64.sol | |
// SPDX-License-Identifier: MIT | |
pragma solidity 0.8.10; | |
/// [MIT License] | |
/// @title Base64 | |
/// @notice Provides a function for encoding some bytes in base64 | |
/// @author Brecht Devos <[email protected]> | |
library Base64 { | |
bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; | |
/// @notice Encodes some bytes to the base64 representation | |
function encode(bytes memory data) internal pure returns (string memory) { | |
uint256 len = data.length; | |
if (len == 0) return ""; | |
// multiply by 4/3 rounded up | |
uint256 encodedLen = 4 * ((len + 2) / 3); | |
// Add some extra buffer at the end | |
bytes memory result = new bytes(encodedLen + 32); | |
bytes memory table = TABLE; | |
assembly { | |
let tablePtr := add(table, 1) | |
let resultPtr := add(result, 32) | |
for { | |
let i := 0 | |
} lt(i, len) { | |
} { | |
i := add(i, 3) | |
let input := and(mload(add(data, i)), 0xffffff) | |
let out := mload(add(tablePtr, and(shr(18, input), 0x3F))) | |
out := shl(8, out) | |
out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)) | |
out := shl(8, out) | |
out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)) | |
out := shl(8, out) | |
out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)) | |
out := shl(224, out) | |
mstore(resultPtr, out) | |
resultPtr := add(resultPtr, 4) | |
} | |
switch mod(len, 3) | |
case 1 { | |
mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) | |
} | |
case 2 { | |
mstore(sub(resultPtr, 1), shl(248, 0x3d)) | |
} | |
mstore(result, encodedLen) | |
} | |
return string(result); | |
} | |
function toString(uint256 value) internal pure returns (string memory) { | |
// Inspired by OraclizeAPI's implementation - MIT license | |
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol | |
if (value == 0) { | |
return "0"; | |
} | |
uint256 temp = value; | |
uint256 digits; | |
while (temp != 0) { | |
digits++; | |
temp /= 10; | |
} | |
bytes memory buffer = new bytes(digits); | |
while (value != 0) { | |
digits -= 1; | |
buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); | |
value /= 10; | |
} | |
return string(buffer); | |
} | |
} | |
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol | |
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) | |
pragma solidity ^0.8.0; | |
/** | |
* @dev Contract module that helps prevent reentrant calls to a function. | |
* | |
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier | |
* available, which can be applied to functions to make sure there are no nested | |
* (reentrant) calls to them. | |
* | |
* Note that because there is a single `nonReentrant` guard, functions marked as | |
* `nonReentrant` may not call one another. This can be worked around by making | |
* those functions `private`, and then adding `external` `nonReentrant` entry | |
* points to them. | |
* | |
* TIP: If you would like to learn more about reentrancy and alternative ways | |
* to protect against it, check out our blog post | |
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. | |
*/ | |
abstract contract ReentrancyGuard { | |
// Booleans are more expensive than uint256 or any type that takes up a full | |
// word because each write operation emits an extra SLOAD to first read the | |
// slot's contents, replace the bits taken up by the boolean, and then write | |
// back. This is the compiler's defense against contract upgrades and | |
// pointer aliasing, and it cannot be disabled. | |
// The values being non-zero value makes deployment a bit more expensive, | |
// but in exchange the refund on every call to nonReentrant will be lower in | |
// amount. Since refunds are capped to a percentage of the total | |
// transaction's gas, it is best to keep them low in cases like this one, to | |
// increase the likelihood of the full refund coming into effect. | |
uint256 private constant _NOT_ENTERED = 1; | |
uint256 private constant _ENTERED = 2; | |
uint256 private _status; | |
constructor() { | |
_status = _NOT_ENTERED; | |
} | |
/** | |
* @dev Prevents a contract from calling itself, directly or indirectly. | |
* Calling a `nonReentrant` function from another `nonReentrant` | |
* function is not supported. It is possible to prevent this from happening | |
* by making the `nonReentrant` function external, and making it call a | |
* `private` function that does the actual work. | |
*/ | |
modifier nonReentrant() { | |
// On the first call to nonReentrant, _notEntered will be true | |
require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); | |
// Any calls to nonReentrant after this point will fail | |
_status = _ENTERED; | |
_; | |
// By storing the original value once again, a refund is triggered (see | |
// https://eips.ethereum.org/EIPS/eip-2200) | |
_status = _NOT_ENTERED; | |
} | |
} | |
// File: @openzeppelin/contracts/utils/Context.sol | |
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol) | |
pragma solidity ^0.8.0; | |
/** | |
* @dev Provides information about the current execution context, including the | |
* sender of the transaction and its data. While these are generally available | |
* via msg.sender and msg.data, they should not be accessed in such a direct | |
* manner, since when dealing with meta-transactions the account sending and | |
* paying for execution may not be the actual sender (as far as an application | |
* is concerned). | |
* | |
* This contract is only required for intermediate, library-like contracts. | |
*/ | |
abstract contract Context { | |
function _msgSender() internal view virtual returns (address) { | |
return msg.sender; | |
} | |
function _msgData() internal view virtual returns (bytes calldata) { | |
return msg.data; | |
} | |
} | |
// File: @openzeppelin/contracts/access/Ownable.sol | |
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) | |
pragma solidity ^0.8.0; | |
/** | |
* @dev Contract module which provides a basic access control mechanism, where | |
* there is an account (an owner) that can be granted exclusive access to | |
* specific functions. | |
* | |
* By default, the owner account will be the one that deploys the contract. This | |
* can later be changed with {transferOwnership}. | |
* | |
* This module is used through inheritance. It will make available the modifier | |
* `onlyOwner`, which can be applied to your functions to restrict their use to | |
* the owner. | |
*/ | |
abstract contract Ownable is Context { | |
address private _owner; | |
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); | |
/** | |
* @dev Initializes the contract setting the deployer as the initial owner. | |
*/ | |
constructor() { | |
_transferOwnership(_msgSender()); | |
} | |
/** | |
* @dev Returns the address of the current owner. | |
*/ | |
function owner() public view virtual returns (address) { | |
return _owner; | |
} | |
/** | |
* @dev Throws if called by any account other than the owner. | |
*/ | |
modifier onlyOwner() { | |
require(owner() == _msgSender(), "Ownable: caller is not the owner"); | |
_; | |
} | |
/** | |
* @dev Leaves the contract without owner. It will not be possible to call | |
* `onlyOwner` functions anymore. Can only be called by the current owner. | |
* | |
* NOTE: Renouncing ownership will leave the contract without an owner, | |
* thereby removing any functionality that is only available to the owner. | |
*/ | |
function renounceOwnership() public virtual onlyOwner { | |
_transferOwnership(address(0)); | |
} | |
/** | |
* @dev Transfers ownership of the contract to a new account (`newOwner`). | |
* Can only be called by the current owner. | |
*/ | |
function transferOwnership(address newOwner) public virtual onlyOwner { | |
require(newOwner != address(0), "Ownable: new owner is the zero address"); | |
_transferOwnership(newOwner); | |
} | |
/** | |
* @dev Transfers ownership of the contract to a new account (`newOwner`). | |
* Internal function without access restriction. | |
*/ | |
function _transferOwnership(address newOwner) internal virtual { | |
address oldOwner = _owner; | |
_owner = newOwner; | |
emit OwnershipTransferred(oldOwner, newOwner); | |
} | |
} | |
// File: @rari-capital/solmate/src/tokens/ERC721.sol | |
pragma solidity >=0.8.0; | |
/// @notice Modern, minimalist, and gas efficient ERC-721 implementation. | |
/// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC721.sol) | |
/// @dev Note that balanceOf does not revert if passed the zero address, in defiance of the ERC. | |
abstract contract ERC721 { | |
/*/////////////////////////////////////////////////////////////// | |
EVENTS | |
//////////////////////////////////////////////////////////////*/ | |
event Transfer(address indexed from, address indexed to, uint256 indexed id); | |
event Approval(address indexed owner, address indexed spender, uint256 indexed id); | |
event ApprovalForAll(address indexed owner, address indexed operator, bool approved); | |
/*/////////////////////////////////////////////////////////////// | |
METADATA STORAGE/LOGIC | |
//////////////////////////////////////////////////////////////*/ | |
string public name; | |
string public symbol; | |
function tokenURI(uint256 id) public view virtual returns (string memory); | |
/*/////////////////////////////////////////////////////////////// | |
ERC721 STORAGE | |
//////////////////////////////////////////////////////////////*/ | |
mapping(address => uint256) public balanceOf; | |
mapping(uint256 => address) public ownerOf; | |
mapping(uint256 => address) public getApproved; | |
mapping(address => mapping(address => bool)) public isApprovedForAll; | |
/*/////////////////////////////////////////////////////////////// | |
CONSTRUCTOR | |
//////////////////////////////////////////////////////////////*/ | |
constructor(string memory _name, string memory _symbol) { | |
name = _name; | |
symbol = _symbol; | |
} | |
/*/////////////////////////////////////////////////////////////// | |
ERC721 LOGIC | |
//////////////////////////////////////////////////////////////*/ | |
function approve(address spender, uint256 id) public virtual { | |
address owner = ownerOf[id]; | |
require(msg.sender == owner || isApprovedForAll[owner][msg.sender], "NOT_AUTHORIZED"); | |
getApproved[id] = spender; | |
emit Approval(owner, spender, id); | |
} | |
function setApprovalForAll(address operator, bool approved) public virtual { | |
isApprovedForAll[msg.sender][operator] = approved; | |
emit ApprovalForAll(msg.sender, operator, approved); | |
} | |
function transferFrom( | |
address from, | |
address to, | |
uint256 id | |
) public virtual { | |
require(from == ownerOf[id], "WRONG_FROM"); | |
require(to != address(0), "INVALID_RECIPIENT"); | |
require( | |
msg.sender == from || msg.sender == getApproved[id] || isApprovedForAll[from][msg.sender], | |
"NOT_AUTHORIZED" | |
); | |
// Underflow of the sender's balance is impossible because we check for | |
// ownership above and the recipient's balance can't realistically overflow. | |
unchecked { | |
balanceOf[from]--; | |
balanceOf[to]++; | |
} | |
ownerOf[id] = to; | |
delete getApproved[id]; | |
emit Transfer(from, to, id); | |
} | |
function safeTransferFrom( | |
address from, | |
address to, | |
uint256 id | |
) public virtual { | |
transferFrom(from, to, id); | |
require( | |
to.code.length == 0 || | |
ERC721TokenReceiver(to).onERC721Received(msg.sender, from, id, "") == | |
ERC721TokenReceiver.onERC721Received.selector, | |
"UNSAFE_RECIPIENT" | |
); | |
} | |
function safeTransferFrom( | |
address from, | |
address to, | |
uint256 id, | |
bytes memory data | |
) public virtual { | |
transferFrom(from, to, id); | |
require( | |
to.code.length == 0 || | |
ERC721TokenReceiver(to).onERC721Received(msg.sender, from, id, data) == | |
ERC721TokenReceiver.onERC721Received.selector, | |
"UNSAFE_RECIPIENT" | |
); | |
} | |
/*/////////////////////////////////////////////////////////////// | |
ERC165 LOGIC | |
//////////////////////////////////////////////////////////////*/ | |
function supportsInterface(bytes4 interfaceId) public pure virtual returns (bool) { | |
return | |
interfaceId == 0x01ffc9a7 || // ERC165 Interface ID for ERC165 | |
interfaceId == 0x80ac58cd || // ERC165 Interface ID for ERC721 | |
interfaceId == 0x5b5e139f; // ERC165 Interface ID for ERC721Metadata | |
} | |
/*/////////////////////////////////////////////////////////////// | |
INTERNAL MINT/BURN LOGIC | |
//////////////////////////////////////////////////////////////*/ | |
function _mint(address to, uint256 id) internal virtual { | |
require(to != address(0), "INVALID_RECIPIENT"); | |
require(ownerOf[id] == address(0), "ALREADY_MINTED"); | |
// Counter overflow is incredibly unrealistic. | |
unchecked { | |
balanceOf[to]++; | |
} | |
ownerOf[id] = to; | |
emit Transfer(address(0), to, id); | |
} | |
function _burn(uint256 id) internal virtual { | |
address owner = ownerOf[id]; | |
require(ownerOf[id] != address(0), "NOT_MINTED"); | |
// Ownership check above ensures no underflow. | |
unchecked { | |
balanceOf[owner]--; | |
} | |
delete ownerOf[id]; | |
delete getApproved[id]; | |
emit Transfer(owner, address(0), id); | |
} | |
/*/////////////////////////////////////////////////////////////// | |
INTERNAL SAFE MINT LOGIC | |
//////////////////////////////////////////////////////////////*/ | |
function _safeMint(address to, uint256 id) internal virtual { | |
_mint(to, id); | |
require( | |
to.code.length == 0 || | |
ERC721TokenReceiver(to).onERC721Received(msg.sender, address(0), id, "") == | |
ERC721TokenReceiver.onERC721Received.selector, | |
"UNSAFE_RECIPIENT" | |
); | |
} | |
function _safeMint( | |
address to, | |
uint256 id, | |
bytes memory data | |
) internal virtual { | |
_mint(to, id); | |
require( | |
to.code.length == 0 || | |
ERC721TokenReceiver(to).onERC721Received(msg.sender, address(0), id, data) == | |
ERC721TokenReceiver.onERC721Received.selector, | |
"UNSAFE_RECIPIENT" | |
); | |
} | |
} | |
/// @notice A generic interface for a contract which properly accepts ERC721 tokens. | |
/// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC721.sol) | |
interface ERC721TokenReceiver { | |
function onERC721Received( | |
address operator, | |
address from, | |
uint256 id, | |
bytes calldata data | |
) external returns (bytes4); | |
} | |
// File: contracts/pointsNFT.sol | |
pragma solidity 0.8.10; | |
interface IURICoder { | |
function returnURI(uint256 _tokenID) external view returns(string memory); | |
} | |
contract pointsNFT is ERC721("PointsNFT", "POINTS"), Ownable, ReentrancyGuard { | |
IURICoder public uriCodePointer; | |
mapping(uint256 => uint256) public tokenSeed; | |
uint256 nextId; | |
constructor(){} | |
/** | |
* @dev Returns whether `tokenId` exists. | |
* | |
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. | |
* | |
* Tokens start existing when they are minted (`_mint`), | |
* and stop existing when they are burned (`_burn`). | |
*/ | |
function _exists(uint256 tokenId) internal view returns (bool) { | |
return ownerOf[tokenId] != address(0); | |
} | |
function tokenURI(uint256 id) public view override returns (string memory) { | |
require(_exists(id), "NONEXISTANT_ID"); | |
if (uriCodePointer == IURICoder(address(0))) { | |
string[3] memory svg; | |
svg[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 50"><style>.base{fill:#fff;font-family:serif;font-size:14px}</style><rect width="100%" height="100%" fill="black"/><text x="10" y="20" class="base">SEED</text><text class="base"><animateMotion dur="15s" repeatCount="indefinite" path="M360,40 -700,40"/>'; | |
svg[1] = Base64.toString(tokenSeed[id]); | |
svg[2] = '</text></svg>'; | |
string memory output = string(abi.encodePacked(svg[0], svg[1], svg[2])); | |
string memory json = Base64.encode(bytes(string(abi.encodePacked("{'name': 'Point #'", Base64.toString(id), "', 'description': 'Testing out points.', 'image': 'data:image/svg+xml;base64,", Base64.encode(bytes(output)), "'}")))); | |
return string(abi.encodePacked("data:application/json;base64,", json)); | |
} else { | |
return uriCodePointer.returnURI(id); | |
} | |
} | |
function claim() external nonReentrant { | |
_mint(msg.sender, nextId); | |
tokenSeed[nextId] = abi.decode(abi.encodePacked(keccak256(abi.encode(block.coinbase, block.timestamp, msg.data, nextId))),(uint256)); | |
nextId++; | |
} | |
function setUriCoder(address _newUriCoder) external onlyOwner { | |
uriCodePointer = IURICoder(_newUriCoder); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
include scrolling text in default metadata