Commit 1fd532a 1 parent c14261c commit 1fd532a Copy full SHA for 1fd532a
File tree 4 files changed +5
-10
lines changed
4 files changed +5
-10
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- import createImageAction from "./agent/createImage" ;
1
+ // import createImageAction from "./agent/createImage";
2
2
import deployToken from "./agent/deployToken" ;
3
3
import getWalletHolding from "./agent/getWalletHolding" ;
4
4
import transferToken from "./agent/transferToken" ;
@@ -12,7 +12,7 @@ import registerSns from "./agent/registerSns";
12
12
import getSnsNameRecord from "./agent/getSnsNameRecord" ;
13
13
14
14
export const ACTIONS = {
15
- CREATE_IMAGE_ACTION : createImageAction ,
15
+ // CREATE_IMAGE_ACTION: createImageAction,
16
16
GET_WALLET_HOLDING : getWalletHolding ,
17
17
TRANSFER_TOKEN : transferToken ,
18
18
DEPLOY_TOKEN : deployToken ,
Original file line number Diff line number Diff line change 1
- export * from "./create_image" ;
1
+ // export * from "./create_image";
2
2
export * from "./get_balance" ;
3
3
export * from "./swap" ;
4
4
export * from "./get_wallet_address" ;
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ export * from "./agent";
2
2
3
3
import { SuiAgentKit } from "../agent" ;
4
4
import {
5
+ // SuiCreateImageTool,
5
6
SuiGetWalletAddressTool ,
6
- SuiCreateImageTool ,
7
7
SuiGetHoldingTool ,
8
8
SuiTransferTokenTool ,
9
9
SuiDeployTokenTool ,
@@ -18,8 +18,8 @@ import {
18
18
19
19
export function createSuiTools ( suiKit : SuiAgentKit ) {
20
20
return [
21
+ // new SuiCreateImageTool(suiKit),
21
22
new SuiGetWalletAddressTool ( suiKit ) ,
22
- new SuiCreateImageTool ( suiKit ) ,
23
23
new SuiGetHoldingTool ( suiKit ) ,
24
24
new SuiTransferTokenTool ( suiKit ) ,
25
25
new SuiDeployTokenTool ( suiKit ) ,
You can’t perform that action at this time.
0 commit comments