@arcblock/erc721did-contract 0.3.4 → 0.3.6
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 +3 -3
- package/lib/cjs/EvmChainList.json +1 -1
- package/lib/esm/EvmChainList.json +1 -1
- package/lib/esm/verify-contract.js +1 -0
- package/package.json +10 -9
package/README.md
CHANGED
|
@@ -38,21 +38,21 @@ rm -rf deployments
|
|
|
38
38
|
```bash
|
|
39
39
|
# deploy goerli
|
|
40
40
|
npm run deploy -- --network goerli --tags deploy
|
|
41
|
-
npx hardhat verify --network goerli xxx
|
|
42
41
|
|
|
43
42
|
# deploy base-goerli
|
|
44
43
|
npm run deploy -- --network base-goerli --tags deploy
|
|
45
44
|
|
|
46
45
|
# deploy bsc-test
|
|
47
46
|
npm run deploy -- --network bsc-test --tags deploy
|
|
48
|
-
npx hardhat verify --network bsc-test xxx
|
|
49
47
|
|
|
50
48
|
# deploy sepolia
|
|
51
49
|
npm run deploy -- --network sepolia --tags deploy
|
|
52
|
-
npx hardhat verify --network sepolia xxx
|
|
53
50
|
|
|
54
51
|
# generate lib
|
|
55
52
|
npm run copy-to-lib
|
|
53
|
+
|
|
54
|
+
# batch verify contract
|
|
55
|
+
npm run batch-verify
|
|
56
56
|
```
|
|
57
57
|
|
|
58
58
|
#### Dev ERC721DID Parent Contract + ERC721DID Factory Contract
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.3.
|
|
6
|
+
"version": "0.3.6",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
9
|
"import": "./lib/esm",
|
|
@@ -26,19 +26,19 @@
|
|
|
26
26
|
"lib"
|
|
27
27
|
],
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@arcblock/eslint-config-base": "^0.2.
|
|
29
|
+
"@arcblock/eslint-config-base": "^0.2.4",
|
|
30
30
|
"@nomiclabs/hardhat-ethers": "^2.2.3",
|
|
31
31
|
"@nomiclabs/hardhat-etherscan": "^3.1.7",
|
|
32
32
|
"@nomiclabs/hardhat-waffle": "^2.0.6",
|
|
33
33
|
"@ocap/mcrypto": "1.18.34",
|
|
34
34
|
"@ocap/merkle-tree": "1.18.34",
|
|
35
35
|
"@ocap/wallet": "1.18.34",
|
|
36
|
-
"@openzeppelin/contracts": "^4.9.
|
|
37
|
-
"@rollup/plugin-commonjs": "^25.0.
|
|
36
|
+
"@openzeppelin/contracts": "^4.9.2",
|
|
37
|
+
"@rollup/plugin-commonjs": "^25.0.1",
|
|
38
38
|
"@rollup/plugin-json": "^6.0.0",
|
|
39
39
|
"@rollup/plugin-node-resolve": "^15.1.0",
|
|
40
40
|
"@types/mocha": "^10.0.1",
|
|
41
|
-
"@types/node": "^18.16.
|
|
41
|
+
"@types/node": "^18.16.18",
|
|
42
42
|
"chai": "^4.3.7",
|
|
43
43
|
"dotenv-flow": "^3.2.0",
|
|
44
44
|
"envfile": "^6.18.0",
|
|
@@ -46,9 +46,9 @@
|
|
|
46
46
|
"ethereum-waffle": "^3.4.4",
|
|
47
47
|
"ethereumjs-util": "^7.1.5",
|
|
48
48
|
"ethereumjs-wallet": "^1.0.2",
|
|
49
|
-
"glob": "^10.2.
|
|
50
|
-
"hardhat": "^2.
|
|
51
|
-
"hardhat-contract-sizer": "^2.
|
|
49
|
+
"glob": "^10.2.7",
|
|
50
|
+
"hardhat": "^2.15.0",
|
|
51
|
+
"hardhat-contract-sizer": "^2.10.0",
|
|
52
52
|
"hardhat-deploy": "^0.9.29",
|
|
53
53
|
"hardhat-gas-reporter": "^1.0.9",
|
|
54
54
|
"prettier": "^2.8.8",
|
|
@@ -60,13 +60,14 @@
|
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"@ocap/util": "1.18.34",
|
|
62
62
|
"axios": "^1.4.0",
|
|
63
|
-
"eslint": "^8.
|
|
63
|
+
"eslint": "^8.43.0",
|
|
64
64
|
"ethers": "^5.7.2",
|
|
65
65
|
"lodash": "^4.17.21",
|
|
66
66
|
"p-wait-for": "^3.2.0"
|
|
67
67
|
},
|
|
68
68
|
"scripts": {
|
|
69
69
|
"copy-to-lib": "node tools/copy-to-lib.js && npx rollup -c",
|
|
70
|
+
"batch-verify-contract": "node tools/batch-verify-contract.js",
|
|
70
71
|
"lint": "eslint tests tools",
|
|
71
72
|
"test": "NODE_ENV=local hardhat test --network localhost",
|
|
72
73
|
"test:local": "pnpm run test",
|