status-go/contracts/erc721
Sale Djenic db5e5832d1 fix_: calculating route for erc721 checks one more call if the function doesn't exist on the contract
Old ERC721 contracts do not have  `safeTransferFrom` function, because of that we couldn't estimate the gas
and we couldn't resolve the right route. Now we firstly check for `safeTransferFrom` function which is supported
by ERC721A contracts and if the contract doesn't have it then we do `transferFrom` function call.

Example of ERC721A contract:
- https://etherscan.io/address/0x0024bc1035d30ae229a4712189b32131758cb000#code

Example of ERC721 contract:
- https://etherscan.io/address/0x06012c8cf97bead5deae237070f9587f8e7a266d#code
2024-08-12 17:26:56 +02:00
..
ERC721.abi fix_: calculating route for erc721 checks one more call if the function doesn't exist on the contract 2024-08-12 17:26:56 +02:00
doc.go fix_: calculating route for erc721 checks one more call if the function doesn't exist on the contract 2024-08-12 17:26:56 +02:00
erc721.go fix_: calculating route for erc721 checks one more call if the function doesn't exist on the contract 2024-08-12 17:26:56 +02:00
erc721.sol fix_: calculating route for erc721 checks one more call if the function doesn't exist on the contract 2024-08-12 17:26:56 +02:00