-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (89 loc) · 4.14 KB
/
package.json
File metadata and controls
91 lines (89 loc) · 4.14 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "elata-protocol",
"version": "2.0.0",
"description": "Onchain economics for the Internet of Brains - Smart contracts for the Elata Protocol",
"repository": {
"type": "git",
"url": "https://github.com/Elata-Biosciences/elata-protocol.git"
},
"keywords": [
"blockchain",
"defi",
"governance",
"neuroscience",
"eeg",
"research",
"tokenomics",
"staking",
"dao"
],
"author": "Elata Biosciences",
"license": "MIT",
"bugs": {
"url": "https://github.com/Elata-Biosciences/elata-protocol/issues"
},
"homepage": "https://elata.bio",
"scripts": {
"build": "forge build",
"test": "forge test",
"test:gas": "forge test --gas-report",
"test:coverage": "forge coverage",
"test:security": "forge test --match-contract CoreSecurityVerification",
"deploy:sepolia": "forge script script/Deploy.sol --rpc-url $SEPOLIA_RPC_URL --broadcast --verify",
"deploy:mainnet": "forge script script/Deploy.sol --rpc-url $MAINNET_RPC_URL --broadcast --verify",
"format": "forge fmt",
"lint": "forge fmt --check",
"security": "forge test --match-contract CoreSecurityVerification",
"local:up": "./scripts/dev-local.sh",
"local:down": "./scripts/dev-stop.sh",
"local:restart": "./scripts/dev-restart.sh",
"deploy:local": "FOUNDRY_PROFILE=local forge script script/Deploy.sol:Deploy --rpc-url http://127.0.0.1:8545 --broadcast --private-key 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 --ffi",
"seed:local": "FOUNDRY_PROFILE=local forge script script/SeedLocalData.s.sol:SeedLocalData --rpc-url http://127.0.0.1:8545 --broadcast --private-key 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 --ffi",
"config:appstore": "npx tsx scripts/generate-config.ts",
"anvil:start": "anvil --chain-id 31337 --host 127.0.0.1 --port 8545 --block-time 1 --code-size-limit 2147483647",
"dev": "npm run local:up",
"dev:start": "npm run local:up",
"dev:stop": "npm run local:down",
"dev:restart": "npm run local:restart",
"dev:deploy": "npm run deploy:local",
"dev:seed": "npm run seed:local",
"dev:config": "npm run config:appstore",
"dev:anvil": "npm run anvil:start",
"local:setup": "npm run local:up",
"xp:generate": "npx tsx scripts/xp/xp-generate-merkle.ts --in scripts/xp/data/allocs.json --out ../elata-appstore/public/xp-distribution.json --id 1",
"xp:publish": "npx tsx scripts/xp/xp-publish-root.ts --rpc $RPC --key $OPERATOR_PK --contract $XP_ADDR --json ../elata-appstore/public/xp-distribution.json",
"xp:grant-ops": "npx tsx scripts/xp/xp-grant-operators.ts --rpc $RPC --key $ADMIN_PK --contract $XP_ADDR --ops $OPS",
"faucet": "node scripts/faucet.js",
"faucet:eth": "node scripts/faucet-eth.js",
"sim:smoke": "pnpm -C sim run smoke:all",
"sim:smoke:usdc": "pnpm -C sim run smoke:usdc-revenue",
"sim:protocol:fast": "pnpm -C sim run protocol:fast && pnpm -C sim run results:validate:fast",
"sim:protocol:deep": "pnpm -C sim run protocol:deep && pnpm -C sim run results:validate:deep",
"sim:protocol:balanced": "pnpm -C sim run protocol:balanced && pnpm -C sim run results:validate:balanced",
"sim:studio": "pnpm -C sim run studio",
"sim:studio:8790": "pnpm -C sim run studio:8790",
"sim:studio:open": "pnpm -C sim run studio:open",
"sim:studio:check": "pnpm -C sim run studio:check",
"sim:dashboard:open": "pnpm -C sim run dashboard:open",
"sim:llm": "pnpm -C sim run llm:all",
"sim:llm:governance-gossip": "pnpm -C sim run llm:governance-gossip",
"sim:llm:adversarial-rumor": "pnpm -C sim run llm:adversarial-rumor",
"sim:llm:persona-matrix": "pnpm -C sim run llm:persona-matrix",
"sim:validate:gossip": "pnpm -C sim run results:validate:gossip",
"sim:full": "npx tsx sim/scenarios/full-ecosystem.ts",
"sim:report": "npx tsx sim/scripts/generate-simulation-report.ts",
"sim:all": "npm run sim:full && npm run sim:report"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"tsx": "^4.7.0"
},
"dependencies": {
"merkletreejs": "^0.3.11",
"viem": "^2.9.23"
},
"engines": {
"node": ">=18.0.0"
}
}