File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -157,7 +157,7 @@ COINBASE_GENERATED_WALLET_HEX_SEED=
157
157
158
158
# TEE Configuration
159
159
DSTACK_SIMULATOR_ENDPOINT =
160
- WALLET_SECRET_SALT = secret_salt
160
+ WALLET_SECRET_SALT = # ONLY DEFINE IF YOU WANT TO USE TEE Plugin, otherwise it will throw errors
161
161
162
162
# Galadriel Configuration
163
163
GALADRIEL_API_KEY = gal-* # Get from https://dashboard.galadriel.com/
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ import { imageGenerationPlugin } from "@ai16z/plugin-image-generation";
35
35
import { evmPlugin } from "@ai16z/plugin-evm" ;
36
36
import { createNodePlugin } from "@ai16z/plugin-node" ;
37
37
import { solanaPlugin } from "@ai16z/plugin-solana" ;
38
-
38
+ import { teePlugin } from "@ai16z/plugin-tee" ;
39
39
import Database from "better-sqlite3" ;
40
40
import fs from "fs" ;
41
41
import path from "path" ;
@@ -392,6 +392,7 @@ export function createAgent(
392
392
getSecret ( character , "COINBASE_PRIVATE_KEY" )
393
393
? [ coinbaseMassPaymentsPlugin , tradePlugin ]
394
394
: [ ] ) ,
395
+ getSecret ( character , "WALLET_SECRET_SALT" ) ? teePlugin : null ,
395
396
] . filter ( Boolean ) ,
396
397
providers : [ ] ,
397
398
actions : [ ] ,
You can’t perform that action at this time.
0 commit comments