@@ -41,35 +41,24 @@ import {
41
41
} from "@ai16z/plugin-coinbase" ;
42
42
import { confluxPlugin } from "@ai16z/plugin-conflux" ;
43
43
import { evmPlugin } from "@ai16z/plugin-evm" ;
44
+ import { storyPlugin } from "@ai16z/plugin-story" ;
44
45
import { flowPlugin } from "@ai16z/plugin-flow" ;
45
46
import { imageGenerationPlugin } from "@ai16z/plugin-image-generation" ;
46
47
import { multiversxPlugin } from "@ai16z/plugin-multiversx" ;
47
48
import { nearPlugin } from "@ai16z/plugin-near" ;
49
+ import { nftGenerationPlugin } from "@ai16z/plugin-nft-generation" ;
48
50
import { createNodePlugin } from "@ai16z/plugin-node" ;
49
51
import { solanaPlugin } from "@ai16z/plugin-solana" ;
50
- < < < << << HEAD
52
+ import { suiPlugin } from "@ai16z/plugin-sui" ;
51
53
import { TEEMode , teePlugin } from "@ai16z/plugin-tee" ;
52
54
import { tonPlugin } from "@ai16z/plugin-ton" ;
53
55
import { zksyncEraPlugin } from "@ai16z/plugin-zksync-era" ;
54
- import {
55
- nftGenerationPlugin ,
56
- createNFTApiRouter ,
57
- } from "@ai16z/plugin-nft-generation" ;
58
- import { suiPlugin } from "@ai16z/plugin-sui" ;
59
- === === =
60
- import { aptosPlugin , TransferAptosToken } from "@ai16z/plugin-aptos" ;
61
- import { flowPlugin } from "@ai16z/plugin-flow" ;
62
- import { storyPlugin } from "@ai16z/plugin-story" ;
63
- import { teePlugin } from "@ai16z/plugin-tee" ;
64
- >>> >>> > 7 ebab21dd8304d3af3edf980905c4ef70e52fa2d
65
56
import Database from "better-sqlite3" ;
66
57
import fs from "fs" ;
67
58
import path from "path" ;
68
59
import { fileURLToPath } from "url" ;
69
60
import yargs from "yargs" ;
70
61
71
- import { mainCharacter } from "../maincharacter" ;
72
-
73
62
const __filename = fileURLToPath ( import . meta. url ) ; // get the resolved path to the file
74
63
const __dirname = path . dirname ( __filename ) ; // get the name of the directory
75
64
@@ -211,7 +200,7 @@ export async function loadCharacters(
211
200
212
201
if ( loadedCharacters . length === 0 ) {
213
202
elizaLogger . info ( "No characters found, using default character" ) ;
214
- loadedCharacters . push ( mainCharacter ) ;
203
+ loadedCharacters . push ( defaultCharacter ) ;
215
204
}
216
205
217
206
return loadedCharacters ;
@@ -535,12 +524,9 @@ export async function createAgent(
535
524
tokenContractPlugin ,
536
525
advancedTradePlugin ,
537
526
]
538
- << < < < << HEAD
539
527
: [ ] ) ,
540
528
...( teeMode !== TEEMode . OFF && walletSecretSalt
541
529
? [ teePlugin , solanaPlugin ]
542
- === = ===
543
- >>> > >>> 7 ebab21dd8304d3af3edf980905c4ef70e52fa2d
544
530
: [ ] ) ,
545
531
getSecret ( character , "COINBASE_API_KEY" ) &&
546
532
getSecret ( character , "COINBASE_PRIVATE_KEY" ) &&
@@ -553,14 +539,11 @@ export async function createAgent(
553
539
? flowPlugin
554
540
: null ,
555
541
getSecret ( character , "APTOS_PRIVATE_KEY" ) ? aptosPlugin : null ,
556
- << < < < << HEAD
557
542
getSecret ( character , "MVX_PRIVATE_KEY" ) ? multiversxPlugin : null ,
558
543
getSecret ( character , "ZKSYNC_PRIVATE_KEY" ) ? zksyncEraPlugin : null ,
559
544
getSecret ( character , "TON_PRIVATE_KEY" ) ? tonPlugin : null ,
560
545
getSecret ( character , "SUI_PRIVATE_KEY" ) ? suiPlugin : null ,
561
- === = ===
562
546
getSecret ( character , "STORY_PRIVATE_KEY" ) ? storyPlugin : null ,
563
- >>> > >>> 7 ebab21dd8304d3af3edf980905c4ef70e52fa2d
564
547
] . filter ( Boolean ) ,
565
548
providers : [ ] ,
566
549
actions : [ ] ,
@@ -645,7 +628,7 @@ const startAgents = async () => {
645
628
646
629
let charactersArg = args . characters || args . character ;
647
630
648
- let characters = [ mainCharacter ] ;
631
+ let characters = [ defaultCharacter ] ;
649
632
650
633
if ( charactersArg ) {
651
634
characters = await loadCharacters ( charactersArg ) ;
0 commit comments