UNPKG

@lukso/lsp8-contracts

Version:

Package for the LSP8 Identifiable Digital Asset standard

36 lines (34 loc) 1.88 kB
declare const INTERFACE_ID_LSP8 = "0x3a271706"; declare const INTERFACE_ID_LSP8_PREVIOUS: { 'v0.14.0': string; 'v0.12.0': string; }; declare const LSP8DataKeys: { readonly LSP8TokenIdFormat: "0xf675e9361af1c1664c1868cfa3eb97672d6b1a513aa5b81dec34c9ee330e818d"; readonly LSP8TokenMetadataBaseURI: "0x1a7628600c3bac7101f53697f48df381ddc36b9015e7d7c9c5633d1252aa2843"; readonly LSP8ReferenceContract: "0x708e7b881795f2e6b6c2752108c177ec89248458de3bf69d0d43480b3e5034e6"; }; declare const LSP8_TYPE_IDS: { readonly LSP8Tokens_SenderNotification: "0xb23eae7e6d1564b295b4c3e3be402d9a2f0776c57bdf365903496f6fa481ab00"; readonly LSP8Tokens_RecipientNotification: "0x0b084a55ebf70fd3c06fd755269dac2212c4d3f0f4d09079780bfa50c1b2984d"; readonly LSP8Tokens_OperatorNotification: "0x8a1c15a8799f71b547e08e2bcb2e85257e81b0a07eee2ce6712549eef1f00970"; readonly LSP8Tokens_VotesDelegateeNotification: "0x19419598f788eae88574bbb83ec563ad0cb43cd7ddbbc88857b2efa2d8faa8eb"; readonly LSP8Tokens_VotesDelegatorNotification: "0x2f6d3f668c2e57dbae4c255f2d9e0b69d47a8848d69a2251cce137529e34743e"; }; /** * @dev List of LSP8 Token ID Formats that can be used to create different types of NFTs and represent each NFT identifiers (= tokenIds) differently. * @see For details see: https://github.com/lukso-network/LIPs/blob/main/LSPs/LSP-8-IdentifiableDigitalAsset.md#lsp8tokenidformat */ declare const LSP8_TOKEN_ID_FORMAT: { readonly NUMBER: 0; readonly STRING: 1; readonly ADDRESS: 2; readonly UNIQUE_ID: 3; readonly HASH: 4; readonly MIXED_DEFAULT_NUMBER: 100; readonly MIXED_DEFAULT_STRING: 101; readonly MIXED_DEFAULT_ADDRESS: 102; readonly MIXED_DEFAULT_UNIQUE_ID: 103; readonly MIXED_DEFAULT_HASH: 104; }; export { INTERFACE_ID_LSP8, INTERFACE_ID_LSP8_PREVIOUS, LSP8DataKeys, LSP8_TOKEN_ID_FORMAT, LSP8_TYPE_IDS };