Update imt dep source, pnpm version, max_total_ratelimit_per_epoch

This commit is contained in:
stubbsta 2025-11-28 09:33:07 +02:00
parent 65f9e58df9
commit b560521a23
No known key found for this signature in database
4 changed files with 14 additions and 14 deletions

View File

@ -29,7 +29,7 @@ jobs:
- name: "Install Pnpm"
uses: "pnpm/action-setup@v2"
with:
version: "8"
version: "10.23.0"
- name: "Install Node.js"
uses: "actions/setup-node@v3"
@ -62,7 +62,7 @@ jobs:
- name: "Install Pnpm"
uses: "pnpm/action-setup@v2"
with:
version: "8"
version: "10.23.0"
- name: "Install Node.js"
uses: "actions/setup-node@v3"
@ -96,7 +96,7 @@ jobs:
- name: "Install Pnpm"
uses: "pnpm/action-setup@v2"
with:
version: "8"
version: "10.23.0"
- name: "Install Node.js"
uses: "actions/setup-node@v3"
@ -139,7 +139,7 @@ jobs:
- name: "Install Pnpm"
uses: "pnpm/action-setup@v2"
with:
version: "8"
version: "10.23.0"
- name: "Install Node.js"
uses: "actions/setup-node@v3"
@ -161,4 +161,4 @@ jobs:
- name: "Add coverage summary"
run: |
echo "## Coverage result" >> $GITHUB_STEP_SUMMARY
echo "✅ Uploaded to Codecov" >> $GITHUB_STEP_SUMMARY
echo "✅ Uploaded to Codecov" >> $GITHUB_STEP_SUMMARY

View File

@ -12,7 +12,7 @@
"commit-and-tag-version": "^12.2.0"
},
"dependencies": {
"@zk-kit/imt.sol": "https://gitpkg.vercel.app/privacy-scaling-explorations/zk-kit/packages/imt.sol?0699fd1e5ad3683ae0090e0626f75d7834145500",
"@zk-kit/imt.sol": "github:privacy-scaling-explorations/zk-kit#0699fd1e5ad3683ae0090e0626f75d7834145500&path:packages/imt.sol",
"poseidon-solidity": "^0.0.5"
},
"keywords": [
@ -24,6 +24,7 @@
"solidity",
"template"
],
"packageManager": "pnpm@10.23.0",
"private": true,
"scripts": {
"clean": "rm -rf cache out",
@ -45,4 +46,4 @@
"deploy:linea_sepolia:proxy": "export RPC_URL=https://rpc.sepolia.linea.build && ./envCheck.sh && FOUNDRY_PROFILE=linea_sepolia forge script --chain 59141 script/Deploy.s.sol:DeployProxy --rpc-url $RPC_URL --broadcast --verify -vv --account $ACCOUNT --legacy --sender $ETH_FROM",
"deploy:linea_sepolia": "npm run deploy:linea_sepolia:price_calculator && npm run deploy:linea_sepolia:wakurln_impl_v2 && npm run deploy:linea_sepolia:proxy"
}
}
}

11
pnpm-lock.yaml generated
View File

@ -9,8 +9,8 @@ importers:
.:
dependencies:
'@zk-kit/imt.sol':
specifier: https://gitpkg.vercel.app/privacy-scaling-explorations/zk-kit/packages/imt.sol?0699fd1e5ad3683ae0090e0626f75d7834145500
version: imt.sol@https://gitpkg.vercel.app/privacy-scaling-explorations/zk-kit/packages/imt.sol?0699fd1e5ad3683ae0090e0626f75d7834145500
specifier: github:privacy-scaling-explorations/zk-kit#0699fd1e5ad3683ae0090e0626f75d7834145500&path:packages/imt.sol
version: imt.sol@git+https://github.com/privacy-scaling-explorations/zk-kit.git#0699fd1e5ad3683ae0090e0626f75d7834145500&path:packages/imt.sol
poseidon-solidity:
specifier: ^0.0.5
version: 0.0.5
@ -494,9 +494,8 @@ packages:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
imt.sol@https://gitpkg.vercel.app/privacy-scaling-explorations/zk-kit/packages/imt.sol?0699fd1e5ad3683ae0090e0626f75d7834145500:
resolution: {tarball: https://gitpkg.vercel.app/privacy-scaling-explorations/zk-kit/packages/imt.sol?0699fd1e5ad3683ae0090e0626f75d7834145500}
name: imt.sol
imt.sol@git+https://github.com/privacy-scaling-explorations/zk-kit.git#0699fd1e5ad3683ae0090e0626f75d7834145500&path:packages/imt.sol:
resolution: {commit: 0699fd1e5ad3683ae0090e0626f75d7834145500, path: packages/imt.sol, repo: https://github.com/privacy-scaling-explorations/zk-kit.git, type: git}
version: 0.0.0
indent-string@4.0.0:
@ -1618,7 +1617,7 @@ snapshots:
parent-module: 1.0.1
resolve-from: 4.0.0
imt.sol@https://gitpkg.vercel.app/privacy-scaling-explorations/zk-kit/packages/imt.sol?0699fd1e5ad3683ae0090e0626f75d7834145500:
imt.sol@git+https://github.com/privacy-scaling-explorations/zk-kit.git#0699fd1e5ad3683ae0090e0626f75d7834145500&path:packages/imt.sol:
dependencies:
poseidon-solidity: 0.0.5

View File

@ -46,7 +46,7 @@ contract DeployWakuRlnV2 is BaseScript {
}
contract DeployProxy is BaseScript {
uint32 public constant MAX_TOTAL_RATELIMIT_PER_EPOCH = 160_000;
uint32 public constant MAX_TOTAL_RATELIMIT_PER_EPOCH = 1_000_000;
uint32 public constant MIN_RATELIMIT_PER_MEMBERSHIP = 20;
uint32 public constant MAX_RATELIMIT_PER_MEMBERSHIP = 600;
uint32 public constant ACTIVE_DURATION = 180 days;