-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathanchor_devnet.ts
More file actions
1146 lines (1011 loc) · 42.1 KB
/
anchor_devnet.ts
File metadata and controls
1146 lines (1011 loc) · 42.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
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import BN from "bn.js";
import assert from "assert";
import * as web3 from "@solana/web3.js";
import * as token from "@solana/spl-token";
const SOLANA = require("@solana/web3.js");
const { Connection, PublicKey, LAMPORTS_PER_SOL, clusterApiUrl } = SOLANA;
import NodeWallet from "@coral-xyz/anchor/dist/cjs/nodewallet";
import * as anchor from "@coral-xyz/anchor";
import { bs58 } from "@coral-xyz/anchor/dist/cjs/utils/bytes";
import type { TokenPresale } from "../target/types/token_presale";
import walletLists from "./wallets.json";
import env from "dotenv";
env.config();
const connection = anchor.getProvider().connection;
// const connection = new Connection(clusterApiUrl("localnet"), "confirmed");
const wallet = NodeWallet.local();
anchor.setProvider(new anchor.AnchorProvider(connection, wallet, { commitment: "confirmed" }));
const provider = anchor.getProvider();
const SOL_VAULT_SEED = "presale-escrow-vault";
const ADMIN_MANAGE_SEED = "admin-role";
const USER_ACCOUNT_SEED = "user-role";
const PRESALE_INFO_SEED = "presale-info";
const TOKEN_VAULT_SEED = "token-vault";
const ADMIN_WALLET_ADDRESS_STRING = wallet.publicKey.toString();
const ADMIN_WALLET_ADDRESS_PUB_KEY = new PublicKey(ADMIN_WALLET_ADDRESS_STRING);
console.log("This is the wallet", ADMIN_WALLET_ADDRESS_STRING);
let newToken: web3.PublicKey;
let tokenAccount: web3.PublicKey;
let tokenVault: web3.PublicKey;
let adminAccount: web3.PublicKey;
let escrowAccount: web3.PublicKey;
let presaleAccount: web3.PublicKey;
let userAccount: web3.PublicKey;
let teamWallet = web3.Keypair.fromSecretKey(bs58.decode(process.env.TEAM_WALLET_PRIVATE_KEY));
let buyer1Wallet = web3.Keypair.fromSecretKey(bs58.decode(process.env.BUYER_1_PRIVATE_KEY));
let buyer2Wallet = web3.Keypair.fromSecretKey(bs58.decode(process.env.BUYER_2_PRIVATE_KEY));
let buyer3Wallet = web3.Keypair.fromSecretKey(bs58.decode(process.env.BUYER_3_PRIVATE_KEY));
console.log("Team wallet public key is : ", teamWallet.publicKey.toString());
console.log("Buyer1 wallet public key is : ", buyer1Wallet.publicKey.toString());
console.log("Buyer2 wallet public key is : ", buyer2Wallet.publicKey.toString());
console.log("Buyer3 wallet public key is : ", buyer3Wallet.publicKey.toString());
const program = anchor.workspace.TokenPresale as anchor.Program<TokenPresale>;
// describe("Preparing SOL to Team Wallet", () => {
// // Configure the client to use the local cluster
// const AIRDROP_AMOUNT = 1 * LAMPORTS_PER_SOL; // 1 SOL
// it("Airdroping 1 SOL to Team wallet", async () => {
// // Airdrop 2 SOL to the admin account
// console.log(
// `Requesting airdrop for Team wallet - ${teamWallet.publicKey.toString()}`
// );
// const signature = await SOLANA_CONNECTION.requestAirdrop(
// teamWallet.publicKey,
// AIRDROP_AMOUNT
// );
// const { blockhash, lastValidBlockHeight } =
// await SOLANA_CONNECTION.getLatestBlockhash();
// await SOLANA_CONNECTION.confirmTransaction(
// {
// blockhash,
// lastValidBlockHeight,
// signature,
// },
// "finalized"
// );
// console.log(
// `Airdrop complete with Tx: https://explorer.solana.com/tx/${signature}?cluster=devnet`
// );
// assert.ok(signature);
// });
// it("Airdroping 1 SOL to Buyer 1 wallet to simulate buying token", async () => {
// // Airdrop 1 SOL to the admin account
// console.log(
// `Requesting airdrop for buyer dummy wallet - ${buyer1Wallet.publicKey.toString()}`
// );
// const signature = await SOLANA_CONNECTION.requestAirdrop(
// buyer1Wallet.publicKey,
// AIRDROP_AMOUNT
// );
// const { blockhash, lastValidBlockHeight } =
// await SOLANA_CONNECTION.getLatestBlockhash();
// await SOLANA_CONNECTION.confirmTransaction(
// {
// blockhash,
// lastValidBlockHeight,
// signature,
// },
// "finalized"
// );
// console.log(
// `Airdrop complete with Tx: https://explorer.solana.com/tx/${signature}?cluster=devnet`
// );
// assert.ok(signature);
// })
// it("Airdroping 1 SOL to Buyer 2 wallet to simulate buying token", async () => {
// // Airdrop 1 SOL to the admin account
// console.log(
// `Requesting airdrop for buyer dummy wallet - ${buyer2Wallet.publicKey.toString()}`
// );
// const signature = await SOLANA_CONNECTION.requestAirdrop(
// buyer2Wallet.publicKey,
// AIRDROP_AMOUNT
// );
// const { blockhash, lastValidBlockHeight } =
// await SOLANA_CONNECTION.getLatestBlockhash();
// await SOLANA_CONNECTION.confirmTransaction(
// {
// blockhash,
// lastValidBlockHeight,
// signature,
// },
// "finalized"
// );
// console.log(
// `Airdrop complete with Tx: https://explorer.solana.com/tx/${signature}?cluster=devnet`
// );
// assert.ok(signature);
// })
// it("Airdroping 1 SOL to Buyer 3 wallet to simulate buying token", async () => {
// // Airdrop 1 SOL to the admin account
// console.log(
// `Requesting airdrop for buyer dummy wallet - ${buyer3Wallet.publicKey.toString()}`
// );
// const signature = await SOLANA_CONNECTION.requestAirdrop(
// buyer3Wallet.publicKey,
// AIRDROP_AMOUNT
// );
// const { blockhash, lastValidBlockHeight } =
// await SOLANA_CONNECTION.getLatestBlockhash();
// await SOLANA_CONNECTION.confirmTransaction(
// {
// blockhash,
// lastValidBlockHeight,
// signature,
// },
// "finalized"
// );
// console.log(
// `Airdrop complete with Tx: https://explorer.solana.com/tx/${signature}?cluster=devnet`
// );
// assert.ok(signature);
// })
// it("Airdroping 1 SOL to escrow wallet to simulate buying token", async () => {
// // Airdrop 1 SOL to the escrow account
// console.log(
// `Requesting airdrop for buyer dummy wallet - ${buyer1Wallet.publicKey.toString()}`
// );
// [escrowAccount] = web3.PublicKey.findProgramAddressSync(
// [Buffer.from(SOL_VAULT_SEED)],
// program.programId
// );
// const signature = await SOLANA_CONNECTION.requestAirdrop(
// escrowAccount,
// AIRDROP_AMOUNT
// );
// const { blockhash, lastValidBlockHeight } =
// await SOLANA_CONNECTION.getLatestBlockhash();
// await SOLANA_CONNECTION.confirmTransaction(
// {
// blockhash,
// lastValidBlockHeight,
// signature,
// },
// "finalized"
// );
// console.log(
// `Airdrop complete with Tx: https://explorer.solana.com/tx/${signature}?cluster=devnet`
// );
// assert.ok(signature);
// })
// });
describe("Initialize Presale Vault with the Token", () => {
it("Initialize the Presale Vault", async () => {
// Create a new SPL token
newToken = await token.createMint(
anchor.getProvider().connection,
wallet.payer,
ADMIN_WALLET_ADDRESS_PUB_KEY,
null,
9
);
console.log("SPL Token address", newToken.toString());
// Mint 100 tokens to the admin account
tokenAccount = await token.createAccount(
anchor.getProvider().connection,
wallet.payer,
newToken,
ADMIN_WALLET_ADDRESS_PUB_KEY,
null,
null,
token.TOKEN_PROGRAM_ID
);
console.log("Associated token address for admin", tokenAccount.toString());
// const ata = await getAssociatedTokenAddress(tokenAccount, receiveAddress);
await token.mintTo(
anchor.getProvider().connection,
wallet.payer,
newToken,
tokenAccount,
wallet.payer,
100 * 10 ** 9,
[],
null,
token.TOKEN_PROGRAM_ID
);
console.log("Minted tokens successfully");
let tokenAmount = await anchor.getProvider().connection.getTokenAccountBalance(tokenAccount);
console.log("🚀 token balance in admin wallet is :", tokenAmount);
[tokenVault] = web3.PublicKey.findProgramAddressSync(
[newToken.toBuffer(), Buffer.from(TOKEN_VAULT_SEED)],
program.programId
);
[adminAccount] = web3.PublicKey.findProgramAddressSync(
[Buffer.from(ADMIN_MANAGE_SEED), ADMIN_WALLET_ADDRESS_PUB_KEY.toBuffer()],
program.programId
);
[escrowAccount] = web3.PublicKey.findProgramAddressSync(
[Buffer.from(SOL_VAULT_SEED)],
program.programId
);
[presaleAccount] = web3.PublicKey.findProgramAddressSync(
[Buffer.from(PRESALE_INFO_SEED)],
program.programId
);
const tx = await program.methods
.initialize(
1000,
new BN(100),
new BN(10 * LAMPORTS_PER_SOL),
new BN(86400),
new BN(50 * 10 ** 9),
5000,
2500,
)
.accounts({
admin: ADMIN_WALLET_ADDRESS_PUB_KEY,
tokenMint: newToken,
tokenVault: tokenVault,
adminAccount: adminAccount,
escrowAccount: escrowAccount,
presaleAccount: presaleAccount,
systemProgram: web3.SystemProgram.programId,
rent: anchor.web3.SYSVAR_RENT_PUBKEY,
tokenProgram: token.TOKEN_PROGRAM_ID,
})
.signers([])
.transaction();
console.log(await anchor.getProvider().connection.simulateTransaction(tx, [wallet.payer]));
const txHash = await program.methods
.initialize(
1000,
new BN(100),
new BN(10 * LAMPORTS_PER_SOL),
new BN(86400),
new BN(100 * 10 ** 9),
5000,
2500,
)
.accounts({
admin: ADMIN_WALLET_ADDRESS_PUB_KEY,
tokenMint: newToken,
tokenVault: tokenVault,
adminAccount: adminAccount,
escrowAccount: escrowAccount,
presaleAccount: presaleAccount,
systemProgram: web3.SystemProgram.programId,
rent: anchor.web3.SYSVAR_RENT_PUBKEY,
tokenProgram: token.TOKEN_PROGRAM_ID,
})
.signers([])
.rpc();
// Confirm transaction
const confirmation = await anchor
.getProvider()
.connection.confirmTransaction(txHash);
console.log(
`Transaction ${confirmation.value.err ? "failed" : "succeeded"}`
);
const fetchedAdminAccount =
await program.account.adminAccount.fetch(adminAccount);
console.log(fetchedAdminAccount);
assert.ok(fetchedAdminAccount);
// Log the completion of the initialization
console.log("Initialization completed successfully");
// Log the connection
console.log(`Connected to ${anchor.getProvider().connection.rpcEndpoint}`);
});
it("Deposit 50% of token to token vault for presale", async () => {
const txHash = await program.methods.depositToken(
newToken,
new BN(50 * 10 ** 9)
)
.accounts({
tokenMint: newToken,
tokenFrom: tokenAccount,
tokenVault: tokenVault,
adminAccount: adminAccount,
presaleAccount: presaleAccount,
admin: ADMIN_WALLET_ADDRESS_PUB_KEY,
tokenProgram: token.TOKEN_PROGRAM_ID,
systemProgram: web3.SystemProgram.programId,
})
.signers([])
.rpc();
const confirmation = await anchor
.getProvider()
.connection.confirmTransaction(txHash);
console.log(
`Transaction ${confirmation.value.err ? "failed" : "succeeded"}`
);
let tokenAmount = await anchor.getProvider().connection.getTokenAccountBalance(tokenAccount);
let tokenVaultBalance = await anchor.getProvider().connection.getTokenAccountBalance(tokenVault);
console.log("🚀 After initialization, token balance in admin wallet is :", tokenAmount.value.uiAmount);
console.log("🚀 And tokenVaultBalance:", tokenVaultBalance.value.uiAmount);
// Log the connection
console.log(`Connected to ${anchor.getProvider().connection.rpcEndpoint}`);
});
});
describe("Add whitelist of buyer1Wallet and 5 other wallet, and simulate 3 wallet remove from whitelist", () => {
it("Add Whilelist for buyer1Wallet - to simulate buying token from user.", async () => {
[userAccount] = web3.PublicKey.findProgramAddressSync(
[Buffer.from(USER_ACCOUNT_SEED), buyer1Wallet.publicKey.toBuffer()],
program.programId
);
const txHash = await program.methods
.addWhitelist()
.accounts({
admin: ADMIN_WALLET_ADDRESS_PUB_KEY,
adminAccount: adminAccount,
presaleAccount: presaleAccount,
userAccount: userAccount,
authority: buyer1Wallet.publicKey,
systemProgram: web3.SystemProgram.programId,
})
.signers([])
.rpc();
// Confirm transaction
const confirmation = await anchor
.getProvider()
.connection.confirmTransaction(txHash);
console.log(
`Transaction ${confirmation.value.err ? "failed" : "succeeded"}`
);
const fetchedPresaleAccount =
await program.account.presaleAccount.fetch(presaleAccount);
console.log("The number of whitelist is ", fetchedPresaleAccount.totalWhitelistedWallets);
assert.ok(fetchedPresaleAccount);
const fetchedUserAccount =
await program.account.userAccount.fetch(userAccount);
console.log(fetchedUserAccount);
assert.ok(fetchedUserAccount);
// Log the completion of the initialization
console.log("Adding whitelist completed successfully");
// Log the connection
console.log(`Connected to ${anchor.getProvider().connection.rpcEndpoint}`);
});
it("Add Whilelist for buyer2Wallet - to simulate buying token from user.", async () => {
[userAccount] = web3.PublicKey.findProgramAddressSync(
[Buffer.from(USER_ACCOUNT_SEED), buyer2Wallet.publicKey.toBuffer()],
program.programId
);
const txHash = await program.methods
.addWhitelist()
.accounts({
admin: ADMIN_WALLET_ADDRESS_PUB_KEY,
adminAccount: adminAccount,
presaleAccount: presaleAccount,
userAccount: userAccount,
authority: buyer2Wallet.publicKey,
systemProgram: web3.SystemProgram.programId,
})
.signers([])
.rpc();
// Confirm transaction
const confirmation = await anchor
.getProvider()
.connection.confirmTransaction(txHash);
console.log(
`Transaction ${confirmation.value.err ? "failed" : "succeeded"}`
);
const fetchedPresaleAccount =
await program.account.presaleAccount.fetch(presaleAccount);
console.log("The number of whitelist is ", fetchedPresaleAccount.totalWhitelistedWallets);
assert.ok(fetchedPresaleAccount);
const fetchedUserAccount =
await program.account.userAccount.fetch(userAccount);
console.log(fetchedUserAccount);
assert.ok(fetchedUserAccount);
// Log the completion of the initialization
console.log("Adding whitelist completed successfully");
// Log the connection
console.log(`Connected to ${anchor.getProvider().connection.rpcEndpoint}`);
});
it("Add Whilelist for buyer3Wallet - to simulate buying token from user.", async () => {
[userAccount] = web3.PublicKey.findProgramAddressSync(
[Buffer.from(USER_ACCOUNT_SEED), buyer3Wallet.publicKey.toBuffer()],
program.programId
);
const txHash = await program.methods
.addWhitelist()
.accounts({
admin: ADMIN_WALLET_ADDRESS_PUB_KEY,
adminAccount: adminAccount,
presaleAccount: presaleAccount,
userAccount: userAccount,
authority: buyer3Wallet.publicKey,
systemProgram: web3.SystemProgram.programId,
})
.signers([])
.rpc();
// Confirm transaction
const confirmation = await anchor
.getProvider()
.connection.confirmTransaction(txHash);
console.log(
`Transaction ${confirmation.value.err ? "failed" : "succeeded"}`
);
const fetchedPresaleAccount =
await program.account.presaleAccount.fetch(presaleAccount);
console.log("The number of whitelist is ", fetchedPresaleAccount.totalWhitelistedWallets);
assert.ok(fetchedPresaleAccount);
const fetchedUserAccount =
await program.account.userAccount.fetch(userAccount);
console.log(fetchedUserAccount);
assert.ok(fetchedUserAccount);
// Log the completion of the initialization
console.log("Adding whitelist completed successfully");
// Log the connection
console.log(`Connected to ${anchor.getProvider().connection.rpcEndpoint}`);
});
it("Add 5 others whilelist wallets", async () => {
for (let i = 0; i < 5; i++) {
[userAccount] = web3.PublicKey.findProgramAddressSync(
[
Buffer.from(USER_ACCOUNT_SEED),
new web3.PublicKey(walletLists[i]).toBuffer(),
],
program.programId
);
const txHash = await program.methods
.addWhitelist()
.accounts({
admin: ADMIN_WALLET_ADDRESS_PUB_KEY,
adminAccount: adminAccount,
presaleAccount: presaleAccount,
userAccount: userAccount,
authority: new web3.PublicKey(walletLists[i]),
systemProgram: web3.SystemProgram.programId,
})
.signers([])
.rpc();
// Confirm transaction
const confirmation = await anchor
.getProvider()
.connection.confirmTransaction(txHash);
console.log(
`Transaction ${confirmation.value.err ? "failed" : "succeeded"}`
);
const fetchedPresaleAccount =
await program.account.presaleAccount.fetch(presaleAccount);
console.log("The number of whitelist is ", fetchedPresaleAccount.totalWhitelistedWallets);
assert.ok(fetchedPresaleAccount);
const fetchedUserAccount =
await program.account.userAccount.fetch(userAccount);
console.log(fetchedUserAccount);
assert.ok(fetchedUserAccount);
// Log the completion of the initialization
console.log("Adding whitelist completed successfully");
// Log the connection
console.log(
`Connected to ${anchor.getProvider().connection.rpcEndpoint}`
);
}
});
it("Remove 3 whitelisted wallets", async () => {
for (let i = 0; i < 3; i++) {
[userAccount] = web3.PublicKey.findProgramAddressSync(
[
Buffer.from(USER_ACCOUNT_SEED),
new web3.PublicKey(walletLists[i]).toBuffer(),
],
program.programId
);
const txHash = await program.methods
.removeWhitelist()
.accounts({
admin: ADMIN_WALLET_ADDRESS_PUB_KEY,
adminAccount: adminAccount,
presaleAccount: presaleAccount,
userAccount: userAccount,
authority: new web3.PublicKey(walletLists[i]),
systemProgram: web3.SystemProgram.programId,
})
.signers([])
.rpc();
// Confirm transaction
const confirmation = await anchor
.getProvider()
.connection.confirmTransaction(txHash);
console.log(
`Transaction ${confirmation.value.err ? "failed" : "succeeded"}`
);
const fetchedPresaleAccount =
await program.account.presaleAccount.fetch(presaleAccount);
console.log("Now, the number of whitelist is ", fetchedPresaleAccount.totalWhitelistedWallets);
assert.ok(fetchedPresaleAccount);
const fetchedUserAccount =
await program.account.userAccount.fetch(userAccount);
console.log(fetchedUserAccount);
assert.ok(fetchedUserAccount);
// Log the completion of the removal
console.log("Removing whitelist completed successfully");
// Log the connection
console.log(
`Connected to ${anchor.getProvider().connection.rpcEndpoint}`
);
}
});
})
describe("Buying tokens from buyer1Wallet, claim, and finalize", () => {
it("Simulate Buying 10 tokens from buyer1Wallet", async () => {
[userAccount] = web3.PublicKey.findProgramAddressSync(
[Buffer.from(USER_ACCOUNT_SEED), buyer1Wallet.publicKey.toBuffer()],
program.programId
);
const txHash = await program.methods
.buyToken(new BN(0.1 * LAMPORTS_PER_SOL))
.accounts({
escrowAccount: escrowAccount,
presaleAccount: presaleAccount,
userAccount: userAccount,
authority: buyer1Wallet.publicKey,
systemProgram: web3.SystemProgram.programId,
})
.signers([buyer1Wallet])
.rpc();
// Confirm transaction
const confirmation = await anchor
.getProvider()
.connection.confirmTransaction(txHash);
// console.log(
// `Transaction ${confirmation.value.err ? "failed" : "succeeded"}`
// );
const fetchedPresaleAccount =
await program.account.presaleAccount.fetch(presaleAccount);
console.log("Total sol income has become ", Number(fetchedPresaleAccount.totalSolAmount));
assert.ok(fetchedPresaleAccount);
const fetchedUserAccount =
await program.account.userAccount.fetch(userAccount);
console.log(fetchedUserAccount);
assert.ok(fetchedUserAccount);
let tokenBoughtAllocation = await fetchedUserAccount.userBuyAmount
let solPaid = await fetchedUserAccount.userSolContributed
console.log("User bought: " + tokenBoughtAllocation.toNumber() / 10 ** 9 + " tokens");
console.log("User paid: " + solPaid.toNumber() / 10 ** 9 + " SOL");
// let tokenVaultBalance = await anchor.getProvider().connection.getTokenAccountBalance(tokenVault);
// console.log("After user 1 buy 10 token VaultBalance:", tokenVaultBalance);
// Log the connection
console.log(`Connected to ${anchor.getProvider().connection.rpcEndpoint}`);
});
it("Simulate Buying 20 tokens from buyer2Wallet", async () => {
[userAccount] = web3.PublicKey.findProgramAddressSync(
[Buffer.from(USER_ACCOUNT_SEED), buyer2Wallet.publicKey.toBuffer()],
program.programId
);
const txHash = await program.methods
.buyToken(new BN(0.2 * LAMPORTS_PER_SOL))
.accounts({
escrowAccount: escrowAccount,
presaleAccount: presaleAccount,
userAccount: userAccount,
authority: buyer2Wallet.publicKey,
systemProgram: web3.SystemProgram.programId,
})
.signers([buyer2Wallet])
.rpc();
// Confirm transaction
const confirmation = await anchor
.getProvider()
.connection.confirmTransaction(txHash);
// console.log(
// `Transaction ${confirmation.value.err ? "failed" : "succeeded"}`
// );
const fetchedPresaleAccount =
await program.account.presaleAccount.fetch(presaleAccount);
console.log("Total sol income has become ", Number(fetchedPresaleAccount.totalSolAmount));
assert.ok(fetchedPresaleAccount);
const fetchedUserAccount =
await program.account.userAccount.fetch(userAccount);
console.log(fetchedUserAccount);
assert.ok(fetchedUserAccount);
let tokenBoughtAllocation = await fetchedUserAccount.userBuyAmount
let solPaid = await fetchedUserAccount.userSolContributed
console.log("User bought: " + tokenBoughtAllocation.toNumber() / 10 ** 9 + " tokens");
console.log("User paid: " + solPaid.toNumber() / 10 ** 9 + " SOL");
// let tokenVaultBalance = await anchor.getProvider().connection.getTokenAccountBalance(tokenVault);
// console.log("After user 2 buy 20 token VaultBalance:", tokenVaultBalance);
// Log the connection
console.log(`Connected to ${anchor.getProvider().connection.rpcEndpoint}`);
});
it("Simulate Buying 15 tokens from buyer3Wallet", async () => {
[userAccount] = web3.PublicKey.findProgramAddressSync(
[Buffer.from(USER_ACCOUNT_SEED), buyer3Wallet.publicKey.toBuffer()],
program.programId
);
const txHash = await program.methods
.buyToken(new BN(0.15 * LAMPORTS_PER_SOL))
.accounts({
escrowAccount: escrowAccount,
presaleAccount: presaleAccount,
userAccount: userAccount,
authority: buyer3Wallet.publicKey,
systemProgram: web3.SystemProgram.programId,
})
.signers([buyer3Wallet])
.rpc();
// Confirm transaction
const confirmation = await anchor
.getProvider()
.connection.confirmTransaction(txHash);
const fetchedPresaleAccount =
await program.account.presaleAccount.fetch(presaleAccount);
console.log("Total sol income has become ", Number(fetchedPresaleAccount.totalSolAmount));
assert.ok(fetchedPresaleAccount);
const fetchedUserAccount =
await program.account.userAccount.fetch(userAccount);
console.log(fetchedUserAccount);
assert.ok(fetchedUserAccount);
let tokenBoughtAllocation = await fetchedUserAccount.userBuyAmount
let solPaid = await fetchedUserAccount.userSolContributed
console.log("User bought: " + tokenBoughtAllocation.toNumber() / 10 ** 9 + " tokens");
console.log("User paid: " + solPaid.toNumber() / 10 ** 9 + " SOL");
// let tokenVaultBalance = await anchor.getProvider().connection.getTokenAccountBalance(tokenVault);
// console.log("After user 3 buy 15 token VaultBalance:", tokenVaultBalance);
// Log the connection
console.log(`Connected to ${anchor.getProvider().connection.rpcEndpoint}`);
});
it("Simulate Buying 50 tokens from buyer1Wallet and it should be failing because vault only have 50 total tokens", async () => {
[userAccount] = web3.PublicKey.findProgramAddressSync(
[Buffer.from(USER_ACCOUNT_SEED), buyer1Wallet.publicKey.toBuffer()],
program.programId
);
try {
const txHash = await program.methods
.buyToken(new BN(0.5 * LAMPORTS_PER_SOL))
.accounts({
escrowAccount: escrowAccount,
presaleAccount: presaleAccount,
userAccount: userAccount,
authority: buyer1Wallet.publicKey,
systemProgram: web3.SystemProgram.programId,
})
.signers([buyer1Wallet])
.rpc();
// Confirm transaction
const confirmation = await anchor
.getProvider()
.connection.confirmTransaction(txHash);
console.log(
`Transaction ${confirmation.value.err ? "failed" : "succeeded"}`
);
const fetchedUserAccount =
await program.account.userAccount.fetch(userAccount);
console.log(fetchedUserAccount);
assert.ok(fetchedUserAccount);
let tokenBoughtAllocation = fetchedUserAccount.userBuyAmount;
console.log("User bought: " + tokenBoughtAllocation.toNumber() / 10 ** 9 + " tokens");
let solPaid = fetchedUserAccount.userSolContributed;
console.log("User paid: " + solPaid.toNumber() / 10 ** 9 + " SOL");
let tokenVaultBalance = await anchor.getProvider().connection.getTokenAccountBalance(tokenVault);
console.log("🚀 And tokenVaultBalance:", tokenVaultBalance);
// If the buyToken call doesn't throw an error, fail the test
assert.fail("User can't buy because it exceeded the token in vault!");
} catch (error) {
console.log("This is the error", error.error);
const fetchedUserAccount =
await program.account.userAccount.fetch(userAccount);
console.log(fetchedUserAccount);
}
// Log the connection
console.log(`Connected to ${anchor.getProvider().connection.rpcEndpoint}`);
});
})
// describe("Cancel presale, and buying tokens from buyer1Wallet once presale is cancelled and it should Error from Smart Contract", () => {
// it("Cancel Presale", async () => {
// const txHash = await program.methods
// .cancelPresale()
// .accounts({
// admin: ADMIN_WALLET_ADDRESS_PUB_KEY,
// adminAccount: adminAccount,
// presaleAccount: presaleAccount,
// systemProgram: web3.SystemProgram.programId,
// })
// .signers([])
// .rpc();
// // Confirm transaction
// const confirmation = await anchor
// .getProvider()
// .connection.confirmTransaction(txHash);
// console.log(
// `Transaction ${confirmation.value.err ? "failed" : "succeeded"}`
// );
// const fetchedPresaleAccount =
// await program.account.presaleAccount.fetch(presaleAccount);
// console.log(fetchedPresaleAccount);
// assert.ok(fetchedPresaleAccount);
// // Log the completion of cancel presale
// console.log("Presale are cancelled");
// // Log the connection
// console.log(`Connected to ${anchor.getProvider().connection.rpcEndpoint}`);
// })
// it("Simulate Buying tokens from buyer1Wallet once presale is cancelled and it should not proceed", async () => {
// [userAccount] = web3.PublicKey.findProgramAddressSync(
// [Buffer.from(USER_ACCOUNT_SEED), buyer1Wallet.publicKey.toBuffer()],
// program.programId
// );
// try {
// await program.methods
// .buyToken(new BN(10))
// .accounts({
// escrowAccount: escrowAccount,
// presaleAccount: presaleAccount,
// userAccount: userAccount,
// authority: buyer1Wallet.publicKey,
// systemProgram: web3.SystemProgram.programId,
// })
// .signers([buyer1Wallet])
// .rpc();
// // If the buyToken call doesn't throw an error, fail the test
// assert.fail("Expected an error but call succeeded");
// } catch (error) {
// console.log("This is the error", error.error);
// const fetchedUserAccount =
// await program.account.userAccount.fetch(userAccount);
// console.log(fetchedUserAccount);
// }
// })
// })
// describe("Check if the presale is cancelled and can refund token", () => {
// it("Check if the presale is cancelled and can refund token", async () => {
// [userAccount] = web3.PublicKey.findProgramAddressSync(
// [Buffer.from(USER_ACCOUNT_SEED), buyer1Wallet.publicKey.toBuffer()],
// program.programId
// );
// [adminAccount] = web3.PublicKey.findProgramAddressSync(
// [Buffer.from(ADMIN_MANAGE_SEED), wallet.publicKey.toBuffer()],
// program.programId
// );
// const fetchedPresaleAccount =
// await program.account.presaleAccount.fetch(presaleAccount);
// console.log(fetchedPresaleAccount);
// assert.ok(fetchedPresaleAccount);
// if (fetchedPresaleAccount.isCancelled !== 1) {
// throw new Error("Presale is not cancelled");
// } else {
// console.log("Presale is cancelled, User can proceed refund");
// }
// const fetchedUserAccount =
// await program.account.userAccount.fetch(userAccount);
// console.log(fetchedUserAccount);
// assert.ok(fetchedUserAccount);
// })
// })
describe("Finalize token presale", () => {
it("Finalize and send team percent of sol to team wallet", async () => {
let fetchedPresaleAccount =
await program.account.presaleAccount.fetch(presaleAccount);
console.log(fetchedPresaleAccount);
assert.ok(fetchedPresaleAccount);
const connection = anchor.getProvider().connection;
let teamWalletBalance = await connection.getBalance(teamWallet.publicKey);
let escrowBalance = await connection.getBalance(escrowAccount);
let teamBalanceInSol = teamWalletBalance / 10 ** 9;
let escrowBalanceInSol = escrowBalance / 10 ** 9;
console.log("Before finalization");
console.log(`Team wallet has ${teamBalanceInSol}sol, escrow account has ${escrowBalanceInSol}sol.`);
const txHash = await program.methods.finalize(0)
.accounts({
escrowAccount: escrowAccount,
presaleAccount: presaleAccount,
teamAccount: teamWallet.publicKey,
adminAccount: adminAccount,
// admin: ADMIN_WALLET_ADDRESS_PUB_KEY,
// systemProgram: web3.SystemProgram.programId
})
.signers([wallet.payer])
.transaction();
// console.log(await connection.simulateTransaction(txHash, [wallet.payer]));
txHash.recentBlockhash = (await connection.getLatestBlockhash()).blockhash;
txHash.feePayer = wallet.publicKey;
const signature = await web3.sendAndConfirmTransaction(connection, txHash, [wallet.payer]);
console.log("Finalize step success, cause presale hardcapped, even before the end time ===>", signature);
let fetchedProfit = (await program.account.presaleAccount.fetch(presaleAccount))
.totalSolAmount.toNumber() / 10 ** 9;
console.log("Total profit : ", fetchedProfit);
fetchedPresaleAccount = await program.account.presaleAccount.fetch(presaleAccount);
console.log(fetchedPresaleAccount);
teamWalletBalance = await connection.getBalance(teamWallet.publicKey);
escrowBalance = await connection.getBalance(escrowAccount);
teamBalanceInSol = teamWalletBalance / 10 ** 9;
escrowBalanceInSol = escrowBalance / 10 ** 9;
console.log("After transferring 10% sol to team wallet");
console.log(`Team wallet now has ${teamBalanceInSol}sol, escrow account has ${escrowBalanceInSol}sol.`);
})
})
// describe("Refund token after presale is cancelled", () => {
// it("Get all users to refund and refund sol they paid", async () => {
// [presaleAccount] = web3.PublicKey.findProgramAddressSync(
// [Buffer.from(PRESALE_INFO_SEED)],
// program.programId
// );
// const allUsers = await anchor.getProvider().connection.getProgramAccounts(
// program.programId,
// {
// filters: [
// { dataSize: 58 }
// ]
// });
// for (let i = 0; i < allUsers.length; i++) {
// const user = allUsers[i];
// const fetchedUserAccount = await program.account.userAccount.fetch(user.pubkey);
// console.log("fetchedUserAccount, ", fetchedUserAccount);
// if (fetchedUserAccount.userSolContributed > new BN(0)) {
// [escrowAccount] = web3.PublicKey.findProgramAddressSync(
// [Buffer.from(SOL_VAULT_SEED)],
// program.programId
// );
// // verify the balances
// let userBalance = await anchor.getProvider().connection.getBalance(fetchedUserAccount.publicKey);
// let escrowBalance = await anchor.getProvider().connection.getBalance(escrowAccount);
// let userBalanceInSol = userBalance / 10 ** 9;
// let escrowBalanceInSol = escrowBalance / 10 ** 9;
// console.log("Before refund: ")
// console.log(`Balance in user account is ${userBalanceInSol}sol, escrow account has ${escrowBalanceInSol}sol.`);
// const txHash = await program.methods.refundToken()
// .accounts({
// escrowAccount: escrowAccount,
// presaleAccount: presaleAccount,
// authority: ADMIN_WALLET_ADDRESS_PUB_KEY,
// userAccount: user.pubkey,
// userToRefund: fetchedUserAccount.publicKey
// })
// .signers([])
// .transaction();
// // console.log(await anchor.getProvider().connection.simulateTransaction(txHash, [wallet.payer]));
// const provider = anchor.getProvider();
// txHash.recentBlockhash = (await provider.connection.getLatestBlockhash()).blockhash;
// txHash.feePayer = wallet.publicKey;
// const signature = await web3.sendAndConfirmTransaction(provider.connection, txHash, [wallet.payer]);
// console.log("signature ===>", signature);
// // verify the balances
// userBalance = await anchor.getProvider().connection.getBalance(fetchedUserAccount.publicKey);
// escrowBalance = await anchor.getProvider().connection.getBalance(escrowAccount);
// userBalanceInSol = userBalance / 10 ** 9;
// escrowBalanceInSol = escrowBalance / 10 ** 9;
// console.log("After refund: ")
// console.log(`Balance in user account is ${userBalanceInSol}sol, escrow account has ${escrowBalanceInSol}sol.`);
// const fetchedPresaleAccount =
// await program.account.presaleAccount.fetch(presaleAccount);
// console.log(fetchedPresaleAccount);
// assert.ok(fetchedPresaleAccount);
// }
// }
// // Log the connection
// console.log(`Connected to ${anchor.getProvider().connection.rpcEndpoint}`);
// });
// })
describe("Claim token when presale is successfully finished", () => {
it("Fetch all user accounts who bought token and claim token", async () => {
const accounts = await anchor.getProvider().connection.getProgramAccounts(
program.programId,
{
filters: [
{ dataSize: 58 }
]
});
for (let account of accounts) {
let userAccount = await program.account.userAccount.fetch(account.pubkey);
// console.log("🚀 userAccount:", userAccount)
const userToSend = new web3.PublicKey(userAccount.publicKey);
if (userAccount.isWhitelisted && userAccount.userBuyAmount.toNumber() > 0) {
console.log("******************** is whitelisted and has bought tokens ********************")
const userAta = await token.createAssociatedTokenAccount(
anchor.getProvider().connection,
wallet.payer,
newToken,
userToSend,
)
// console.log("🚀 userAta:", userAta)