Skip to content

Commit

Permalink
fix(client-coinbase): fix dependency issue
Browse files Browse the repository at this point in the history
  • Loading branch information
snobbee committed Feb 5, 2025
1 parent e418170 commit 04945ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 0 additions & 2 deletions agent/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -568,8 +568,6 @@ const hasValidRemoteUrls = () =>
process.env.REMOTE_CHARACTER_URLS.startsWith("http");

const startAgents = async () => {
// print process.env.CHARACTER
elizaLogger.log("process.env.CHARACTER", process.env.CHARACTER);
const directClient = new DirectClient();
let serverPort = Number.parseInt(settings.SERVER_PORT || "3000");
const args = parseArguments();
Expand Down
2 changes: 2 additions & 0 deletions clients/client-coinbase/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ import { base } from "viem/chains";

export type WalletType = 'short_term_trading' | 'long_term_trading' | 'dry_powder' | 'operational_capital';

export { WebhookEvent };

export class CoinbaseClient implements Client {
private runtime: IAgentRuntime;
private server: express.Application;
Expand Down
2 changes: 1 addition & 1 deletion clients/client-direct/src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import type { TeeLogQuery, TeeLogService } from "@elizaos/plugin-tee-log";
import { REST, Routes } from "discord.js";
import type { DirectClient } from ".";
import { validateUuid } from "@elizaos/core";
import { WebhookEvent } from "@elizaos/client-coinbase";
import { WebhookEvent } from "@realityspiral/client-coinbase";

interface UUIDParams {
agentId: UUID;
Expand Down

0 comments on commit 04945ec

Please sign in to comment.