Hi, when isApprovedForAll is called it returns true . When i try to call function below I recieve not owner of token or not approved. Can you please provide any usage?
// Transfer ERC721 token from owner to caller
function transferId(address owner, uint256 id) external {
// Tried both ways
//safeTransferFrom(owner, msg.sender, id);
//_owners[id] = msg.sender;
}
Hi, when
isApprovedForAllis called it returnstrue. When i try to call function below I recieve not owner of token or not approved. Can you please provide any usage?