-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.5 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.5 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": "@chainsupport/eliza-polkadot-assethub",
"version": "1.0.19",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"eliza",
"elizaos",
"polkadot",
"substrate",
"blockchain",
"plugin",
"asset-hub",
"dot",
"crypto",
"wallet"
],
"repository": {
"type": "git",
"url": "https://github.com/ChainSupport/eliza-plugin-dot.git"
},
"bugs": {
"url": "https://github.com/ChainSupport/eliza-plugin-dot/issues"
},
"homepage": "https://github.com/ChainSupport/eliza-plugin-dot#readme",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "node --loader ts-node/esm src/index.ts",
"test": "vitest",
"coverage": "vitest run --coverage",
"coverage:watch": "vitest --coverage"
},
"author": "",
"license": "Apache-2.0",
"description": "Core Polkadot Asset Hub blockchain plugin for Eliza OS that provides essential services and actions for asset operations, transfers, and encrypted messaging on the Polkadot ecosystem.",
"devDependencies": {
"@types/node": "^24.0.1",
"@vitest/coverage-v8": "^1.6.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vitest": "^1.6.1"
},
"dependencies": {
"@eliza-dot-aes/common": "^1.0.7",
"@eliza-dot-aes/sr25519-aes": "^1.0.2",
"@elizaos/core": "latest",
"@noble/curves": "^1.9.7",
"@noble/ed25519": "^2.3.0",
"@polkadot/api": "^16.2.1",
"@polkadot/apps-config": "^0.162.1",
"@polkadot/keyring": "^13.5.3",
"@polkadot/types": "^16.2.1",
"@polkadot/types-codec": "^16.4.4",
"@polkadot/util": "^13.5.3",
"@polkadot/util-crypto": "^13.5.1",
"@scure/sr25519": "^0.2.0",
"axios": "^1.11.0",
"ethereum-cryptography": "^3.2.0",
"jssha": "^3.3.1",
"node-cache": "^5.1.2"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"ASSET_HUB_PRIVATE_KEY": {
"type": "string",
"description": "The private key of the POLKADOT Asset Hub wallet.",
"required": true,
"sensitive": false
},
"ASSET_HUB_RPC_URL": {
"type": "string",
"description": "The RPC URL of the POLKADOT Asset Hub.",
"required": false,
"sensitive": false
},
"SUBSCAN_X_API_KEY": {
"type": "string",
"description": "The API key of the Subscan.",
"required": false,
"sensitive": false
}
}}
}