Submitted by MiloTruck, also found by codegpt
According to LSP7s specification, the ERC-165 interface ID for LSP7 token contracts should be 0x5fcaac27:
However, _INTERFACEID_LSP7 has a different value in the code:
LSP7Constants.sol#L4-L5
Similarly, LSP8s interface ID should be 0x49399145 according to LSP8s specification:
However, _INTERFACEID_LSP8 has a different value in the code:
LSP8Constants.sol#L4-L5
These constants are used in supportsInterface() for the LSP7DigitalAsset and LSP8IdentifiableDigitalAsset contracts.
Protocols that check for LSP7/LSP8 compatibility using the ERC-165 interface IDs declared in the specification will receive incorrect return values when calling supportsInterface().
Ensure that the interface ID declared in the code matches their respective ones in their specifications.
Error
CJ42 (LUKSO) disputed and commented via duplicate issue #101:
CJ42 (LUKSO) responded via private discord communication in regards to their previous comment above:
