@enclave-e3/contracts 0.0.12-test → 0.0.14-test

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.
@@ -305,5 +305,5 @@
305
305
  "deployedLinkReferences": {},
306
306
  "immutableReferences": {},
307
307
  "inputSourceName": "project/contracts/registry/NaiveRegistryFilter.sol",
308
- "buildInfoId": "solc-0_8_27-aa8c3df0919ff35af7004bf505fa62a6f8baa7f0"
309
- }
308
+ "buildInfoId": "solc-0_8_27-e09265851ba98e1f1077468e6dbf08ff116b5fb9"
309
+ }
@@ -0,0 +1,11 @@
1
+ export * from "./deployEnclave";
2
+ export * from "./deployMocks";
3
+ export * from "./utils";
4
+ export * from "./deployAndSave/ciphernodeRegistryOwnable";
5
+ export * from "./deployAndSave/enclave";
6
+ export * from "./deployAndSave/naiveRegistryFilter";
7
+ export * from "./deployAndSave/mockComputeProvider";
8
+ export * from "./deployAndSave/mockDecryptionVerifier";
9
+ export * from "./deployAndSave/mockInputValidator";
10
+ export * from "./deployAndSave/mockProgram";
11
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../scripts/index.ts"],"names":[],"mappings":"AAMA,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,SAAS,CAAC;AACxB,cAAc,2CAA2C,CAAC;AAC1D,cAAc,yBAAyB,CAAC;AACxC,cAAc,qCAAqC,CAAC;AACpD,cAAc,qCAAqC,CAAC;AACpD,cAAc,wCAAwC,CAAC;AACvD,cAAc,oCAAoC,CAAC;AACnD,cAAc,6BAA6B,CAAC"}
@@ -0,0 +1,15 @@
1
+ // SPDX-License-Identifier: LGPL-3.0-only
2
+ //
3
+ // This file is provided WITHOUT ANY WARRANTY;
4
+ // without even the implied warranty of MERCHANTABILITY
5
+ // or FITNESS FOR A PARTICULAR PURPOSE.
6
+ export * from "./deployEnclave";
7
+ export * from "./deployMocks";
8
+ export * from "./utils";
9
+ export * from "./deployAndSave/ciphernodeRegistryOwnable";
10
+ export * from "./deployAndSave/enclave";
11
+ export * from "./deployAndSave/naiveRegistryFilter";
12
+ export * from "./deployAndSave/mockComputeProvider";
13
+ export * from "./deployAndSave/mockDecryptionVerifier";
14
+ export * from "./deployAndSave/mockInputValidator";
15
+ export * from "./deployAndSave/mockProgram";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@enclave-e3/contracts",
3
3
  "description": "Enclave is an open-source protocol for Encrypted Execution Environments (E3).",
4
- "version": "0.0.12-test",
4
+ "version": "0.0.14-test",
5
5
  "license": "LGPL-3.0-only",
6
6
  "type": "module",
7
7
  "author": {
@@ -9,26 +9,6 @@
9
9
  "url": "https://github.com/gnosisguild"
10
10
  },
11
11
  "exports": {
12
- "./deploy/enclave": {
13
- "import": {
14
- "types": "./dist/scripts/deployEnclave.d.ts",
15
- "default": "./dist/scripts/deployEnclave.js"
16
- },
17
- "require": {
18
- "types": "./dist/scripts/deployEnclave.d.ts",
19
- "default": "./dist/scripts/deployEnclave.js"
20
- }
21
- },
22
- "./deploy/mocks": {
23
- "import": {
24
- "types": "./dist/scripts/deployMocks.d.ts",
25
- "default": "./dist/scripts/deployMocks.js"
26
- },
27
- "require": {
28
- "types": "./dist/scripts/deployMocks.d.ts",
29
- "default": "./dist/scripts/deployMocks.js"
30
- }
31
- },
32
12
  "./tasks/ciphernode": {
33
13
  "import": {
34
14
  "types": "./dist/tasks/ciphernode.d.ts",
@@ -59,7 +39,16 @@
59
39
  "default": "./dist/tasks/utils.js"
60
40
  }
61
41
  },
62
- "./scripts/*": "./scripts/*",
42
+ "./scripts": {
43
+ "import": {
44
+ "types": "./dist/scripts/index.d.ts",
45
+ "default": "./dist/scripts/index.js"
46
+ },
47
+ "require": {
48
+ "types": "./dist/scripts/index.d.ts",
49
+ "default": "./dist/scripts/index.js"
50
+ }
51
+ },
63
52
  "./contracts/*": "./contracts/*",
64
53
  "./artifacts/*": "./artifacts/*",
65
54
  "./types": {
@@ -126,7 +115,7 @@
126
115
  "tsup": "^8.5.0",
127
116
  "typechain": "^8.3.2",
128
117
  "typescript": "5.8.3",
129
- "@enclave-e3/config": "0.0.12-test"
118
+ "@enclave-e3/config": "0.0.14-test"
130
119
  },
131
120
  "files": [
132
121
  "contracts",