@lukso/lsp8-contracts 0.15.0-rc.1 → 0.15.0-rc.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -0
- package/artifacts/ILSP8IdentifiableDigitalAsset.json +602 -0
- package/artifacts/LSP8Burnable.json +954 -0
- package/artifacts/LSP8BurnableInitAbstract.json +967 -0
- package/artifacts/LSP8Enumerable.json +955 -0
- package/artifacts/LSP8EnumerableInitAbstract.json +968 -0
- package/compatibility-abis/LSP8IdentifiableDigitalAsset-v0.12.0.json +748 -0
- package/compatibility-abis/LSP8IdentifiableDigitalAsset-v0.13.0.json +899 -0
- package/compatibility-abis/LSP8IdentifiableDigitalAsset-v0.14.0.json +899 -0
- package/compatibility-abis/README.md +9 -0
- package/package.json +4 -3
- package/types/contracts/ILSP8IdentifiableDigitalAsset.ts +706 -0
- package/types/contracts/extensions/LSP8Burnable.ts +797 -0
- package/types/contracts/extensions/LSP8BurnableInitAbstract.ts +829 -0
- package/types/contracts/extensions/LSP8Enumerable.ts +790 -0
- package/types/contracts/extensions/LSP8EnumerableInitAbstract.ts +821 -0
- package/types/index.ts +4954 -664
@@ -0,0 +1,9 @@
|
|
1
|
+
# Compatibility ABIs for LS8
|
2
|
+
|
3
|
+
This folder contains historical ABIs from previous release versions.
|
4
|
+
|
5
|
+
- `v0.14.0`: LSP8 interface ID was `0x3a271706`.
|
6
|
+
- `v0.13.0`: LSP8 interface ID was `0xecad9f75`.
|
7
|
+
- `v0.12.0`: LSP8 interface ID was `0x30dc5278`.
|
8
|
+
|
9
|
+
This is to enable dApps and projects to be backward compatible in their interfaces to display and interact with LSP8 token contracts deployed with these old versions, by consuming their old ABIs.
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lukso/lsp8-contracts",
|
3
|
-
"version": "0.15.0-rc.
|
3
|
+
"version": "0.15.0-rc.4",
|
4
4
|
"description": "Package for the LSP8 Identifiable Digital Asset standard",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"author": "",
|
@@ -20,6 +20,7 @@
|
|
20
20
|
"contracts/**/*.sol",
|
21
21
|
"!contracts/Mocks/**/*.sol",
|
22
22
|
"artifacts/*.json",
|
23
|
+
"compatibility-abis",
|
23
24
|
"dist",
|
24
25
|
"types",
|
25
26
|
"!types/factories",
|
@@ -36,14 +37,14 @@
|
|
36
37
|
"Solidity"
|
37
38
|
],
|
38
39
|
"scripts": {
|
39
|
-
"package": "hardhat prepare-package",
|
40
40
|
"build": "hardhat compile --show-stack-traces",
|
41
41
|
"build:js": "unbuild",
|
42
42
|
"build:types": "npx wagmi generate",
|
43
43
|
"clean": "hardhat clean && rm -Rf dist/",
|
44
44
|
"format": "prettier --write .",
|
45
45
|
"lint": "eslint . --ext .ts,.js",
|
46
|
-
"lint:solidity": "solhint 'contracts/**/*.sol' && prettier --check 'contracts/**/*.sol'"
|
46
|
+
"lint:solidity": "solhint 'contracts/**/*.sol' && prettier --check 'contracts/**/*.sol'",
|
47
|
+
"package": "hardhat prepare-package"
|
47
48
|
},
|
48
49
|
"dependencies": {
|
49
50
|
"@erc725/smart-contracts": "^7.0.0",
|