Skip to content

Commit 1cfe4ce

Browse files
committed
fix build
1 parent 44da564 commit 1cfe4ce

File tree

8 files changed

+42455
-43
lines changed

8 files changed

+42455
-43
lines changed

agent/src/index.ts

+5-22
Original file line numberDiff line numberDiff line change
@@ -41,35 +41,24 @@ import {
4141
} from "@ai16z/plugin-coinbase";
4242
import { confluxPlugin } from "@ai16z/plugin-conflux";
4343
import { evmPlugin } from "@ai16z/plugin-evm";
44+
import { storyPlugin } from "@ai16z/plugin-story";
4445
import { flowPlugin } from "@ai16z/plugin-flow";
4546
import { imageGenerationPlugin } from "@ai16z/plugin-image-generation";
4647
import { multiversxPlugin } from "@ai16z/plugin-multiversx";
4748
import { nearPlugin } from "@ai16z/plugin-near";
49+
import { nftGenerationPlugin } from "@ai16z/plugin-nft-generation";
4850
import { createNodePlugin } from "@ai16z/plugin-node";
4951
import { solanaPlugin } from "@ai16z/plugin-solana";
50-
<<<<<<< HEAD
52+
import { suiPlugin } from "@ai16z/plugin-sui";
5153
import { TEEMode, teePlugin } from "@ai16z/plugin-tee";
5254
import { tonPlugin } from "@ai16z/plugin-ton";
5355
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-
>>>>>>> 7ebab21dd8304d3af3edf980905c4ef70e52fa2d
6556
import Database from "better-sqlite3";
6657
import fs from "fs";
6758
import path from "path";
6859
import { fileURLToPath } from "url";
6960
import yargs from "yargs";
7061

71-
import { mainCharacter } from "../maincharacter";
72-
7362
const __filename = fileURLToPath(import.meta.url); // get the resolved path to the file
7463
const __dirname = path.dirname(__filename); // get the name of the directory
7564

@@ -211,7 +200,7 @@ export async function loadCharacters(
211200

212201
if (loadedCharacters.length === 0) {
213202
elizaLogger.info("No characters found, using default character");
214-
loadedCharacters.push(mainCharacter);
203+
loadedCharacters.push(defaultCharacter);
215204
}
216205

217206
return loadedCharacters;
@@ -535,12 +524,9 @@ export async function createAgent(
535524
tokenContractPlugin,
536525
advancedTradePlugin,
537526
]
538-
<<<<<<< HEAD
539527
: []),
540528
...(teeMode !== TEEMode.OFF && walletSecretSalt
541529
? [teePlugin, solanaPlugin]
542-
=======
543-
>>>>>>> 7ebab21dd8304d3af3edf980905c4ef70e52fa2d
544530
: []),
545531
getSecret(character, "COINBASE_API_KEY") &&
546532
getSecret(character, "COINBASE_PRIVATE_KEY") &&
@@ -553,14 +539,11 @@ export async function createAgent(
553539
? flowPlugin
554540
: null,
555541
getSecret(character, "APTOS_PRIVATE_KEY") ? aptosPlugin : null,
556-
<<<<<<< HEAD
557542
getSecret(character, "MVX_PRIVATE_KEY") ? multiversxPlugin : null,
558543
getSecret(character, "ZKSYNC_PRIVATE_KEY") ? zksyncEraPlugin : null,
559544
getSecret(character, "TON_PRIVATE_KEY") ? tonPlugin : null,
560545
getSecret(character, "SUI_PRIVATE_KEY") ? suiPlugin : null,
561-
=======
562546
getSecret(character, "STORY_PRIVATE_KEY") ? storyPlugin : null,
563-
>>>>>>> 7ebab21dd8304d3af3edf980905c4ef70e52fa2d
564547
].filter(Boolean),
565548
providers: [],
566549
actions: [],
@@ -645,7 +628,7 @@ const startAgents = async () => {
645628

646629
let charactersArg = args.characters || args.character;
647630

648-
let characters = [mainCharacter];
631+
let characters = [defaultCharacter];
649632

650633
if (charactersArg) {
651634
characters = await loadCharacters(charactersArg);

packages/plugin-evm/src/actions/transfer.ts

-7
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ export const transferAction = {
106106
options: any,
107107
callback?: HandlerCallback
108108
) => {
109-
<<<<<<< HEAD
110109
try {
111110
const walletProvider = initWalletProvider(runtime);
112111
const action = new TransferAction(walletProvider);
@@ -141,12 +140,6 @@ export const transferAction = {
141140
}
142141
return false;
143142
}
144-
=======
145-
console.log("Transfer action options:", options);
146-
const walletProvider = new WalletProvider(runtime);
147-
const action = new TransferAction(walletProvider);
148-
return action.transfer(runtime, options);
149-
>>>>>>> 7ebab21dd8304d3af3edf980905c4ef70e52fa2d
150143
},
151144
template: transferTemplate,
152145
validate: async (runtime: IAgentRuntime) => {

packages/plugin-story/src/actions/attachTerms.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {
22
composeContext,
33
elizaLogger,
4-
generateObjectDEPRECATED,
4+
generateObjectDeprecated,
55
HandlerCallback,
66
ModelClass,
77
type IAgentRuntime,
@@ -98,7 +98,7 @@ export const attachTermsAction = {
9898
template: attachTermsTemplate,
9999
});
100100

101-
const content = await generateObjectDEPRECATED({
101+
const content = await generateObjectDeprecated({
102102
runtime,
103103
context: attachTermsContext,
104104
modelClass: ModelClass.SMALL,

packages/plugin-story/src/actions/getAvailableLicenses.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {
22
composeContext,
33
elizaLogger,
4-
generateObjectDEPRECATED,
4+
generateObjectDeprecated,
55
HandlerCallback,
66
ModelClass,
77
type IAgentRuntime,
@@ -114,7 +114,7 @@ export const getAvailableLicensesAction = {
114114
: await runtime.updateRecentMessageState(state);
115115

116116
// Generate parameters from context
117-
const content = await generateObjectDEPRECATED({
117+
const content = await generateObjectDeprecated({
118118
runtime,
119119
context: composeContext({
120120
state,

packages/plugin-story/src/actions/getIPDetails.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {
22
composeContext,
33
elizaLogger,
4-
generateObjectDEPRECATED,
4+
generateObjectDeprecated,
55
HandlerCallback,
66
ModelClass,
77
type IAgentRuntime,
@@ -81,7 +81,7 @@ export const getIPDetailsAction = {
8181
: await runtime.updateRecentMessageState(state);
8282

8383
// Generate content using template
84-
const content = await generateObjectDEPRECATED({
84+
const content = await generateObjectDeprecated({
8585
runtime,
8686
context: composeContext({ state, template: getIPDetailsTemplate }),
8787
modelClass: ModelClass.SMALL,

packages/plugin-story/src/actions/licenseIP.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {
22
composeContext,
33
elizaLogger,
4-
generateObjectDEPRECATED,
4+
generateObjectDeprecated,
55
HandlerCallback,
66
ModelClass,
77
type IAgentRuntime,
@@ -69,7 +69,7 @@ export const licenseIPAction = {
6969
template: licenseIPTemplate,
7070
});
7171

72-
const content = await generateObjectDEPRECATED({
72+
const content = await generateObjectDeprecated({
7373
runtime,
7474
context: licenseIPContext,
7575
modelClass: ModelClass.SMALL,

packages/plugin-story/src/actions/registerIP.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
import {
22
composeContext,
33
elizaLogger,
4-
generateObjectDEPRECATED,
4+
generateObjectDeprecated,
55
HandlerCallback,
66
ModelClass,
77
type IAgentRuntime,
88
type Memory,
99
type State,
1010
} from "@ai16z/eliza";
11-
import { WalletProvider } from "../providers/wallet";
12-
import { registerIPTemplate } from "../templates";
13-
import { RegisterIPParams } from "../types";
11+
import pinataSDK from "@pinata/sdk";
1412
import { RegisterIpResponse } from "@story-protocol/core-sdk";
1513
import { createHash } from "crypto";
16-
import pinataSDK from "@pinata/sdk";
1714
import { uploadJSONToIPFS } from "../functions/uploadJSONToIPFS";
15+
import { WalletProvider } from "../providers/wallet";
16+
import { registerIPTemplate } from "../templates";
17+
import { RegisterIPParams } from "../types";
1818

1919
export { registerIPTemplate };
2020

@@ -96,7 +96,7 @@ export const registerIPAction = {
9696
template: registerIPTemplate,
9797
});
9898

99-
const content = await generateObjectDEPRECATED({
99+
const content = await generateObjectDeprecated({
100100
runtime,
101101
context: registerIPContext,
102102
modelClass: ModelClass.SMALL,

0 commit comments

Comments
 (0)