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
{{ message }}
This repository was archived by the owner on Nov 10, 2023. It is now read-only.
NFTs that use a proxy (e.g. POAP) cannot be transfered out. This happens because we check if safeTransferFrom is supported by looking at the byte code of the contract, which obviously doesn't work in cases of proxies (therefore we should not do this). If safeTransferFrom is not supported (which is unlikely for NFTs we display as ERC721 requires this method) we fallback to transfer, but transfer is not part of ERC721.