Skip to content

Instantly share code, notes, and snippets.

pragma solidity >=0.4.24 <=0.5.6;
/*contract name*/
contract NFTSimple {
string public name = "KlytnLion";
string public symbol = "KL"; //사용하는 화폐
mapping (uint256 => address) public tokenOwner; // 주소를 정수형이랑 매핑
mapping (uint256 => string) public tokenURIs; // 글자를 정수형이랑 매핑
contract NFTSimple {
string public name = "KlayLion";
string public symbol = "KL";
mapping (uint256 => address) public tokenOwner;
mapping (uint256 => string) public tokenURIs;
mapping (address => uint256[]) private _ownedTokens;
bytes4 private constant _KIP17_RECEIVED = 0x6745782b;