# Skill 04 Nft Management

> Manages NFTs including minting, trading, ERC-721/1155 operations, marketplace integration, and token-bound accounts (ERC-6551). Use when working with NFT collections, metadata, or TBA wallets.

- Skill: `vaquarkhan/skill-04-nft-management` (Agent Skill)
- Install (CLI): `npx skillmds@latest add vaquarkhan/skill-04-nft-management`
- Raw SKILL.md: https://api.skillmd.com/api/skills/vaquarkhan/skill-04-nft-management/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: vaquarkhan (https://skillmd.com/u/vaquarkhan)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/vaquarkhan/skill-04-nft-management

---


# NFT Management

## When to Use

- Minting ERC-721 or ERC-1155 tokens
- Buying/selling on OpenSea, Blur, Reservoir
- Resolving and validating NFT metadata
- Creating token-bound accounts (ERC-6551)
- Managing royalty enforcement (EIP-2981)

## Prerequisites

- MCP: `nft-metadata-server`, `blockchain-rpc-server`, `ipfs-storage-server`
- Skills: skill-02, skill-08 (verify collection contracts)

## Workflow

### 1. Collection Verification

- Verify contract on explorer; check for verified source
- Confirm standard: ERC-721 (`ownerOf`), ERC-1155 (`balanceOf` with id)
- Check for honeypot patterns (non-transferable after mint, hidden fees)
- Validate royalty config via `royaltyInfo(tokenId, salePrice)`

### 2. Minting

1. Resolve metadata URI (IPFS CID or Arweave txid)
2. Pin metadata via `ipfs-storage-server` before mint
3. Estimate mint cost including gas
4. Execute mint; verify token received

### 3. Trading

- Use Reservoir API via `nft-metadata-server` for aggregated listings
- Set approval: prefer `setApprovalForAll` only for trusted marketplaces
- For high-value sales: use private tx submission (skill-15)
- Verify listing price and currency (ETH, WETH, USDC)

### 4. Token-Bound Accounts (ERC-6551)

1. Deploy TBA registry implementation
2. Create account: `createAccount(implementation, chainId, tokenContract, tokenId, salt, initData)`
3. TBA can hold ETH, ERC-20, and other NFTs
4. Sign transactions from TBA via ERC-1271

### 5. Metadata Standards

| Field | Requirement |
|-------|-------------|
| `name` | Human-readable token name |
| `description` | Token description |
| `image` | IPFS/Arweave URI (not HTTP unless pinned) |
| `attributes` | Array of trait_type/value pairs |

## References

- `knowledge-base/standards/erc721/`, `erc1155/`, `erc6551/`
- `references/marketplace-apis.md`

