fix: lint

This commit is contained in:
aryan
2024-12-28 00:54:50 +05:30
parent a80fb0f1e0
commit 6f687187e6
4 changed files with 131 additions and 118 deletions

View File

@@ -339,7 +339,10 @@ export class SolanaAgentKit {
);
}
async rockPaperScissors(amount: number, choice: "rock" | "paper" | "scissors") {
async rockPaperScissors(
amount: number,
choice: "rock" | "paper" | "scissors",
) {
return rock_paper_scissor(this, amount, choice);
}
}