-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.97 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "predge-arc",
"version": "0.2.0",
"private": true,
"type": "module",
"description": "Predge on Circle Arc — agents buy whale intelligence with native USDC through the PredgeSettlement contract; on-chain Paid receipts unlock the data and anchor Predge's signed-calls hash chain. Signal-Vault: an agent manages an on-chain USDC posture driven by Predge's signed whale consensus.",
"scripts": {
"genwallet": "node script/genwallet.js",
"deploy": "node script/deploy.js",
"deploy-vault": "node script/deploy-vault.mjs",
"deploy-oracle": "node script/deploy-oracle.mjs",
"oracle": "node oracle.mjs",
"oracle:demo": "node oracle.mjs demo",
"settlement": "node agent-settlement.mjs",
"settlement:demo": "node agent-settlement.mjs demo",
"deploy-market": "node script/deploy-market.mjs",
"e2e": "node e2e.mjs",
"verify": "node verify-cachet.mjs",
"test:oracle": "node --test oracle/test.mjs",
"test:vault-v2": "node --test vault/test-v2.mjs",
"test:market": "node --test market/test.mjs",
"test:drift": "node --test docs/interface-drift.test.mjs",
"test:all": "node --test oracle/test.mjs vault/test.mjs vault/test-v2.mjs market/test.mjs docs/interface-drift.test.mjs",
"setup-agent": "node script/setup-agent.mjs",
"gateway": "node gateway/server.mjs",
"agent": "node agent.mjs",
"anchor": "node anchor.mjs",
"vault": "node vault-keeper.mjs",
"vault:run": "node vault-keeper.mjs run",
"vault:smoke": "node vault-keeper.mjs smoke",
"test:vault": "node --test vault/test.mjs",
"bond": "node bond.mjs",
"bond:demo": "node bond.mjs demo",
"deploy-bond": "node script/deploy-bond.mjs",
"deploy-validator": "node script/deploy-validator.mjs",
"job": "node job.mjs",
"job:demo": "node job.mjs demo",
"deploy-job": "node script/deploy-job.mjs"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"ethers": "^6.13.4",
"express": "^4.21.2",
"solc": "0.8.26"
}
}