2024-05-21 00:46:07 +00:00
|
|
|
{
|
|
|
|
"name": "@waku-org/waku-rlnv2-contract",
|
|
|
|
"description": "rln-v2 Contracts for Waku",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"author": {
|
|
|
|
"name": "waku-org",
|
|
|
|
"url": "https://github.com/waku-org"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"prettier": "^3.0.0",
|
|
|
|
"solhint-community": "^3.6.0",
|
|
|
|
"commit-and-tag-version": "^12.2.0"
|
|
|
|
},
|
2024-05-21 18:34:00 +00:00
|
|
|
"dependencies": {
|
|
|
|
"@zk-kit/imt.sol": "https://gitpkg.now.sh/privacy-scaling-explorations/zk-kit/packages/imt.sol?0699fd1e5ad3683ae0090e0626f75d7834145500",
|
|
|
|
"poseidon-solidity": "^0.0.5"
|
|
|
|
},
|
2024-05-21 00:46:07 +00:00
|
|
|
"keywords": [
|
|
|
|
"blockchain",
|
|
|
|
"ethereum",
|
|
|
|
"forge",
|
|
|
|
"foundry",
|
|
|
|
"smart-contracts",
|
|
|
|
"solidity",
|
|
|
|
"template"
|
|
|
|
],
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
|
|
|
"clean": "rm -rf cache out",
|
|
|
|
"lint": "pnpm lint:sol && pnpm prettier:check",
|
|
|
|
"lint:sol": "forge fmt --check && pnpm solhint {script,src,test,certora}/**/*.sol",
|
|
|
|
"prettier:check": "prettier --check **/*.{json,md,yml} --ignore-path=.prettierignore",
|
|
|
|
"prettier:write": "prettier --write **/*.{json,md,yml} --ignore-path=.prettierignore",
|
|
|
|
"gas-report": "forge test --gas-report 2>&1 | (tee /dev/tty | awk '/Test result:/ {found=1; buffer=\"\"; next} found && !/Ran/ {buffer=buffer $0 ORS} /Ran/ {found=0} END {printf \"%s\", buffer}' > .gas-report)",
|
|
|
|
"release": "commit-and-tag-version",
|
2024-05-28 12:26:10 +00:00
|
|
|
"adorno": "pnpm prettier:write && forge fmt && forge snapshot && pnpm gas-report",
|
2024-05-30 13:51:55 +00:00
|
|
|
"deploy:sepolia": "./envCheck.sh && FOUNDRY_PROFILE=sepolia forge script --chain sepolia script/Deploy.s.sol:Deploy --rpc-url $RPC_URL --broadcast --verify -vv --account $ACCOUNT --legacy --sender $ETH_FROM",
|
|
|
|
"deploy:cardona": "./envCheck.sh && FOUNDRY_PROFILE=cardona forge script --chain 2442 script/Deploy.s.sol:Deploy --rpc-url https://rpc.cardona.zkevm-rpc.com --broadcast --verify -vv --account $ACCOUNT --legacy --sender $ETH_FROM",
|
2024-06-26 08:59:18 +00:00
|
|
|
"deploy:linea_sepolia": "./envCheck.sh && FOUNDRY_PROFILE=linea_sepolia forge script --chain 59141 script/Deploy.s.sol:Deploy --rpc-url https://rpc.sepolia.linea.build --broadcast --verify -vv --account $ACCOUNT --legacy --sender $ETH_FROM",
|
2024-05-30 13:51:55 +00:00
|
|
|
"deploy:localhost": "./envCheck.sh && forge script script/Deploy.s.sol:Deploy --rpc-url $RPC_URL --broadcast -vv --account $ACCOUNT --sender $ETH_FROM"
|
2024-05-21 00:46:07 +00:00
|
|
|
}
|
|
|
|
}
|