@arcblock/erc721did-contract 0.3.1 → 0.3.3
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 +8 -0
- package/lib/cjs/ERC721DID.json +735 -0
- package/lib/cjs/ERC721DIDFactory.json +165 -0
- package/lib/{EvmChainList.json → cjs/EvmChainList.json} +23 -19
- package/lib/{contract.js → cjs/contract.js} +91 -66
- package/lib/esm/ERC721DID.json +735 -0
- package/lib/esm/ERC721DIDFactory.json +165 -0
- package/lib/esm/EvmChainList.json +54 -0
- package/lib/esm/contract.js +1414 -0
- package/package.json +26 -15
- package/lib/ERC721DID.json +0 -725
- package/lib/ERC721DIDFactory.json +0 -155
package/README.md
CHANGED
|
@@ -38,10 +38,18 @@ 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
|
# deploy base-goerli
|
|
42
44
|
npm run deploy -- --network base-goerli --tags deploy
|
|
45
|
+
|
|
43
46
|
# deploy bsc-test
|
|
44
47
|
npm run deploy -- --network bsc-test --tags deploy
|
|
48
|
+
npx hardhat verify --network bsc-test xxx
|
|
49
|
+
|
|
50
|
+
# deploy sepolia
|
|
51
|
+
npm run deploy -- --network sepolia --tags deploy
|
|
52
|
+
npx hardhat verify --network sepolia xxx
|
|
45
53
|
|
|
46
54
|
# generate lib
|
|
47
55
|
npm run copy-to-lib
|