@elizaos/plugin-tee 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +17 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-tee",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -32,14 +32,25 @@
|
|
|
32
32
|
"agentConfig": {
|
|
33
33
|
"pluginType": "elizaos:plugin:1.0.0",
|
|
34
34
|
"pluginParameters": {
|
|
35
|
-
"TEE_VENDOR": {
|
|
36
|
-
"type": "string"
|
|
37
|
-
},
|
|
38
35
|
"TEE_MODE": {
|
|
39
|
-
"type": "string"
|
|
36
|
+
"type": "string",
|
|
37
|
+
"description": "Determines the Trusted Execution Environment operation mode (LOCAL, DOCKER, PRODUCTION) and is referenced in error handling to validate provided modes.",
|
|
38
|
+
"required": true,
|
|
39
|
+
"sensitive": false
|
|
40
|
+
},
|
|
41
|
+
"TEE_VENDOR": {
|
|
42
|
+
"type": "string",
|
|
43
|
+
"description": "Specifies which Trusted Execution Environment vendor to initialize (defaults to PHALA).",
|
|
44
|
+
"required": false,
|
|
45
|
+
"default": "PHALA",
|
|
46
|
+
"sensitive": false
|
|
40
47
|
},
|
|
41
48
|
"WALLET_SECRET_SALT": {
|
|
42
|
-
"type": "string"
|
|
49
|
+
"type": "string",
|
|
50
|
+
"description": "Secret salt used to deterministically derive Solana and EVM keypairs inside the TEE.",
|
|
51
|
+
"required": true,
|
|
52
|
+
"default": "secret_salt",
|
|
53
|
+
"sensitive": true
|
|
43
54
|
}
|
|
44
55
|
}
|
|
45
56
|
},
|