Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

ERC721Harness

Inherits: ERC721

Functions

constructor

constructor(string memory name, string memory symbol) ERC721(name, symbol);

mint

function mint(address account, uint256 tokenId) external;

safeMint

function safeMint(address to, uint256 tokenId) external;

safeMint

function safeMint(address to, uint256 tokenId, bytes memory data) external;

burn

function burn(uint256 tokenId) external;

unsafeOwnerOf

function unsafeOwnerOf(uint256 tokenId) external view returns (address);

unsafeGetApproved

function unsafeGetApproved(uint256 tokenId) external view returns (address);