hardhat-deploy 0.10.2 → 0.10.5-zksync.0

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.
Files changed (40) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/README.md +10 -1
  3. package/dist/extendedArtifacts/DiamondERC165Init.json +1549 -0
  4. package/dist/src/DeploymentsManager.js +6 -6
  5. package/dist/src/DeploymentsManager.js.map +1 -1
  6. package/dist/src/etherscan.d.ts +1 -1
  7. package/dist/src/etherscan.d.ts.map +1 -1
  8. package/dist/src/etherscan.js +19 -7
  9. package/dist/src/etherscan.js.map +1 -1
  10. package/dist/src/helpers.d.ts +3 -2
  11. package/dist/src/helpers.d.ts.map +1 -1
  12. package/dist/src/helpers.js +100 -17
  13. package/dist/src/helpers.js.map +1 -1
  14. package/dist/src/index.js +6 -2
  15. package/dist/src/index.js.map +1 -1
  16. package/dist/src/old_diamondbase.json +275 -0
  17. package/dist/src/type-extensions.d.ts +5 -0
  18. package/dist/src/type-extensions.d.ts.map +1 -1
  19. package/dist/src/utils.d.ts.map +1 -1
  20. package/dist/src/utils.js +21 -7
  21. package/dist/src/utils.js.map +1 -1
  22. package/dist/types.d.ts +1 -3
  23. package/dist/types.d.ts.map +1 -1
  24. package/package.json +5 -18
  25. package/src/DeploymentsManager.ts +6 -6
  26. package/src/etherscan.ts +32 -16
  27. package/src/helpers.ts +110 -31
  28. package/src/index.ts +8 -3
  29. package/src/type-extensions.ts +5 -0
  30. package/src/utils.ts +23 -8
  31. package/types.ts +1 -1
  32. package/dist/extendedArtifacts/ERC1967Proxy.json +0 -3985
  33. package/dist/src/safe/adapter.d.ts +0 -39
  34. package/dist/src/safe/adapter.d.ts.map +0 -1
  35. package/dist/src/safe/adapter.js +0 -180
  36. package/dist/src/safe/adapter.js.map +0 -1
  37. package/dist/src/safe/execution.d.ts +0 -40
  38. package/dist/src/safe/execution.d.ts.map +0 -1
  39. package/dist/src/safe/execution.js +0 -45
  40. package/dist/src/safe/execution.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # hardhat-deploy
2
2
 
3
+ ## 0.10.5-zksync.0
4
+
5
+ ### Patch Changes
6
+
7
+ - zksync support
8
+
9
+ ## 0.10.4
10
+
11
+ ### Patch Changes
12
+
13
+ - simplify the export-all format
14
+
15
+ ## 0.10.3
16
+
17
+ ### Patch Changes
18
+
19
+ - 42e5330: export option for etherscan request, now even with no error
20
+
3
21
  ## 0.10.2
4
22
 
5
23
  ### Patch Changes
package/README.md CHANGED
@@ -1037,7 +1037,7 @@ The second one is exported via the `--export-all <file>` option and follow the f
1037
1037
 
1038
1038
  ```ts
1039
1039
  export type MultiExport = {
1040
- [chainId: string]: {[name: string]: Export};
1040
+ [chainId: string]: Export[];
1041
1041
  };
1042
1042
  ```
1043
1043
 
@@ -1045,6 +1045,15 @@ As you see the second format include the previous. While in most case you'll nee
1045
1045
 
1046
1046
  Furthermore as hardhat support multiple network configuration for the same network (rinkeby, mainnet...), the export-all format will contains each of them grouped by their chainId.
1047
1047
 
1048
+
1049
+ Note: from v0.10.4 the old multi-export down is no more:
1050
+
1051
+ ```
1052
+ export type MultiExport = {
1053
+ [chainId: string]: {[name: string]: Export};
1054
+ };
1055
+ ```
1056
+
1048
1057
  ---
1049
1058
 
1050
1059
  ---