-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "sentinel-protocol",
"version": "2.0.0",
"description": "Sentinel Protocol - Security + PoR + ACE Layers",
"private": true,
"scripts": {
"install:all": "npm install && cd contracts && npm install && cd ../sentinel-node && npm install && cd ../api-server && npm install",
"api": "cd api-server && npm run dev",
"deploy:registry": "cd contracts && npx hardhat run scripts/deploy-registry.ts --network sepolia",
"deploy:bank": "cd contracts && npx hardhat run scripts/deploy-sentinel-bank.ts --network sepolia",
"por:listen": "cd sentinel-node && npm run por:listen",
"por:demo": "npx ts-node scripts/demo-por-mint.ts",
"demo": "echo 'See README.md for demo instructions'",
"docs": "cat README.md",
"test:pause": "cd sentinel-node && npx ts-node tests/test-pause-with-don.ts",
"pause:sim": "cre workflow simulate pause-with-don --target local-simulation --payload '{\"action\":\"pause\",\"broadcast\":false}'",
"pause:broadcast": "cre workflow simulate pause-with-don --target local-simulation --broadcast --payload '{\"action\":\"pause\",\"broadcast\":true}'",
"blacklist:sync": "cd workflows/blacklist-manager && cre workflow simulate . --target local-simulation --trigger-index 1 --non-interactive --http-payload '{\"action\":\"full-sync\"}'"
},
"keywords": ["sentinel", "por", "chainlink", "security", "stablecoin"],
"author": "Sentinel Team",
"license": "MIT",
"workspaces": [
"contracts",
"sentinel-node",
"api-server"
]
}