-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
36 lines (36 loc) · 956 Bytes
/
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
{
"name": "symphony-testnet-bot",
"version": "1.0.0",
"description": "A bot for interacting with the Symphony testnet, capable of claiming tokens, transferring tokens, and staking tokens with support for scheduling tasks.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"faucet": "node src/core/faucet.js",
"transfer": "node src/core/transfer.js",
"stake": "node src/core/stake.js",
"start": "node index.js"
},
"keywords": [
"symphony",
"testnet",
"faucet",
"bot",
"automation",
"cron",
"proxy"
],
"author": "dante4rt",
"license": "ISC",
"dependencies": {
"@cosmjs/proto-signing": "^0.32.4",
"@cosmjs/stargate": "^0.32.4",
"axios": "^1.7.3",
"bip39": "^3.1.0",
"chalk": "^5.3.0",
"https-proxy-agent": "^7.0.5",
"moment": "^2.30.1",
"node-cron": "^3.0.3",
"readline-sync": "^1.4.10"
}
}