@zama-fhe/sdk 2.1.1-alpha.1 → 2.2.0-alpha.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/README.md +2 -2
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/query/index.cjs.map +1 -1
- package/dist/esm/{activity-DRKVjKvL.d.ts → activity-B4coeVs1.d.ts} +7 -7
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/query/index.d.ts +1 -1
- package/dist/esm/query/index.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @zama-fhe/sdk
|
|
2
2
|
|
|
3
|
-
A TypeScript SDK for building privacy-preserving
|
|
3
|
+
A TypeScript SDK for building privacy-preserving applications on Zama's fhEVM using Fully Homomorphic Encryption (FHE). It abstracts the complexity of confidential contract operations — session management, encrypted state, shielding, unshielding, confidential transfers, and balance decryption — behind a clean, high-level API. Works with any Web3 library (viem, ethers, or custom signers).
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -140,7 +140,7 @@ const balance = await token.balanceOf();
|
|
|
140
140
|
|
|
141
141
|
### ZamaSDK
|
|
142
142
|
|
|
143
|
-
Entry point to the SDK. Composes a relayer backend with a signer and storage layer.
|
|
143
|
+
Entry point to the SDK. Composes a relayer backend with a signer and storage layer. Manages sessions, credentials, and acts as a factory for contract instances.
|
|
144
144
|
|
|
145
145
|
```ts
|
|
146
146
|
const sdk = new ZamaSDK({
|