|
1 | 1 | { |
2 | 2 | "name": "@elizaos/plugin-evm", |
3 | | - "version": "1.0.6", |
| 3 | + "version": "1.0.7", |
4 | 4 | "type": "module", |
5 | 5 | "main": "dist/index.js", |
6 | 6 | "module": "dist/index.js", |
|
57 | 57 | }, |
58 | 58 | "EVM_PROVIDER_URL": { |
59 | 59 | "type": "string" |
| 60 | + }, |
| 61 | + "ETHEREUM_PROVIDER_<CHAIN_NAME>": { |
| 62 | + "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 |
60 | 112 | } |
61 | 113 | } |
62 | 114 | }, |
|
0 commit comments