You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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;
}
The text was updated successfully, but these errors were encountered:
Hi, when
isApprovedForAll
is 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?The text was updated successfully, but these errors were encountered: