@zkclaw/credentials 1.0.1 → 1.0.2
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/package.json +1 -1
- package/src/verifier.ts +2 -2
package/package.json
CHANGED
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('
|
|
34
|
-
PROMOTE: BigInt('
|
|
33
|
+
POST: BigInt('5000') * BigInt(10 ** 18), // 5K tokens
|
|
34
|
+
PROMOTE: BigInt('2000000') * BigInt(10 ** 18), // 2M tokens
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
export type ProofData = {
|