@cofhe/mock-contracts 0.1.0 → 0.1.1
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/CHANGELOG.md +23 -0
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +9 -2
- package/src/MockACL.ts +558 -0
- package/src/MockQueryDecrypter.ts +350 -0
- package/src/MockTaskManager.ts +1026 -0
- package/src/MockZkVerifier.ts +264 -0
- package/src/TestBed.ts +286 -0
- package/src/index.ts +6 -0
- package/src/types.ts +6 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# @cofhe/mock-contracts Changelog
|
|
2
|
+
|
|
3
|
+
## 0.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a1d1323: Add repository info to package.json of public packages to fix npm publish provenance issue.
|
|
8
|
+
- d232d11: Ensure publish includes correct src and dist files
|
|
9
|
+
- b6521fb: Update publish workflow to create versioning PR upon merge with changeset.
|
|
10
|
+
|
|
11
|
+
## 0.1.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- 8d41cf2: Combine existing packages into more reasonable defaults. New package layout is @cofhe/sdk (includes all the core logic for configuring and creating a @cofhe/sdk client, encrypting values, and decrypting handles), mock-contracts, hardhat-plugin, and react.
|
|
16
|
+
- a83facb: Prepare for initial release. Rename scope from `@cofhesdk` to `@cofhe` and rename `cofhesdk` package to `@cofhe/sdk`. Create `publish.yml` to publish `beta` packages on merged PR, and `latest` on changeset PR.
|
|
17
|
+
- 58e93a8: Migrate cofhe-mock-contracts and cofhe-hardhat-plugin into @cofhe/sdk.
|
|
18
|
+
|
|
19
|
+
This changelog is maintained by Changesets and will be populated on each release.
|
|
20
|
+
|
|
21
|
+
- Do not edit this file by hand.
|
|
22
|
+
- Upcoming changes can be previewed with `pnpm changeset status --verbose`.
|
|
23
|
+
- Entries are generated when the Changesets "Version Packages" PR is created/merged.
|