토큰 표준 (Token Standard)

블록체인에서 토큰을 생성하고 관리하기 위한 일련의 규칙입니다.

토큰 표준은 서로 다른 토큰과 애플리케이션 간의 상호 운용성을 보장합니다. 가장 유명한 것은 대체 가능한 토큰을 위한 이더리움의 ERC-20이지만, ERC-721(NFT) 및 Solana의 SPL과 같은 다른 표준도 존재합니다.

        graph LR
  Center["토큰 표준 (Token Standard)"]:::main
  Rel_erc_20["erc-20"]:::related -.-> Center
  click Rel_erc_20 "/terms/erc-20"
  Rel_erc_721["erc-721"]:::related -.-> Center
  click Rel_erc_721 "/terms/erc-721"
  Rel_smart_contract["smart-contract"]:::related -.-> Center
  click Rel_smart_contract "/terms/smart-contract"
  classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
  classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
  classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
  classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
  linkStyle default stroke:#4b5563,stroke-width:2px;

      

🧒 5살도 이해할 수 있게 설명

Generated ELI5 content

🤓 Expert Deep Dive

Generated expert content

❓ 자주 묻는 질문

Why are token standards important?

They allow wallets and exchanges to support thousands of different tokens with a single codebase.

What is the most common standard?

ERC-20 on Ethereum is the most widely adopted standard for fungible tokens.

Can I upgrade a token standard?

Once deployed, the contract is immutable, but new standards (like ERC-223 or ERC-777) can be created to improve upon old ones.

📚 출처