Skip to content

Commit 70b458f

Browse files
committed
fixes
1 parent 28e5a31 commit 70b458f

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

packages/sui-agent/src/@types/interface.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,4 +211,5 @@ interface Liquidation {
211211
liquidation_sender: string;
212212
[key: string]: unknown; // Uses unknown instead of any
213213
}
214+
214215
export type { Liquidation };

packages/sui-agent/src/config/sentio.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ sentioApi.interceptors.response.use(
2424
return Promise.reject(error);
2525
},
2626
);
27+
2728
export default sentioApi;

packages/sui-agent/src/protocols/navi/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ let naviClient: NAVISDKClient | null = null;
1212
* @param numberOfAccounts - Number of accounts to generate
1313
* @returns JSON string with initialization status
1414
*/
15+
1516
export async function initializeNaviClient(
1617
...args: (string | number | bigint | boolean)[]
1718
): Promise<string> {
@@ -149,6 +150,7 @@ async function checkUserLiquidations(address: string) {
149150
};
150151
}
151152
}
153+
152154
export async function checkUserLiquidationStatusTool(
153155
...args: (string | number | bigint | boolean)[]
154156
): Promise<string> {

0 commit comments

Comments
 (0)