nft-standards

仓库创建 2025年7月25日最近提交 4 天前SkillHot 收录 20 天前
▸ 精选理由

覆盖元数据与市场接入,适合 NFT 项目开发者。

▸ 风险提示

含智能合约示例,部署前需安全审计并防止版税/权限漏洞。

这个 Skill 做什么

实现 ERC-721/1155 NFT 标准与元数据、铸造与市场集成指南。

实现 ERC-721 和 ERC-1155 等 NFT 标准的合约和元数据处理,包含铸造策略、元数据上链/离链方案以及市场对接和版税机制。用在要创建 NFT 集合、搭建交易市场、实现可变/灵魂绑定(soulbound)代币或分润机制时。重点在于把标准规范、元数据最佳实践和市场集成方案都考虑周全,便于合规和互操作。

▸ 展开 SKILL.md 英文原文

Implement NFT standards (ERC-721, ERC-1155) with proper metadata handling, minting strategies, and marketplace integration. Use when creating NFT contracts, building NFT marketplaces, or implementing digital asset systems.

垂直行业NFTERC-721元数据铸造通用
3.8w
Stars
4.1k
Forks
40
仓库内 Skill
+683
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/wshobson/agents/main/plugins/blockchain-web3/skills/nft-standards/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/wshobson/agents/main/plugins/blockchain-web3/skills/nft-standards/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# NFT Standards

Master ERC-721 and ERC-1155 NFT standards, metadata best practices, and advanced NFT features.

## When to Use This Skill

- Creating NFT collections (art, gaming, collectibles)
- Implementing marketplace functionality
- Building on-chain or off-chain metadata
- Creating soulbound tokens (non-transferable)
- Implementing royalties and revenue sharing
- Developing dynamic/evolving NFTs

## ERC-721 (Non-Fungible Token Standard)

```solidity
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/con
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有