File tree 1 file changed +8
-15
lines changed
packages/plugin-starknet/src
1 file changed +8
-15
lines changed Original file line number Diff line number Diff line change 1
1
import { Plugin } from "@ai16z/eliza" ;
2
- // import { executeSwap } from "./actions/swap.ts";
3
- // import take_order from "./actions/takeOrder";
4
- // import pumpfun from "./actions/pumpfun";
5
- // import { executeSwapForDAO } from "./actions/swapDao";
6
- // import { walletProvider } from "./providers/wallet.ts";
7
- // import { trustScoreProvider } from "./providers/trustScoreProvider.ts";
8
- // import { trustEvaluator } from "./evaluators/trust.ts";
2
+ import { executeSwap } from "./actions/swap" ;
3
+ import {
4
+ getStarknetAccountProvider ,
5
+ getStarknetRpcProvider ,
6
+ } from "./providers/avnu" ;
9
7
10
8
export const starknetPlugin : Plugin = {
11
9
name : "Starknet" ,
12
- description : "Starknet Plugin for Eliza" ,
13
- actions : [
14
- // executeSwap,
15
- // pumpfun,
16
- // executeSwapForDAO,
17
- // take_order,
18
- ] ,
10
+ description : "Starknet Swap Plugin for Eliza" ,
11
+ actions : [ executeSwap ] ,
19
12
evaluators : [ ] ,
20
- providers : [ ] ,
13
+ providers : [ getStarknetAccountProvider , getStarknetRpcProvider ] ,
21
14
} ;
22
15
23
16
export default starknetPlugin ;
You can’t perform that action at this time.
0 commit comments