@@ -16,7 +16,7 @@ import { AkashError, AkashErrorCode, withRetry } from "../error/error";
16
16
import * as fs from 'fs' ;
17
17
import * as path from 'path' ;
18
18
import { getCertificatePath , getDefaultSDLPath } from "../utils/paths" ;
19
- import { fileURLToPath } from 'url' ;
19
+ // import { fileURLToPath } from 'url';
20
20
import { inspectRuntime , isPluginLoaded } from "../runtime_inspect" ;
21
21
import https from 'node:https' ;
22
22
import axios from 'axios' ;
@@ -162,7 +162,8 @@ const loadSDLFromFile = (filePath: string): string => {
162
162
}
163
163
} ;
164
164
165
- const formatErrorMessage = ( error : unknown ) : string => {
165
+ // Preserved for future use
166
+ /* const formatErrorMessage = (error: unknown): string => {
166
167
if (error instanceof AkashError) {
167
168
if (error.code === AkashErrorCode.WALLET_NOT_INITIALIZED) {
168
169
return "Akash wallet not initialized";
@@ -196,7 +197,7 @@ const formatErrorMessage = (error: unknown): string => {
196
197
return "Failed to parse SDL: Invalid format";
197
198
}
198
199
return message;
199
- } ;
200
+ }; */
200
201
201
202
async function initializeWallet ( mnemonic : string ) {
202
203
elizaLogger . debug ( "=== Initializing Wallet ===" , {
@@ -619,7 +620,7 @@ async function queryLeaseStatus(lease: any, providerUri: string, certificate: Ce
619
620
'Content-Type' : 'application/json' ,
620
621
'Accept' : 'application/json'
621
622
} ,
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
623
624
agent,
624
625
signal : AbortSignal . timeout ( 10000 )
625
626
} ) ;
@@ -1138,7 +1139,7 @@ export const createDeploymentAction: Action = {
1138
1139
runtime : IAgentRuntime ,
1139
1140
message : Memory ,
1140
1141
state : State | undefined ,
1141
- options : { [ key : string ] : unknown ; } = { } ,
1142
+ _options : { [ key : string ] : unknown ; } = { } ,
1142
1143
callback ?: HandlerCallback
1143
1144
) : Promise < boolean > => {
1144
1145
const actionId = Date . now ( ) . toString ( ) ;
0 commit comments