Skip to content

Commit

Permalink
Merge pull request #86 from zama-ai/export-decryptor-web
Browse files Browse the repository at this point in the history
Export decryptor web
  • Loading branch information
immortal-tofu authored Jun 29, 2024
2 parents 25bbaa0 + 85bb7e5 commit 6f54534
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
!lib/**/*
!web.d.ts
!web.js
!node.d.ts
!node.js
!package.json
!README.md
!LICENSE
Expand Down
1 change: 1 addition & 0 deletions node.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './lib/node';
1 change: 1 addition & 0 deletions node.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './lib/node.cjs';
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fhevmjs",
"version": "0.5.0",
"version": "0.5.1",
"description": "fhEVM SDK for blockchain using TFHE",
"main": "lib/node.js",
"types": "lib/node/node.d.ts",
Expand Down
1 change: 1 addition & 0 deletions src/web.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export * from './sdk';
export * from './init';
export { clientKeyDecryptor, getCiphertextCallParams } from './utils';

0 comments on commit 6f54534

Please sign in to comment.