@elizaos/plugin-tee 2.0.3-beta.2 → 2.0.3-beta.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/plugin-tee",
3
- "version": "2.0.3-beta.2",
3
+ "version": "2.0.3-beta.4",
4
4
  "type": "module",
5
5
  "main": "dist/node/index.js",
6
6
  "module": "dist/node/index.js",
@@ -38,13 +38,14 @@
38
38
  }
39
39
  },
40
40
  "files": [
41
+ "registry-entry.json",
41
42
  "dist",
42
43
  "README.md",
43
44
  "LICENSE"
44
45
  ],
45
46
  "sideEffects": false,
46
47
  "dependencies": {
47
- "@elizaos/core": "2.0.3-beta.2",
48
+ "@elizaos/core": "2.0.3-beta.4",
48
49
  "@phala/dstack-sdk": "^0.5.7",
49
50
  "@solana/web3.js": "1.98.4",
50
51
  "viem": "^2.48.8"
@@ -73,7 +74,7 @@
73
74
  "publishConfig": {
74
75
  "access": "public"
75
76
  },
76
- "gitHead": "82fe0f44215954c2417328203f5bd6510985c1fc",
77
+ "gitHead": "f76f55793a0fb8d6b869dd8ddce03970de061e34",
77
78
  "agentConfig": {
78
79
  "pluginType": "elizaos:plugin:1.0.0",
79
80
  "pluginParameters": {
@@ -0,0 +1,53 @@
1
+ {
2
+ "id": "tee",
3
+ "name": "Tee",
4
+ "description": "A plugin for secure key derivation and remote attestation within Trusted Execution Environments (TEE).",
5
+ "npmName": "@elizaos/plugin-tee",
6
+ "version": "2.0.0-beta.0",
7
+ "source": "bundled",
8
+ "tags": ["crypto", "tee"],
9
+ "config": {
10
+ "TEE_MODE": {
11
+ "type": "string",
12
+ "required": true,
13
+ "sensitive": false,
14
+ "label": "Mode",
15
+ "help": "Determines the Trusted Execution Environment operation mode (LOCAL, DOCKER, PRODUCTION) and is referenced in error handling to validate provided modes.",
16
+ "advanced": false
17
+ },
18
+ "TEE_VENDOR": {
19
+ "type": "string",
20
+ "required": false,
21
+ "sensitive": false,
22
+ "default": "PHALA",
23
+ "label": "Vendor",
24
+ "help": "Specifies which Trusted Execution Environment vendor to initialize (defaults to PHALA).",
25
+ "advanced": false
26
+ },
27
+ "WALLET_SECRET_SALT": {
28
+ "type": "secret",
29
+ "required": true,
30
+ "sensitive": true,
31
+ "default": "secret_salt",
32
+ "label": "Secret Salt",
33
+ "help": "Secret salt used to deterministically derive Solana and EVM keypairs inside the TEE.",
34
+ "advanced": false
35
+ }
36
+ },
37
+ "render": {
38
+ "visible": true,
39
+ "pinTo": [],
40
+ "style": "card",
41
+ "icon": "LockKeyhole",
42
+ "group": "feature-other",
43
+ "groupOrder": 12,
44
+ "actions": ["enable", "configure"]
45
+ },
46
+ "resources": {
47
+ "homepage": "https://github.com/elizaos-plugins/plugin-tee#readme",
48
+ "repository": "https://github.com/elizaos-plugins/plugin-tee"
49
+ },
50
+ "dependsOn": [],
51
+ "kind": "plugin",
52
+ "subtype": "other"
53
+ }