-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli.ts
More file actions
executable file
·658 lines (600 loc) · 18.1 KB
/
Copy pathcli.ts
File metadata and controls
executable file
·658 lines (600 loc) · 18.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
#!/usr/bin/env ts-node-esm
/* eslint-disable @typescript-eslint/no-loop-func */
/* eslint-disable @typescript-eslint/no-unused-expressions */
/* eslint-disable @typescript-eslint/no-var-requires */
import * as anchor from "@project-serum/anchor";
import * as anchor24 from "anchor-24-2";
import * as spl from "@solana/spl-token-v2";
import {
Connection,
Keypair,
LAMPORTS_PER_SOL,
ParsedTransactionWithMeta,
PublicKey,
} from "@solana/web3.js";
import * as sbv2Utils from "@switchboard-xyz/sbv2-utils";
import { transferWrappedSol } from "@switchboard-xyz/sbv2-utils";
import * as sbv2 from "@switchboard-xyz/switchboard-v2";
const yargs = require("yargs");
const { hideBin } = require("yargs/helpers");
// import yargs from "yargs";
// import { hideBin } from "yargs/helpers";
import { OracleQueueAccount } from "@switchboard-xyz/switchboard-v2";
import chalk from "chalk";
import fs from "fs";
import {
FlipProgram,
GameTypeValue,
House,
PROGRAM_ID,
User,
UserBetPlaced,
UserBetSettled,
UserState,
} from "./client/index";
import { IDL } from "./target/types/switchboard_vrf_flip";
import { tokenAmountToBig } from "./client/utils";
var Spinner = require("cli-spinner").Spinner;
const DEFAULT_MAINNET_RPC = "https://api.mainnet-beta.solana.com";
const DEFAULT_DEVNET_RPC = "https://api.devnet.solana.com";
const DEFAULT_LOCALNET_RPC = "http://localhost:8899";
const DEFAULT_COMMITMENT = "confirmed";
const VRF_REQUEST_AMOUNT = 2_000_000;
export const CHECK_ICON = chalk.green("\u2714");
export const FAILED_ICON = chalk.red("\u2717");
yargs(hideBin(process.argv))
.scriptName("sbv2-vrf-flip")
.command(
"init [keypair] [queueKey] [mintKeypair]",
"initiate the house",
(y: any) => {
return y
.positional("keypair", {
type: "string",
describe:
"filesystem path to a Solana keypair file that will be the authority for the house",
required: true,
})
.positional("queueKey", {
type: "string",
describe: "publicKey of the oracle queue to target for VRF requests",
default: "F8ce7MsckeZAbAGmxjJNetxYXQa9mKr9nnrC3qKubyYy",
})
.positional("mintKeypair", {
type: "string",
describe:
"filesystem path to a Solana keypair file that will be the house mint",
});
},
async function (argv: any) {
const { queueKey, rpcUrl, cluster, keypair, mintKeypair } = argv;
const { flipProgram, switchboardProgram, payer, provider } =
await loadCli(rpcUrl, cluster, loadKeypair(keypair));
const mint = mintKeypair
? loadKeypair(mintKeypair)
: anchor.web3.Keypair.generate();
const payerBalance = await checkNativeBalance(
flipProgram.provider.connection,
payer,
cluster === "mainnet-beta",
0.025 * LAMPORTS_PER_SOL
);
let house: House;
try {
house = await House.load(flipProgram);
console.log(
`${chalk.blue("Info")}: VRF Flip House account (${chalk.yellow(
house.publicKey.toBase58()
)}) already exist`
);
} catch (error) {
if (
!error.toString().includes("House account has not been created yet")
) {
throw error;
}
const queueAccount = new OracleQueueAccount({
program: switchboardProgram as any,
publicKey: new PublicKey(queueKey),
});
house = await House.create(flipProgram, queueAccount, mint);
console.log(`${CHECK_ICON} House account created successfully`);
}
console.log(
JSON.stringify(
{
...house.toJSON(),
ebuf: undefined,
},
undefined,
2
)
);
process.exit(0);
}
)
.command(
"create [keypair]",
"create a User account",
(y: any) => {
return y.positional("keypair", {
type: "string",
describe: "filesystem path to a Solana keypair file",
required: true,
});
},
async function (argv: any) {
const { rpcUrl, cluster, keypair } = argv;
const { flipProgram, switchboardProgram, payer, provider } =
await loadCli(rpcUrl, cluster, loadKeypair(keypair));
const payerBalance = await checkNativeBalance(
flipProgram.provider.connection,
payer,
cluster === "mainnet-beta",
0.25 * LAMPORTS_PER_SOL
);
let user: User;
try {
user = await User.load(flipProgram, payer.publicKey);
console.log(
`${chalk.blue("Info")}: VRF Flip User account (${chalk.yellow(
user.publicKey.toBase58()
)}) already exists for authority (${chalk.yellow(
payer.publicKey.toBase58()
)})`
);
} catch (error) {
if (!error.toString().includes("User account does not exist")) {
throw error;
}
user = await User.create(flipProgram, switchboardProgram);
console.log(`${CHECK_ICON} User account created successfully`);
}
console.log(
JSON.stringify(
{
...user.toJSON(),
history: undefined,
ebuf: undefined,
},
undefined,
2
)
);
process.exit(0);
}
)
.command(
"play [keypair]",
"request randomness for a given USER",
(y: any) => {
return y
.positional("keypair", {
type: "string",
describe: "filesystem path to a Solana keypair file",
required: true,
})
.option("gameType", {
type: "string",
alias: "t",
describe: "game to play",
options: ["coin-flip", "roll-dice", "roll-20-sided-dice"],
demand: true,
})
.option("guess", {
type: "number",
alias: "g",
describe: "your guess for the gameType's outcome",
demand: true,
})
.option("betAmount", {
type: "number",
alias: "a",
describe: "number of FLIP tokens to wager",
default: 0,
demand: false,
});
},
async function (argv: any) {
const { rpcUrl, cluster, keypair, gameType, guess, betAmount } = argv;
const userGuess = Math.floor(guess as number);
let gameTypeEnum: GameTypeValue;
switch (gameType) {
case "coin-flip": {
if (userGuess < 1 || userGuess > 2) {
throw new Error(
`Coin flip must be between 1 and 2, received ${userGuess}`
);
}
gameTypeEnum = GameTypeValue.COIN_FLIP;
break;
}
case "dice-roll": {
if (userGuess < 1 || userGuess > 6) {
throw new Error(
`Dice roll must be between 1 and 6, received ${userGuess}`
);
}
gameTypeEnum = GameTypeValue.SIX_SIDED_DICE_ROLL;
break;
}
case "roll-20-sided-dice": {
if (userGuess < 1 || userGuess > 20) {
throw new Error(
`20 sided dice roll must be between 1 and 20, received ${userGuess}`
);
}
gameTypeEnum = GameTypeValue.TWENTY_SIDED_DICE_ROLL;
break;
}
default: {
throw new Error(
`gameType must be 'coin-flip', 'dice-roll', or '20-sided-dice-roll', received ${gameType}`
);
}
}
const { flipProgram, switchboardProgram, payer, provider } =
await loadCli(rpcUrl, cluster, loadKeypair(keypair));
const payerBalance = await checkNativeBalance(
flipProgram.provider.connection,
payer,
cluster === "mainnet-beta",
10000
);
const house = await House.load(flipProgram);
const user = await User.load(flipProgram, payer.publicKey);
const flipMint = await house.loadMint();
const payerFlipTokenAccount = await spl.getOrCreateAssociatedTokenAccount(
flipProgram.provider.connection,
payer,
flipMint.address,
payer.publicKey
);
const flipTokenBalance = await checkTokenBalance(
flipProgram.provider.connection,
payerFlipTokenAccount.address,
payer,
cluster === "mainnet-beta",
betAmount
);
const queueAccount = await user.getQueueAccount(switchboardProgram);
const switchboardMint = await queueAccount.loadMint();
const payerSwitchTokenAccount =
await spl.getOrCreateAssociatedTokenAccount(
flipProgram.provider.connection,
payer,
switchboardMint.address,
payer.publicKey
);
const wrappedNativeBalance = await checkWrappedNativeBalance(
flipProgram.provider.connection,
payerSwitchTokenAccount.address,
payer,
cluster === "mainnet-beta",
VRF_REQUEST_AMOUNT
);
const placeBetSignature = await user.placeBet(
gameTypeEnum,
userGuess,
new anchor.BN(betAmount),
payerSwitchTokenAccount.address
);
// console.log(cliSpinners.bouncingBall);
// const newUserState = await newUserStatePromise;
const spinner = new Spinner("awaiting result ... %s");
spinner.setSpinnerString("◐◓◑◒");
spinner.setSpinnerDelay(125);
spinner.start();
const newUserStatePromise = user.awaitFlip(
user.state.currentRound.roundId.add(new anchor.BN(1))
);
const newUserState = await Promise.race<UserState>([
newUserStatePromise,
new Promise((resolve) => {
// console.log(cliSpinners.bouncingBall);
}),
]).finally(() => {
// console.clear();
});
spinner.stop(true);
console.log(newUserState.currentRound.toJSON());
if (user.isWinner(newUserState)) {
console.log(
`${chalk.green(CHECK_ICON, "User won!")} Result = ${
newUserState.currentRound.result
}`
);
} else {
console.log(`${chalk.red(FAILED_ICON, "User Lost!")}`);
}
process.exit(0);
}
)
.command(
"airdrop [keypair]",
"request an airdrop of FLIP token",
(y: any) => {
return y.positional("keypair", {
type: "string",
describe: "filesystem path to a Solana keypair file",
required: true,
});
},
async function (argv: any) {
const { rpcUrl, cluster, keypair } = argv;
const { flipProgram, switchboardProgram, payer, provider } =
await loadCli(rpcUrl, cluster, loadKeypair(keypair));
const house = await House.load(flipProgram);
const flipMint = await house.loadMint();
const payerTokenWallet = await spl.getOrCreateAssociatedTokenAccount(
flipProgram.provider.connection,
payer,
flipMint.address,
payer.publicKey
);
const user = await User.load(flipProgram, payer.publicKey);
try {
const airdropReq = await flipProgram.methods
.userAirdrop({})
.accounts({
user: user.publicKey,
house: house.publicKey,
houseVault: house.state.houseVault,
mint: house.state.mint,
authority: payer.publicKey,
airdropTokenWallet: payerTokenWallet.address,
tokenProgram: spl.TOKEN_PROGRAM_ID,
})
.rpc();
console.log(
`${chalk.green(CHECK_ICON, "User airdrop requested successfully")}`
);
console.log(
`https://explorer.solana.com/tx/${airdropReq}?cluster=${cluster}`
);
} catch (error) {}
const flipBalance =
await flipProgram.provider.connection.getTokenAccountBalance(
payerTokenWallet.address
);
console.log(
`${chalk.blue("FLIP balance")}: ${chalk.yellow(
flipBalance.value.amount
)} (${flipBalance.value.uiAmountString} FLIP)`
);
process.exit(0);
}
)
.command(
"watch [authority]",
"watch a user account for changes",
(y: any) => {
return y.positional("authority", {
type: "string",
describe: "public key of the user authority to watch",
required: true,
});
},
async function (argv: any) {
const { rpcUrl, cluster, authority } = argv;
const { flipProgram, switchboardProgram, payer, provider } =
await loadCli(
rpcUrl,
cluster,
Keypair.fromSeed(new Uint8Array(32).fill(1))
);
const user = await User.load(flipProgram, new PublicKey(authority));
user.watch(
(event: UserBetPlaced) => {
console.log(
`${event.roundId.toString(10)}: ${
event.gameType
} User bet ${tokenAmountToBig(
event.betAmount
)} tokens that the result will be ${event.guess}`
);
},
(event: UserBetSettled) => {
console.log(
`${event.roundId.toString(10)}: ${event.gameType} User ${
event.userWon ? "won" : "lost"
} ${tokenAmountToBig(event.escrowChange)} tokens`
);
}
);
await new Promise(() => {});
}
)
.options({
cluster: {
type: "string",
alias: "c",
describe: "Solana cluster to interact with",
options: ["devnet", "mainnet-beta", "localnet"],
default: "devnet",
demand: false,
},
rpcUrl: {
type: "string",
alias: "u",
describe: "Alternative RPC URL",
},
})
.help().argv;
function getRpcUrl(cluster: string): string {
switch (cluster) {
case "mainnet-beta":
return DEFAULT_MAINNET_RPC;
case "devnet":
return DEFAULT_DEVNET_RPC;
case "localnet":
return DEFAULT_LOCALNET_RPC;
default:
throw new Error(`Failed to find RPC_URL for cluster ${cluster}`);
}
}
async function checkNativeBalance(
connection: Connection,
payer: Keypair,
isMainnet: boolean,
minAmount = 0.25 * LAMPORTS_PER_SOL
): Promise<BigInt> {
let payerBalance = await connection.getBalance(payer.publicKey);
if (payerBalance < BigInt(minAmount)) {
if (isMainnet) {
throw new Error(`keypair has insufficient funds ${payerBalance}`);
}
console.log(
`${chalk.blue(
"Info"
)}: Requesting an airdrop for 1 SOL to provided keypair (${chalk.yellow(
payer.publicKey.toBase58()
)})`
);
const requestAirdropSignature = await connection.requestAirdrop(
payer.publicKey,
LAMPORTS_PER_SOL
);
await connection.confirmTransaction(requestAirdropSignature);
payerBalance = await connection.getBalance(payer.publicKey);
}
return BigInt(payerBalance);
}
async function checkWrappedNativeBalance(
connection: Connection,
wrappedNativeAddress: PublicKey,
payer: Keypair,
isMainnet: boolean,
minAmount = VRF_REQUEST_AMOUNT
): Promise<BigInt> {
let tokenBalance = BigInt(
(await connection.getTokenAccountBalance(wrappedNativeAddress)).value.amount
);
if (tokenBalance < BigInt(minAmount)) {
if (isMainnet) {
throw new Error(
`wrapped native account has insufficient funds ${tokenBalance}, need ${minAmount}`
);
}
console.log(
`${chalk.blue("Info")}: Wrapping ${chalk.yellow(
VRF_REQUEST_AMOUNT
)} SOL to payers token wallet (${chalk.yellow(
wrappedNativeAddress.toBase58()
)})`
);
await transferWrappedSol(connection, payer, VRF_REQUEST_AMOUNT);
}
return tokenBalance;
}
async function checkTokenBalance(
connection: Connection,
tokenAddress: PublicKey,
payer: Keypair,
isMainnet: boolean,
minAmount = 100000
): Promise<BigInt> {
let tokenBalance = BigInt(
(await connection.getTokenAccountBalance(tokenAddress)).value.amount
);
if (tokenBalance < BigInt(minAmount)) {
// if (isMainnet) {
throw new Error(
`token account (${chalk.yellow(
tokenAddress.toBase58()
)}) has insufficient funds ${tokenBalance}, need ${minAmount}`
);
// }
}
return tokenBalance;
}
function loadKeypair(keypairPath: string): Keypair {
return Keypair.fromSecretKey(
new Uint8Array(JSON.parse(fs.readFileSync(keypairPath, "utf-8")))
);
}
async function loadCli(
rpcUrl: string,
cluster: string,
keypair: Keypair
): Promise<{
flipProgram: FlipProgram;
switchboardProgram: anchor24.Program;
payer: anchor.web3.Keypair;
provider: anchor.AnchorProvider;
}> {
if (
cluster !== "mainnet-beta" &&
cluster !== "devnet" &&
cluster !== "localnet"
) {
throw new Error(
`cluster must be mainnet-beta or devnet, cluster = ${cluster}`
);
}
process.env.ANCHOR_WALLET = sbv2Utils.getAnchorWalletPath();
const url = rpcUrl ?? getRpcUrl(cluster);
// const envProvider = anchor.AnchorProvider.local(url);
const provider = new anchor.AnchorProvider(
new anchor.web3.Connection(url, {
commitment: DEFAULT_COMMITMENT,
}),
new anchor.Wallet(keypair),
{
commitment: DEFAULT_COMMITMENT,
}
);
const switchboardProgram = await sbv2.loadSwitchboardProgram(
cluster === "mainnet-beta" ? "mainnet-beta" : "devnet",
provider.connection,
keypair,
{
commitment: DEFAULT_COMMITMENT,
}
);
const payer = sbv2.programWallet(switchboardProgram);
// load VRF Client program
// @TODO load IDL asynchronously?
const flipProgram = new anchor.Program(
IDL,
PROGRAM_ID,
provider,
new anchor.BorshCoder(IDL)
);
return {
flipProgram: flipProgram as any as FlipProgram,
switchboardProgram: switchboardProgram as any,
payer,
provider,
};
}
async function fetchTransactions(
connection: Connection,
pubkey: PublicKey,
numTransactions = 10
): Promise<any[]> {
const signatures = (
await connection.getSignaturesForAddress(
pubkey,
{ limit: numTransactions },
"confirmed"
)
).map((t) => t.signature);
console.log(`FETCHED ${signatures.length} transactions`);
let parsedTxns: (ParsedTransactionWithMeta | null)[] = [];
while (!parsedTxns) {
parsedTxns = await connection.getParsedTransactions(
signatures,
"confirmed"
);
if (!parsedTxns || parsedTxns.length !== signatures.length) {
await sbv2Utils.sleep(1000);
}
}
return parsedTxns.map((tx, i) => {
return {
signature: signatures[i],
logs: tx.meta.logMessages,
};
});
}