본문 바로가기
  • 개발 / 공부 / 일상

solidity16

(BlockChain) ERC721Enumerable 구현 https://developerjjh.tistory.com/173 (BlockChain) ERC721 구현 https://developerjjh.tistory.com/171 (BlockChain) IERC721Metadata 구현 interface IERC721Metadata.sol 전체 코드 // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; interface IERC721Metadata { function name() external view returns (string memory); developerjjh.tistory.com ERC721Enumerable 구현 코드 // SPDX-License-Identifier: MIT pragma solidi.. 2023. 3. 12.
(BlockChain) ERC721 구현 https://developerjjh.tistory.com/171 (BlockChain) IERC721Metadata 구현 interface IERC721Metadata.sol 전체 코드 // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; interface IERC721Metadata { function name() external view returns (string memory); function symbol() external view returns (string memory); function tokenU developerjjh.tistory.com https://developerjjh.tistory.com/172 (BlockChain) IERC7.. 2023. 3. 12.
(BlockChain) IERC721 구현 https://developerjjh.tistory.com/171 (BlockChain) IERC721Metadata 구현 interface IERC721Metadata.sol 전체 코드 // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; interface IERC721Metadata { function name() external view returns (string memory); function symbol() external view returns (string memory); function tokenU developerjjh.tistory.com interface IERC721 코드 // SPDX-License-Identifier: MIT pr.. 2023. 3. 11.
(BlockChain) IERC721Metadata 구현 interface IERC721Metadata.sol 전체 코드 // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; interface IERC721Metadata { function name() external view returns (string memory); function symbol() external view returns (string memory); function tokenURI(uint tokenId) external view returns (string memory); } Metadata란 ? 데이터를 위한 데이터, 데이터에 대한 데이터 어떤 목적을 가지고 만들어진 데이터라고 정의할 수 있다 다른 데이터를 설명해 주는 데이터 데이터에 .. 2023. 3. 10.