fix: lint

This commit is contained in:
aryan
2024-12-25 17:20:17 +05:30
parent 755456fb01
commit 8c1ce69743
3 changed files with 69 additions and 59 deletions

View File

@@ -324,7 +324,7 @@ export class SolanaAgentKit {
tags: string[],
tokenMintAddress: string,
tokenAmount: number,
payer?: string
payer?: string,
): Promise<GibworkCreateTaskReponse> {
return create_gibwork_task(
this,
@@ -334,7 +334,7 @@ export class SolanaAgentKit {
tags,
new PublicKey(tokenMintAddress),
tokenAmount,
payer ? new PublicKey(payer) : undefined
payer ? new PublicKey(payer) : undefined,
);
}
}