@zkclaw/credentials 1.0.2 → 1.0.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/verifier.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zkclaw/credentials",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "type": "module",
5
5
  "main": "src/index.ts",
6
6
  "exports": {
package/src/verifier.ts CHANGED
@@ -30,8 +30,8 @@ export const ANON_TOKEN = ZKCLAW_TOKEN
30
30
 
31
31
  // Balance thresholds (hardcoded for SDK bundle compatibility)
32
32
  export const BALANCE_THRESHOLDS = {
33
- POST: BigInt('5000') * BigInt(10 ** 18), // 5K tokens
34
- PROMOTE: BigInt('2000000') * BigInt(10 ** 18), // 2M tokens
33
+ POST: BigInt('50000') * BigInt(10 ** 18), // 50K tokens
34
+ PROMOTE: BigInt('20000000') * BigInt(10 ** 18), // 20M tokens
35
35
  }
36
36
 
37
37
  export type ProofData = {