Skip to main content
Glama
HyperionERC721.sol618 B
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract HyperionERC721 is ERC721URIStorage, Ownable { uint256 private _nextTokenId; constructor(string memory name, string memory symbol) ERC721(name, symbol) Ownable(msg.sender) {} function mint(address to, string memory tokenURI) public onlyOwner returns (uint256) { uint256 tokenId = _nextTokenId++; _mint(to, tokenId); _setTokenURI(tokenId, tokenURI); return tokenId; } }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/cuongpo/hyperion-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server