|
1 | 1 | { |
2 | 2 | "name": "@elizaos/plugin-evm", |
3 | | - "version": "1.0.7", |
| 3 | + "version": "1.0.8", |
4 | 4 | "type": "module", |
5 | 5 | "main": "dist/index.js", |
6 | 6 | "module": "dist/index.js", |
|
53 | 53 | "pluginType": "elizaos:plugin:1.0.0", |
54 | 54 | "pluginParameters": { |
55 | 55 | "EVM_PRIVATE_KEY": { |
56 | | - "type": "string" |
57 | | - }, |
58 | | - "EVM_PROVIDER_URL": { |
59 | | - "type": "string" |
60 | | - }, |
61 | | - "ETHEREUM_PROVIDER_<CHAIN_NAME>": { |
62 | 56 | "type": "string", |
63 | | - "description": "Custom RPC URL for a specific EVM-compatible chain, overriding the default RPC URL inferred from the viem/chains configuration.", |
64 | | - "required": false, |
65 | | - "default": "inferred from viem/chains configuration" |
66 | | - }, |
67 | | - "TEE_MODE": { |
68 | | - "type": "string", |
69 | | - "description": "Sets the Trusted Execution Environment mode. When set to any value other than 'OFF', the application will attempt to use a TEE-derived wallet.", |
70 | | - "required": false, |
71 | | - "default": "OFF" |
72 | | - }, |
73 | | - "WALLET_SECRET_SALT": { |
74 | | - "type": "string", |
75 | | - "description": "Secret salt used to deterministically derive an ECDSA keypair inside the Trusted Execution Environment when TEE_MODE is enabled.", |
76 | | - "required": false |
77 | | - }, |
78 | | - "EVM_PROVIDER_<CHAIN_NAME>": { |
79 | | - "type": "string", |
80 | | - "description": "Alternative variable name for specifying the RPC URL of a specific EVM chain (e.g., EVM_PROVIDER_MAINNET, EVM_PROVIDER_BASE). Used when ETHEREUM_PROVIDER_<CHAIN_NAME> is not set.", |
81 | | - "required": false |
82 | | - }, |
83 | | - "TEST_PRIVATE_KEY": { |
84 | | - "type": "string", |
85 | | - "description": "Private key to be used for tests; if absent a random key is generated.", |
86 | | - "required": false |
87 | | - }, |
88 | | - "FUNDED_TEST_PRIVATE_KEY": { |
89 | | - "type": "string", |
90 | | - "description": "Private key of a wallet pre-funded with testnet ETH for integration and end-to-end tests.", |
91 | | - "required": false |
92 | | - }, |
93 | | - "SEPOLIA_RPC_URL": { |
94 | | - "type": "string", |
95 | | - "description": "Custom RPC endpoint URL for the Sepolia Ethereum testnet.", |
96 | | - "required": false |
97 | | - }, |
98 | | - "BASE_SEPOLIA_RPC_URL": { |
99 | | - "type": "string", |
100 | | - "description": "Custom RPC endpoint URL for the Base Sepolia testnet.", |
101 | | - "required": false |
102 | | - }, |
103 | | - "OP_SEPOLIA_RPC_URL": { |
104 | | - "type": "string", |
105 | | - "description": "Custom RPC endpoint URL for the Optimism Sepolia testnet.", |
106 | | - "required": false |
107 | | - }, |
108 | | - "DEBUG": { |
109 | | - "type": "boolean", |
110 | | - "description": "Enables verbose logging when set (e.g., DEBUG=1).", |
111 | | - "required": false |
| 57 | + "description": "Hex-encoded private key (starting with 0x) used by the WalletProvider to sign governance proposal transactions.", |
| 58 | + "required": true, |
| 59 | + "sensitive": true |
112 | 60 | } |
113 | 61 | } |
114 | 62 | }, |
|
0 commit comments