A plugin for handling Trusted Execution Environment (TEE) operations, providing secure key derivation and remote attestation capabilities.
This plugin provides functionality to:
- Generate secure keys within a TEE environment
- Derive Ed25519 keypairs for Solana
- Derive ECDSA keypairs for Ethereum
- Generate remote attestation quotes
- Manage wallet interactions with TEE-derived keys
npm install @elizaos/plugin-tee
The plugin requires the following environment variables:
TEE_MODE=LOCAL|DOCKER|PRODUCTION
WALLET_SECRET_SALT=your_secret_salt # Required for single agent deployments
DSTACK_SIMULATOR_ENDPOINT=your-endpoint-url # Optional, for simulator purposes
Import and register the plugin in your Eliza configuration:
import { teePlugin } from "@elizaos/plugin-tee";
export default {
plugins: [teePlugin],
// ... other configuration
};
The DeriveKeyProvider
allows for secure key derivation within a TEE environment:
import { DeriveKeyProvider } from "@elizaos/plugin-tee";
// Initialize the provider
const provider = new DeriveKeyProvider();
// Derive a raw key
const rawKey = await provider.rawDeriveKey(
"/path/to/derive",
"subject-identifier"
);
// rawKey is a DeriveKeyResponse that can be used for further processing
const rawKeyArray = rawKey.asUint8Array();
// Derive a Solana keypair (Ed25519)
const solanaKeypair = await provider.deriveEd25519Keypair(
"/path/to/derive",
"subject-identifier"
);
// Derive an Ethereum keypair (ECDSA)
const evmKeypair = await provider.deriveEcdsaKeypair(
"/path/to/derive",
"subject-identifier"
);
The RemoteAttestationProvider
generates remote attestations within a TEE environment:
import { RemoteAttestationProvider } from "@elizaos/plugin-tee";
const provider = new RemoteAttestationProvider();
const attestation = await provider.generateAttestation("your-report-data");
npm run build
npm run test
To get a TEE simulator for local testing, use the following commands:
docker pull phalanetwork/tappd-simulator:latest
# by default the simulator is available in localhost:8090
docker run --rm -p 8090:8090 phalanetwork/tappd-simulator:latest
@phala/dstack-sdk
: Core TEE functionality@solana/web3.js
: Solana blockchain interactionviem
: Ethereum interaction library- Other standard dependencies listed in package.json
deriveKeyProvider
: Manages secure key derivation within TEEremoteAttestationProvider
: Handles generation of remote attestation quoteswalletProvider
: Manages wallet interactions with TEE-derived keys
enum TEEMode {
OFF = "OFF",
LOCAL = "LOCAL", // For local development with simulator
DOCKER = "DOCKER", // For docker development with simulator
PRODUCTION = "PRODUCTION", // For production without simulator
}
interface RemoteAttestationQuote {
quote: string;
timestamp: number;
}
-
Key Management
- Advanced key derivation schemes
- Multi-party computation support
- Key rotation automation
- Backup and recovery systems
- Hardware security module integration
- Custom derivation paths
-
Remote Attestation
- Enhanced quote verification
- Multiple TEE provider support
- Automated attestation renewal
- Policy management system
- Compliance reporting
- Audit trail generation
-
Security Features
- Memory encryption improvements
- Side-channel protection
- Secure state management
- Access control systems
- Threat detection
- Security monitoring
-
Chain Integration
- Multi-chain support expansion
- Cross-chain attestation
- Chain-specific optimizations
- Custom signing schemes
- Transaction privacy
- Bridge security
-
Developer Tools
- Enhanced debugging capabilities
- Testing framework
- Simulation environment
- Documentation generator
- Performance profiling
- Integration templates
-
Performance Optimization
- Parallel processing
- Caching mechanisms
- Resource management
- Latency reduction
- Throughput improvements
- Load balancing
We welcome community feedback and contributions to help prioritize these enhancements.
Contributions are welcome! Please see the CONTRIBUTING.md file for more information.
This plugin integrates with and builds upon several key technologies:
- Phala Network: Confidential smart contract platform
- @phala/dstack-sdk: Core TEE functionality
- @solana/web3.js: Solana blockchain interaction
- viem: Ethereum interaction library
- Intel SGX: Trusted Execution Environment technology
Special thanks to:
- The Phala Network team for their TEE infrastructure
- The Intel SGX team for TEE technology
- The dStack SDK maintainers
- The Eliza community for their contributions and feedback
For more information about TEE capabilities:
This plugin is part of the Eliza project. See the main project repository for license information.