-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "rota",
"private": true,
"version": "0.1.0",
"description": "Rota — global group savings & rotating credit circles on Arc",
"type": "module",
"scripts": {
"chain": "anvil",
"build:contracts": "cd contracts && forge build",
"test:contracts": "cd contracts && forge test",
"deploy:local": "cd contracts && forge script script/DeployLocal.s.sol --rpc-url http://127.0.0.1:8545 --broadcast --private-key 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 && cd .. && node scripts/abi-sync.mjs",
"deploy:arc": "set -a; [ -f .env ] && . ./.env; [ -f .env.local ] && . ./.env.local; set +a; cd contracts && forge script script/DeployArc.s.sol --rpc-url https://rpc.testnet.arc.network --broadcast && cd .. && node scripts/abi-sync.mjs",
"seed:local": "node scripts/seed-local.mjs",
"seed:arc": "node scripts/seed-arc.mjs",
"abi:sync": "node scripts/abi-sync.mjs",
"lint:genvm": "uvx --from genvm-linter genvm-lint check genlayer/news_curator.py",
"dev": "pnpm --dir app dev",
"build": "pnpm --dir app build"
},
"devDependencies": {
"viem": "^2.21.0"
}
}