-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmigrate
2534 lines (2380 loc) · 236 KB
/
migrate
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
Script started on 2024-11-27 14:48:17+00:00 [TERM="xterm-256color" TTY="/dev/pts/3" COLUMNS="233" LINES="17"]
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ pnpm run script[K[K[K[K[K[K[K[K[K[K[K[K[K[K[Kpnpm script
[?2004l
> @ script /home/ubuntu/pump-science-contract
> export ANCHOR_WALLET=./test_key.json && ts-node ./cli/command.ts
sh: 1: ts-node: Permission denied
[41m[30m ELIFECYCLE [39m[49m [31mCommand failed.[39m
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ pnpm script migrate
[?2004l
> @ script /home/ubuntu/pump-science-contract
> export ANCHOR_WALLET=./test_key.json && ts-node ./cli/command.ts "migrate"
sh: 1: ts-node: Permission denied
[41m[30m ELIFECYCLE [39m[49m [31mCommand failed.[39m
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ pnpm script migrate
[?2004l
> @ script /home/ubuntu/pump-science-contract
> export ANCHOR_WALLET=./test_key.json && ts-node ./cli/command.ts "migrate"
sh: 1: ts-node: Permission denied
[41m[30m ELIFECYCLE [39m[49m [31mCommand failed.[39m
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ ts-[K[K[Kpnpm script migrate
[?2004l
> @ script /home/ubuntu/pump-science-contract
> export ANCHOR_WALLET=./test_key.json && ts-node ./cli/command.ts "migrate"
sh: 1: ts-node: Permission denied
[41m[30m ELIFECYCLE [39m[49m [31mCommand failed.[39m
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ node --version
[?2004lv22.11.0
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ typescript --version
[?2004ltypescript: command not found
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ npm --version
[?2004l10.9.0
[1G[0K[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ ^C[?2004l[?2004h[?2004l
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [7mnpm config set user 0[27mnpm config set user 0
[?2004l[1mnpm[22m [31merror[39m `user` is not a valid npm option
[1mnpm[22m [31merror[39m A complete log of this run can be found in: /home/ubuntu/.npm/_logs/2024-11-27T14_57_23_689Z-debug-0.log
[1G[0K[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [7mnpm config set unsafe-perm true[27mnpm config set unsafe-perm true
[?2004l[1mnpm[22m [31merror[39m `unsafe-perm` is not a valid npm option
[1mnpm[22m [31merror[39m A complete log of this run can be found in: /home/ubuntu/.npm/_logs/2024-11-27T14_57_36_001Z-debug-0.log
[1G[0K[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ clear
[?2004l[H[2J[3J[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ pnpm install [7mts-node[27mts-node
[?2004lProgress: resolved [96m0[39m, reused [96m1[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m43[39m, reused [96m34[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m128[39m, reused [96m107[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m197[39m, reused [96m178[39m, downloaded [96m1[39m, added [96m0[39m
[1AProgress: resolved [96m378[39m, reused [96m361[39m, downloaded [96m11[39m, added [96m0[39m
[1AProgress: resolved [96m418[39m, reused [96m400[39m, downloaded [96m13[39m, added [96m0[39m
[1AProgress: resolved [96m421[39m, reused [96m401[39m, downloaded [96m16[39m, added [96m0[39m
[1A[43m[30m WARN [39m[49m [31m2 deprecated subdependencies found:[39m [email protected], [email protected]
Progress: resolved [96m421[39m, reused [96m401[39m, downloaded [96m16[39m, added [96m0[39m
[1APackages: [32m+16[39m[0K
[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m
Progress: resolved [96m421[39m, reused [96m401[39m, downloaded [96m16[39m, added [96m0[39m
[1AProgress: resolved [96m421[39m, reused [96m401[39m, downloaded [96m16[39m, added [96m16[39m, done
[96mdependencies:[39m
[32m+[39m ts-node [90m10.9.2[39m
[43m[30m WARN [39m[49m Issues with peer dependencies found
[0m.[0m
├─┬ @metaplex-foundation/umi-bundle-defaults [90m0.9.1[39m
│ ├─┬ @metaplex-foundation/umi-rpc-web3js [90m0.9.2[39m
│ │ ├── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ │ └─┬ @metaplex-foundation/umi-web3js-adapters [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-downloader-http [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-eddsa-web3js [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-http-fetch [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-program-repository [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-rpc-chunk-get-accounts [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-serializer-data-view [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ └─┬ @metaplex-foundation/umi-transaction-factory-web3js [90m0.9.2[39m
│ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
└─┬ anchor-bankrun [90m0.4.0[39m
├── [93m✕ unmet peer[39m @coral-xyz/anchor@^0.30.0: found 0.28.0
└── [93m✕ unmet peer[39m solana-bankrun@^0.2.0: found 0.3.0
Done in 1.9s
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ pnpm install ts-nodeclear[Kpnpm install ts-nodeclear[Knpm config set unsafe-perm true
[?2004l[1mnpm[22m [31merror[39m `unsafe-perm` is not a valid npm option
[1mnpm[22m [31merror[39m A complete log of this run can be found in: /home/ubuntu/.npm/_logs/2024-11-27T14_58_58_442Z-debug-0.log
[1G[0K[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ pnpm script migrate
[?2004l
> @ script /home/ubuntu/pump-science-contract
> export ANCHOR_WALLET=./test_key.json && ts-node ./cli/command.ts "migrate"
Solana Cluster: devnet
Keypair Path: /home/ubuntu/pump-science/pump-science-contract/test_key.json
RPC URL: https://api.devnet.solana.com
(node:255968) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
(Use `node --trace-deprecation ...` to show where the warning was created)
Error: ENOENT: no such file or directory, open '/home/ubuntu/pump-science/pump-science-contract/test_key.json'
[90m at Object.readFileSync (node:fs:441:20)[39m
at setClusterConfig [90m(/home/ubuntu/pump-science-contract/[39mcli/script.ts:47:39[90m)[39m
at Command.<anonymous> [90m(/home/ubuntu/pump-science-contract/[39mcli/command.ts:20:31[90m)[39m
at Command.listener [as _actionHandler] [90m(/home/ubuntu/pump-science-contract/[39mnode_modules/[4m.pnpm[24m/[email protected]/node_modules/[4mcommander[24m/lib/command.js:542:17[90m)[39m
at [90m/home/ubuntu/pump-science-contract/[39mnode_modules/[4m.pnpm[24m/[email protected]/node_modules/[4mcommander[24m/lib/command.js:1502:14
at Command._chainOrCall [90m(/home/ubuntu/pump-science-contract/[39mnode_modules/[4m.pnpm[24m/[email protected]/node_modules/[4mcommander[24m/lib/command.js:1386:12[90m)[39m
at Command._parseCommand [90m(/home/ubuntu/pump-science-contract/[39mnode_modules/[4m.pnpm[24m/[email protected]/node_modules/[4mcommander[24m/lib/command.js:1501:27[90m)[39m
at [90m/home/ubuntu/pump-science-contract/[39mnode_modules/[4m.pnpm[24m/[email protected]/node_modules/[4mcommander[24m/lib/command.js:1265:27
at Command._chainOrCall [90m(/home/ubuntu/pump-science-contract/[39mnode_modules/[4m.pnpm[24m/[email protected]/node_modules/[4mcommander[24m/lib/command.js:1386:12[90m)[39m
at Command._dispatchSubcommand [90m(/home/ubuntu/pump-science-contract/[39mnode_modules/[4m.pnpm[24m/[email protected]/node_modules/[4mcommander[24m/lib/command.js:1261:25[90m)[39m {
errno: [33m-2[39m,
code: [32m'ENOENT'[39m,
syscall: [32m'open'[39m,
path: [32m'/home/ubuntu/pump-science/pump-science-contract/test_key.json'[39m
}
[41m[30m ELIFECYCLE [39m[49m [31mCommand failed with exit code 1.[39m
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$
[?2004l[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ pnpm script migrate
[?2004l
> @ script /home/ubuntu/pump-science-contract
> export ANCHOR_WALLET=./test_key.json && ts-node ./cli/command.ts "migrate"
Solana Cluster: devnet
Keypair Path: /home/ubuntu/pump-science-contract/test_key.json
RPC URL: https://api.devnet.solana.com
Wallet Address: Gs6zGy3rvjspuisNdhki9rohkArK4GrqRzbZRw9K2K4M
ProgramId: 7yeV4bTJFFgxZgikPsycuYuNyansr73UrSVCdrU6jxV7
(node:256080) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
(Use `node --trace-deprecation ...` to show where the warning was created)
PublicKey [PublicKey(AJdEh5iZ7kkxpvhGRipGd2y6uCEEDQS3MoueFjkgQdBB)] {
_bn: <BN: 8a3d07406dfd79ff13fa9f18357a16117eea0bbb0c2dc3627b209dfc4eca72c6>
}
Transaction ID: [33m0[39m
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ solana address
[?2004lGs6zGy3rvjspuisNdhki9rohkArK4GrqRzbZRw9K2K4M
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ solana address
[?2004lGs6zGy3rvjspuisNdhki9rohkArK4GrqRzbZRw9K2K4M
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ solana addresspnpm script migrate
[?2004l
> @ script /home/ubuntu/pump-science-contract
> export ANCHOR_WALLET=./test_key.json && ts-node ./cli/command.ts "migrate"
PublicKey [PublicKey(7yeV4bTJFFgxZgikPsycuYuNyansr73UrSVCdrU6jxV7)] {
_bn: <BN: 67a907abc2f6cdc5750d9d34723053fd7c80223f04b6e741890bfceccdb9181a>
}
Solana Cluster: devnet
Keypair Path: /home/ubuntu/pump-science-contract/test_key.json
RPC URL: https://api.devnet.solana.com
Wallet Address: Gs6zGy3rvjspuisNdhki9rohkArK4GrqRzbZRw9K2K4M
ProgramId: 7yeV4bTJFFgxZgikPsycuYuNyansr73UrSVCdrU6jxV7
(node:256460) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
(Use `node --trace-deprecation ...` to show where the warning was created)
PublicKey [PublicKey(AJdEh5iZ7kkxpvhGRipGd2y6uCEEDQS3MoueFjkgQdBB)] {
_bn: <BN: 8a3d07406dfd79ff13fa9f18357a16117eea0bbb0c2dc3627b209dfc4eca72c6>
}
Transaction ID: [33m0[39m
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ pnpm script migrate
[?2004l
> @ script /home/ubuntu/pump-science-contract
> export ANCHOR_WALLET=./test_key.json && ts-node ./cli/command.ts "migrate"
program Id ===>>> PublicKey [PublicKey(7yeV4bTJFFgxZgikPsycuYuNyansr73UrSVCdrU6jxV7)] {
_bn: <BN: 67a907abc2f6cdc5750d9d34723053fd7c80223f04b6e741890bfceccdb9181a>
}
Solana Cluster: devnet
Keypair Path: /home/ubuntu/pump-science-contract/test_key.json
RPC URL: https://api.devnet.solana.com
Wallet Address: Gs6zGy3rvjspuisNdhki9rohkArK4GrqRzbZRw9K2K4M
ProgramId: 7yeV4bTJFFgxZgikPsycuYuNyansr73UrSVCdrU6jxV7
(node:256578) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
(Use `node --trace-deprecation ...` to show where the warning was created)
PublicKey [PublicKey(AJdEh5iZ7kkxpvhGRipGd2y6uCEEDQS3MoueFjkgQdBB)] {
_bn: <BN: 8a3d07406dfd79ff13fa9f18357a16117eea0bbb0c2dc3627b209dfc4eca72c6>
}
Transaction ID: [33m0[39m
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ pnpm script migrate
[?2004l
> @ script /home/ubuntu/pump-science-contract
> export ANCHOR_WALLET=./test_key.json && ts-node ./cli/command.ts "migrate"
Solana Cluster: devnet
Keypair Path: /home/ubuntu/pump-science-contract/test_key.json
RPC URL: https://api.devnet.solana.com
Wallet Address: Gs6zGy3rvjspuisNdhki9rohkArK4GrqRzbZRw9K2K4M
ProgramId: 7yeV4bTJFFgxZgikPsycuYuNyansr73UrSVCdrU6jxV7
(node:256715) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
(Use `node --trace-deprecation ...` to show where the warning was created)
PublicKey [PublicKey(AJdEh5iZ7kkxpvhGRipGd2y6uCEEDQS3MoueFjkgQdBB)] {
_bn: <BN: 8a3d07406dfd79ff13fa9f18357a16117eea0bbb0c2dc3627b209dfc4eca72c6>
}
amm ID===>> PublicKey [PublicKey(Eo7WjKq67rjJQSZxS6z3YkapzY3eMj6Xy8X5EQVn5UaB)] {
_bn: <BN: ccf802d4cccc84d7fb21b5f73b49d81a16c5b4c88ee32394e1c91d3588cc4080>
}
Transaction ID: [33m0[39m
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ pnpm script migrate
[?2004l
> @ script /home/ubuntu/pump-science-contract
> export ANCHOR_WALLET=./test_key.json && ts-node ./cli/command.ts "migrate"
(node:257524) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
(Use `node --trace-deprecation ...` to show where the warning was created)
PublicKey [PublicKey(AJdEh5iZ7kkxpvhGRipGd2y6uCEEDQS3MoueFjkgQdBB)] {
_bn: <BN: 8a3d07406dfd79ff13fa9f18357a16117eea0bbb0c2dc3627b209dfc4eca72c6>
}
Native token==>>> PublicKey [PublicKey(So11111111111111111111111111111111111111112)] {
_bn: <BN: 69b8857feab8184fb687f634618c035dac439dc1aeb3b5598a0f00000000001>
}
Transaction ID: [33m0[39m
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ ppnp[K[K[Knpm uninstall [7m@mercurial-finance/vault-sdk[27m@mercurial-finance/vault-sdk
[?2004lProgress: resolved [96m0[39m, reused [96m1[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m40[39m, reused [96m34[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m141[39m, reused [96m134[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m286[39m, reused [96m280[39m, downloaded [96m0[39m, added [96m0[39m
[1A[43m[30m WARN [39m[49m [31m2 deprecated subdependencies found:[39m [email protected], [email protected]
Progress: resolved [96m286[39m, reused [96m280[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m420[39m, reused [96m416[39m, downloaded [96m0[39m, added [96m0[39m
[1APackages: [31m-1[39m[0K
[31m-[39m
Progress: resolved [96m420[39m, reused [96m416[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m420[39m, reused [96m416[39m, downloaded [96m0[39m, added [96m0[39m, done
[96mdependencies:[39m
[31m-[39m @mercurial-finance/vault-sdk [90m2.2.1[39m
[43m[30m WARN [39m[49m Issues with peer dependencies found
[0m.[0m
├─┬ @metaplex-foundation/umi-bundle-defaults [90m0.9.1[39m
│ ├─┬ @metaplex-foundation/umi-rpc-web3js [90m0.9.2[39m
│ │ ├── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ │ └─┬ @metaplex-foundation/umi-web3js-adapters [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-downloader-http [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-eddsa-web3js [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-http-fetch [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-program-repository [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-rpc-chunk-get-accounts [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-serializer-data-view [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ └─┬ @metaplex-foundation/umi-transaction-factory-web3js [90m0.9.2[39m
│ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
└─┬ anchor-bankrun [90m0.4.0[39m
├── [93m✕ unmet peer[39m @coral-xyz/anchor@^0.30.0: found 0.28.0
└── [93m✕ unmet peer[39m solana-bankrun@^0.2.0: found 0.3.0
Done in 1.3s
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ pnpm uninstall @mercurial-finance/vault-sdk[C[C[C[C[C[C[C[1P[1P[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C@[7m2.2.0[27m2.2.0
[?2004lProgress: resolved [96m1[39m, reused [96m0[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m31[39m, reused [96m31[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m102[39m, reused [96m91[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m184[39m, reused [96m178[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m373[39m, reused [96m369[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m410[39m, reused [96m406[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m411[39m, reused [96m406[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m411[39m, reused [96m407[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m419[39m, reused [96m415[39m, downloaded [96m0[39m, added [96m0[39m
[1A[43m[30m WARN [39m[49m [31m2 deprecated subdependencies found:[39m [email protected], [email protected]
Progress: resolved [96m419[39m, reused [96m415[39m, downloaded [96m0[39m, added [96m0[39m
[1APackages: [32m+1[39m [31m-1[39m[0K
[32m+[39m[31m-[39m
Progress: resolved [96m419[39m, reused [96m415[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m420[39m, reused [96m416[39m, downloaded [96m0[39m, added [96m1[39m, done
[96mdependencies:[39m
[32m+[39m @mercurial-finance/vault-sdk [90m2.2.0[39m [90m(2.2.1 is available)[39m
[43m[30m WARN [39m[49m Issues with peer dependencies found
[0m.[0m
├─┬ @metaplex-foundation/umi-bundle-defaults [90m0.9.1[39m
│ ├─┬ @metaplex-foundation/umi-rpc-web3js [90m0.9.2[39m
│ │ ├── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ │ └─┬ @metaplex-foundation/umi-web3js-adapters [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-downloader-http [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-eddsa-web3js [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-http-fetch [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-program-repository [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-rpc-chunk-get-accounts [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-serializer-data-view [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ └─┬ @metaplex-foundation/umi-transaction-factory-web3js [90m0.9.2[39m
│ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
└─┬ anchor-bankrun [90m0.4.0[39m
├── [93m✕ unmet peer[39m @coral-xyz/anchor@^0.30.0: found 0.28.0
└── [93m✕ unmet peer[39m solana-bankrun@^0.2.0: found 0.3.0
Done in 3.1s
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ pnpm uninstall [7m@solana/web3.js[27m@solana/web3.js
[?2004lProgress: resolved [96m0[39m, reused [96m1[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m41[39m, reused [96m35[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m137[39m, reused [96m130[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m264[39m, reused [96m258[39m, downloaded [96m0[39m, added [96m0[39m
[1A[43m[30m WARN [39m[49m [31m2 deprecated subdependencies found:[39m [email protected], [email protected]
Progress: resolved [96m264[39m, reused [96m258[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m420[39m, reused [96m416[39m, downloaded [96m0[39m, added [96m0[39m
[1AAlready up to date[0K
Progress: resolved [96m420[39m, reused [96m416[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m420[39m, reused [96m416[39m, downloaded [96m0[39m, added [96m0[39m, done
[96mdependencies:[39m
[31m-[39m @solana/web3.js [90m1.95.2[39m
[43m[30m WARN [39m[49m Issues with peer dependencies found
[0m.[0m
├─┬ @metaplex-foundation/umi-bundle-defaults [90m0.9.1[39m
│ ├─┬ @metaplex-foundation/umi-rpc-web3js [90m0.9.2[39m
│ │ ├── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ │ └─┬ @metaplex-foundation/umi-web3js-adapters [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-downloader-http [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-eddsa-web3js [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-http-fetch [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-program-repository [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-rpc-chunk-get-accounts [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-serializer-data-view [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ └─┬ @metaplex-foundation/umi-transaction-factory-web3js [90m0.9.2[39m
│ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
└─┬ anchor-bankrun [90m0.4.0[39m
├── [93m✕ unmet peer[39m @coral-xyz/anchor@^0.30.0: found 0.28.0
└── [93m✕ unmet peer[39m solana-bankrun@^0.2.0: found 0.3.0
Done in 1.3s
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ pnpm uninstall @solana/web3.js@[7m1.95.4[27m1.95.4[1P[1P
[?2004l
Progress: resolved [96m1[39m, reused [96m0[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m31[39m, reused [96m30[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m78[39m, reused [96m63[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m131[39m, reused [96m112[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m168[39m, reused [96m155[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m239[39m, reused [96m233[39m, downloaded [96m1[39m, added [96m0[39m
[1AProgress: resolved [96m392[39m, reused [96m387[39m, downloaded [96m1[39m, added [96m0[39m
[1AProgress: resolved [96m417[39m, reused [96m412[39m, downloaded [96m1[39m, added [96m0[39m
[1AProgress: resolved [96m418[39m, reused [96m412[39m, downloaded [96m1[39m, added [96m0[39m
[1A[43m[30m WARN [39m[49m [31m2 deprecated subdependencies found:[39m [email protected], [email protected]
Progress: resolved [96m418[39m, reused [96m412[39m, downloaded [96m1[39m, added [96m0[39m
[1AProgress: resolved [96m419[39m, reused [96m414[39m, downloaded [96m1[39m, added [96m0[39m
[1APackages: [32m+20[39m [31m-20[39m[0K
[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m
Progress: resolved [96m419[39m, reused [96m414[39m, downloaded [96m1[39m, added [96m0[39m
[1AProgress: resolved [96m419[39m, reused [96m414[39m, downloaded [96m1[39m, added [96m20[39m, done
[96mdependencies:[39m
[32m+[39m @solana/web3.js [90m1.95.4[39m [90m(1.95.5 is available)[39m
[43m[30m WARN [39m[49m Issues with peer dependencies found
[0m.[0m
├─┬ @metaplex-foundation/umi-bundle-defaults [90m0.9.1[39m
│ ├─┬ @metaplex-foundation/umi-rpc-web3js [90m0.9.2[39m
│ │ ├── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ │ └─┬ @metaplex-foundation/umi-web3js-adapters [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-downloader-http [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-eddsa-web3js [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-http-fetch [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-program-repository [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-rpc-chunk-get-accounts [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-serializer-data-view [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ └─┬ @metaplex-foundation/umi-transaction-factory-web3js [90m0.9.2[39m
│ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
└─┬ anchor-bankrun [90m0.4.0[39m
├── [93m✕ unmet peer[39m @coral-xyz/anchor@^0.30.0: found 0.28.0
└── [93m✕ unmet peer[39m solana-bankrun@^0.2.0: found 0.3.0
Done in 2.6s
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$
[?2004l[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ pnpm install @solana/[email protected][C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[C[5Puninstall @solana/web3.js
[?2004lProgress: resolved [96m0[39m, reused [96m1[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m41[39m, reused [96m35[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m133[39m, reused [96m126[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m262[39m, reused [96m256[39m, downloaded [96m0[39m, added [96m0[39m
[1A[43m[30m WARN [39m[49m [31m2 deprecated subdependencies found:[39m [email protected], [email protected]
Progress: resolved [96m262[39m, reused [96m256[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m419[39m, reused [96m415[39m, downloaded [96m0[39m, added [96m0[39m
[1AAlready up to date[0K
Progress: resolved [96m419[39m, reused [96m415[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m419[39m, reused [96m415[39m, downloaded [96m0[39m, added [96m0[39m, done
[96mdependencies:[39m
[31m-[39m @solana/web3.js [90m1.95.4[39m
[43m[30m WARN [39m[49m Issues with peer dependencies found
[0m.[0m
├─┬ @metaplex-foundation/umi-bundle-defaults [90m0.9.1[39m
│ ├─┬ @metaplex-foundation/umi-rpc-web3js [90m0.9.2[39m
│ │ ├── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ │ └─┬ @metaplex-foundation/umi-web3js-adapters [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-downloader-http [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-eddsa-web3js [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-http-fetch [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-program-repository [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-rpc-chunk-get-accounts [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-serializer-data-view [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ └─┬ @metaplex-foundation/umi-transaction-factory-web3js [90m0.9.2[39m
│ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
└─┬ anchor-bankrun [90m0.4.0[39m
├── [93m✕ unmet peer[39m @coral-xyz/anchor@^0.30.0: found 0.28.0
└── [93m✕ unmet peer[39m solana-bankrun@^0.2.0: found 0.3.0
Done in 1.3s
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ pnpm uninstall @solana/web3.jsinstall @solana/[email protected][K5
[?2004lProgress: resolved [96m1[39m, reused [96m0[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m31[39m, reused [96m31[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m71[39m, reused [96m57[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m180[39m, reused [96m176[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m249[39m, reused [96m245[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m354[39m, reused [96m349[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m392[39m, reused [96m388[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m393[39m, reused [96m388[39m, downloaded [96m0[39m, added [96m0[39m
[1A[43m[30m WARN [39m[49m [31m2 deprecated subdependencies found:[39m [email protected], [email protected]
Progress: resolved [96m393[39m, reused [96m388[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m419[39m, reused [96m415[39m, downloaded [96m0[39m, added [96m0[39m
[1APackages: [32m+20[39m [31m-19[39m[0K
[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m
Progress: resolved [96m419[39m, reused [96m415[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m419[39m, reused [96m415[39m, downloaded [96m0[39m, added [96m9[39m, done
[96mdependencies:[39m
[32m+[39m @solana/web3.js [90m1.95.5[39m
[43m[30m WARN [39m[49m Issues with peer dependencies found
[0m.[0m
├─┬ @metaplex-foundation/umi-bundle-defaults [90m0.9.1[39m
│ ├─┬ @metaplex-foundation/umi-rpc-web3js [90m0.9.2[39m
│ │ ├── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ │ └─┬ @metaplex-foundation/umi-web3js-adapters [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-downloader-http [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-eddsa-web3js [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-http-fetch [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-program-repository [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-rpc-chunk-get-accounts [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-serializer-data-view [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ └─┬ @metaplex-foundation/umi-transaction-factory-web3js [90m0.9.2[39m
│ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
└─┬ anchor-bankrun [90m0.4.0[39m
├── [93m✕ unmet peer[39m @coral-xyz/anchor@^0.30.0: found 0.28.0
└── [93m✕ unmet peer[39m solana-bankrun@^0.2.0: found 0.3.0
Done in 3s
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ pnpm install @solana/[email protected][5Puninstall @solana/web3.js
[?2004lProgress: resolved [96m0[39m, reused [96m1[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m41[39m, reused [96m35[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m129[39m, reused [96m122[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m268[39m, reused [96m262[39m, downloaded [96m0[39m, added [96m0[39m
[1A[43m[30m WARN [39m[49m [31m2 deprecated subdependencies found:[39m [email protected], [email protected]
Progress: resolved [96m268[39m, reused [96m262[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m419[39m, reused [96m415[39m, downloaded [96m0[39m, added [96m0[39m
[1AAlready up to date[0K
Progress: resolved [96m419[39m, reused [96m415[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m419[39m, reused [96m415[39m, downloaded [96m0[39m, added [96m0[39m, done
[96mdependencies:[39m
[31m-[39m @solana/web3.js [90m1.95.5[39m
[43m[30m WARN [39m[49m Issues with peer dependencies found
[0m.[0m
├─┬ @metaplex-foundation/umi-bundle-defaults [90m0.9.1[39m
│ ├─┬ @metaplex-foundation/umi-rpc-web3js [90m0.9.2[39m
│ │ ├── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ │ └─┬ @metaplex-foundation/umi-web3js-adapters [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-downloader-http [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-eddsa-web3js [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-http-fetch [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-program-repository [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-rpc-chunk-get-accounts [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-serializer-data-view [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ └─┬ @metaplex-foundation/umi-transaction-factory-web3js [90m0.9.2[39m
│ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
└─┬ anchor-bankrun [90m0.4.0[39m
├── [93m✕ unmet peer[39m @coral-xyz/anchor@^0.30.0: found 0.28.0
└── [93m✕ unmet peer[39m solana-bankrun@^0.2.0: found 0.3.0
Done in 1.3s
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ pnpm uninstall @solana/web3.jsinstall @solana/[email protected][K2
[?2004lProgress: resolved [96m1[39m, reused [96m0[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m31[39m, reused [96m31[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m99[39m, reused [96m82[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m140[39m, reused [96m123[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m234[39m, reused [96m230[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m382[39m, reused [96m378[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m419[39m, reused [96m415[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m420[39m, reused [96m415[39m, downloaded [96m0[39m, added [96m0[39m
[1A[43m[30m WARN [39m[49m [31m2 deprecated subdependencies found:[39m [email protected], [email protected]
Progress: resolved [96m420[39m, reused [96m415[39m, downloaded [96m0[39m, added [96m0[39m
[1APackages: [32m+19[39m [31m-10[39m[0K
[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m
Progress: resolved [96m420[39m, reused [96m415[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m420[39m, reused [96m416[39m, downloaded [96m0[39m, added [96m1[39m
[1AProgress: resolved [96m420[39m, reused [96m416[39m, downloaded [96m0[39m, added [96m4[39m, done
[96mdependencies:[39m
[32m+[39m @solana/web3.js [90m1.95.2[39m [90m(1.95.5 is available)[39m
[43m[30m WARN [39m[49m Issues with peer dependencies found
[0m.[0m
├─┬ @mercurial-finance/dynamic-amm-sdk [90m1.1.15[39m
│ └─┬ @mercurial-finance/vault-sdk [90m2.2.0[39m
│ └─┬ @solana/spl-token [90m0.4.9[39m
│ ├── ✕ unmet peer @solana/web3.js@^1.95.3: found 1.95.2 in @mercurial-finance/vault-sdk
│ ├─┬ @solana/spl-token-group [90m0.0.7[39m
│ │ └── ✕ unmet peer @solana/web3.js@^1.95.3: found 1.95.2 in @mercurial-finance/vault-sdk
│ └─┬ @solana/spl-token-metadata [90m0.1.6[39m
│ └── ✕ unmet peer @solana/web3.js@^1.95.3: found 1.95.2 in @mercurial-finance/vault-sdk
├─┬ @metaplex-foundation/umi-bundle-defaults [90m0.9.1[39m
│ ├─┬ @metaplex-foundation/umi-rpc-web3js [90m0.9.2[39m
│ │ ├── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ │ └─┬ @metaplex-foundation/umi-web3js-adapters [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-downloader-http [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-eddsa-web3js [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-http-fetch [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-program-repository [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-rpc-chunk-get-accounts [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-serializer-data-view [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ └─┬ @metaplex-foundation/umi-transaction-factory-web3js [90m0.9.2[39m
│ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
└─┬ anchor-bankrun [90m0.4.0[39m
├── [93m✕ unmet peer[39m @coral-xyz/anchor@^0.30.0: found 0.28.0
└── [93m✕ unmet peer[39m solana-bankrun@^0.2.0: found 0.3.0
Done in 2.4s
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ pnpm install @solana/[email protected][5Puninstall @solana/web3.js
[?2004lProgress: resolved [96m0[39m, reused [96m1[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m41[39m, reused [96m35[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m124[39m, reused [96m117[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m262[39m, reused [96m256[39m, downloaded [96m0[39m, added [96m0[39m
[1A[43m[30m WARN [39m[49m [31m2 deprecated subdependencies found:[39m [email protected], [email protected]
Progress: resolved [96m262[39m, reused [96m256[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m420[39m, reused [96m416[39m, downloaded [96m0[39m, added [96m0[39m
[1AAlready up to date[0K
Progress: resolved [96m420[39m, reused [96m416[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m420[39m, reused [96m416[39m, downloaded [96m0[39m, added [96m0[39m, done
[96mdependencies:[39m
[31m-[39m @solana/web3.js [90m1.95.2[39m
[43m[30m WARN [39m[49m Issues with peer dependencies found
[0m.[0m
├─┬ @mercurial-finance/dynamic-amm-sdk [90m1.1.15[39m
│ └─┬ @mercurial-finance/vault-sdk [90m2.2.0[39m
│ └─┬ @solana/spl-token [90m0.4.9[39m
│ ├── ✕ unmet peer @solana/web3.js@^1.95.3: found 1.95.2 in @mercurial-finance/vault-sdk
│ ├─┬ @solana/spl-token-group [90m0.0.7[39m
│ │ └── ✕ unmet peer @solana/web3.js@^1.95.3: found 1.95.2 in @mercurial-finance/vault-sdk
│ └─┬ @solana/spl-token-metadata [90m0.1.6[39m
│ └── ✕ unmet peer @solana/web3.js@^1.95.3: found 1.95.2 in @mercurial-finance/vault-sdk
├─┬ @metaplex-foundation/umi-bundle-defaults [90m0.9.1[39m
│ ├─┬ @metaplex-foundation/umi-rpc-web3js [90m0.9.2[39m
│ │ ├── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ │ └─┬ @metaplex-foundation/umi-web3js-adapters [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-downloader-http [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-eddsa-web3js [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-http-fetch [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-program-repository [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-rpc-chunk-get-accounts [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-serializer-data-view [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ └─┬ @metaplex-foundation/umi-transaction-factory-web3js [90m0.9.2[39m
│ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
└─┬ anchor-bankrun [90m0.4.0[39m
├── [93m✕ unmet peer[39m @coral-xyz/anchor@^0.30.0: found 0.28.0
└── [93m✕ unmet peer[39m solana-bankrun@^0.2.0: found 0.3.0
Done in 1.3s
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ pnpm uninstall @solana/web3.jsinstall @solana/[email protected][K4
[?2004lProgress: resolved [96m1[39m, reused [96m0[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m31[39m, reused [96m31[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m68[39m, reused [96m52[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m226[39m, reused [96m222[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m275[39m, reused [96m271[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m276[39m, reused [96m271[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m305[39m, reused [96m301[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m320[39m, reused [96m314[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m382[39m, reused [96m378[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m415[39m, reused [96m411[39m, downloaded [96m0[39m, added [96m0[39m
[1A[43m[30m WARN [39m[49m [31m2 deprecated subdependencies found:[39m [email protected], [email protected]
Progress: resolved [96m415[39m, reused [96m411[39m, downloaded [96m0[39m, added [96m0[39m
[1APackages: [32m+20[39m [31m-21[39m[0K
[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m
Progress: resolved [96m415[39m, reused [96m411[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m417[39m, reused [96m413[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m417[39m, reused [96m413[39m, downloaded [96m0[39m, added [96m0[39m, done
[96mdependencies:[39m
[32m+[39m @solana/web3.js [90m1.95.4[39m [90m(1.95.5 is available)[39m
[43m[30m WARN [39m[49m Issues with peer dependencies found
[0m.[0m
├─┬ @metaplex-foundation/umi-bundle-defaults [90m0.9.1[39m
│ ├─┬ @metaplex-foundation/umi-rpc-web3js [90m0.9.2[39m
│ │ ├── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ │ └─┬ @metaplex-foundation/umi-web3js-adapters [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-downloader-http [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-eddsa-web3js [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-http-fetch [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-program-repository [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-rpc-chunk-get-accounts [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-serializer-data-view [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ └─┬ @metaplex-foundation/umi-transaction-factory-web3js [90m0.9.2[39m
│ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
└─┬ anchor-bankrun [90m0.4.0[39m
├── [93m✕ unmet peer[39m @coral-xyz/anchor@^0.30.0: found 0.28.0
└── [93m✕ unmet peer[39m solana-bankrun@^0.2.0: found 0.3.0
Done in 3.1s
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ pnpm install @solana/[email protected][5Puninstall @solana/web3.js
[?2004lProgress: resolved [96m0[39m, reused [96m1[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m41[39m, reused [96m35[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m134[39m, reused [96m127[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m261[39m, reused [96m255[39m, downloaded [96m0[39m, added [96m0[39m
[1A[43m[30m WARN [39m[49m [31m2 deprecated subdependencies found:[39m [email protected], [email protected]
Progress: resolved [96m261[39m, reused [96m255[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m417[39m, reused [96m413[39m, downloaded [96m0[39m, added [96m0[39m
[1AAlready up to date[0K
Progress: resolved [96m417[39m, reused [96m413[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m417[39m, reused [96m413[39m, downloaded [96m0[39m, added [96m0[39m, done
[96mdependencies:[39m
[31m-[39m @solana/web3.js [90m1.95.4[39m
[43m[30m WARN [39m[49m Issues with peer dependencies found
[0m.[0m
├─┬ @metaplex-foundation/umi-bundle-defaults [90m0.9.1[39m
│ ├─┬ @metaplex-foundation/umi-rpc-web3js [90m0.9.2[39m
│ │ ├── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ │ └─┬ @metaplex-foundation/umi-web3js-adapters [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-downloader-http [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-eddsa-web3js [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-http-fetch [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-program-repository [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-rpc-chunk-get-accounts [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-serializer-data-view [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ └─┬ @metaplex-foundation/umi-transaction-factory-web3js [90m0.9.2[39m
│ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
└─┬ anchor-bankrun [90m0.4.0[39m
├── [93m✕ unmet peer[39m @coral-xyz/anchor@^0.30.0: found 0.28.0
└── [93m✕ unmet peer[39m solana-bankrun@^0.2.0: found 0.3.0
Done in 1.2s
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ pnpm uninstall @solana/web3.jsinstall @solana/[email protected][K2
[?2004lProgress: resolved [96m1[39m, reused [96m0[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m31[39m, reused [96m31[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m48[39m, reused [96m36[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m119[39m, reused [96m102[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m142[39m, reused [96m118[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m185[39m, reused [96m147[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m261[39m, reused [96m241[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m310[39m, reused [96m303[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m340[39m, reused [96m334[39m, downloaded [96m0[39m, added [96m0[39m
[1A[43m[30m WARN [39m[49m [31m2 deprecated subdependencies found:[39m [email protected], [email protected]
Progress: resolved [96m340[39m, reused [96m334[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m418[39m, reused [96m414[39m, downloaded [96m0[39m, added [96m0[39m
[1APackages: [32m+19[39m [31m-10[39m[0K
[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[32m+[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m[31m-[39m
Progress: resolved [96m418[39m, reused [96m414[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m418[39m, reused [96m414[39m, downloaded [96m0[39m, added [96m0[39m, done
[96mdependencies:[39m
[32m+[39m @solana/web3.js [90m1.95.2[39m [90m(1.95.5 is available)[39m
[43m[30m WARN [39m[49m Issues with peer dependencies found
[0m.[0m
├─┬ @mercurial-finance/dynamic-amm-sdk [90m1.1.15[39m
│ └─┬ @mercurial-finance/vault-sdk [90m2.2.0[39m
│ └─┬ @solana/spl-token [90m0.4.9[39m
│ ├── ✕ unmet peer @solana/web3.js@^1.95.3: found 1.95.2 in @mercurial-finance/vault-sdk
│ ├─┬ @solana/spl-token-group [90m0.0.7[39m
│ │ └── ✕ unmet peer @solana/web3.js@^1.95.3: found 1.95.2 in @mercurial-finance/vault-sdk
│ └─┬ @solana/spl-token-metadata [90m0.1.6[39m
│ └── ✕ unmet peer @solana/web3.js@^1.95.3: found 1.95.2 in @mercurial-finance/vault-sdk
├─┬ @metaplex-foundation/umi-bundle-defaults [90m0.9.1[39m
│ ├─┬ @metaplex-foundation/umi-rpc-web3js [90m0.9.2[39m
│ │ ├── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ │ └─┬ @metaplex-foundation/umi-web3js-adapters [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-downloader-http [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-eddsa-web3js [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-http-fetch [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-program-repository [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-rpc-chunk-get-accounts [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-serializer-data-view [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ └─┬ @metaplex-foundation/umi-transaction-factory-web3js [90m0.9.2[39m
│ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
└─┬ anchor-bankrun [90m0.4.0[39m
├── [93m✕ unmet peer[39m @coral-xyz/anchor@^0.30.0: found 0.28.0
└── [93m✕ unmet peer[39m solana-bankrun@^0.2.0: found 0.3.0
Done in 2.4s
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ pnpm install @solana/[email protected]
[?2004lProgress: resolved [96m0[39m, reused [96m1[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m57[39m, reused [96m49[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m134[39m, reused [96m125[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m281[39m, reused [96m277[39m, downloaded [96m0[39m, added [96m0[39m
[1A[43m[30m WARN [39m[49m [31m2 deprecated subdependencies found:[39m [email protected], [email protected]
Progress: resolved [96m281[39m, reused [96m277[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m418[39m, reused [96m414[39m, downloaded [96m0[39m, added [96m0[39m
[1AAlready up to date[0K
Progress: resolved [96m418[39m, reused [96m414[39m, downloaded [96m0[39m, added [96m0[39m
[1AProgress: resolved [96m418[39m, reused [96m414[39m, downloaded [96m0[39m, added [96m0[39m, done
[43m[30m WARN [39m[49m Issues with peer dependencies found
[0m.[0m
├─┬ @mercurial-finance/dynamic-amm-sdk [90m1.1.15[39m
│ └─┬ @mercurial-finance/vault-sdk [90m2.2.0[39m
│ └─┬ @solana/spl-token [90m0.4.9[39m
│ ├── ✕ unmet peer @solana/web3.js@^1.95.3: found 1.95.2 in @mercurial-finance/vault-sdk
│ ├─┬ @solana/spl-token-group [90m0.0.7[39m
│ │ └── ✕ unmet peer @solana/web3.js@^1.95.3: found 1.95.2 in @mercurial-finance/vault-sdk
│ └─┬ @solana/spl-token-metadata [90m0.1.6[39m
│ └── ✕ unmet peer @solana/web3.js@^1.95.3: found 1.95.2 in @mercurial-finance/vault-sdk
├─┬ @metaplex-foundation/umi-bundle-defaults [90m0.9.1[39m
│ ├─┬ @metaplex-foundation/umi-rpc-web3js [90m0.9.2[39m
│ │ ├── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ │ └─┬ @metaplex-foundation/umi-web3js-adapters [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-downloader-http [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-eddsa-web3js [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-http-fetch [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-program-repository [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-rpc-chunk-get-accounts [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ ├─┬ @metaplex-foundation/umi-serializer-data-view [90m0.9.2[39m
│ │ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
│ └─┬ @metaplex-foundation/umi-transaction-factory-web3js [90m0.9.2[39m
│ └── [93m✕ unmet peer[39m @metaplex-foundation/umi@^0.9.2: found 0.9.1
└─┬ anchor-bankrun [90m0.4.0[39m
├── [93m✕ unmet peer[39m @coral-xyz/anchor@^0.30.0: found 0.28.0
└── [93m✕ unmet peer[39m solana-bankrun@^0.2.0: found 0.3.0
Done in 1.2s
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ pnpm install @solana/[email protected][5Puninstall @solana/web3.jsinstall @solana/[email protected][5Puninstall @solana/web3.jsinstall @solana/[email protected][5Puninstall @solana/web3.jsinstall @solana/[email protected][5Puninstall @solana/web3.jsinstall @solana/[email protected][5Puninstall @solana/web3.jsinstall @mercurial-finance/[email protected][4Puninstall @mercurial-finance/vault-sdk[24Pscript migrate[5Psolana addresspnpm script migrate[5Psolana addresspnpm script migrate
[?2004l
> @ script /home/ubuntu/pump-science-contract
> export ANCHOR_WALLET=./test_key.json && ts-node ./cli/command.ts "migrate"
(node:259241) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
(Use `node --trace-deprecation ...` to show where the warning was created)
PublicKey [PublicKey(AJdEh5iZ7kkxpvhGRipGd2y6uCEEDQS3MoueFjkgQdBB)] {
_bn: <BN: 8a3d07406dfd79ff13fa9f18357a16117eea0bbb0c2dc3627b209dfc4eca72c6>
}
/home/ubuntu/pump-science-contract/node_modules/.pnpm/@[email protected][email protected][email protected]/node_modules/@solana/web3.js/src/connection.ts:6043
throw new SendTransactionError({
^
SendTransactionError: Simulation failed.
Message: Transaction simulation failed: Error processing Instruction 0: Provided seeds do not result in a valid address.
Logs:
[
"Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL invoke [1]",
"Program log: Create",
"Program log: Error: Associated address does not match seed derivation",
"Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL consumed 4959 of 400000 compute units",
"Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL failed: Provided seeds do not result in a valid address"
].
Catch the `SendTransactionError` and call `getLogs()` on it for full details.
at Connection.sendEncodedTransaction [90m(/home/ubuntu/pump-science-contract/[39mnode_modules/[4m.pnpm[24m/@[email protected][email protected][email protected]/node_modules/[4m@solana[24m/web3.js/src/connection.ts:6043:13[90m)[39m
[90m at processTicksAndRejections (node:internal/process/task_queues:105:5)[39m
at async Connection.sendRawTransaction [90m(/home/ubuntu/pump-science-contract/[39mnode_modules/[4m.pnpm[24m/@[email protected][email protected][email protected]/node_modules/[4m@solana[24m/web3.js/src/connection.ts:5999:20[90m)[39m
at async sendAndConfirmRawTransaction [90m(/home/ubuntu/pump-science-contract/[39mnode_modules/[4m.pnpm[24m/@[email protected][email protected][email protected]/node_modules/[4m@project-serum[24m/anchor/src/provider.ts:318:21[90m)[39m
at async AnchorProvider.sendAndConfirm [90m(/home/ubuntu/pump-science-contract/[39mnode_modules/[4m.pnpm[24m/@[email protected][email protected][email protected]/node_modules/[4m@project-serum[24m/anchor/src/provider.ts:149:14[90m)[39m
at async migrate [90m(/home/ubuntu/pump-science-contract/[39mcli/script.ts:161:24[90m)[39m
at async Command.<anonymous> [90m(/home/ubuntu/pump-science-contract/[39mcli/command.ts:22:22[90m)[39m {
signature: [32m''[39m,
transactionMessage: [32m'Transaction simulation failed: Error processing Instruction 0: Provided seeds do not result in a valid address'[39m,
transactionLogs: [
[32m'Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL invoke [1]'[39m,
[32m'Program log: Create'[39m,
[32m'Program log: Error: Associated address does not match seed derivation'[39m,
[32m'Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL consumed 4959 of 400000 compute units'[39m,
[32m'Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL failed: Provided seeds do not result in a valid address'[39m
]
}
[41m[30m ELIFECYCLE [39m[49m [31mCommand failed with exit code 1.[39m
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ [K]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ sp[K[Ksolana address
[?2004lGs6zGy3rvjspuisNdhki9rohkArK4GrqRzbZRw9K2K4M
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ so[Kpl [K-token
[?2004lspl-token-cli 3.4.1
SPL-Token Command-line Utility
USAGE:
spl-token [FLAGS] [OPTIONS] <SUBCOMMAND>
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
-v, --verbose Show additional information
OPTIONS:
--with-compute-unit-limit <COMPUTE-UNIT-LIMIT> Set compute unit limit for transaction, in compute units.
--with-compute-unit-price <COMPUTE-UNIT-PRICE>
Set compute unit price for transaction, in increments of 0.000001 lamports per compute unit.
-C, --config <PATH> Configuration file to use
--fee-payer <KEYPAIR>
Specify the fee-payer account. This may be a keypair file, the ASK keyword
or the pubkey of an offline signer, provided an appropriate --signer argument
is also passed. Defaults to the client keypair.
-u, --url <URL_OR_MONIKER>
URL for Solana's JSON RPC or moniker (or their first letter): [mainnet-beta, testnet, devnet, localhost]
Default from the configuration file.
--output <FORMAT>
Return information in specified output format [possible values: json, json-compact]
-p, --program-id <ADDRESS> SPL Token program id
SUBCOMMANDS:
accounts List all token accounts by owner
address Get wallet address
apply-pending-balance Collect confidential tokens from pending to available balance
approve Approve a delegate for a token account
authorize Authorize a new signing keypair to a token or token account
balance Get token account balance
bench Token benchmarking facilities
burn Burn tokens from an account
close Close a token account
close-mint Close a token mint
configure-confidential-transfer-account Configure confidential transfers for token account
create-account Create a new token account
create-multisig Create a new account describing an M:N multisignature
create-token Create a new token
deposit-confidential-tokens Deposit amounts for confidential transfers
disable-confidential-credits Disable confidential transfers for token account
disable-cpi-guard Disable CPI Guard for token account
disable-non-confidential-credits Disable non-confidential transfers for token account
disable-required-transfer-memos Disable required transfer memos for token account
display Query details of an SPL Token mint, account, or multisig by address
enable-confidential-credits
Enable confidential transfers for token account. To enable confidential transfers for the first time, use
`configure-confidential-transfer-account` instead.
enable-cpi-guard Enable CPI Guard for token account
enable-non-confidential-credits Enable non-confidential transfers for token account.
enable-required-transfer-memos Enable required transfer memos for token account
freeze Freeze a token account
gc Cleanup unnecessary token accounts
help Prints this message or the help of the given subcommand(s)
initialize-group Initialize group extension on a token mint
initialize-member Initialize group member extension on a token mint
initialize-metadata Initialize metadata extension on a token mint
mint Mint new tokens
revoke Revoke a delegate's authority
set-interest-rate Set the interest rate for an interest-bearing token
set-transfer-fee Set the transfer fee for a token with a configured transfer fee
set-transfer-hook Set the transfer hook program id for a token
supply Get token supply
sync-native Sync a native SOL token account to its underlying lamports
thaw Thaw a token account
transfer Transfer tokens between accounts
unwrap Unwrap a SOL token account
update-confidential-transfer-settings Update confidential transfer configuation for a token
update-default-account-state
Updates default account state for the mint. Requires the default account state extension.
update-group-address
Updates group pointer address for the mint. Requires the group pointer extension.
update-group-max-size Updates the maximum number of members for a group.
update-member-address
Updates group member pointer address for the mint. Requires the group member pointer extension.
update-metadata Update metadata on a token mint that has the extension
update-metadata-address
Updates metadata pointer address for the mint. Requires the metadata pointer extension.
withdraw-confidential-tokens Withdraw amounts for confidential transfers
withdraw-excess-lamports Withdraw lamports from a Token Program owned account
withdraw-withheld-tokens Withdraw withheld transfer fee tokens from mint and / or account(s)
wrap Wrap native SOL in a SOL token account
[?2004h]0;ubuntu@ip-172-31-46-60: ~/pump-science-contract[01;32mubuntu@ip-172-31-46-60[00m:[01;34m~/pump-science-contract[00m$ sol-token[K[K[K[K[K[K[K[K[Kspl-token create-token --heo[Klp
[?2004lspl-token-create-token
Create a new token
USAGE:
spl-token create-token [FLAGS] [OPTIONS] [TOKEN_KEYPAIR]
FLAGS:
--enable-close Enable the mint authority to close this mint
--enable-freeze Enable the mint authority to freeze token accounts for this mint
--enable-group Enables group configurations in the mint. The mint authority must initialize the
group.
--enable-member Enables group member configurations in the mint. The mint authority must
initialize the member.
--enable-metadata Enables metadata in the mint. The mint authority must initialize the metadata.
--enable-non-transferable Permanently force tokens to be non-transferable. Thay may still be burned.
--enable-permanent-delegate Enable the mint authority to be permanent delegate for this mint
-h, --help Prints help information
-V, --version Prints version information
-v, --verbose Show additional information
OPTIONS:
--with-compute-unit-limit <COMPUTE-UNIT-LIMIT> Set compute unit limit for transaction, in compute units.
--with-compute-unit-price <COMPUTE-UNIT-PRICE>
Set compute unit price for transaction, in increments of 0.000001 lamports per compute unit.
-C, --config <PATH> Configuration file to use
--decimals <DECIMALS>
Number of base 10 digits to the right of the decimal place [default: 9]
--default-account-state <default_account_state>
Specify that accounts have a default state. Note: specifying "initialized" adds an extension, which gives
the option of specifying default frozen accounts in the future. This behavior is not the same as the
default, which makes it impossible to specify a default account state in the future. [possible values:
initialized, frozen]
--enable-confidential-transfers <APPROVE-POLICY>
Enable accounts to make confidential transfers. If "auto" is selected, then accounts are automatically
approved to make confidential transfers. If "manual" is selected, then the confidential transfer mint
authority must approve each account before it can make confidential transfers. [possible values: auto,
manual]
--fee-payer <KEYPAIR>
Specify the fee-payer account. This may be a keypair file, the ASK keyword
or the pubkey of an offline signer, provided an appropriate --signer argument
is also passed. Defaults to the client keypair.
--group-address <ADDRESS> Specify address that stores token group configurations.
--interest-rate <RATE_BPS>
Specify the interest rate in basis points. Rate authority defaults to the mint authority.
-u, --url <URL_OR_MONIKER>
URL for Solana's JSON RPC or moniker (or their first letter): [mainnet-beta, testnet, devnet, localhost]
Default from the configuration file.
--member-address <ADDRESS> Specify address that stores token member configurations.
--with-memo <MEMO> Specify a memo string to include in the transaction.
--metadata-address <ADDRESS> Specify address that stores token metadata.
--mint-authority <ADDRESS>
Specify the mint authority address. Defaults to the client keypair address.