Created
May 15, 2022 14:46
-
-
Save menxit/47433273c9008d1ee2dfdd53ac068d1d to your computer and use it in GitHub Desktop.
ERC721
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"constant": true, | |
"inputs": [ | |
{ | |
"name": "_owner", | |
"type": "address" | |
} | |
], | |
"name": "balanceOf", | |
"outputs": [ | |
{ | |
"name": "balance", | |
"type": "uint256" | |
} | |
], | |
"payable": false, | |
"type": "function" | |
}, | |
{ | |
"constant": true, | |
"inputs": [ | |
{ | |
"name": "_tokenId", | |
"type": "address" | |
} | |
], | |
"name": "ownerOf", | |
"outputs": [ | |
{ | |
"name": "owner", | |
"type": "address" | |
} | |
], | |
"payable": false, | |
"type": "function" | |
}, | |
{ | |
"constant": true, | |
"inputs": [], | |
"name": "name", | |
"outputs": [ | |
{ | |
"name": "_name", | |
"type": "string" | |
} | |
], | |
"payable": false, | |
"type": "function" | |
}, | |
{ | |
"constant": true, | |
"inputs": [], | |
"name": "symbol", | |
"outputs": [ | |
{ | |
"name": "_name", | |
"type": "string" | |
} | |
], | |
"payable": false, | |
"type": "function" | |
}, | |
{ | |
"constant": true, | |
"inputs": [], | |
"name": "baseURI", | |
"outputs": [ | |
{ | |
"name": "_name", | |
"type": "string" | |
} | |
], | |
"payable": false, | |
"type": "function" | |
}, | |
{ | |
"constant": true, | |
"inputs": [ | |
{ | |
"name": "_tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "tokenURI", | |
"outputs": [ | |
{ | |
"name": "_name", | |
"type": "string" | |
} | |
], | |
"payable": false, | |
"type": "function" | |
}, | |
{ | |
"constant": true, | |
"inputs": [], | |
"name": "totalSupply", | |
"outputs": [ | |
{ | |
"name": "_totalSupply", | |
"type": "uint256" | |
} | |
], | |
"payable": false, | |
"type": "function" | |
}, | |
{ | |
"constant": true, | |
"inputs": [ | |
{ | |
"name": "_index", | |
"type": "uint256" | |
} | |
], | |
"name": "tokenByIndex", | |
"outputs": [ | |
{ | |
"name": "_tokenId", | |
"type": "uint256" | |
} | |
], | |
"payable": false, | |
"type": "function" | |
}, | |
{ | |
"constant": true, | |
"inputs": [ | |
{ | |
"name": "_owner", | |
"type": "address" | |
}, | |
{ | |
"name": "_index", | |
"type": "uint256" | |
} | |
], | |
"name": "tokenOfOwnerByIndex", | |
"outputs": [ | |
{ | |
"name": "_tokenId", | |
"type": "uint256" | |
} | |
], | |
"payable": false, | |
"type": "function" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment