@web3dotorg/evm-slc-core-sdk 0.3.3 → 0.3.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.
Files changed (2) hide show
  1. package/index.ts +13 -6
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -1,8 +1,3 @@
1
- import * as contracts from "./contracts";
2
- import * as factories from "./factories/contracts";
3
-
4
- export * from "./constants";
5
-
6
1
  export {
7
2
  // ExecutorRegistry Parameters
8
3
  MAX_ACTIVE_EXECUTORS_PARAM_NAME,
@@ -38,4 +33,16 @@ export {
38
33
  MAX_BASIS_POINTS,
39
34
  } from "./constants";
40
35
 
41
- export { contracts, factories };
36
+ // Re-export from contract
37
+
38
+ export * from "./contracts";
39
+
40
+ // Re-exports from factories
41
+
42
+ export { ExecutorsRegistry__factory } from "./factories/contracts/governance/ExecutorsRegistry__factory";
43
+ export { Governance__factory } from "./factories/contracts/governance/Governance__factory";
44
+ export { NeutralsRegistry__factory } from "./factories/contracts/governance/NeutralsRegistry__factory";
45
+ export { ParameterRegistry__factory } from "./factories/contracts/governance/ParameterRegistry__factory";
46
+
47
+ export { SLCCoreFactory__factory } from "./factories/contracts/slc-core/SLCCoreFactory__factory";
48
+ export { SLCCore__factory } from "./factories/contracts/slc-core/SLCCore__factory";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@web3dotorg/evm-slc-core-sdk",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "author": "<TBD>",
5
5
  "repository": {
6
6
  "type": "git",