인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

seungyeon3231074's profile image
seungyeon3231074

asked

Creating Klaytn Blockchain Applications - NFT

Account Balance & Token Ownership

오류떠요..

Written on

·

276

0

this contract does not implement all functions and thus cannot be created. 라고 뜨는데 뭐가 잘못된거죠..?

blockchain웹앱nft

Answer 1

1

컴파일러 버전에 따라 구현에 차이가 있습니다. 

최신버전으로 컴파일할 경우 ERC721을 상속한 contract ERC721Implementation {.... } 내에 interface ERC721 { ... } 의 모든 function 이 정의/개발되어 있어야 합니다. 

따라서 컴파일러 버전을 0.4.x 로 변경하시거나 interface ERC721 {... } 내 모든 function 을 정의/개발하시면 됩니다. 

seungyeon3231074's profile image
seungyeon3231074

asked

Ask a question