0xcalldata

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

NameSolidity typeMeaning
tokenIduint256Opaque identifier of the NFT within this contract.

Return value

The address currently assigned as owner.

address result

Return data comes back after execution and is not included in the calldata above.

View all ERC-721 functions →