zkenclave-sdk 0.1.19 → 0.1.21

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/dist/index.d.mts CHANGED
@@ -152,7 +152,7 @@ declare class MerkleTree {
152
152
 
153
153
  declare const MERKLE_TREE_DEPTH = 20;
154
154
  declare const FIELD_SIZE: bigint;
155
- declare const DEFAULT_GAS_LIMIT = 1500000n;
155
+ declare const DEFAULT_GAS_LIMIT = 3000000n;
156
156
  declare const DEFAULT_BATCH_SIZE = 10;
157
157
  declare const PROOF_EXPIRY_MS = 300000;
158
158
  declare const CONTRACT_ADDRESSES: {
package/dist/index.d.ts CHANGED
@@ -152,7 +152,7 @@ declare class MerkleTree {
152
152
 
153
153
  declare const MERKLE_TREE_DEPTH = 20;
154
154
  declare const FIELD_SIZE: bigint;
155
- declare const DEFAULT_GAS_LIMIT = 1500000n;
155
+ declare const DEFAULT_GAS_LIMIT = 3000000n;
156
156
  declare const DEFAULT_BATCH_SIZE = 10;
157
157
  declare const PROOF_EXPIRY_MS = 300000;
158
158
  declare const CONTRACT_ADDRESSES: {
package/dist/index.js CHANGED
@@ -61,7 +61,7 @@ var MERKLE_TREE_DEPTH = 20;
61
61
  var FIELD_SIZE = BigInt(
62
62
  "21888242871839275222246405745257275088548364400416034343698204186575808495617"
63
63
  );
64
- var DEFAULT_GAS_LIMIT = 1500000n;
64
+ var DEFAULT_GAS_LIMIT = 3000000n;
65
65
  var DEFAULT_BATCH_SIZE = 10;
66
66
  var PROOF_EXPIRY_MS = 3e5;
67
67
  var CONTRACT_ADDRESSES = {
package/dist/index.mjs CHANGED
@@ -7,7 +7,7 @@ var MERKLE_TREE_DEPTH = 20;
7
7
  var FIELD_SIZE = BigInt(
8
8
  "21888242871839275222246405745257275088548364400416034343698204186575808495617"
9
9
  );
10
- var DEFAULT_GAS_LIMIT = 1500000n;
10
+ var DEFAULT_GAS_LIMIT = 3000000n;
11
11
  var DEFAULT_BATCH_SIZE = 10;
12
12
  var PROOF_EXPIRY_MS = 3e5;
13
13
  var CONTRACT_ADDRESSES = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zkenclave-sdk",
3
- "version": "0.1.19",
3
+ "version": "0.1.21",
4
4
  "description": "TypeScript SDK for privacy-preserving vault withdrawals with ZK proofs",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",