Skip to content

Commit

Permalink
Merge branch 'develop' into silasneo-additions
Browse files Browse the repository at this point in the history
  • Loading branch information
silasneo authored Feb 1, 2025
2 parents 9150e16 + f418cc1 commit 3d926ab
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 25 deletions.
1 change: 0 additions & 1 deletion agent/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ import { holdstationPlugin } from "@elizaos/plugin-holdstation";
import { nvidiaNimPlugin } from "@elizaos/plugin-nvidia-nim";
import { zxPlugin } from "@elizaos/plugin-0x";
import { hyperbolicPlugin } from "@elizaos/plugin-hyperbolic";
import { litPlugin } from "@elizaos/plugin-lit";
import Database from "better-sqlite3";
import fs from "fs";
import net from "net";
Expand Down
40 changes: 16 additions & 24 deletions packages/plugin-dexscreener/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,27 +1,19 @@
import type { Plugin } from "@elizaos/core";
import { TokenPriceAction } from "./actions/tokenAction";
import { TokenPriceEvaluator } from "./evaluators/tokenEvaluator";
import { TokenPriceProvider } from "./providers/tokenProvider";
import {
LatestTokensAction,
LatestBoostedTokensAction,
TopBoostedTokensAction,
} from "./actions/trendsAction";
import type { Plugin } from "@elizaos/core"
import { TokenPriceAction } from "./actions/tokenAction"
import { TokenPriceEvaluator } from "./evaluators/tokenEvaluator"
import { TokenPriceProvider } from "./providers/tokenProvider"
import { LatestTokensAction, LatestBoostedTokensAction, TopBoostedTokensAction } from "./actions/trendsAction"

export * as actions from "./actions";
export * as evaluators from "./evaluators";
export * as providers from "./providers";
export * as actions from "./actions"
export * as evaluators from "./evaluators"
export * as providers from "./providers"

export const dexScreenerPlugin: Plugin = {
name: "dexscreener",
description:
"Dex Screener Plugin with Token Price Action, Token Trends, Evaluators and Providers",
actions: [
new TokenPriceAction(),
new LatestTokensAction(),
new LatestBoostedTokensAction(),
new TopBoostedTokensAction(),
],
evaluators: [new TokenPriceEvaluator()],
providers: [new TokenPriceProvider()],
};
name: "dexscreener",
description: "Dex Screener Plugin with Token Price Action, Token Trends, Evaluators and Providers",
actions: [new TokenPriceAction(), new LatestTokensAction(), new LatestBoostedTokensAction(), new TopBoostedTokensAction()],
evaluators: [new TokenPriceEvaluator()],
providers: [new TokenPriceProvider()],
}

export default dexScreenerPlugin

0 comments on commit 3d926ab

Please sign in to comment.