What it shows
A vanilla OpenZeppelin ERC-721 + ERC721URIStorage whose tokenURI points at a
Walrus aggregator URL. Two write paths drop the same kind of string into the same contract: an operator
backend route signing with @mysten/walrus, or the public Walrus testnet publisher PUT.
// the entire EVM-side contract surface function mint(string tokenURI_) external returns (uint256); function mintTo(address to, string tokenURI_) external returns (uint256); event Minted(uint256 indexed tokenId, address indexed minter, string tokenURI_);