Submitted by MiloTruck
The LSP8Burnable contract inherits from LSP8IdentifiableDigitalAssetCore:
LSP8Burnable.sol#L15
However, LSP8 extensions are supposed to inherit LSP8IdentifiableDigitalAsset instead. This can be inferred by looking at LSP8CappedSupply.sol, LSP8CompatibleERC721.sol and LSP8Enumerable.sol:
LSP8CappedSupply.sol#L13
Additionally, the LSP8BurnableInitAbstract.sol file is missing in the repository.
As LSP8Burnable does not inherit LSP8IdentifiableDigitalAsset, a developer who implements their LSP8 token using LSP8Burnable will face the following issues:
The LSP8Burnable contract should inherit LSP8IdentifiableDigitalAsset instead:
LSP8Burnable.sol#L15
Secondly, add a LSP8BurnableInitAbstract.sol file that contains an implementation of LSP8Burnable which can be used in proxies.
CJ42 (LUKSO) confirmed
