August 2019
Intermediate to advanced
486 pages
13h 52m
English
This safeTransferFrom() function is mostly the same as the previous one, with one big difference—this is the overloaded function, having different function arguments. This function is used when you do not want to make further function calls from the recipient's callback function call.
The function takes the following arguments:
Let's look at the safeTransferFrom() function code:
function safeTransferFrom(address from, address to, uint256 tokenId) public { safeTransferFrom(from, to, tokenId, "");}
As you can see in the preceding code, it simply ...