Skip to content

Commit 570de1c

Browse files
authored
Merge pull request #2143 from AIFlowML/fix-akash-eslint
fix: eslint-fix-full-test-again
2 parents e49f680 + 0881e16 commit 570de1c

12 files changed

+30
-33
lines changed

packages/plugin-akash/src/actions/closeDeployment.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ import { MsgCloseDeployment } from "@akashnetwork/akash-api/akash/deployment/v1b
77
import { validateAkashConfig } from "../environment";
88
import { fetchDeployments } from "./getDeploymentApi";
99
import { AkashError, AkashErrorCode } from "../error/error";
10-
import { getCertificatePath } from "../utils/paths";
11-
import { inspectRuntime, isPluginLoaded } from "../runtime_inspect";
10+
// import { getCertificatePath } from "../utils/paths";
11+
import { isPluginLoaded } from "../runtime_inspect";
1212

1313
interface CloseDeploymentContent extends Content {
1414
dseq?: string;
1515
closeAll?: boolean;
1616
}
1717

1818
// Certificate file path
19-
const CERTIFICATE_PATH = getCertificatePath(import.meta.url);
19+
// const CERTIFICATE_PATH = getCertificatePath(import.meta.url);
2020

2121
// Initialize wallet and client
2222
async function initializeClient(runtime: IAgentRuntime) {
@@ -312,7 +312,7 @@ export const closeDeploymentAction: Action = {
312312
runtime: IAgentRuntime,
313313
message: Memory,
314314
state: State | undefined,
315-
options: { [key: string]: unknown } = {},
315+
_options: { [key: string]: unknown } = {},
316316
callback?: HandlerCallback
317317
): Promise<boolean> => {
318318
const actionId = Date.now().toString();

packages/plugin-akash/src/actions/createDeployment.ts

+6-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { AkashError, AkashErrorCode, withRetry } from "../error/error";
1616
import * as fs from 'fs';
1717
import * as path from 'path';
1818
import { getCertificatePath, getDefaultSDLPath } from "../utils/paths";
19-
import { fileURLToPath } from 'url';
19+
// import { fileURLToPath } from 'url';
2020
import { inspectRuntime, isPluginLoaded } from "../runtime_inspect";
2121
import https from 'node:https';
2222
import axios from 'axios';
@@ -162,7 +162,8 @@ const loadSDLFromFile = (filePath: string): string => {
162162
}
163163
};
164164

165-
const formatErrorMessage = (error: unknown): string => {
165+
// Preserved for future use
166+
/* const formatErrorMessage = (error: unknown): string => {
166167
if (error instanceof AkashError) {
167168
if (error.code === AkashErrorCode.WALLET_NOT_INITIALIZED) {
168169
return "Akash wallet not initialized";
@@ -196,7 +197,7 @@ const formatErrorMessage = (error: unknown): string => {
196197
return "Failed to parse SDL: Invalid format";
197198
}
198199
return message;
199-
};
200+
}; */
200201

201202
async function initializeWallet(mnemonic: string) {
202203
elizaLogger.debug("=== Initializing Wallet ===", {
@@ -619,7 +620,7 @@ async function queryLeaseStatus(lease: any, providerUri: string, certificate: Ce
619620
'Content-Type': 'application/json',
620621
'Accept': 'application/json'
621622
},
622-
// @ts-ignore - Node's fetch has agent support
623+
// @ts-expect-error - TypeScript's fetch types don't include Node's agent support, but it exists at runtime
623624
agent,
624625
signal: AbortSignal.timeout(10000)
625626
});
@@ -1138,7 +1139,7 @@ export const createDeploymentAction: Action = {
11381139
runtime: IAgentRuntime,
11391140
message: Memory,
11401141
state: State | undefined,
1141-
options: { [key: string]: unknown; } = {},
1142+
_options: { [key: string]: unknown; } = {},
11421143
callback?: HandlerCallback
11431144
): Promise<boolean> => {
11441145
const actionId = Date.now().toString();

packages/plugin-akash/src/actions/getDeploymentApi.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { validateAkashConfig } from "../environment";
55
import { AkashError, AkashErrorCode } from "../error/error";
66
import * as fs from 'fs';
77
import * as path from 'path';
8-
import { getCertificatePath, getDeploymentsPath } from "../utils/paths";
8+
import { getDeploymentsPath } from "../utils/paths";
99

1010
export interface DeploymentInfo {
1111
owner: string;
@@ -278,7 +278,6 @@ export async function loadDeploymentInfo(filePath: string): Promise<DeploymentIn
278278
elizaLogger.info("Loading deployment info", { filePath });
279279

280280
try {
281-
const fs = require('fs');
282281
if (!fs.existsSync(filePath)) {
283282
throw new AkashError(
284283
`Deployment info file not found: ${filePath}`,
@@ -383,14 +382,14 @@ export const getDeploymentApiAction: Action = {
383382
runtime: IAgentRuntime,
384383
message: Memory,
385384
state: State | undefined,
386-
options: { [key: string]: unknown } = {},
385+
_options: { [key: string]: unknown } = {},
387386
callback?: HandlerCallback
388387
): Promise<boolean> => {
389388
const actionId = Date.now().toString();
390389
elizaLogger.info("Starting deployment API request", { actionId });
391390

392391
try {
393-
const config = await validateAkashConfig(runtime);
392+
// const config = await validateAkashConfig(runtime);
394393
const params = message.content as Partial<GetDeploymentsContent>;
395394

396395
// Fetch deployments

packages/plugin-akash/src/actions/getDeploymentStatus.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ export const getDeploymentStatusAction: Action = {
144144
runtime: IAgentRuntime,
145145
message: Memory,
146146
state: State | undefined,
147-
options: { [key: string]: unknown } = {},
147+
_options: { [key: string]: unknown } = {},
148148
callback?: HandlerCallback
149149
): Promise<boolean> => {
150150
const actionId = Date.now().toString();

packages/plugin-akash/src/actions/getGPUPricing.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export const getGPUPricingAction: Action = {
9494
runtime: IAgentRuntime,
9595
message: Memory,
9696
state: State | undefined,
97-
options: { [key: string]: unknown; } = {},
97+
_options: { [key: string]: unknown; } = {},
9898
callback?: HandlerCallback
9999
): Promise<boolean> => {
100100
const actionId = Date.now().toString();

packages/plugin-akash/src/actions/getManifest.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import { AkashError, AkashErrorCode } from "../error/error";
66
import * as fs from 'fs';
77
import * as path from 'path';
88
import yaml from 'js-yaml';
9-
import { getAkashTypeRegistry } from "@akashnetwork/akashjs/build/stargate";
10-
import { getCertificatePath, getDefaultSDLPath } from "../utils/paths";
9+
// import { getAkashTypeRegistry } from "@akashnetwork/akashjs/build/stargate";
10+
import { getDefaultSDLPath } from "../utils/paths";
1111

1212
interface GetManifestContent extends Content {
1313
sdl?: string;
@@ -121,10 +121,10 @@ const validateSDL = (sdlContent: string, validationLevel: string = "strict"): bo
121121
// });
122122
return true;
123123
} catch (error) {
124-
// elizaLogger.error("SDL validation failed", {
125-
// error: error instanceof Error ? error.message : String(error),
126-
// validationLevel
127-
// });
124+
elizaLogger.error("SDL validation failed", {
125+
error: error instanceof Error ? error.message : String(error),
126+
validationLevel
127+
});
128128
return false;
129129
}
130130
};
@@ -186,7 +186,7 @@ export const getManifestAction: Action = {
186186
runtime: IAgentRuntime,
187187
message: Memory,
188188
state: State | undefined,
189-
options: { [key: string]: unknown; } = {},
189+
_options: { [key: string]: unknown; } = {},
190190
callback?: HandlerCallback
191191
): Promise<boolean> => {
192192
const actionId = Date.now().toString();

packages/plugin-akash/src/actions/getProvidersList.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ export const getProvidersListAction: Action = {
211211
runtime: IAgentRuntime,
212212
message: Memory,
213213
state: State | undefined,
214-
options: { [key: string]: unknown; } = {},
214+
_options: { [key: string]: unknown; } = {},
215215
callback?: HandlerCallback
216216
): Promise<boolean> => {
217217
const actionId = Date.now().toString();

packages/plugin-akash/src/error/error.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { elizaLogger } from "@elizaos/core";
21

32
export enum AkashErrorCategory {
43
WALLET = 'WALLET',

packages/plugin-akash/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Plugin, elizaLogger } from "@elizaos/core";
1+
import { Plugin} from "@elizaos/core";
22
import { createDeploymentAction } from "./actions/createDeployment";
33
import { closeDeploymentAction } from "./actions/closeDeployment";
44
import { getProviderInfoAction } from "./actions/getProviderInfo";

packages/plugin-akash/src/providers/wallet.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
import { DirectSecp256k1HdWallet } from "@cosmjs/proto-signing";
22
import { SigningStargateClient } from "@cosmjs/stargate";
3-
import { elizaLogger } from "@elizaos/core";
4-
import { IAgentRuntime, Memory } from "@elizaos/core/src/types";
3+
import { elizaLogger, IAgentRuntime, Memory } from "@elizaos/core";
4+
// import { IAgentRuntime, Memory } from "@elizaos/core/src/types";
55
import { validateAkashConfig } from "../environment";
66
import { getAkashTypeRegistry } from "@akashnetwork/akashjs/build/stargate";
77
import {
88
AkashProvider,
99
AkashWalletState,
1010
AkashError,
1111
AKASH_ERROR_CODES,
12-
AkashRegistryTypes
1312
} from "../types";
1413

1514
// Use a proper UUID for the wallet room

packages/plugin-akash/src/types.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { DirectSecp256k1HdWallet, Registry } from "@cosmjs/proto-signing";
1+
import { DirectSecp256k1HdWallet} from "@cosmjs/proto-signing";
22
import { SigningStargateClient } from "@cosmjs/stargate";
3-
import { Provider } from "@elizaos/core";
3+
// import { Provider } from "@elizaos/core";
44
import { IAgentRuntime, Memory } from "@elizaos/core";
55
import { SDL } from "@akashnetwork/akashjs/build/sdl";
66
import { MsgCreateDeployment } from "@akashnetwork/akash-api/akash/deployment/v1beta3";
7-
import { QueryBidsRequest, MsgCreateLease, BidID } from "@akashnetwork/akash-api/akash/market/v1beta4";
7+
import { MsgCreateLease} from "@akashnetwork/akash-api/akash/market/v1beta4";
88

99
// Core wallet state type
1010
export interface AkashWalletState {

packages/plugin-akash/src/utils/paths.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import * as path from 'path';
22
import { fileURLToPath } from 'url';
33
import { elizaLogger } from "@elizaos/core";
44
import { existsSync } from 'fs';
5-
import fs from 'fs';
65
import { getConfig } from '../environment';
76

87
export const getPluginRoot = (importMetaUrl: string) => {
@@ -81,7 +80,7 @@ export const getDefaultSDLPath = (importMetaUrl: string) => {
8180
const config = getConfig(process.env.AKASH_ENV);
8281
const sdlFileName = config.AKASH_SDL;
8382
const sdlPath = path.join(srcPath, 'sdl', sdlFileName);
84-
const sdlDir = path.dirname(sdlPath);
83+
// const sdlDir = path.dirname(sdlPath);
8584

8685
// Only log if file doesn't exist as a warning
8786
if (!existsSync(sdlPath)) {

0 commit comments

Comments
 (0)