-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.21 KB
/
package.json
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
{
"name": "tokensniffer-scam-token-detector",
"displayName": "Token Sniffer Rug Pull Detector",
"version": "0.0.9",
"description": "Detects tokens programmed to steal investor funds",
"repository": "https://github.com/forta-network/forta-solidus-bot",
"longDescription": "This bot is an extension of Token Sniffer, the first and most-used token security platform, powered by Solidus Labs. Token Sniffer’s smart contract scanner analyzes token contract code and functionality, testing for malicious patterns to assess whether or not a token is a hard rug pull.",
"promoUrl": "https://tokensniffer.com/",
"chainIds": [
1
],
"chainSettings": {
"1": {
"shards": 1,
"target": 1
}
},
"scripts": {
"build": "tsc",
"start": "npm run start:dev",
"start:dev": "nodemon --watch src --watch forta.config.json -e js,ts,json --exec \"npm run build && forta-agent run\"",
"start:prod": "forta-agent run --prod",
"tx": "npm run build && forta-agent run --tx",
"block": "npm run build && forta-agent run --block",
"range": "npm run build && forta-agent run --range",
"alert": "npm run build && forta-agent run --alert",
"sequence": "npm run build && forta-agent run --sequence",
"file": "npm run build && forta-agent run --file",
"publish": "forta-agent publish",
"info": "forta-agent info",
"logs": "forta-agent logs",
"push": "forta-agent push",
"disable": "forta-agent disable",
"enable": "forta-agent enable",
"keyfile": "forta-agent keyfile",
"stake": "forta-agent stake",
"test": "jest --detectOpenHandles",
"format": "prettier --write \"src/**/*.ts\""
},
"dependencies": {
"axios": "^1.4.0",
"csv": "^6.3.1",
"csv-parse": "^5.4.0",
"forta-agent": "^0.1.36",
"node-fetch": "^2.6.9",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/jest-when": "^3.5.2",
"@types/nodemon": "^1.19.0",
"@types/ws": "^8.5.5",
"forta-agent-tools": "^3.2.8",
"jest": "^27.0.6",
"jest-websocket-mock": "^2.4.0",
"jest-when": "^3.5.2",
"mock-socket": "^9.2.1",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
}
}