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
Right now transferCrossChain in UniversalNFTCore it's like this:
function transferCrossChain(
uint256 tokenId,
address receiver,
address destination
) public payable {
// code
then if developer use it out of the box it's not using the gas in an efficient way because the calls will be externals. But to refactor to external should consider another refactor also like mentioned in issue #45
Right now transferCrossChain in UniversalNFTCore it's like this:
then if developer use it out of the box it's not using the gas in an efficient way because the calls will be externals. But to refactor to external should consider another refactor also like mentioned in issue #45
I recommend to refactor like this:
then if a developer wants to extend it it's just an internal call
The text was updated successfully, but these errors were encountered: