rebase final

This commit is contained in:
Arpit Singh Bhatia
2024-12-26 14:05:40 +05:30
parent 8d299244fc
commit a80fb0f1e0
4 changed files with 180 additions and 0 deletions

View File

@@ -35,6 +35,7 @@ import {
getOwnedAllDomains,
resolveAllDomains,
create_gibwork_task,
rock_paper_scissor,
} from "../tools";
import {
CollectionDeployment,
@@ -337,4 +338,8 @@ export class SolanaAgentKit {
payer ? new PublicKey(payer) : undefined,
);
}
async rockPaperScissors(amount: number, choice: "rock" | "paper" | "scissors") {
return rock_paper_scissor(this, amount, choice);
}
}