@elizaos/plugin-tee 1.0.0 → 1.0.1

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.
Files changed (1) hide show
  1. package/package.json +10 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/plugin-tee",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "types": "dist/index.d.ts",
@@ -32,14 +32,18 @@
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) which controls how the provider connects to the TEE simulator or production environment.",
38
+ "required": true,
39
+ "sensitive": false
40
40
  },
41
41
  "WALLET_SECRET_SALT": {
42
- "type": "string"
42
+ "type": "string",
43
+ "description": "Secret salt used as input to deterministically derive Solana and EVM keypairs inside the TEE.",
44
+ "required": true,
45
+ "default": "secret_salt",
46
+ "sensitive": true
43
47
  }
44
48
  }
45
49
  },