ERC-721 function
ownerOf(uint256)
Returns the current owner address of a specific ERC-721 token ID.
- Selector
- 0x6352211e
- Mutability
- view
Generate ownerOf calldata
Edit the example inputs to rebuild the bytes instantly in your browser. Nothing is sent and no transaction is submitted.
uint256
calldata36 bytes
sel0x6352211e
ownerOf(uint256)
0x00000000000000000000000000000000000000000000000000000000000000002a
tokenId · uint256 =42
How ownerOf works
A token is uniquely identified by its chain, contract address, and uint256 token ID. Only the token ID appears in calldata.
Parameters
| Name | Solidity type | Meaning |
|---|---|---|
| tokenId | uint256 | Opaque identifier of the NFT within this contract. |
Return value
The address currently assigned as owner.
address resultReturn data comes back after execution and is not included in the calldata above.