diff --git a/constants.ts b/constants.ts index d57e68f66..19f0ddbf0 100644 --- a/constants.ts +++ b/constants.ts @@ -30,7 +30,7 @@ export const INTERFACE_IDS = { LSP1UniversalReceiverDelegate: '0xa245bbda', LSP6KeyManager: '0x23f34c62', LSP7DigitalAsset: '0xb3c4928f', - LSP8IdentifiableDigitalAsset: '0xecad9f75', + LSP8IdentifiableDigitalAsset: '0x3a271706', LSP9Vault: '0x28af17e6', LSP11BasicSocialRecovery: '0x049a28f1', LSP14Ownable2Step: '0x94be5999', diff --git a/contracts/LSP8IdentifiableDigitalAsset/LSP8Constants.sol b/contracts/LSP8IdentifiableDigitalAsset/LSP8Constants.sol index 7bc928e02..a2b327981 100644 --- a/contracts/LSP8IdentifiableDigitalAsset/LSP8Constants.sol +++ b/contracts/LSP8IdentifiableDigitalAsset/LSP8Constants.sol @@ -2,7 +2,7 @@ pragma solidity ^0.8.4; // --- ERC165 interface ids -bytes4 constant _INTERFACEID_LSP8 = 0xecad9f75; +bytes4 constant _INTERFACEID_LSP8 = 0x3a271706; // --- ERC725Y Data Keys diff --git a/docs/_interface_ids_table.mdx b/docs/_interface_ids_table.mdx index ef81cec0a..acba017e9 100644 --- a/docs/_interface_ids_table.mdx +++ b/docs/_interface_ids_table.mdx @@ -9,7 +9,7 @@ | **LSP1UniversalReceiverDelegate** | `0xa245bbda` | Interface of the LSP1 - Universal Receiver Delegate standard. | | **LSP6KeyManager** | `0x23f34c62` | Interface of the LSP6 - Key Manager standard, a contract acting as a controller of an ERC725 Account using predfined permissions. | | **LSP7DigitalAsset** | `0xb3c4928f` | Interface of the LSP7 - Digital Asset standard, a fungible digital asset. | -| **LSP8IdentifiableDigitalAsset** | `0xecad9f75` | Interface of the LSP8 - Identifiable Digital Asset standard, a non-fungible digital asset. | +| **LSP8IdentifiableDigitalAsset** | `0x3a271706` | Interface of the LSP8 - Identifiable Digital Asset standard, a non-fungible digital asset. | | **LSP9Vault** | `0x28af17e6` | Interface of LSP9 - Vault standard, a blockchain vault that can hold assets and interact with other smart contracts. | | **LSP11BasicSocialRecovery** | `0x049a28f1` | Interface of the LSP11 - Basic Social Recovery standard, a contract to recover access control into an account. | | **LSP14Ownable2Step** | `0x94be5999` | Interface of the LSP14 - Ownable 2-step standard, an extension of the [EIP173] (Ownable) standard with 2-step process to transfer or renounce ownership. |