@elizaos/plugin-tee 1.0.1 → 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.
Files changed (1) hide show
  1. package/package.json +10 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/plugin-tee",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "types": "dist/index.d.ts",
@@ -34,13 +34,20 @@
34
34
  "pluginParameters": {
35
35
  "TEE_MODE": {
36
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.",
37
+ "description": "Determines the Trusted Execution Environment operation mode (LOCAL, DOCKER, PRODUCTION) and is referenced in error handling to validate provided modes.",
38
38
  "required": true,
39
39
  "sensitive": false
40
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
47
+ },
41
48
  "WALLET_SECRET_SALT": {
42
49
  "type": "string",
43
- "description": "Secret salt used as input to deterministically derive Solana and EVM keypairs inside the TEE.",
50
+ "description": "Secret salt used to deterministically derive Solana and EVM keypairs inside the TEE.",
44
51
  "required": true,
45
52
  "default": "secret_salt",
46
53
  "sensitive": true