@lightprotocol/compressed-token 0.17.1 → 0.17.2-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,2835 +1,2 @@
1
- 'use strict';
2
-
3
- var stateless_js = require('@lightprotocol/stateless.js');
4
- var web3_js = require('@solana/web3.js');
5
- var anchor = require('@coral-xyz/anchor');
6
- var splToken = require('@solana/spl-token');
7
-
8
- const IDL = {
9
- version: '1.2.0',
10
- name: 'light_compressed_token',
11
- instructions: [
12
- {
13
- name: 'createTokenPool',
14
- docs: [
15
- 'This instruction creates a token pool for a given mint. Every spl mint',
16
- 'can have one token pool. When a token is compressed the tokens are',
17
- 'transferrred to the token pool, and their compressed equivalent is',
18
- 'minted into a Merkle tree.',
19
- ],
20
- accounts: [
21
- {
22
- name: 'feePayer',
23
- isMut: true,
24
- isSigner: true,
25
- docs: ['UNCHECKED: only pays fees.'],
26
- },
27
- {
28
- name: 'tokenPoolPda',
29
- isMut: true,
30
- isSigner: false,
31
- },
32
- {
33
- name: 'systemProgram',
34
- isMut: false,
35
- isSigner: false,
36
- },
37
- {
38
- name: 'mint',
39
- isMut: true,
40
- isSigner: false,
41
- },
42
- {
43
- name: 'tokenProgram',
44
- isMut: false,
45
- isSigner: false,
46
- },
47
- {
48
- name: 'cpiAuthorityPda',
49
- isMut: false,
50
- isSigner: false,
51
- },
52
- ],
53
- args: [],
54
- },
55
- {
56
- name: 'mintTo',
57
- docs: [
58
- 'Mints tokens from an spl token mint to a list of compressed accounts.',
59
- 'Minted tokens are transferred to a pool account owned by the compressed',
60
- 'token program. The instruction creates one compressed output account for',
61
- 'every amount and pubkey input pair. A constant amount of lamports can be',
62
- 'transferred to each output account to enable. A use case to add lamports',
63
- 'to a compressed token account is to prevent spam. This is the only way',
64
- 'to add lamports to a compressed token account.',
65
- ],
66
- accounts: [
67
- {
68
- name: 'feePayer',
69
- isMut: true,
70
- isSigner: true,
71
- docs: ['UNCHECKED: only pays fees.'],
72
- },
73
- {
74
- name: 'authority',
75
- isMut: false,
76
- isSigner: true,
77
- },
78
- {
79
- name: 'cpiAuthorityPda',
80
- isMut: false,
81
- isSigner: false,
82
- },
83
- {
84
- name: 'mint',
85
- isMut: true,
86
- isSigner: false,
87
- },
88
- {
89
- name: 'tokenPoolPda',
90
- isMut: true,
91
- isSigner: false,
92
- },
93
- {
94
- name: 'tokenProgram',
95
- isMut: false,
96
- isSigner: false,
97
- },
98
- {
99
- name: 'lightSystemProgram',
100
- isMut: false,
101
- isSigner: false,
102
- },
103
- {
104
- name: 'registeredProgramPda',
105
- isMut: false,
106
- isSigner: false,
107
- },
108
- {
109
- name: 'noopProgram',
110
- isMut: false,
111
- isSigner: false,
112
- docs: ['programs'],
113
- },
114
- {
115
- name: 'accountCompressionAuthority',
116
- isMut: false,
117
- isSigner: false,
118
- },
119
- {
120
- name: 'accountCompressionProgram',
121
- isMut: false,
122
- isSigner: false,
123
- },
124
- {
125
- name: 'merkleTree',
126
- isMut: true,
127
- isSigner: false,
128
- },
129
- {
130
- name: 'selfProgram',
131
- isMut: false,
132
- isSigner: false,
133
- },
134
- {
135
- name: 'systemProgram',
136
- isMut: false,
137
- isSigner: false,
138
- },
139
- {
140
- name: 'solPoolPda',
141
- isMut: true,
142
- isSigner: false,
143
- isOptional: true,
144
- },
145
- ],
146
- args: [
147
- {
148
- name: 'publicKeys',
149
- type: {
150
- vec: 'publicKey',
151
- },
152
- },
153
- {
154
- name: 'amounts',
155
- type: {
156
- vec: 'u64',
157
- },
158
- },
159
- {
160
- name: 'lamports',
161
- type: {
162
- option: 'u64',
163
- },
164
- },
165
- ],
166
- },
167
- {
168
- name: 'compressSplTokenAccount',
169
- docs: [
170
- 'Compresses the balance of an spl token account sub an optional remaining',
171
- 'amount. This instruction does not close the spl token account. To close',
172
- 'the account bundle a close spl account instruction in your transaction.',
173
- ],
174
- accounts: [
175
- {
176
- name: 'feePayer',
177
- isMut: true,
178
- isSigner: true,
179
- docs: ['UNCHECKED: only pays fees.'],
180
- },
181
- {
182
- name: 'authority',
183
- isMut: false,
184
- isSigner: true,
185
- docs: [
186
- 'Authority is verified through proof since both owner and delegate',
187
- 'are included in the token data hash, which is a public input to the',
188
- 'validity proof.',
189
- ],
190
- },
191
- {
192
- name: 'cpiAuthorityPda',
193
- isMut: false,
194
- isSigner: false,
195
- },
196
- {
197
- name: 'lightSystemProgram',
198
- isMut: false,
199
- isSigner: false,
200
- },
201
- {
202
- name: 'registeredProgramPda',
203
- isMut: false,
204
- isSigner: false,
205
- },
206
- {
207
- name: 'noopProgram',
208
- isMut: false,
209
- isSigner: false,
210
- },
211
- {
212
- name: 'accountCompressionAuthority',
213
- isMut: false,
214
- isSigner: false,
215
- },
216
- {
217
- name: 'accountCompressionProgram',
218
- isMut: false,
219
- isSigner: false,
220
- },
221
- {
222
- name: 'selfProgram',
223
- isMut: false,
224
- isSigner: false,
225
- docs: ['this program is the signer of the cpi.'],
226
- },
227
- {
228
- name: 'tokenPoolPda',
229
- isMut: true,
230
- isSigner: false,
231
- isOptional: true,
232
- },
233
- {
234
- name: 'compressOrDecompressTokenAccount',
235
- isMut: true,
236
- isSigner: false,
237
- isOptional: true,
238
- },
239
- {
240
- name: 'tokenProgram',
241
- isMut: false,
242
- isSigner: false,
243
- isOptional: true,
244
- },
245
- {
246
- name: 'systemProgram',
247
- isMut: false,
248
- isSigner: false,
249
- },
250
- ],
251
- args: [
252
- {
253
- name: 'owner',
254
- type: 'publicKey',
255
- },
256
- {
257
- name: 'remainingAmount',
258
- type: {
259
- option: 'u64',
260
- },
261
- },
262
- {
263
- name: 'cpiContext',
264
- type: {
265
- option: {
266
- defined: 'CompressedCpiContext',
267
- },
268
- },
269
- },
270
- ],
271
- },
272
- {
273
- name: 'transfer',
274
- docs: [
275
- 'Transfers compressed tokens from one account to another. All accounts',
276
- 'must be of the same mint. Additional spl tokens can be compressed or',
277
- 'decompressed. In one transaction only compression or decompression is',
278
- 'possible. Lamports can be transferred alongside tokens. If output token',
279
- 'accounts specify less lamports than inputs the remaining lamports are',
280
- 'transferred to an output compressed account. Signer must be owner or',
281
- 'delegate. If a delegated token account is transferred the delegate is',
282
- 'not preserved.',
283
- ],
284
- accounts: [
285
- {
286
- name: 'feePayer',
287
- isMut: true,
288
- isSigner: true,
289
- docs: ['UNCHECKED: only pays fees.'],
290
- },
291
- {
292
- name: 'authority',
293
- isMut: false,
294
- isSigner: true,
295
- docs: [
296
- 'Authority is verified through proof since both owner and delegate',
297
- 'are included in the token data hash, which is a public input to the',
298
- 'validity proof.',
299
- ],
300
- },
301
- {
302
- name: 'cpiAuthorityPda',
303
- isMut: false,
304
- isSigner: false,
305
- },
306
- {
307
- name: 'lightSystemProgram',
308
- isMut: false,
309
- isSigner: false,
310
- },
311
- {
312
- name: 'registeredProgramPda',
313
- isMut: false,
314
- isSigner: false,
315
- },
316
- {
317
- name: 'noopProgram',
318
- isMut: false,
319
- isSigner: false,
320
- },
321
- {
322
- name: 'accountCompressionAuthority',
323
- isMut: false,
324
- isSigner: false,
325
- },
326
- {
327
- name: 'accountCompressionProgram',
328
- isMut: false,
329
- isSigner: false,
330
- },
331
- {
332
- name: 'selfProgram',
333
- isMut: false,
334
- isSigner: false,
335
- docs: ['this program is the signer of the cpi.'],
336
- },
337
- {
338
- name: 'tokenPoolPda',
339
- isMut: true,
340
- isSigner: false,
341
- isOptional: true,
342
- },
343
- {
344
- name: 'compressOrDecompressTokenAccount',
345
- isMut: true,
346
- isSigner: false,
347
- isOptional: true,
348
- },
349
- {
350
- name: 'tokenProgram',
351
- isMut: false,
352
- isSigner: false,
353
- isOptional: true,
354
- },
355
- {
356
- name: 'systemProgram',
357
- isMut: false,
358
- isSigner: false,
359
- },
360
- ],
361
- args: [
362
- {
363
- name: 'inputs',
364
- type: 'bytes',
365
- },
366
- ],
367
- },
368
- {
369
- name: 'approve',
370
- docs: [
371
- 'Delegates an amount to a delegate. A compressed token account is either',
372
- 'completely delegated or not. Prior delegates are not preserved. Cannot',
373
- 'be called by a delegate.',
374
- 'The instruction creates two output accounts:',
375
- '1. one account with delegated amount',
376
- '2. one account with remaining(change) amount',
377
- ],
378
- accounts: [
379
- {
380
- name: 'feePayer',
381
- isMut: true,
382
- isSigner: true,
383
- docs: ['UNCHECKED: only pays fees.'],
384
- },
385
- {
386
- name: 'authority',
387
- isMut: false,
388
- isSigner: true,
389
- docs: [
390
- 'Authority is verified through proof since both owner and delegate',
391
- 'are included in the token data hash, which is a public input to the',
392
- 'validity proof.',
393
- ],
394
- },
395
- {
396
- name: 'cpiAuthorityPda',
397
- isMut: false,
398
- isSigner: false,
399
- },
400
- {
401
- name: 'lightSystemProgram',
402
- isMut: false,
403
- isSigner: false,
404
- },
405
- {
406
- name: 'registeredProgramPda',
407
- isMut: false,
408
- isSigner: false,
409
- },
410
- {
411
- name: 'noopProgram',
412
- isMut: false,
413
- isSigner: false,
414
- },
415
- {
416
- name: 'accountCompressionAuthority',
417
- isMut: false,
418
- isSigner: false,
419
- },
420
- {
421
- name: 'accountCompressionProgram',
422
- isMut: false,
423
- isSigner: false,
424
- },
425
- {
426
- name: 'selfProgram',
427
- isMut: false,
428
- isSigner: false,
429
- docs: ['this program is the signer of the cpi.'],
430
- },
431
- {
432
- name: 'systemProgram',
433
- isMut: false,
434
- isSigner: false,
435
- },
436
- ],
437
- args: [
438
- {
439
- name: 'inputs',
440
- type: 'bytes',
441
- },
442
- ],
443
- },
444
- {
445
- name: 'revoke',
446
- docs: [
447
- 'Revokes a delegation. The instruction merges all inputs into one output',
448
- 'account. Cannot be called by a delegate. Delegates are not preserved.',
449
- ],
450
- accounts: [
451
- {
452
- name: 'feePayer',
453
- isMut: true,
454
- isSigner: true,
455
- docs: ['UNCHECKED: only pays fees.'],
456
- },
457
- {
458
- name: 'authority',
459
- isMut: false,
460
- isSigner: true,
461
- docs: [
462
- 'Authority is verified through proof since both owner and delegate',
463
- 'are included in the token data hash, which is a public input to the',
464
- 'validity proof.',
465
- ],
466
- },
467
- {
468
- name: 'cpiAuthorityPda',
469
- isMut: false,
470
- isSigner: false,
471
- },
472
- {
473
- name: 'lightSystemProgram',
474
- isMut: false,
475
- isSigner: false,
476
- },
477
- {
478
- name: 'registeredProgramPda',
479
- isMut: false,
480
- isSigner: false,
481
- },
482
- {
483
- name: 'noopProgram',
484
- isMut: false,
485
- isSigner: false,
486
- },
487
- {
488
- name: 'accountCompressionAuthority',
489
- isMut: false,
490
- isSigner: false,
491
- },
492
- {
493
- name: 'accountCompressionProgram',
494
- isMut: false,
495
- isSigner: false,
496
- },
497
- {
498
- name: 'selfProgram',
499
- isMut: false,
500
- isSigner: false,
501
- docs: ['this program is the signer of the cpi.'],
502
- },
503
- {
504
- name: 'systemProgram',
505
- isMut: false,
506
- isSigner: false,
507
- },
508
- ],
509
- args: [
510
- {
511
- name: 'inputs',
512
- type: 'bytes',
513
- },
514
- ],
515
- },
516
- {
517
- name: 'freeze',
518
- docs: [
519
- 'Freezes compressed token accounts. Inputs must not be frozen. Creates as',
520
- 'many outputs as inputs. Balances and delegates are preserved.',
521
- ],
522
- accounts: [
523
- {
524
- name: 'feePayer',
525
- isMut: true,
526
- isSigner: true,
527
- docs: ['UNCHECKED: only pays fees.'],
528
- },
529
- {
530
- name: 'authority',
531
- isMut: false,
532
- isSigner: true,
533
- },
534
- {
535
- name: 'cpiAuthorityPda',
536
- isMut: false,
537
- isSigner: false,
538
- },
539
- {
540
- name: 'lightSystemProgram',
541
- isMut: false,
542
- isSigner: false,
543
- },
544
- {
545
- name: 'registeredProgramPda',
546
- isMut: false,
547
- isSigner: false,
548
- },
549
- {
550
- name: 'noopProgram',
551
- isMut: false,
552
- isSigner: false,
553
- },
554
- {
555
- name: 'accountCompressionAuthority',
556
- isMut: false,
557
- isSigner: false,
558
- },
559
- {
560
- name: 'accountCompressionProgram',
561
- isMut: false,
562
- isSigner: false,
563
- },
564
- {
565
- name: 'selfProgram',
566
- isMut: false,
567
- isSigner: false,
568
- docs: ['that this program is the signer of the cpi.'],
569
- },
570
- {
571
- name: 'systemProgram',
572
- isMut: false,
573
- isSigner: false,
574
- },
575
- {
576
- name: 'mint',
577
- isMut: false,
578
- isSigner: false,
579
- },
580
- ],
581
- args: [
582
- {
583
- name: 'inputs',
584
- type: 'bytes',
585
- },
586
- ],
587
- },
588
- {
589
- name: 'thaw',
590
- docs: [
591
- 'Thaws frozen compressed token accounts. Inputs must be frozen. Creates',
592
- 'as many outputs as inputs. Balances and delegates are preserved.',
593
- ],
594
- accounts: [
595
- {
596
- name: 'feePayer',
597
- isMut: true,
598
- isSigner: true,
599
- docs: ['UNCHECKED: only pays fees.'],
600
- },
601
- {
602
- name: 'authority',
603
- isMut: false,
604
- isSigner: true,
605
- },
606
- {
607
- name: 'cpiAuthorityPda',
608
- isMut: false,
609
- isSigner: false,
610
- },
611
- {
612
- name: 'lightSystemProgram',
613
- isMut: false,
614
- isSigner: false,
615
- },
616
- {
617
- name: 'registeredProgramPda',
618
- isMut: false,
619
- isSigner: false,
620
- },
621
- {
622
- name: 'noopProgram',
623
- isMut: false,
624
- isSigner: false,
625
- },
626
- {
627
- name: 'accountCompressionAuthority',
628
- isMut: false,
629
- isSigner: false,
630
- },
631
- {
632
- name: 'accountCompressionProgram',
633
- isMut: false,
634
- isSigner: false,
635
- },
636
- {
637
- name: 'selfProgram',
638
- isMut: false,
639
- isSigner: false,
640
- docs: ['that this program is the signer of the cpi.'],
641
- },
642
- {
643
- name: 'systemProgram',
644
- isMut: false,
645
- isSigner: false,
646
- },
647
- {
648
- name: 'mint',
649
- isMut: false,
650
- isSigner: false,
651
- },
652
- ],
653
- args: [
654
- {
655
- name: 'inputs',
656
- type: 'bytes',
657
- },
658
- ],
659
- },
660
- {
661
- name: 'burn',
662
- docs: [
663
- 'Burns compressed tokens and spl tokens from the pool account. Delegates',
664
- 'can burn tokens. The output compressed token account remains delegated.',
665
- 'Creates one output compressed token account.',
666
- ],
667
- accounts: [
668
- {
669
- name: 'feePayer',
670
- isMut: true,
671
- isSigner: true,
672
- docs: ['UNCHECKED: only pays fees.'],
673
- },
674
- {
675
- name: 'authority',
676
- isMut: false,
677
- isSigner: true,
678
- docs: [
679
- 'Authority is verified through proof since both owner and delegate',
680
- 'are included in the token data hash, which is a public input to the',
681
- 'validity proof.',
682
- ],
683
- },
684
- {
685
- name: 'cpiAuthorityPda',
686
- isMut: false,
687
- isSigner: false,
688
- },
689
- {
690
- name: 'mint',
691
- isMut: true,
692
- isSigner: false,
693
- },
694
- {
695
- name: 'tokenPoolPda',
696
- isMut: true,
697
- isSigner: false,
698
- },
699
- {
700
- name: 'tokenProgram',
701
- isMut: false,
702
- isSigner: false,
703
- },
704
- {
705
- name: 'lightSystemProgram',
706
- isMut: false,
707
- isSigner: false,
708
- },
709
- {
710
- name: 'registeredProgramPda',
711
- isMut: false,
712
- isSigner: false,
713
- },
714
- {
715
- name: 'noopProgram',
716
- isMut: false,
717
- isSigner: false,
718
- },
719
- {
720
- name: 'accountCompressionAuthority',
721
- isMut: false,
722
- isSigner: false,
723
- },
724
- {
725
- name: 'accountCompressionProgram',
726
- isMut: false,
727
- isSigner: false,
728
- },
729
- {
730
- name: 'selfProgram',
731
- isMut: false,
732
- isSigner: false,
733
- },
734
- {
735
- name: 'systemProgram',
736
- isMut: false,
737
- isSigner: false,
738
- },
739
- ],
740
- args: [
741
- {
742
- name: 'inputs',
743
- type: 'bytes',
744
- },
745
- ],
746
- },
747
- {
748
- name: 'stubIdlBuild',
749
- docs: [
750
- 'This function is a stub to allow Anchor to include the input types in',
751
- 'the IDL. It should not be included in production builds nor be called in',
752
- 'practice.',
753
- ],
754
- accounts: [
755
- {
756
- name: 'feePayer',
757
- isMut: true,
758
- isSigner: true,
759
- docs: ['UNCHECKED: only pays fees.'],
760
- },
761
- {
762
- name: 'authority',
763
- isMut: false,
764
- isSigner: true,
765
- docs: [
766
- 'Authority is verified through proof since both owner and delegate',
767
- 'are included in the token data hash, which is a public input to the',
768
- 'validity proof.',
769
- ],
770
- },
771
- {
772
- name: 'cpiAuthorityPda',
773
- isMut: false,
774
- isSigner: false,
775
- },
776
- {
777
- name: 'lightSystemProgram',
778
- isMut: false,
779
- isSigner: false,
780
- },
781
- {
782
- name: 'registeredProgramPda',
783
- isMut: false,
784
- isSigner: false,
785
- },
786
- {
787
- name: 'noopProgram',
788
- isMut: false,
789
- isSigner: false,
790
- },
791
- {
792
- name: 'accountCompressionAuthority',
793
- isMut: false,
794
- isSigner: false,
795
- },
796
- {
797
- name: 'accountCompressionProgram',
798
- isMut: false,
799
- isSigner: false,
800
- },
801
- {
802
- name: 'selfProgram',
803
- isMut: false,
804
- isSigner: false,
805
- docs: ['this program is the signer of the cpi.'],
806
- },
807
- {
808
- name: 'tokenPoolPda',
809
- isMut: true,
810
- isSigner: false,
811
- isOptional: true,
812
- },
813
- {
814
- name: 'compressOrDecompressTokenAccount',
815
- isMut: true,
816
- isSigner: false,
817
- isOptional: true,
818
- },
819
- {
820
- name: 'tokenProgram',
821
- isMut: false,
822
- isSigner: false,
823
- isOptional: true,
824
- },
825
- {
826
- name: 'systemProgram',
827
- isMut: false,
828
- isSigner: false,
829
- },
830
- ],
831
- args: [
832
- {
833
- name: 'inputs1',
834
- type: {
835
- defined: 'CompressedTokenInstructionDataTransfer',
836
- },
837
- },
838
- {
839
- name: 'inputs2',
840
- type: {
841
- defined: 'TokenData',
842
- },
843
- },
844
- ],
845
- },
846
- ],
847
- types: [
848
- {
849
- name: 'AccessMetadata',
850
- type: {
851
- kind: 'struct',
852
- fields: [
853
- {
854
- name: 'owner',
855
- docs: ['Owner of the Merkle tree.'],
856
- type: 'publicKey',
857
- },
858
- {
859
- name: 'programOwner',
860
- docs: [
861
- 'Program owner of the Merkle tree. This will be used for program owned Merkle trees.',
862
- ],
863
- type: 'publicKey',
864
- },
865
- {
866
- name: 'forester',
867
- docs: [
868
- 'Optional privileged forester pubkey, can be set for custom Merkle trees',
869
- 'without a network fee. Merkle trees without network fees are not',
870
- 'forested by light foresters. The variable is not used in the account',
871
- 'compression program but the registry program. The registry program',
872
- 'implements access control to prevent contention during forester. The',
873
- 'forester pubkey specified in this struct can bypass contention checks.',
874
- ],
875
- type: 'publicKey',
876
- },
877
- ],
878
- },
879
- },
880
- {
881
- name: 'AccountState',
882
- type: {
883
- kind: 'enum',
884
- variants: [
885
- {
886
- name: 'Initialized',
887
- },
888
- {
889
- name: 'Frozen',
890
- },
891
- ],
892
- },
893
- },
894
- {
895
- name: 'CompressedAccount',
896
- type: {
897
- kind: 'struct',
898
- fields: [
899
- {
900
- name: 'owner',
901
- type: 'publicKey',
902
- },
903
- {
904
- name: 'lamports',
905
- type: 'u64',
906
- },
907
- {
908
- name: 'address',
909
- type: {
910
- option: {
911
- array: ['u8', 32],
912
- },
913
- },
914
- },
915
- {
916
- name: 'data',
917
- type: {
918
- option: {
919
- defined: 'CompressedAccountData',
920
- },
921
- },
922
- },
923
- ],
924
- },
925
- },
926
- {
927
- name: 'CompressedAccountData',
928
- type: {
929
- kind: 'struct',
930
- fields: [
931
- {
932
- name: 'discriminator',
933
- type: {
934
- array: ['u8', 8],
935
- },
936
- },
937
- {
938
- name: 'data',
939
- type: 'bytes',
940
- },
941
- {
942
- name: 'dataHash',
943
- type: {
944
- array: ['u8', 32],
945
- },
946
- },
947
- ],
948
- },
949
- },
950
- {
951
- name: 'CompressedCpiContext',
952
- type: {
953
- kind: 'struct',
954
- fields: [
955
- {
956
- name: 'setContext',
957
- docs: [
958
- 'Is set by the program that is invoking the CPI to signal that is should',
959
- 'set the cpi context.',
960
- ],
961
- type: 'bool',
962
- },
963
- {
964
- name: 'firstSetContext',
965
- docs: [
966
- 'Is set to wipe the cpi context since someone could have set it before',
967
- 'with unrelated data.',
968
- ],
969
- type: 'bool',
970
- },
971
- {
972
- name: 'cpiContextAccountIndex',
973
- docs: [
974
- 'Index of cpi context account in remaining accounts.',
975
- ],
976
- type: 'u8',
977
- },
978
- ],
979
- },
980
- },
981
- {
982
- name: 'CompressedProof',
983
- type: {
984
- kind: 'struct',
985
- fields: [
986
- {
987
- name: 'a',
988
- type: {
989
- array: ['u8', 32],
990
- },
991
- },
992
- {
993
- name: 'b',
994
- type: {
995
- array: ['u8', 64],
996
- },
997
- },
998
- {
999
- name: 'c',
1000
- type: {
1001
- array: ['u8', 32],
1002
- },
1003
- },
1004
- ],
1005
- },
1006
- },
1007
- {
1008
- name: 'CompressedTokenInstructionDataTransfer',
1009
- type: {
1010
- kind: 'struct',
1011
- fields: [
1012
- {
1013
- name: 'proof',
1014
- type: {
1015
- option: {
1016
- defined: 'CompressedProof',
1017
- },
1018
- },
1019
- },
1020
- {
1021
- name: 'mint',
1022
- type: 'publicKey',
1023
- },
1024
- {
1025
- name: 'delegatedTransfer',
1026
- docs: [
1027
- 'Is required if the signer is delegate,',
1028
- '-> delegate is authority account,',
1029
- 'owner = Some(owner) is the owner of the token account.',
1030
- ],
1031
- type: {
1032
- option: {
1033
- defined: 'DelegatedTransfer',
1034
- },
1035
- },
1036
- },
1037
- {
1038
- name: 'inputTokenDataWithContext',
1039
- type: {
1040
- vec: {
1041
- defined: 'InputTokenDataWithContext',
1042
- },
1043
- },
1044
- },
1045
- {
1046
- name: 'outputCompressedAccounts',
1047
- type: {
1048
- vec: {
1049
- defined: 'PackedTokenTransferOutputData',
1050
- },
1051
- },
1052
- },
1053
- {
1054
- name: 'isCompress',
1055
- type: 'bool',
1056
- },
1057
- {
1058
- name: 'compressOrDecompressAmount',
1059
- type: {
1060
- option: 'u64',
1061
- },
1062
- },
1063
- {
1064
- name: 'cpiContext',
1065
- type: {
1066
- option: {
1067
- defined: 'CompressedCpiContext',
1068
- },
1069
- },
1070
- },
1071
- {
1072
- name: 'lamportsChangeAccountMerkleTreeIndex',
1073
- type: {
1074
- option: 'u8',
1075
- },
1076
- },
1077
- ],
1078
- },
1079
- },
1080
- {
1081
- name: 'DelegatedTransfer',
1082
- docs: [
1083
- 'Struct to provide the owner when the delegate is signer of the transaction.',
1084
- ],
1085
- type: {
1086
- kind: 'struct',
1087
- fields: [
1088
- {
1089
- name: 'owner',
1090
- type: 'publicKey',
1091
- },
1092
- {
1093
- name: 'delegateChangeAccountIndex',
1094
- docs: [
1095
- 'Index of change compressed account in output compressed accounts. In',
1096
- "case that the delegate didn't spend the complete delegated compressed",
1097
- 'account balance the change compressed account will be delegated to her',
1098
- 'as well.',
1099
- ],
1100
- type: {
1101
- option: 'u8',
1102
- },
1103
- },
1104
- ],
1105
- },
1106
- },
1107
- {
1108
- name: 'InputTokenDataWithContext',
1109
- type: {
1110
- kind: 'struct',
1111
- fields: [
1112
- {
1113
- name: 'amount',
1114
- type: 'u64',
1115
- },
1116
- {
1117
- name: 'delegateIndex',
1118
- type: {
1119
- option: 'u8',
1120
- },
1121
- },
1122
- {
1123
- name: 'merkleContext',
1124
- type: {
1125
- defined: 'PackedMerkleContext',
1126
- },
1127
- },
1128
- {
1129
- name: 'rootIndex',
1130
- type: 'u16',
1131
- },
1132
- {
1133
- name: 'lamports',
1134
- type: {
1135
- option: 'u64',
1136
- },
1137
- },
1138
- {
1139
- name: 'tlv',
1140
- docs: [
1141
- 'Placeholder for TokenExtension tlv data (unimplemented)',
1142
- ],
1143
- type: {
1144
- option: 'bytes',
1145
- },
1146
- },
1147
- ],
1148
- },
1149
- },
1150
- {
1151
- name: 'InstructionDataInvoke',
1152
- type: {
1153
- kind: 'struct',
1154
- fields: [
1155
- {
1156
- name: 'proof',
1157
- type: {
1158
- option: {
1159
- defined: 'CompressedProof',
1160
- },
1161
- },
1162
- },
1163
- {
1164
- name: 'inputCompressedAccountsWithMerkleContext',
1165
- type: {
1166
- vec: {
1167
- defined: 'PackedCompressedAccountWithMerkleContext',
1168
- },
1169
- },
1170
- },
1171
- {
1172
- name: 'outputCompressedAccounts',
1173
- type: {
1174
- vec: {
1175
- defined: 'OutputCompressedAccountWithPackedContext',
1176
- },
1177
- },
1178
- },
1179
- {
1180
- name: 'relayFee',
1181
- type: {
1182
- option: 'u64',
1183
- },
1184
- },
1185
- {
1186
- name: 'newAddressParams',
1187
- type: {
1188
- vec: {
1189
- defined: 'NewAddressParamsPacked',
1190
- },
1191
- },
1192
- },
1193
- {
1194
- name: 'compressOrDecompressLamports',
1195
- type: {
1196
- option: 'u64',
1197
- },
1198
- },
1199
- {
1200
- name: 'isCompress',
1201
- type: 'bool',
1202
- },
1203
- ],
1204
- },
1205
- },
1206
- {
1207
- name: 'InstructionDataInvokeCpi',
1208
- type: {
1209
- kind: 'struct',
1210
- fields: [
1211
- {
1212
- name: 'proof',
1213
- type: {
1214
- option: {
1215
- defined: 'CompressedProof',
1216
- },
1217
- },
1218
- },
1219
- {
1220
- name: 'newAddressParams',
1221
- type: {
1222
- vec: {
1223
- defined: 'NewAddressParamsPacked',
1224
- },
1225
- },
1226
- },
1227
- {
1228
- name: 'inputCompressedAccountsWithMerkleContext',
1229
- type: {
1230
- vec: {
1231
- defined: 'PackedCompressedAccountWithMerkleContext',
1232
- },
1233
- },
1234
- },
1235
- {
1236
- name: 'outputCompressedAccounts',
1237
- type: {
1238
- vec: {
1239
- defined: 'OutputCompressedAccountWithPackedContext',
1240
- },
1241
- },
1242
- },
1243
- {
1244
- name: 'relayFee',
1245
- type: {
1246
- option: 'u64',
1247
- },
1248
- },
1249
- {
1250
- name: 'compressOrDecompressLamports',
1251
- type: {
1252
- option: 'u64',
1253
- },
1254
- },
1255
- {
1256
- name: 'isCompress',
1257
- type: 'bool',
1258
- },
1259
- {
1260
- name: 'cpiContext',
1261
- type: {
1262
- option: {
1263
- defined: 'CompressedCpiContext',
1264
- },
1265
- },
1266
- },
1267
- ],
1268
- },
1269
- },
1270
- {
1271
- name: 'MerkleTreeMetadata',
1272
- type: {
1273
- kind: 'struct',
1274
- fields: [
1275
- {
1276
- name: 'accessMetadata',
1277
- type: {
1278
- defined: 'AccessMetadata',
1279
- },
1280
- },
1281
- {
1282
- name: 'rolloverMetadata',
1283
- type: {
1284
- defined: 'RolloverMetadata',
1285
- },
1286
- },
1287
- {
1288
- name: 'associatedQueue',
1289
- type: 'publicKey',
1290
- },
1291
- {
1292
- name: 'nextMerkleTree',
1293
- type: 'publicKey',
1294
- },
1295
- ],
1296
- },
1297
- },
1298
- {
1299
- name: 'MerkleTreeSequenceNumber',
1300
- type: {
1301
- kind: 'struct',
1302
- fields: [
1303
- {
1304
- name: 'pubkey',
1305
- type: 'publicKey',
1306
- },
1307
- {
1308
- name: 'seq',
1309
- type: 'u64',
1310
- },
1311
- ],
1312
- },
1313
- },
1314
- {
1315
- name: 'NewAddressParamsPacked',
1316
- type: {
1317
- kind: 'struct',
1318
- fields: [
1319
- {
1320
- name: 'seed',
1321
- type: {
1322
- array: ['u8', 32],
1323
- },
1324
- },
1325
- {
1326
- name: 'addressQueueAccountIndex',
1327
- type: 'u8',
1328
- },
1329
- {
1330
- name: 'addressMerkleTreeAccountIndex',
1331
- type: 'u8',
1332
- },
1333
- {
1334
- name: 'addressMerkleTreeRootIndex',
1335
- type: 'u16',
1336
- },
1337
- ],
1338
- },
1339
- },
1340
- {
1341
- name: 'OutputCompressedAccountWithPackedContext',
1342
- type: {
1343
- kind: 'struct',
1344
- fields: [
1345
- {
1346
- name: 'compressedAccount',
1347
- type: {
1348
- defined: 'CompressedAccount',
1349
- },
1350
- },
1351
- {
1352
- name: 'merkleTreeIndex',
1353
- type: 'u8',
1354
- },
1355
- ],
1356
- },
1357
- },
1358
- {
1359
- name: 'PackedCompressedAccountWithMerkleContext',
1360
- type: {
1361
- kind: 'struct',
1362
- fields: [
1363
- {
1364
- name: 'compressedAccount',
1365
- type: {
1366
- defined: 'CompressedAccount',
1367
- },
1368
- },
1369
- {
1370
- name: 'merkleContext',
1371
- type: {
1372
- defined: 'PackedMerkleContext',
1373
- },
1374
- },
1375
- {
1376
- name: 'rootIndex',
1377
- docs: [
1378
- 'Index of root used in inclusion validity proof.',
1379
- ],
1380
- type: 'u16',
1381
- },
1382
- {
1383
- name: 'readOnly',
1384
- docs: [
1385
- 'Placeholder to mark accounts read-only unimplemented set to false.',
1386
- ],
1387
- type: 'bool',
1388
- },
1389
- ],
1390
- },
1391
- },
1392
- {
1393
- name: 'PackedMerkleContext',
1394
- type: {
1395
- kind: 'struct',
1396
- fields: [
1397
- {
1398
- name: 'merkleTreePubkeyIndex',
1399
- type: 'u8',
1400
- },
1401
- {
1402
- name: 'nullifierQueuePubkeyIndex',
1403
- type: 'u8',
1404
- },
1405
- {
1406
- name: 'leafIndex',
1407
- type: 'u32',
1408
- },
1409
- {
1410
- name: 'queueIndex',
1411
- docs: [
1412
- 'Index of leaf in queue. Placeholder of batched Merkle tree updates',
1413
- 'currently unimplemented.',
1414
- ],
1415
- type: {
1416
- option: {
1417
- defined: 'QueueIndex',
1418
- },
1419
- },
1420
- },
1421
- ],
1422
- },
1423
- },
1424
- {
1425
- name: 'PackedTokenTransferOutputData',
1426
- type: {
1427
- kind: 'struct',
1428
- fields: [
1429
- {
1430
- name: 'owner',
1431
- type: 'publicKey',
1432
- },
1433
- {
1434
- name: 'amount',
1435
- type: 'u64',
1436
- },
1437
- {
1438
- name: 'lamports',
1439
- type: {
1440
- option: 'u64',
1441
- },
1442
- },
1443
- {
1444
- name: 'merkleTreeIndex',
1445
- type: 'u8',
1446
- },
1447
- {
1448
- name: 'tlv',
1449
- docs: [
1450
- 'Placeholder for TokenExtension tlv data (unimplemented)',
1451
- ],
1452
- type: {
1453
- option: 'bytes',
1454
- },
1455
- },
1456
- ],
1457
- },
1458
- },
1459
- {
1460
- name: 'PublicTransactionEvent',
1461
- type: {
1462
- kind: 'struct',
1463
- fields: [
1464
- {
1465
- name: 'inputCompressedAccountHashes',
1466
- type: {
1467
- vec: {
1468
- array: ['u8', 32],
1469
- },
1470
- },
1471
- },
1472
- {
1473
- name: 'outputCompressedAccountHashes',
1474
- type: {
1475
- vec: {
1476
- array: ['u8', 32],
1477
- },
1478
- },
1479
- },
1480
- {
1481
- name: 'outputCompressedAccounts',
1482
- type: {
1483
- vec: {
1484
- defined: 'OutputCompressedAccountWithPackedContext',
1485
- },
1486
- },
1487
- },
1488
- {
1489
- name: 'outputLeafIndices',
1490
- type: {
1491
- vec: 'u32',
1492
- },
1493
- },
1494
- {
1495
- name: 'sequenceNumbers',
1496
- type: {
1497
- vec: {
1498
- defined: 'MerkleTreeSequenceNumber',
1499
- },
1500
- },
1501
- },
1502
- {
1503
- name: 'relayFee',
1504
- type: {
1505
- option: 'u64',
1506
- },
1507
- },
1508
- {
1509
- name: 'isCompress',
1510
- type: 'bool',
1511
- },
1512
- {
1513
- name: 'compressOrDecompressLamports',
1514
- type: {
1515
- option: 'u64',
1516
- },
1517
- },
1518
- {
1519
- name: 'pubkeyArray',
1520
- type: {
1521
- vec: 'publicKey',
1522
- },
1523
- },
1524
- {
1525
- name: 'message',
1526
- type: {
1527
- option: 'bytes',
1528
- },
1529
- },
1530
- ],
1531
- },
1532
- },
1533
- {
1534
- name: 'QueueIndex',
1535
- type: {
1536
- kind: 'struct',
1537
- fields: [
1538
- {
1539
- name: 'queueId',
1540
- docs: ['Id of queue in queue account.'],
1541
- type: 'u8',
1542
- },
1543
- {
1544
- name: 'index',
1545
- docs: ['Index of compressed account hash in queue.'],
1546
- type: 'u16',
1547
- },
1548
- ],
1549
- },
1550
- },
1551
- {
1552
- name: 'RolloverMetadata',
1553
- type: {
1554
- kind: 'struct',
1555
- fields: [
1556
- {
1557
- name: 'index',
1558
- docs: ['Unique index.'],
1559
- type: 'u64',
1560
- },
1561
- {
1562
- name: 'rolloverFee',
1563
- docs: [
1564
- 'This fee is used for rent for the next account.',
1565
- 'It accumulates in the account so that once the corresponding Merkle tree account is full it can be rolled over',
1566
- ],
1567
- type: 'u64',
1568
- },
1569
- {
1570
- name: 'rolloverThreshold',
1571
- docs: [
1572
- 'The threshold in percentage points when the account should be rolled over (95 corresponds to 95% filled).',
1573
- ],
1574
- type: 'u64',
1575
- },
1576
- {
1577
- name: 'networkFee',
1578
- docs: ['Tip for maintaining the account.'],
1579
- type: 'u64',
1580
- },
1581
- {
1582
- name: 'rolledoverSlot',
1583
- docs: [
1584
- 'The slot when the account was rolled over, a rolled over account should not be written to.',
1585
- ],
1586
- type: 'u64',
1587
- },
1588
- {
1589
- name: 'closeThreshold',
1590
- docs: [
1591
- 'If current slot is greater than rolledover_slot + close_threshold and',
1592
- "the account is empty it can be closed. No 'close' functionality has been",
1593
- 'implemented yet.',
1594
- ],
1595
- type: 'u64',
1596
- },
1597
- {
1598
- name: 'additionalBytes',
1599
- docs: [
1600
- 'Placeholder for bytes of additional accounts which are tied to the',
1601
- 'Merkle trees operation and need to be rolled over as well.',
1602
- ],
1603
- type: 'u64',
1604
- },
1605
- ],
1606
- },
1607
- },
1608
- {
1609
- name: 'TokenData',
1610
- type: {
1611
- kind: 'struct',
1612
- fields: [
1613
- {
1614
- name: 'mint',
1615
- docs: ['The mint associated with this account'],
1616
- type: 'publicKey',
1617
- },
1618
- {
1619
- name: 'owner',
1620
- docs: ['The owner of this account.'],
1621
- type: 'publicKey',
1622
- },
1623
- {
1624
- name: 'amount',
1625
- docs: ['The amount of tokens this account holds.'],
1626
- type: 'u64',
1627
- },
1628
- {
1629
- name: 'delegate',
1630
- docs: [
1631
- 'If `delegate` is `Some` then `delegated_amount` represents',
1632
- 'the amount authorized by the delegate',
1633
- ],
1634
- type: {
1635
- option: 'publicKey',
1636
- },
1637
- },
1638
- {
1639
- name: 'state',
1640
- docs: ["The account's state"],
1641
- type: {
1642
- defined: 'AccountState',
1643
- },
1644
- },
1645
- {
1646
- name: 'tlv',
1647
- docs: [
1648
- 'Placeholder for TokenExtension tlv data (unimplemented)',
1649
- ],
1650
- type: {
1651
- option: 'bytes',
1652
- },
1653
- },
1654
- ],
1655
- },
1656
- },
1657
- ],
1658
- errors: [
1659
- {
1660
- code: 6000,
1661
- name: 'PublicKeyAmountMissmatch',
1662
- msg: 'public keys and amounts must be of same length',
1663
- },
1664
- {
1665
- code: 6001,
1666
- name: 'ComputeInputSumFailed',
1667
- msg: 'ComputeInputSumFailed',
1668
- },
1669
- {
1670
- code: 6002,
1671
- name: 'ComputeOutputSumFailed',
1672
- msg: 'ComputeOutputSumFailed',
1673
- },
1674
- {
1675
- code: 6003,
1676
- name: 'ComputeCompressSumFailed',
1677
- msg: 'ComputeCompressSumFailed',
1678
- },
1679
- {
1680
- code: 6004,
1681
- name: 'ComputeDecompressSumFailed',
1682
- msg: 'ComputeDecompressSumFailed',
1683
- },
1684
- {
1685
- code: 6005,
1686
- name: 'SumCheckFailed',
1687
- msg: 'SumCheckFailed',
1688
- },
1689
- {
1690
- code: 6006,
1691
- name: 'DecompressRecipientUndefinedForDecompress',
1692
- msg: 'DecompressRecipientUndefinedForDecompress',
1693
- },
1694
- {
1695
- code: 6007,
1696
- name: 'CompressedPdaUndefinedForDecompress',
1697
- msg: 'CompressedPdaUndefinedForDecompress',
1698
- },
1699
- {
1700
- code: 6008,
1701
- name: 'DeCompressAmountUndefinedForDecompress',
1702
- msg: 'DeCompressAmountUndefinedForDecompress',
1703
- },
1704
- {
1705
- code: 6009,
1706
- name: 'CompressedPdaUndefinedForCompress',
1707
- msg: 'CompressedPdaUndefinedForCompress',
1708
- },
1709
- {
1710
- code: 6010,
1711
- name: 'DeCompressAmountUndefinedForCompress',
1712
- msg: 'DeCompressAmountUndefinedForCompress',
1713
- },
1714
- {
1715
- code: 6011,
1716
- name: 'DelegateSignerCheckFailed',
1717
- msg: 'DelegateSignerCheckFailed',
1718
- },
1719
- {
1720
- code: 6012,
1721
- name: 'MintTooLarge',
1722
- msg: 'Minted amount greater than u64::MAX',
1723
- },
1724
- {
1725
- code: 6013,
1726
- name: 'SplTokenSupplyMismatch',
1727
- msg: 'SplTokenSupplyMismatch',
1728
- },
1729
- {
1730
- code: 6014,
1731
- name: 'HeapMemoryCheckFailed',
1732
- msg: 'HeapMemoryCheckFailed',
1733
- },
1734
- {
1735
- code: 6015,
1736
- name: 'InstructionNotCallable',
1737
- msg: 'The instruction is not callable',
1738
- },
1739
- {
1740
- code: 6016,
1741
- name: 'ArithmeticUnderflow',
1742
- msg: 'ArithmeticUnderflow',
1743
- },
1744
- {
1745
- code: 6017,
1746
- name: 'HashToFieldError',
1747
- msg: 'HashToFieldError',
1748
- },
1749
- {
1750
- code: 6018,
1751
- name: 'InvalidAuthorityMint',
1752
- msg: 'Expected the authority to be also a mint authority',
1753
- },
1754
- {
1755
- code: 6019,
1756
- name: 'InvalidFreezeAuthority',
1757
- msg: 'Provided authority is not the freeze authority',
1758
- },
1759
- {
1760
- code: 6020,
1761
- name: 'InvalidDelegateIndex',
1762
- },
1763
- {
1764
- code: 6021,
1765
- name: 'TokenPoolPdaUndefined',
1766
- },
1767
- {
1768
- code: 6022,
1769
- name: 'IsTokenPoolPda',
1770
- msg: 'Compress or decompress recipient is the same account as the token pool pda.',
1771
- },
1772
- {
1773
- code: 6023,
1774
- name: 'InvalidTokenPoolPda',
1775
- },
1776
- {
1777
- code: 6024,
1778
- name: 'NoInputTokenAccountsProvided',
1779
- },
1780
- {
1781
- code: 6025,
1782
- name: 'NoInputsProvided',
1783
- },
1784
- {
1785
- code: 6026,
1786
- name: 'MintHasNoFreezeAuthority',
1787
- },
1788
- {
1789
- code: 6027,
1790
- name: 'MintWithInvalidExtension',
1791
- },
1792
- {
1793
- code: 6028,
1794
- name: 'InsufficientTokenAccountBalance',
1795
- msg: 'The token account balance is less than the remaining amount.',
1796
- },
1797
- ],
1798
- };
1799
-
1800
- // TODO: include owner and lamports in packing.
1801
- /**
1802
- * Packs Compressed Token Accounts.
1803
- */
1804
- function packCompressedTokenAccounts(params) {
1805
- const { inputCompressedTokenAccounts, outputStateTrees, remainingAccounts = [], rootIndices, tokenTransferOutputs, } = params;
1806
- const _remainingAccounts = remainingAccounts.slice();
1807
- let delegateIndex = null;
1808
- if (inputCompressedTokenAccounts.length > 0 &&
1809
- inputCompressedTokenAccounts[0].parsed.delegate) {
1810
- delegateIndex = stateless_js.getIndexOrAdd(_remainingAccounts, inputCompressedTokenAccounts[0].parsed.delegate);
1811
- }
1812
- /// TODO: move pubkeyArray to remainingAccounts
1813
- /// Currently just packs 'delegate' to pubkeyArray
1814
- const packedInputTokenData = [];
1815
- /// pack inputs
1816
- inputCompressedTokenAccounts.forEach((account, index) => {
1817
- const merkleTreePubkeyIndex = stateless_js.getIndexOrAdd(_remainingAccounts, account.compressedAccount.merkleTree);
1818
- const nullifierQueuePubkeyIndex = stateless_js.getIndexOrAdd(_remainingAccounts, account.compressedAccount.nullifierQueue);
1819
- packedInputTokenData.push({
1820
- amount: account.parsed.amount,
1821
- delegateIndex,
1822
- merkleContext: {
1823
- merkleTreePubkeyIndex,
1824
- nullifierQueuePubkeyIndex,
1825
- leafIndex: account.compressedAccount.leafIndex,
1826
- queueIndex: null,
1827
- },
1828
- rootIndex: rootIndices[index],
1829
- lamports: account.compressedAccount.lamports.eq(stateless_js.bn(0))
1830
- ? null
1831
- : account.compressedAccount.lamports,
1832
- tlv: null,
1833
- });
1834
- });
1835
- /// pack output state trees
1836
- const paddedOutputStateMerkleTrees = stateless_js.padOutputStateMerkleTrees(outputStateTrees, tokenTransferOutputs.length, inputCompressedTokenAccounts.map(acc => acc.compressedAccount));
1837
- const packedOutputTokenData = [];
1838
- paddedOutputStateMerkleTrees.forEach((account, index) => {
1839
- var _a;
1840
- const merkleTreeIndex = stateless_js.getIndexOrAdd(_remainingAccounts, account);
1841
- packedOutputTokenData.push({
1842
- owner: tokenTransferOutputs[index].owner,
1843
- amount: tokenTransferOutputs[index].amount,
1844
- lamports: ((_a = tokenTransferOutputs[index].lamports) === null || _a === void 0 ? void 0 : _a.eq(stateless_js.bn(0)))
1845
- ? null
1846
- : tokenTransferOutputs[index].lamports,
1847
- merkleTreeIndex,
1848
- tlv: null,
1849
- });
1850
- });
1851
- // to meta
1852
- const remainingAccountMetas = _remainingAccounts.map((account) => ({
1853
- pubkey: account,
1854
- isWritable: true,
1855
- isSigner: false,
1856
- }));
1857
- return {
1858
- inputTokenDataWithContext: packedInputTokenData,
1859
- remainingAccountMetas,
1860
- packedOutputTokenData,
1861
- };
1862
- }
1863
-
1864
- const POOL_SEED = Buffer.from('pool');
1865
- const CPI_AUTHORITY_SEED = Buffer.from('cpi_authority');
1866
- const SPL_TOKEN_MINT_RENT_EXEMPT_BALANCE = 1461600;
1867
-
1868
- /**
1869
- * Sum up the token amounts of the compressed token accounts
1870
- */
1871
- const sumUpTokenAmount = (accounts) => {
1872
- return accounts.reduce((acc, account) => acc.add(account.parsed.amount), stateless_js.bn(0));
1873
- };
1874
- /**
1875
- * Validate that all the compressed token accounts are owned by the same owner.
1876
- */
1877
- const validateSameTokenOwner = (accounts) => {
1878
- const owner = accounts[0].parsed.owner;
1879
- accounts.forEach(acc => {
1880
- if (!acc.parsed.owner.equals(owner)) {
1881
- throw new Error('Token accounts must be owned by the same owner');
1882
- }
1883
- });
1884
- };
1885
- /**
1886
- * Parse compressed token accounts to get the mint, current owner and delegate.
1887
- */
1888
- const parseTokenData = (compressedTokenAccounts) => {
1889
- const mint = compressedTokenAccounts[0].parsed.mint;
1890
- const currentOwner = compressedTokenAccounts[0].parsed.owner;
1891
- const delegate = compressedTokenAccounts[0].parsed.delegate;
1892
- return { mint, currentOwner, delegate };
1893
- };
1894
- /**
1895
- * Create the output state for a transfer transaction.
1896
- * @param inputCompressedTokenAccounts Input state
1897
- * @param toAddress Recipient address
1898
- * @param amount Amount of tokens to transfer
1899
- * @returns Output token data for the transfer
1900
- * instruction
1901
- */
1902
- function createTransferOutputState(inputCompressedTokenAccounts, toAddress, amount) {
1903
- amount = stateless_js.bn(amount);
1904
- const inputAmount = sumUpTokenAmount(inputCompressedTokenAccounts);
1905
- const inputLamports = stateless_js.sumUpLamports(inputCompressedTokenAccounts.map(acc => acc.compressedAccount));
1906
- const changeAmount = inputAmount.sub(amount);
1907
- stateless_js.validateSufficientBalance(changeAmount);
1908
- if (changeAmount.eq(stateless_js.bn(0)) && inputLamports.eq(stateless_js.bn(0))) {
1909
- return [
1910
- {
1911
- owner: toAddress,
1912
- amount,
1913
- lamports: inputLamports,
1914
- tlv: null,
1915
- },
1916
- ];
1917
- }
1918
- /// validates token program
1919
- stateless_js.validateSameOwner(inputCompressedTokenAccounts.map(acc => acc.compressedAccount));
1920
- validateSameTokenOwner(inputCompressedTokenAccounts);
1921
- const outputCompressedAccounts = [
1922
- {
1923
- owner: inputCompressedTokenAccounts[0].parsed.owner,
1924
- amount: changeAmount,
1925
- lamports: inputLamports,
1926
- tlv: null,
1927
- },
1928
- {
1929
- owner: toAddress,
1930
- amount,
1931
- lamports: stateless_js.bn(0),
1932
- tlv: null,
1933
- },
1934
- ];
1935
- return outputCompressedAccounts;
1936
- }
1937
- /**
1938
- * Create the output state for a compress transaction.
1939
- * @param inputCompressedTokenAccounts Input state
1940
- * @param amount Amount of tokens to compress
1941
- * @returns Output token data for the compress
1942
- * instruction
1943
- */
1944
- function createDecompressOutputState(inputCompressedTokenAccounts, amount) {
1945
- amount = stateless_js.bn(amount);
1946
- const inputLamports = stateless_js.sumUpLamports(inputCompressedTokenAccounts.map(acc => acc.compressedAccount));
1947
- const inputAmount = sumUpTokenAmount(inputCompressedTokenAccounts);
1948
- const changeAmount = inputAmount.sub(amount);
1949
- stateless_js.validateSufficientBalance(changeAmount);
1950
- /// lamports gets decompressed
1951
- if (changeAmount.eq(stateless_js.bn(0)) && inputLamports.eq(stateless_js.bn(0))) {
1952
- return [];
1953
- }
1954
- stateless_js.validateSameOwner(inputCompressedTokenAccounts.map(acc => acc.compressedAccount));
1955
- validateSameTokenOwner(inputCompressedTokenAccounts);
1956
- const tokenTransferOutputs = [
1957
- {
1958
- owner: inputCompressedTokenAccounts[0].parsed.owner,
1959
- amount: changeAmount,
1960
- lamports: inputLamports,
1961
- tlv: null,
1962
- },
1963
- ];
1964
- return tokenTransferOutputs;
1965
- }
1966
- class CompressedTokenProgram {
1967
- /**
1968
- * @internal
1969
- */
1970
- constructor() { }
1971
- /**
1972
- * Set a custom programId via PublicKey or base58 encoded string.
1973
- * This method is not required for regular usage.
1974
- *
1975
- * Use this only if you know what you are doing.
1976
- */
1977
- static setProgramId(programId) {
1978
- this.programId =
1979
- typeof programId === 'string'
1980
- ? new web3_js.PublicKey(programId)
1981
- : programId;
1982
- // Reset program when programId changes
1983
- this._program = null;
1984
- }
1985
- /** @internal */
1986
- static get program() {
1987
- if (!this._program) {
1988
- this.initializeProgram();
1989
- }
1990
- return this._program;
1991
- }
1992
- /**
1993
- * @internal
1994
- * Initializes the program statically if not already initialized.
1995
- */
1996
- static initializeProgram() {
1997
- if (!this._program) {
1998
- /// Note: We can use a mock connection because we're using the
1999
- /// program only for serde and building instructions, not for
2000
- /// interacting with the network.
2001
- const mockKeypair = web3_js.Keypair.generate();
2002
- const mockConnection = new web3_js.Connection('http://127.0.0.1:8899', 'confirmed');
2003
- const mockProvider = new anchor.AnchorProvider(mockConnection, stateless_js.useWallet(mockKeypair), stateless_js.confirmConfig);
2004
- anchor.setProvider(mockProvider);
2005
- this._program = new anchor.Program(IDL, this.programId, mockProvider);
2006
- }
2007
- }
2008
- /** @internal */
2009
- static deriveTokenPoolPda(mint) {
2010
- const seeds = [POOL_SEED, mint.toBuffer()];
2011
- const [address, _] = web3_js.PublicKey.findProgramAddressSync(seeds, this.programId);
2012
- return address;
2013
- }
2014
- /** @internal */
2015
- static get deriveCpiAuthorityPda() {
2016
- const [address, _] = web3_js.PublicKey.findProgramAddressSync([CPI_AUTHORITY_SEED], this.programId);
2017
- return address;
2018
- }
2019
- /**
2020
- * Construct createMint instruction for compressed tokens.
2021
- * @returns [createMintAccountInstruction, initializeMintInstruction, createTokenPoolInstruction]
2022
- *
2023
- * Note that `createTokenPoolInstruction` must be executed after `initializeMintInstruction`.
2024
- */
2025
- static async createMint(params) {
2026
- const { mint, authority, feePayer, rentExemptBalance, tokenProgramId, freezeAuthority, mintSize, } = params;
2027
- const tokenProgram = tokenProgramId !== null && tokenProgramId !== void 0 ? tokenProgramId : splToken.TOKEN_PROGRAM_ID;
2028
- /// Create and initialize SPL Mint account
2029
- const createMintAccountInstruction = web3_js.SystemProgram.createAccount({
2030
- fromPubkey: feePayer,
2031
- lamports: rentExemptBalance,
2032
- newAccountPubkey: mint,
2033
- programId: tokenProgram,
2034
- space: mintSize !== null && mintSize !== void 0 ? mintSize : splToken.MINT_SIZE,
2035
- });
2036
- const initializeMintInstruction = splToken.createInitializeMint2Instruction(mint, params.decimals, authority, freezeAuthority, tokenProgram);
2037
- const createTokenPoolInstruction = await this.createTokenPool({
2038
- feePayer,
2039
- mint,
2040
- tokenProgramId: tokenProgram,
2041
- });
2042
- return [
2043
- createMintAccountInstruction,
2044
- initializeMintInstruction,
2045
- createTokenPoolInstruction,
2046
- ];
2047
- }
2048
- /**
2049
- * Enable compression for an existing SPL mint, creating an omnibus account.
2050
- * For new mints, use `CompressedTokenProgram.createMint`.
2051
- */
2052
- static async createTokenPool(params) {
2053
- const { mint, feePayer, tokenProgramId } = params;
2054
- const tokenProgram = tokenProgramId !== null && tokenProgramId !== void 0 ? tokenProgramId : splToken.TOKEN_PROGRAM_ID;
2055
- const tokenPoolPda = this.deriveTokenPoolPda(mint);
2056
- const ix = await this.program.methods
2057
- .createTokenPool()
2058
- .accounts({
2059
- mint,
2060
- feePayer,
2061
- tokenPoolPda,
2062
- systemProgram: web3_js.SystemProgram.programId,
2063
- tokenProgram,
2064
- cpiAuthorityPda: this.deriveCpiAuthorityPda,
2065
- })
2066
- .instruction();
2067
- return ix;
2068
- }
2069
- /**
2070
- * Construct mintTo instruction for compressed tokens
2071
- */
2072
- static async mintTo(params) {
2073
- const systemKeys = stateless_js.defaultStaticAccountsStruct();
2074
- const { mint, feePayer, authority, merkleTree, toPubkey, amount, tokenProgramId, } = params;
2075
- const tokenProgram = tokenProgramId !== null && tokenProgramId !== void 0 ? tokenProgramId : splToken.TOKEN_PROGRAM_ID;
2076
- const tokenPoolPda = this.deriveTokenPoolPda(mint);
2077
- const amounts = stateless_js.toArray(amount).map(amount => stateless_js.bn(amount));
2078
- const toPubkeys = stateless_js.toArray(toPubkey);
2079
- if (amounts.length !== toPubkeys.length) {
2080
- throw new Error('Amount and toPubkey arrays must have the same length');
2081
- }
2082
- const instruction = await this.program.methods
2083
- .mintTo(toPubkeys, amounts, null)
2084
- .accounts({
2085
- feePayer,
2086
- authority,
2087
- cpiAuthorityPda: this.deriveCpiAuthorityPda,
2088
- mint,
2089
- tokenPoolPda,
2090
- tokenProgram,
2091
- lightSystemProgram: stateless_js.LightSystemProgram.programId,
2092
- registeredProgramPda: systemKeys.registeredProgramPda,
2093
- noopProgram: systemKeys.noopProgram,
2094
- accountCompressionAuthority: systemKeys.accountCompressionAuthority,
2095
- accountCompressionProgram: systemKeys.accountCompressionProgram,
2096
- merkleTree: merkleTree !== null && merkleTree !== void 0 ? merkleTree : stateless_js.defaultTestStateTreeAccounts().merkleTree,
2097
- selfProgram: this.programId,
2098
- solPoolPda: null,
2099
- })
2100
- .instruction();
2101
- return instruction;
2102
- }
2103
- /**
2104
- * Mint tokens from registered SPL mint account to a compressed account
2105
- */
2106
- static async approveAndMintTo(params) {
2107
- const { mint, feePayer, authorityTokenAccount, authority, merkleTree, toPubkey, tokenProgramId, } = params;
2108
- const amount = BigInt(params.amount.toString());
2109
- /// 1. Mint to existing ATA of mintAuthority.
2110
- const splMintToInstruction = splToken.createMintToInstruction(mint, authorityTokenAccount, authority, amount, [], tokenProgramId);
2111
- /// 2. Compress from mint authority ATA to recipient compressed account
2112
- const compressInstruction = await this.compress({
2113
- payer: feePayer,
2114
- owner: authority,
2115
- source: authorityTokenAccount,
2116
- toAddress: toPubkey,
2117
- mint,
2118
- amount: params.amount,
2119
- outputStateTree: merkleTree,
2120
- tokenProgramId,
2121
- });
2122
- return [splMintToInstruction, compressInstruction];
2123
- }
2124
- /**
2125
- * Construct transfer instruction for compressed tokens
2126
- */
2127
- static async transfer(params) {
2128
- const { payer, inputCompressedTokenAccounts, recentInputStateRootIndices, recentValidityProof, amount, outputStateTrees, toAddress, } = params;
2129
- const tokenTransferOutputs = createTransferOutputState(inputCompressedTokenAccounts, toAddress, amount);
2130
- const { inputTokenDataWithContext, packedOutputTokenData, remainingAccountMetas, } = packCompressedTokenAccounts({
2131
- inputCompressedTokenAccounts,
2132
- outputStateTrees,
2133
- rootIndices: recentInputStateRootIndices,
2134
- tokenTransferOutputs,
2135
- });
2136
- const { mint, currentOwner } = parseTokenData(inputCompressedTokenAccounts);
2137
- const data = {
2138
- proof: recentValidityProof,
2139
- mint,
2140
- delegatedTransfer: null, // TODO: implement
2141
- inputTokenDataWithContext,
2142
- outputCompressedAccounts: packedOutputTokenData,
2143
- compressOrDecompressAmount: null,
2144
- isCompress: false,
2145
- cpiContext: null,
2146
- lamportsChangeAccountMerkleTreeIndex: null,
2147
- };
2148
- const encodedData = this.program.coder.types.encode('CompressedTokenInstructionDataTransfer', data);
2149
- const { accountCompressionAuthority, noopProgram, registeredProgramPda, accountCompressionProgram, } = stateless_js.defaultStaticAccountsStruct();
2150
- const instruction = await this.program.methods
2151
- .transfer(encodedData)
2152
- .accounts({
2153
- feePayer: payer,
2154
- authority: currentOwner,
2155
- cpiAuthorityPda: this.deriveCpiAuthorityPda,
2156
- lightSystemProgram: stateless_js.LightSystemProgram.programId,
2157
- registeredProgramPda: registeredProgramPda,
2158
- noopProgram: noopProgram,
2159
- accountCompressionAuthority: accountCompressionAuthority,
2160
- accountCompressionProgram: accountCompressionProgram,
2161
- selfProgram: this.programId,
2162
- tokenPoolPda: null,
2163
- compressOrDecompressTokenAccount: null,
2164
- tokenProgram: null,
2165
- })
2166
- .remainingAccounts(remainingAccountMetas)
2167
- .instruction();
2168
- return instruction;
2169
- }
2170
- /**
2171
- * Create lookup table instructions for the token program's default accounts.
2172
- */
2173
- static async createTokenProgramLookupTable(params) {
2174
- const { authority, mints, recentSlot, payer, remainingAccounts } = params;
2175
- const [createInstruction, lookupTableAddress] = web3_js.AddressLookupTableProgram.createLookupTable({
2176
- authority,
2177
- payer: authority,
2178
- recentSlot,
2179
- });
2180
- let optionalMintKeys = [];
2181
- if (mints) {
2182
- optionalMintKeys = [
2183
- ...mints,
2184
- ...mints.map(mint => this.deriveTokenPoolPda(mint)),
2185
- ];
2186
- }
2187
- const extendInstruction = web3_js.AddressLookupTableProgram.extendLookupTable({
2188
- payer,
2189
- authority,
2190
- lookupTable: lookupTableAddress,
2191
- addresses: [
2192
- this.deriveCpiAuthorityPda,
2193
- stateless_js.LightSystemProgram.programId,
2194
- stateless_js.defaultStaticAccountsStruct().registeredProgramPda,
2195
- stateless_js.defaultStaticAccountsStruct().noopProgram,
2196
- stateless_js.defaultStaticAccountsStruct().accountCompressionAuthority,
2197
- stateless_js.defaultStaticAccountsStruct().accountCompressionProgram,
2198
- stateless_js.defaultTestStateTreeAccounts().merkleTree,
2199
- stateless_js.defaultTestStateTreeAccounts().nullifierQueue,
2200
- stateless_js.defaultTestStateTreeAccounts().addressTree,
2201
- stateless_js.defaultTestStateTreeAccounts().addressQueue,
2202
- this.programId,
2203
- splToken.TOKEN_PROGRAM_ID,
2204
- splToken.TOKEN_2022_PROGRAM_ID,
2205
- authority,
2206
- ...optionalMintKeys,
2207
- ...(remainingAccounts !== null && remainingAccounts !== void 0 ? remainingAccounts : []),
2208
- ],
2209
- });
2210
- return {
2211
- instructions: [createInstruction, extendInstruction],
2212
- address: lookupTableAddress,
2213
- };
2214
- }
2215
- /**
2216
- * Create compress instruction
2217
- * @returns compressInstruction
2218
- */
2219
- static async compress(params) {
2220
- const { payer, owner, source, toAddress, mint, outputStateTree, tokenProgramId, } = params;
2221
- if (Array.isArray(params.amount) !== Array.isArray(params.toAddress)) {
2222
- throw new Error('Both amount and toAddress must be arrays or both must be single values');
2223
- }
2224
- let tokenTransferOutputs;
2225
- if (Array.isArray(params.amount) && Array.isArray(params.toAddress)) {
2226
- if (params.amount.length !== params.toAddress.length) {
2227
- throw new Error('Amount and toAddress arrays must have the same length');
2228
- }
2229
- tokenTransferOutputs = params.amount.map((amt, index) => {
2230
- const amount = stateless_js.bn(amt);
2231
- return {
2232
- owner: params.toAddress[index],
2233
- amount,
2234
- lamports: stateless_js.bn(0),
2235
- tlv: null,
2236
- };
2237
- });
2238
- }
2239
- else {
2240
- tokenTransferOutputs = [
2241
- {
2242
- owner: toAddress,
2243
- amount: stateless_js.bn(params.amount),
2244
- lamports: stateless_js.bn(0),
2245
- tlv: null,
2246
- },
2247
- ];
2248
- }
2249
- const { inputTokenDataWithContext, packedOutputTokenData, remainingAccountMetas, } = packCompressedTokenAccounts({
2250
- inputCompressedTokenAccounts: [],
2251
- outputStateTrees: outputStateTree,
2252
- rootIndices: [],
2253
- tokenTransferOutputs,
2254
- });
2255
- const data = {
2256
- proof: null,
2257
- mint,
2258
- delegatedTransfer: null, // TODO: implement
2259
- inputTokenDataWithContext,
2260
- outputCompressedAccounts: packedOutputTokenData,
2261
- compressOrDecompressAmount: Array.isArray(params.amount)
2262
- ? params.amount
2263
- .map(amt => new anchor.BN(amt))
2264
- .reduce((sum, amt) => sum.add(amt), new anchor.BN(0))
2265
- : new anchor.BN(params.amount),
2266
- isCompress: true,
2267
- cpiContext: null,
2268
- lamportsChangeAccountMerkleTreeIndex: null,
2269
- };
2270
- const encodedData = this.program.coder.types.encode('CompressedTokenInstructionDataTransfer', data);
2271
- const tokenProgram = tokenProgramId !== null && tokenProgramId !== void 0 ? tokenProgramId : splToken.TOKEN_PROGRAM_ID;
2272
- const instruction = await this.program.methods
2273
- .transfer(encodedData)
2274
- .accounts({
2275
- feePayer: payer,
2276
- authority: owner,
2277
- cpiAuthorityPda: this.deriveCpiAuthorityPda,
2278
- lightSystemProgram: stateless_js.LightSystemProgram.programId,
2279
- registeredProgramPda: stateless_js.defaultStaticAccountsStruct().registeredProgramPda,
2280
- noopProgram: stateless_js.defaultStaticAccountsStruct().noopProgram,
2281
- accountCompressionAuthority: stateless_js.defaultStaticAccountsStruct().accountCompressionAuthority,
2282
- accountCompressionProgram: stateless_js.defaultStaticAccountsStruct().accountCompressionProgram,
2283
- selfProgram: this.programId,
2284
- tokenPoolPda: this.deriveTokenPoolPda(mint),
2285
- compressOrDecompressTokenAccount: source, // token
2286
- tokenProgram,
2287
- })
2288
- .remainingAccounts(remainingAccountMetas)
2289
- .instruction();
2290
- return instruction;
2291
- }
2292
- /**
2293
- * Construct decompress instruction
2294
- */
2295
- static async decompress(params) {
2296
- const { payer, inputCompressedTokenAccounts, toAddress, outputStateTree, recentValidityProof, recentInputStateRootIndices, tokenProgramId, } = params;
2297
- const amount = stateless_js.bn(params.amount);
2298
- const tokenTransferOutputs = createDecompressOutputState(inputCompressedTokenAccounts, amount);
2299
- /// Pack
2300
- const { inputTokenDataWithContext, packedOutputTokenData, remainingAccountMetas, } = packCompressedTokenAccounts({
2301
- inputCompressedTokenAccounts,
2302
- outputStateTrees: outputStateTree,
2303
- rootIndices: recentInputStateRootIndices,
2304
- tokenTransferOutputs: tokenTransferOutputs,
2305
- });
2306
- const { mint, currentOwner } = parseTokenData(inputCompressedTokenAccounts);
2307
- const data = {
2308
- proof: recentValidityProof,
2309
- mint,
2310
- delegatedTransfer: null, // TODO: implement
2311
- inputTokenDataWithContext,
2312
- outputCompressedAccounts: packedOutputTokenData,
2313
- compressOrDecompressAmount: amount,
2314
- isCompress: false,
2315
- cpiContext: null,
2316
- lamportsChangeAccountMerkleTreeIndex: null,
2317
- };
2318
- const encodedData = this.program.coder.types.encode('CompressedTokenInstructionDataTransfer', data);
2319
- const { accountCompressionAuthority, noopProgram, registeredProgramPda, accountCompressionProgram, } = stateless_js.defaultStaticAccountsStruct();
2320
- const tokenProgram = tokenProgramId !== null && tokenProgramId !== void 0 ? tokenProgramId : splToken.TOKEN_PROGRAM_ID;
2321
- const instruction = await this.program.methods
2322
- .transfer(encodedData)
2323
- .accounts({
2324
- feePayer: payer,
2325
- authority: currentOwner,
2326
- cpiAuthorityPda: this.deriveCpiAuthorityPda,
2327
- lightSystemProgram: stateless_js.LightSystemProgram.programId,
2328
- registeredProgramPda: registeredProgramPda,
2329
- noopProgram: noopProgram,
2330
- accountCompressionAuthority: accountCompressionAuthority,
2331
- accountCompressionProgram: accountCompressionProgram,
2332
- selfProgram: this.programId,
2333
- tokenPoolPda: this.deriveTokenPoolPda(mint),
2334
- compressOrDecompressTokenAccount: toAddress,
2335
- tokenProgram,
2336
- })
2337
- .remainingAccounts(remainingAccountMetas)
2338
- .instruction();
2339
- return instruction;
2340
- }
2341
- static async mergeTokenAccounts(params) {
2342
- const { payer, owner, inputCompressedTokenAccounts, outputStateTree, recentValidityProof, recentInputStateRootIndices, } = params;
2343
- if (inputCompressedTokenAccounts.length > 3) {
2344
- throw new Error('Cannot merge more than 3 token accounts at once');
2345
- }
2346
- const ix = await this.transfer({
2347
- payer,
2348
- inputCompressedTokenAccounts,
2349
- toAddress: owner,
2350
- amount: inputCompressedTokenAccounts.reduce((sum, account) => sum.add(account.parsed.amount), new anchor.BN(0)),
2351
- outputStateTrees: outputStateTree,
2352
- recentInputStateRootIndices,
2353
- recentValidityProof,
2354
- });
2355
- return [ix];
2356
- }
2357
- static async compressSplTokenAccount(params) {
2358
- const { feePayer, authority, tokenAccount, mint, remainingAmount, outputStateTree, tokenProgramId, } = params;
2359
- const tokenProgram = tokenProgramId !== null && tokenProgramId !== void 0 ? tokenProgramId : splToken.TOKEN_PROGRAM_ID;
2360
- const remainingAccountMetas = [
2361
- {
2362
- pubkey: outputStateTree,
2363
- isSigner: false,
2364
- isWritable: true,
2365
- },
2366
- ];
2367
- const instruction = await this.program.methods
2368
- .compressSplTokenAccount(authority, remainingAmount !== null && remainingAmount !== void 0 ? remainingAmount : null, null)
2369
- .accounts({
2370
- feePayer,
2371
- authority,
2372
- cpiAuthorityPda: this.deriveCpiAuthorityPda,
2373
- lightSystemProgram: stateless_js.LightSystemProgram.programId,
2374
- registeredProgramPda: stateless_js.defaultStaticAccountsStruct().registeredProgramPda,
2375
- noopProgram: stateless_js.defaultStaticAccountsStruct().noopProgram,
2376
- accountCompressionAuthority: stateless_js.defaultStaticAccountsStruct().accountCompressionAuthority,
2377
- accountCompressionProgram: stateless_js.defaultStaticAccountsStruct().accountCompressionProgram,
2378
- selfProgram: this.programId,
2379
- tokenPoolPda: this.deriveTokenPoolPda(mint),
2380
- compressOrDecompressTokenAccount: tokenAccount,
2381
- tokenProgram,
2382
- systemProgram: web3_js.SystemProgram.programId,
2383
- })
2384
- .remainingAccounts(remainingAccountMetas)
2385
- .instruction();
2386
- return instruction;
2387
- }
2388
- static async get_mint_program_id(mint, connection) {
2389
- var _a;
2390
- return (_a = (await connection.getAccountInfo(mint))) === null || _a === void 0 ? void 0 : _a.owner;
2391
- }
2392
- }
2393
- /**
2394
- * Public key that identifies the CompressedPda program
2395
- */
2396
- CompressedTokenProgram.programId = new web3_js.PublicKey('cTokenmWW8bLPjZEBAUgYy3zKxQZW6VKi7bqNFEVv3m');
2397
- CompressedTokenProgram._program = null;
2398
-
2399
- /**
2400
- * Mint compressed tokens to a solana address from an external mint authority
2401
- *
2402
- * @param rpc Rpc to use
2403
- * @param payer Payer of the transaction fees
2404
- * @param mint Mint for the account
2405
- * @param destination Address of the account to mint to
2406
- * @param authority Minting authority
2407
- * @param amount Amount to mint
2408
- * @param merkleTree State tree account that the compressed tokens should be
2409
- * part of. Defaults to the default state tree account.
2410
- * @param confirmOptions Options for confirming the transaction
2411
- *
2412
- * @return Signature of the confirmed transaction
2413
- */
2414
- async function approveAndMintTo(rpc, payer, mint, destination, authority, amount, merkleTree, confirmOptions, tokenProgramId) {
2415
- tokenProgramId = tokenProgramId
2416
- ? tokenProgramId
2417
- : await CompressedTokenProgram.get_mint_program_id(mint, rpc);
2418
- const authorityTokenAccount = await splToken.getOrCreateAssociatedTokenAccount(rpc, payer, mint, authority.publicKey, undefined, undefined, confirmOptions, tokenProgramId);
2419
- const ixs = await CompressedTokenProgram.approveAndMintTo({
2420
- feePayer: payer.publicKey,
2421
- mint,
2422
- authority: authority.publicKey,
2423
- authorityTokenAccount: authorityTokenAccount.address,
2424
- amount,
2425
- toPubkey: destination,
2426
- merkleTree,
2427
- tokenProgramId,
2428
- });
2429
- const { blockhash } = await rpc.getLatestBlockhash();
2430
- const additionalSigners = stateless_js.dedupeSigner(payer, [authority]);
2431
- const tx = stateless_js.buildAndSignTx([
2432
- web3_js.ComputeBudgetProgram.setComputeUnitLimit({ units: 1000000 }),
2433
- ...ixs,
2434
- ], payer, blockhash, additionalSigners);
2435
- const txId = await stateless_js.sendAndConfirmTx(rpc, tx, confirmOptions);
2436
- return txId;
2437
- }
2438
-
2439
- /**
2440
- * Compress SPL tokens
2441
- *
2442
- * @param rpc Rpc connection to use
2443
- * @param payer Payer of the transaction fees
2444
- * @param mint Mint of the compressed token
2445
- * @param amount Number of tokens to transfer
2446
- * @param owner Owner of the compressed tokens.
2447
- * @param sourceTokenAccount Source (associated) token account
2448
- * @param toAddress Destination address of the recipient
2449
- * @param merkleTree State tree account that the compressed tokens
2450
- * should be inserted into. Defaults to a default
2451
- * state tree account.
2452
- * @param confirmOptions Options for confirming the transaction
2453
- *
2454
- *
2455
- * @return Signature of the confirmed transaction
2456
- */
2457
- async function compress(rpc, payer, mint, amount, owner, sourceTokenAccount, toAddress, merkleTree, confirmOptions, tokenProgramId) {
2458
- tokenProgramId = tokenProgramId
2459
- ? tokenProgramId
2460
- : await CompressedTokenProgram.get_mint_program_id(mint, rpc);
2461
- const compressIx = await CompressedTokenProgram.compress({
2462
- payer: payer.publicKey,
2463
- owner: owner.publicKey,
2464
- source: sourceTokenAccount,
2465
- toAddress,
2466
- amount,
2467
- mint,
2468
- outputStateTree: merkleTree,
2469
- tokenProgramId,
2470
- });
2471
- const blockhashCtx = await rpc.getLatestBlockhash();
2472
- const additionalSigners = stateless_js.dedupeSigner(payer, [owner]);
2473
- const signedTx = stateless_js.buildAndSignTx([
2474
- web3_js.ComputeBudgetProgram.setComputeUnitLimit({
2475
- units: 1000000,
2476
- }),
2477
- compressIx,
2478
- ], payer, blockhashCtx.blockhash, additionalSigners);
2479
- const txId = await stateless_js.sendAndConfirmTx(rpc, signedTx, confirmOptions, blockhashCtx);
2480
- return txId;
2481
- }
2482
-
2483
- /**
2484
- * Transfer compressed tokens from one owner to another
2485
- *
2486
- * @param rpc Rpc to use
2487
- * @param payer Payer of the transaction fees
2488
- * @param mint Mint of the compressed token
2489
- * @param amount Number of tokens to transfer
2490
- * @param owner Owner of the compressed tokens
2491
- * @param toAddress Destination address of the recipient
2492
- * @param merkleTree State tree account that the compressed tokens should be
2493
- * inserted into. Defaults to the default state tree
2494
- * account.
2495
- * @param confirmOptions Options for confirming the transaction
2496
- *
2497
- *
2498
- * @return Signature of the confirmed transaction
2499
- */
2500
- async function transfer(rpc, payer, mint, amount, owner, toAddress,
2501
- /// TODO: allow multiple
2502
- merkleTree, confirmOptions) {
2503
- amount = stateless_js.bn(amount);
2504
- const compressedTokenAccounts = await rpc.getCompressedTokenAccountsByOwner(owner.publicKey, {
2505
- mint,
2506
- });
2507
- const [inputAccounts] = selectMinCompressedTokenAccountsForTransfer(compressedTokenAccounts.items, amount);
2508
- const proof = await rpc.getValidityProof(inputAccounts.map(account => stateless_js.bn(account.compressedAccount.hash)));
2509
- const ix = await CompressedTokenProgram.transfer({
2510
- payer: payer.publicKey,
2511
- inputCompressedTokenAccounts: inputAccounts,
2512
- toAddress,
2513
- amount,
2514
- recentInputStateRootIndices: proof.rootIndices,
2515
- recentValidityProof: proof.compressedProof,
2516
- outputStateTrees: merkleTree,
2517
- });
2518
- const { blockhash } = await rpc.getLatestBlockhash();
2519
- const additionalSigners = stateless_js.dedupeSigner(payer, [owner]);
2520
- const signedTx = stateless_js.buildAndSignTx([web3_js.ComputeBudgetProgram.setComputeUnitLimit({ units: 1000000 }), ix], payer, blockhash, additionalSigners);
2521
- const txId = await stateless_js.sendAndConfirmTx(rpc, signedTx, confirmOptions);
2522
- return txId;
2523
- }
2524
- /**
2525
- * Selects the minimal number of compressed token accounts for a transfer.
2526
- *
2527
- * 1. Sorts the accounts by amount in descending order
2528
- * 2. Accumulates the amount until it is greater than or equal to the transfer
2529
- * amount
2530
- */
2531
- function selectMinCompressedTokenAccountsForTransfer(accounts, transferAmount) {
2532
- let accumulatedAmount = stateless_js.bn(0);
2533
- let accumulatedLamports = stateless_js.bn(0);
2534
- const selectedAccounts = [];
2535
- accounts.sort((a, b) => b.parsed.amount.cmp(a.parsed.amount));
2536
- for (const account of accounts) {
2537
- if (accumulatedAmount.gte(stateless_js.bn(transferAmount)))
2538
- break;
2539
- accumulatedAmount = accumulatedAmount.add(account.parsed.amount);
2540
- accumulatedLamports = accumulatedLamports.add(account.compressedAccount.lamports);
2541
- selectedAccounts.push(account);
2542
- }
2543
- if (accumulatedAmount.lt(stateless_js.bn(transferAmount))) {
2544
- throw new Error(`Not enough balance for transfer. Required: ${transferAmount.toString()}, available: ${accumulatedAmount.toString()}`);
2545
- }
2546
- return [
2547
- selectedAccounts,
2548
- accumulatedAmount,
2549
- accumulatedLamports.lt(stateless_js.bn(0)) ? accumulatedLamports : null,
2550
- ];
2551
- }
2552
-
2553
- /**
2554
- * Decompress compressed tokens
2555
- *
2556
- * @param rpc Rpc to use
2557
- * @param payer Payer of the transaction fees
2558
- * @param mint Mint of the compressed token
2559
- * @param amount Number of tokens to transfer
2560
- * @param owner Owner of the compressed tokens
2561
- * @param toAddress Destination **uncompressed** (associated) token account
2562
- * address.
2563
- * @param merkleTree State tree account that any change compressed tokens should be
2564
- * inserted into. Defaults to a default state tree
2565
- * account.
2566
- * @param confirmOptions Options for confirming the transaction
2567
- *
2568
- *
2569
- * @return Signature of the confirmed transaction
2570
- */
2571
- async function decompress(rpc, payer, mint, amount, owner, toAddress,
2572
- /// TODO: allow multiple
2573
- merkleTree, confirmOptions, tokenProgramId) {
2574
- tokenProgramId = tokenProgramId
2575
- ? tokenProgramId
2576
- : await CompressedTokenProgram.get_mint_program_id(mint, rpc);
2577
- amount = stateless_js.bn(amount);
2578
- const compressedTokenAccounts = await rpc.getCompressedTokenAccountsByOwner(owner.publicKey, {
2579
- mint,
2580
- });
2581
- /// TODO: consider using a different selection algorithm
2582
- const [inputAccounts] = selectMinCompressedTokenAccountsForTransfer(compressedTokenAccounts.items, amount);
2583
- const proof = await rpc.getValidityProof(inputAccounts.map(account => stateless_js.bn(account.compressedAccount.hash)));
2584
- const ix = await CompressedTokenProgram.decompress({
2585
- payer: payer.publicKey,
2586
- inputCompressedTokenAccounts: inputAccounts,
2587
- toAddress, // TODO: add explicit check that it is a token account
2588
- amount,
2589
- outputStateTree: merkleTree,
2590
- recentInputStateRootIndices: proof.rootIndices,
2591
- recentValidityProof: proof.compressedProof,
2592
- tokenProgramId,
2593
- });
2594
- const { blockhash } = await rpc.getLatestBlockhash();
2595
- const additionalSigners = stateless_js.dedupeSigner(payer, [owner]);
2596
- const signedTx = stateless_js.buildAndSignTx([web3_js.ComputeBudgetProgram.setComputeUnitLimit({ units: 1000000 }), ix], payer, blockhash, additionalSigners);
2597
- const txId = await stateless_js.sendAndConfirmTx(rpc, signedTx, confirmOptions);
2598
- return txId;
2599
- }
2600
-
2601
- /**
2602
- * Create and initialize a new compressed token mint
2603
- *
2604
- * @param rpc RPC to use
2605
- * @param payer Payer of the transaction and initialization fees
2606
- * @param mintAuthority Account or multisig that will control minting
2607
- * @param decimals Location of the decimal place
2608
- * @param keypair Optional keypair, defaulting to a new random one
2609
- * @param confirmOptions Options for confirming the transaction
2610
- * @param isToken22 Whether to create a Token 2022 mint. Defaults to false.
2611
- *
2612
- * @return Address of the new mint and the transaction signature
2613
- */
2614
- async function createMint(rpc, payer, mintAuthority, decimals, keypair = web3_js.Keypair.generate(), confirmOptions, isToken22 = false) {
2615
- const rentExemptBalance = await rpc.getMinimumBalanceForRentExemption(splToken.MINT_SIZE);
2616
- const tokenProgramId = isToken22 ? splToken.TOKEN_2022_PROGRAM_ID : splToken.TOKEN_PROGRAM_ID;
2617
- const ixs = await CompressedTokenProgram.createMint({
2618
- feePayer: payer.publicKey,
2619
- mint: keypair.publicKey,
2620
- decimals,
2621
- authority: mintAuthority,
2622
- freezeAuthority: null, // TODO: add feature
2623
- rentExemptBalance,
2624
- tokenProgramId,
2625
- });
2626
- const { blockhash } = await rpc.getLatestBlockhash();
2627
- const additionalSigners = stateless_js.dedupeSigner(payer, [keypair]);
2628
- const tx = stateless_js.buildAndSignTx(ixs, payer, blockhash, additionalSigners);
2629
- const txId = await stateless_js.sendAndConfirmTx(rpc, tx, confirmOptions);
2630
- return { mint: keypair.publicKey, transactionSignature: txId };
2631
- }
2632
-
2633
- /**
2634
- * Mint compressed tokens to a solana address
2635
- *
2636
- * @param rpc Rpc to use
2637
- * @param payer Payer of the transaction fees
2638
- * @param mint Mint for the account
2639
- * @param destination Address of the account to mint to. Can be an array of
2640
- * addresses if the amount is an array of amounts.
2641
- * @param authority Minting authority
2642
- * @param amount Amount to mint. Can be an array of amounts if the
2643
- * destination is an array of addresses.
2644
- * @param merkleTree State tree account that the compressed tokens should be
2645
- * part of. Defaults to the default state tree account.
2646
- * @param confirmOptions Options for confirming the transaction
2647
- *
2648
- * @return Signature of the confirmed transaction
2649
- */
2650
- async function mintTo(rpc, payer, mint, destination, authority, amount, merkleTree, confirmOptions, tokenProgramId) {
2651
- tokenProgramId = tokenProgramId
2652
- ? tokenProgramId
2653
- : await CompressedTokenProgram.get_mint_program_id(mint, rpc);
2654
- const additionalSigners = stateless_js.dedupeSigner(payer, [authority]);
2655
- const ix = await CompressedTokenProgram.mintTo({
2656
- feePayer: payer.publicKey,
2657
- mint,
2658
- authority: authority.publicKey,
2659
- amount: amount,
2660
- toPubkey: destination,
2661
- merkleTree,
2662
- tokenProgramId,
2663
- });
2664
- const { blockhash } = await rpc.getLatestBlockhash();
2665
- const tx = stateless_js.buildAndSignTx([web3_js.ComputeBudgetProgram.setComputeUnitLimit({ units: 1000000 }), ix], payer, blockhash, additionalSigners);
2666
- const txId = await stateless_js.sendAndConfirmTx(rpc, tx, confirmOptions);
2667
- return txId;
2668
- }
2669
-
2670
- /**
2671
- * Merge multiple compressed token accounts for a given mint into a single
2672
- * account
2673
- *
2674
- * @param rpc RPC to use
2675
- * @param payer Payer of the transaction fees
2676
- * @param mint Public key of the token's mint
2677
- * @param owner Owner of the token accounts to be merged
2678
- * @param merkleTree Optional merkle tree for compressed tokens
2679
- * @param confirmOptions Options for confirming the transaction
2680
- *
2681
- * @return Array of transaction signatures
2682
- */
2683
- async function mergeTokenAccounts(rpc, payer, mint, owner, merkleTree, confirmOptions) {
2684
- const compressedTokenAccounts = await rpc.getCompressedTokenAccountsByOwner(owner.publicKey, { mint });
2685
- if (compressedTokenAccounts.items.length === 0) {
2686
- throw new Error(`No compressed token accounts found for mint ${mint.toBase58()}`);
2687
- }
2688
- if (compressedTokenAccounts.items.length >= 6) {
2689
- throw new Error(`Too many compressed token accounts used for mint ${mint.toBase58()}`);
2690
- }
2691
- const instructions = [
2692
- web3_js.ComputeBudgetProgram.setComputeUnitLimit({ units: 1000000 }),
2693
- ];
2694
- for (let i = 0; i < compressedTokenAccounts.items.slice(0, 6).length; i += 3) {
2695
- const batch = compressedTokenAccounts.items.slice(i, i + 3);
2696
- const proof = await rpc.getValidityProof(batch.map(account => stateless_js.bn(account.compressedAccount.hash)));
2697
- const batchInstructions = await CompressedTokenProgram.mergeTokenAccounts({
2698
- payer: payer.publicKey,
2699
- owner: owner.publicKey,
2700
- mint,
2701
- inputCompressedTokenAccounts: batch,
2702
- outputStateTree: merkleTree,
2703
- recentValidityProof: proof.compressedProof,
2704
- recentInputStateRootIndices: proof.rootIndices,
2705
- });
2706
- instructions.push(...batchInstructions);
2707
- }
2708
- const { blockhash } = await rpc.getLatestBlockhash();
2709
- const additionalSigners = stateless_js.dedupeSigner(payer, [owner]);
2710
- const signedTx = stateless_js.buildAndSignTx(instructions, payer, blockhash, additionalSigners);
2711
- const txId = await stateless_js.sendAndConfirmTx(rpc, signedTx, confirmOptions);
2712
- return txId;
2713
- }
2714
-
2715
- /**
2716
- * Register an existing mint with the CompressedToken program
2717
- *
2718
- * @param rpc RPC to use
2719
- * @param payer Payer of the transaction and initialization fees
2720
- * @param mintAuthority Account or multisig that will control minting. Is signer.
2721
- * @param mintAddress Address of the existing mint
2722
- * @param confirmOptions Options for confirming the transaction
2723
- *
2724
- * @return transaction signature
2725
- */
2726
- async function createTokenPool(rpc, payer, mint, confirmOptions, tokenProgramId) {
2727
- tokenProgramId = tokenProgramId
2728
- ? tokenProgramId
2729
- : await CompressedTokenProgram.get_mint_program_id(mint, rpc);
2730
- const ix = await CompressedTokenProgram.createTokenPool({
2731
- feePayer: payer.publicKey,
2732
- mint,
2733
- tokenProgramId,
2734
- });
2735
- const { blockhash } = await rpc.getLatestBlockhash();
2736
- const tx = stateless_js.buildAndSignTx([ix], payer, blockhash);
2737
- const txId = await stateless_js.sendAndConfirmTx(rpc, tx, confirmOptions);
2738
- return txId;
2739
- }
2740
-
2741
- /**
2742
- * Create a lookup table for the token program's default accounts
2743
- *
2744
- * @param rpc Rpc connection to use
2745
- * @param payer Payer of the transaction fees
2746
- * @param authority Authority of the lookup table
2747
- * @param mints Optional array of mint public keys to include in
2748
- * the lookup table
2749
- * @param additionalAccounts Optional array of additional account public keys
2750
- * to include in the lookup table
2751
- *
2752
- * @return Transaction signatures and the address of the created lookup table
2753
- */
2754
- async function createTokenProgramLookupTable(rpc, payer, authority, mints, additionalAccounts) {
2755
- const recentSlot = await rpc.getSlot('finalized');
2756
- const { instructions, address } = await CompressedTokenProgram.createTokenProgramLookupTable({
2757
- payer: payer.publicKey,
2758
- authority: authority.publicKey,
2759
- mints,
2760
- remainingAccounts: additionalAccounts,
2761
- recentSlot,
2762
- });
2763
- const additionalSigners = stateless_js.dedupeSigner(payer, [authority]);
2764
- const blockhashCtx = await rpc.getLatestBlockhash();
2765
- const signedTx = stateless_js.buildAndSignTx([instructions[0]], payer, blockhashCtx.blockhash, additionalSigners);
2766
- /// Must wait for the first instruction to be finalized.
2767
- const txId = await stateless_js.sendAndConfirmTx(rpc, signedTx, { commitment: 'finalized' }, blockhashCtx);
2768
- const blockhashCtx2 = await rpc.getLatestBlockhash();
2769
- const signedTx2 = stateless_js.buildAndSignTx([instructions[1]], payer, blockhashCtx2.blockhash, additionalSigners);
2770
- const txId2 = await stateless_js.sendAndConfirmTx(rpc, signedTx2, { commitment: 'finalized' }, blockhashCtx2);
2771
- return { txIds: [txId, txId2], address };
2772
- }
2773
-
2774
- /**
2775
- * Compress SPL tokens into compressed token format
2776
- *
2777
- * @param rpc Rpc connection to use
2778
- * @param payer Payer of the transaction fees
2779
- * @param mint Mint of the token to compress
2780
- * @param owner Owner of the token account
2781
- * @param tokenAccount Token account to compress
2782
- * @param outputStateTree State tree to insert the compressed token account into
2783
- * @param remainingAmount Optional: amount to leave in token account. Default: 0
2784
- * @param confirmOptions Options for confirming the transaction
2785
- *
2786
- * @return Signature of the confirmed transaction
2787
- */
2788
- async function compressSplTokenAccount(rpc, payer, mint, owner, tokenAccount, outputStateTree, remainingAmount, confirmOptions, tokenProgramId) {
2789
- tokenProgramId = tokenProgramId
2790
- ? tokenProgramId
2791
- : await CompressedTokenProgram.get_mint_program_id(mint, rpc);
2792
- const compressIx = await CompressedTokenProgram.compressSplTokenAccount({
2793
- feePayer: payer.publicKey,
2794
- authority: owner.publicKey,
2795
- tokenAccount,
2796
- mint,
2797
- remainingAmount,
2798
- outputStateTree,
2799
- tokenProgramId,
2800
- });
2801
- const blockhashCtx = await rpc.getLatestBlockhash();
2802
- const additionalSigners = stateless_js.dedupeSigner(payer, [owner]);
2803
- const signedTx = stateless_js.buildAndSignTx([
2804
- web3_js.ComputeBudgetProgram.setComputeUnitLimit({
2805
- units: 1000000,
2806
- }),
2807
- compressIx,
2808
- ], payer, blockhashCtx.blockhash, additionalSigners);
2809
- const txId = await stateless_js.sendAndConfirmTx(rpc, signedTx, confirmOptions, blockhashCtx);
2810
- return txId;
2811
- }
2812
-
2813
- exports.CPI_AUTHORITY_SEED = CPI_AUTHORITY_SEED;
2814
- exports.CompressedTokenProgram = CompressedTokenProgram;
2815
- exports.IDL = IDL;
2816
- exports.POOL_SEED = POOL_SEED;
2817
- exports.SPL_TOKEN_MINT_RENT_EXEMPT_BALANCE = SPL_TOKEN_MINT_RENT_EXEMPT_BALANCE;
2818
- exports.approveAndMintTo = approveAndMintTo;
2819
- exports.compress = compress;
2820
- exports.compressSplTokenAccount = compressSplTokenAccount;
2821
- exports.createDecompressOutputState = createDecompressOutputState;
2822
- exports.createMint = createMint;
2823
- exports.createTokenPool = createTokenPool;
2824
- exports.createTokenProgramLookupTable = createTokenProgramLookupTable;
2825
- exports.createTransferOutputState = createTransferOutputState;
2826
- exports.decompress = decompress;
2827
- exports.mergeTokenAccounts = mergeTokenAccounts;
2828
- exports.mintTo = mintTo;
2829
- exports.packCompressedTokenAccounts = packCompressedTokenAccounts;
2830
- exports.parseTokenData = parseTokenData;
2831
- exports.selectMinCompressedTokenAccountsForTransfer = selectMinCompressedTokenAccountsForTransfer;
2832
- exports.sumUpTokenAmount = sumUpTokenAmount;
2833
- exports.transfer = transfer;
2834
- exports.validateSameTokenOwner = validateSameTokenOwner;
1
+ "use strict";var t=require("@lightprotocol/stateless.js"),e=require("@solana/web3.js"),i=require("@solana/spl-token"),n=require("@coral-xyz/borsh"),r=require("buffer");function o(e){const{inputCompressedTokenAccounts:i,outputStateTrees:n,remainingAccounts:r=[],rootIndices:o,tokenTransferOutputs:s}=e,a=r.slice();let u=null;i.length>0&&i[0].parsed.delegate&&(u=t.getIndexOrAdd(a,i[0].parsed.delegate));const m=[];i.forEach(((e,i)=>{const n=t.getIndexOrAdd(a,e.compressedAccount.merkleTree),r=t.getIndexOrAdd(a,e.compressedAccount.nullifierQueue);m.push({amount:e.parsed.amount,delegateIndex:u,merkleContext:{merkleTreePubkeyIndex:n,nullifierQueuePubkeyIndex:r,leafIndex:e.compressedAccount.leafIndex,queueIndex:null},rootIndex:o[i],lamports:e.compressedAccount.lamports.eq(t.bn(0))?null:e.compressedAccount.lamports,tlv:null})}));const h=t.padOutputStateMerkleTrees(n,s.length,i.map((t=>t.compressedAccount))),l=[];h.forEach(((e,i)=>{var n;const r=t.getIndexOrAdd(a,e);l.push({owner:s[i].owner,amount:s[i].amount,lamports:(null===(n=s[i].lamports)||void 0===n?void 0:n.eq(t.bn(0)))?null:s[i].lamports,merkleTreeIndex:r,tlv:null})}));const d=a.map((t=>({pubkey:t,isWritable:1,isSigner:0})));return{inputTokenDataWithContext:m,remainingAccountMetas:d,packedOutputTokenData:l}}const s=Buffer.from("pool"),a=Buffer.from("cpi_authority"),u=Buffer.from([23,169,27,122,147,169,209,152]),m=Buffer.from([241,34,48,186,37,179,123,192]),h=Buffer.from([163,52,200,231,140,3,69,186]),l=Buffer.from([112,230,105,101,145,202,157,97]);var d="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function c(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}function p(t){if(t.__esModule)return t;var e=t.default;if("function"==typeof e){var i=function t(){return this instanceof t?Reflect.construct(e,arguments,this.constructor):e.apply(this,arguments)};i.prototype=e.prototype}else i={};return Object.defineProperty(i,"__esModule",{value:1}),Object.keys(t).forEach((function(e){var n=Object.getOwnPropertyDescriptor(t,e);Object.defineProperty(i,e,n.get?n:{enumerable:1,get:function(){return t[e]}})})),i}var g={exports:{}},f=p(Object.freeze({__proto__:null,default:{}}));!function(t,e){function i(t,e){if(!t)throw new Error(e||"Assertion failed")}function n(t,e){t.super_=e;var i=function(){};i.prototype=e.prototype,t.prototype=new i,t.prototype.constructor=t}function r(t,e,i){if(r.isBN(t))return t;this.negative=0,this.words=null,this.length=0,this.red=null,null!==t&&("le"!==e&&"be"!==e||(i=e,e=10),this._init(t||0,e||10,i||"be"))}var o;"object"==typeof g?g.exports=r:e.BN=r,r.BN=r,r.wordSize=26;try{o="undefined"!=typeof window&&void 0!==window.Buffer?window.Buffer:f.Buffer}catch(t){}function s(t,e){var n=t.charCodeAt(e);return n>=48&&n<=57?n-48:n>=65&&n<=70?n-55:n>=97&&n<=102?n-87:void i(0,"Invalid character in "+t)}function a(t,e,i){var n=s(t,i);return i-1>=e&&(n|=s(t,i-1)<<4),n}function u(t,e,n,r){for(var o=0,s=0,a=Math.min(t.length,n),u=e;u<a;u++){var m=t.charCodeAt(u)-48;o*=r,s=m>=49?m-49+10:m>=17?m-17+10:m,i(m>=0&&s<r,"Invalid character"),o+=s}return o}function m(t,e){t.words=e.words,t.length=e.length,t.negative=e.negative,t.red=e.red}if(r.isBN=function(t){return t instanceof r?1:null!==t&&"object"==typeof t&&t.constructor.wordSize===r.wordSize&&Array.isArray(t.words)},r.max=function(t,e){return t.cmp(e)>0?t:e},r.min=function(t,e){return t.cmp(e)<0?t:e},r.prototype._init=function(t,e,n){if("number"==typeof t)return this._initNumber(t,e,n);if("object"==typeof t)return this._initArray(t,e,n);"hex"===e&&(e=16),i(e===(0|e)&&e>=2&&e<=36);var r=0;"-"===(t=t.toString().replace(/\s+/g,""))[0]&&(r++,this.negative=1),r<t.length&&(16===e?this._parseHex(t,r,n):(this._parseBase(t,e,r),"le"===n&&this._initArray(this.toArray(),e,n)))},r.prototype._initNumber=function(t,e,n){t<0&&(this.negative=1,t=-t),t<67108864?(this.words=[67108863&t],this.length=1):t<4503599627370496?(this.words=[67108863&t,t/67108864&67108863],this.length=2):(i(t<9007199254740992),this.words=[67108863&t,t/67108864&67108863,1],this.length=3),"le"===n&&this._initArray(this.toArray(),e,n)},r.prototype._initArray=function(t,e,n){if(i("number"==typeof t.length),t.length<=0)return this.words=[0],this.length=1,this;this.length=Math.ceil(t.length/3),this.words=new Array(this.length);for(var r=0;r<this.length;r++)this.words[r]=0;var o,s,a=0;if("be"===n)for(r=t.length-1,o=0;r>=0;r-=3)s=t[r]|t[r-1]<<8|t[r-2]<<16,this.words[o]|=s<<a&67108863,this.words[o+1]=s>>>26-a&67108863,(a+=24)>=26&&(a-=26,o++);else if("le"===n)for(r=0,o=0;r<t.length;r+=3)s=t[r]|t[r+1]<<8|t[r+2]<<16,this.words[o]|=s<<a&67108863,this.words[o+1]=s>>>26-a&67108863,(a+=24)>=26&&(a-=26,o++);return this._strip()},r.prototype._parseHex=function(t,e,i){this.length=Math.ceil((t.length-e)/6),this.words=new Array(this.length);for(var n=0;n<this.length;n++)this.words[n]=0;var r,o=0,s=0;if("be"===i)for(n=t.length-1;n>=e;n-=2)r=a(t,e,n)<<o,this.words[s]|=67108863&r,o>=18?(o-=18,s+=1,this.words[s]|=r>>>26):o+=8;else for(n=(t.length-e)%2==0?e+1:e;n<t.length;n+=2)r=a(t,e,n)<<o,this.words[s]|=67108863&r,o>=18?(o-=18,s+=1,this.words[s]|=r>>>26):o+=8;this._strip()},r.prototype._parseBase=function(t,e,i){this.words=[0],this.length=1;for(var n=0,r=1;r<=67108863;r*=e)n++;n--,r=r/e|0;for(var o=t.length-i,s=o%n,a=Math.min(o,o-s)+i,m=0,h=i;h<a;h+=n)m=u(t,h,h+n,e),this.imuln(r),this.words[0]+m<67108864?this.words[0]+=m:this._iaddn(m);if(0!==s){var l=1;for(m=u(t,h,t.length,e),h=0;h<s;h++)l*=e;this.imuln(l),this.words[0]+m<67108864?this.words[0]+=m:this._iaddn(m)}this._strip()},r.prototype.copy=function(t){t.words=new Array(this.length);for(var e=0;e<this.length;e++)t.words[e]=this.words[e];t.length=this.length,t.negative=this.negative,t.red=this.red},r.prototype._move=function(t){m(t,this)},r.prototype.clone=function(){var t=new r(null);return this.copy(t),t},r.prototype._expand=function(t){for(;this.length<t;)this.words[this.length++]=0;return this},r.prototype._strip=function(){for(;this.length>1&&0===this.words[this.length-1];)this.length--;return this._normSign()},r.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},"undefined"!=typeof Symbol&&"function"==typeof Symbol.for)try{r.prototype[Symbol.for("nodejs.util.inspect.custom")]=h}catch(t){r.prototype.inspect=h}else r.prototype.inspect=h;function h(){return(this.red?"<BN-R: ":"<BN: ")+this.toString(16)+">"}var l=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],d=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],c=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function p(t,e,i){i.negative=e.negative^t.negative;var n=t.length+e.length|0;i.length=n,n=n-1|0;var r=0|t.words[0],o=0|e.words[0],s=r*o,a=67108863&s,u=s/67108864|0;i.words[0]=a;for(var m=1;m<n;m++){for(var h=u>>>26,l=67108863&u,d=Math.min(m,e.length-1),c=Math.max(0,m-t.length+1);c<=d;c++){var p=m-c|0;h+=(s=(r=0|t.words[p])*(o=0|e.words[c])+l)/67108864|0,l=67108863&s}i.words[m]=0|l,u=0|h}return 0!==u?i.words[m]=0|u:i.length--,i._strip()}r.prototype.toString=function(t,e){var n;if(e=0|e||1,16===(t=t||10)||"hex"===t){n="";for(var r=0,o=0,s=0;s<this.length;s++){var a=this.words[s],u=(16777215&(a<<r|o)).toString(16);o=a>>>24-r&16777215,(r+=2)>=26&&(r-=26,s--),n=0!==o||s!==this.length-1?l[6-u.length]+u+n:u+n}for(0!==o&&(n=o.toString(16)+n);n.length%e!=0;)n="0"+n;return 0!==this.negative&&(n="-"+n),n}if(t===(0|t)&&t>=2&&t<=36){var m=d[t],h=c[t];n="";var p=this.clone();for(p.negative=0;!p.isZero();){var g=p.modrn(h).toString(t);n=(p=p.idivn(h)).isZero()?g+n:l[m-g.length]+g+n}for(this.isZero()&&(n="0"+n);n.length%e!=0;)n="0"+n;return 0!==this.negative&&(n="-"+n),n}i(0,"Base should be between 2 and 36")},r.prototype.toNumber=function(){var t=this.words[0];return 2===this.length?t+=67108864*this.words[1]:3===this.length&&1===this.words[2]?t+=4503599627370496+67108864*this.words[1]:this.length>2&&i(0,"Number can only safely store up to 53 bits"),0!==this.negative?-t:t},r.prototype.toJSON=function(){return this.toString(16,2)},o&&(r.prototype.toBuffer=function(t,e){return this.toArrayLike(o,t,e)}),r.prototype.toArray=function(t,e){return this.toArrayLike(Array,t,e)},r.prototype.toArrayLike=function(t,e,n){this._strip();var r=this.byteLength(),o=n||Math.max(1,r);i(r<=o,"byte array longer than desired length"),i(o>0,"Requested array length <= 0");var s=function(t,e){return t.allocUnsafe?t.allocUnsafe(e):new t(e)}(t,o);return this["_toArrayLike"+("le"===e?"LE":"BE")](s,r),s},r.prototype._toArrayLikeLE=function(t){for(var e=0,i=0,n=0,r=0;n<this.length;n++){var o=this.words[n]<<r|i;t[e++]=255&o,e<t.length&&(t[e++]=o>>8&255),e<t.length&&(t[e++]=o>>16&255),6===r?(e<t.length&&(t[e++]=o>>24&255),i=0,r=0):(i=o>>>24,r+=2)}if(e<t.length)for(t[e++]=i;e<t.length;)t[e++]=0},r.prototype._toArrayLikeBE=function(t){for(var e=t.length-1,i=0,n=0,r=0;n<this.length;n++){var o=this.words[n]<<r|i;t[e--]=255&o,e>=0&&(t[e--]=o>>8&255),e>=0&&(t[e--]=o>>16&255),6===r?(e>=0&&(t[e--]=o>>24&255),i=0,r=0):(i=o>>>24,r+=2)}if(e>=0)for(t[e--]=i;e>=0;)t[e--]=0},Math.clz32?r.prototype._countBits=function(t){return 32-Math.clz32(t)}:r.prototype._countBits=function(t){var e=t,i=0;return e>=4096&&(i+=13,e>>>=13),e>=64&&(i+=7,e>>>=7),e>=8&&(i+=4,e>>>=4),e>=2&&(i+=2,e>>>=2),i+e},r.prototype._zeroBits=function(t){if(0===t)return 26;var e=t,i=0;return 0==(8191&e)&&(i+=13,e>>>=13),0==(127&e)&&(i+=7,e>>>=7),0==(15&e)&&(i+=4,e>>>=4),0==(3&e)&&(i+=2,e>>>=2),0==(1&e)&&i++,i},r.prototype.bitLength=function(){var t=this.words[this.length-1],e=this._countBits(t);return 26*(this.length-1)+e},r.prototype.zeroBits=function(){if(this.isZero())return 0;for(var t=0,e=0;e<this.length;e++){var i=this._zeroBits(this.words[e]);if(t+=i,26!==i)break}return t},r.prototype.byteLength=function(){return Math.ceil(this.bitLength()/8)},r.prototype.toTwos=function(t){return 0!==this.negative?this.abs().inotn(t).iaddn(1):this.clone()},r.prototype.fromTwos=function(t){return this.testn(t-1)?this.notn(t).iaddn(1).ineg():this.clone()},r.prototype.isNeg=function(){return 0!==this.negative},r.prototype.neg=function(){return this.clone().ineg()},r.prototype.ineg=function(){return this.isZero()||(this.negative^=1),this},r.prototype.iuor=function(t){for(;this.length<t.length;)this.words[this.length++]=0;for(var e=0;e<t.length;e++)this.words[e]=this.words[e]|t.words[e];return this._strip()},r.prototype.ior=function(t){return i(0==(this.negative|t.negative)),this.iuor(t)},r.prototype.or=function(t){return this.length>t.length?this.clone().ior(t):t.clone().ior(this)},r.prototype.uor=function(t){return this.length>t.length?this.clone().iuor(t):t.clone().iuor(this)},r.prototype.iuand=function(t){var e;e=this.length>t.length?t:this;for(var i=0;i<e.length;i++)this.words[i]=this.words[i]&t.words[i];return this.length=e.length,this._strip()},r.prototype.iand=function(t){return i(0==(this.negative|t.negative)),this.iuand(t)},r.prototype.and=function(t){return this.length>t.length?this.clone().iand(t):t.clone().iand(this)},r.prototype.uand=function(t){return this.length>t.length?this.clone().iuand(t):t.clone().iuand(this)},r.prototype.iuxor=function(t){var e,i;this.length>t.length?(e=this,i=t):(e=t,i=this);for(var n=0;n<i.length;n++)this.words[n]=e.words[n]^i.words[n];if(this!==e)for(;n<e.length;n++)this.words[n]=e.words[n];return this.length=e.length,this._strip()},r.prototype.ixor=function(t){return i(0==(this.negative|t.negative)),this.iuxor(t)},r.prototype.xor=function(t){return this.length>t.length?this.clone().ixor(t):t.clone().ixor(this)},r.prototype.uxor=function(t){return this.length>t.length?this.clone().iuxor(t):t.clone().iuxor(this)},r.prototype.inotn=function(t){i("number"==typeof t&&t>=0);var e=0|Math.ceil(t/26),n=t%26;this._expand(e),n>0&&e--;for(var r=0;r<e;r++)this.words[r]=67108863&~this.words[r];return n>0&&(this.words[r]=~this.words[r]&67108863>>26-n),this._strip()},r.prototype.notn=function(t){return this.clone().inotn(t)},r.prototype.setn=function(t,e){i("number"==typeof t&&t>=0);var n=t/26|0,r=t%26;return this._expand(n+1),this.words[n]=e?this.words[n]|1<<r:this.words[n]&~(1<<r),this._strip()},r.prototype.iadd=function(t){var e,i,n;if(0!==this.negative&&0===t.negative)return this.negative=0,e=this.isub(t),this.negative^=1,this._normSign();if(0===this.negative&&0!==t.negative)return t.negative=0,e=this.isub(t),t.negative=1,e._normSign();this.length>t.length?(i=this,n=t):(i=t,n=this);for(var r=0,o=0;o<n.length;o++)e=(0|i.words[o])+(0|n.words[o])+r,this.words[o]=67108863&e,r=e>>>26;for(;0!==r&&o<i.length;o++)e=(0|i.words[o])+r,this.words[o]=67108863&e,r=e>>>26;if(this.length=i.length,0!==r)this.words[this.length]=r,this.length++;else if(i!==this)for(;o<i.length;o++)this.words[o]=i.words[o];return this},r.prototype.add=function(t){var e;return 0!==t.negative&&0===this.negative?(t.negative=0,e=this.sub(t),t.negative^=1,e):0===t.negative&&0!==this.negative?(this.negative=0,e=t.sub(this),this.negative=1,e):this.length>t.length?this.clone().iadd(t):t.clone().iadd(this)},r.prototype.isub=function(t){if(0!==t.negative){t.negative=0;var e=this.iadd(t);return t.negative=1,e._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(t),this.negative=1,this._normSign();var i,n,r=this.cmp(t);if(0===r)return this.negative=0,this.length=1,this.words[0]=0,this;r>0?(i=this,n=t):(i=t,n=this);for(var o=0,s=0;s<n.length;s++)o=(e=(0|i.words[s])-(0|n.words[s])+o)>>26,this.words[s]=67108863&e;for(;0!==o&&s<i.length;s++)o=(e=(0|i.words[s])+o)>>26,this.words[s]=67108863&e;if(0===o&&s<i.length&&i!==this)for(;s<i.length;s++)this.words[s]=i.words[s];return this.length=Math.max(this.length,s),i!==this&&(this.negative=1),this._strip()},r.prototype.sub=function(t){return this.clone().isub(t)};var y=function(t,e,i){var n,r,o,s=t.words,a=e.words,u=i.words,m=0,h=0|s[0],l=8191&h,d=h>>>13,c=0|s[1],p=8191&c,g=c>>>13,f=0|s[2],y=8191&f,M=f>>>13,v=0|s[3],w=8191&v,b=v>>>13,k=0|s[4],P=8191&k,S=k>>>13,A=0|s[5],T=8191&A,C=A>>>13,I=0|s[6],x=8191&I,_=I>>>13,O=0|s[7],D=8191&O,E=O>>>13,B=0|s[8],K=8191&B,L=B>>>13,R=0|s[9],N=8191&R,W=R>>>13,q=0|a[0],F=8191&q,U=q>>>13,z=0|a[1],Z=8191&z,H=z>>>13,j=0|a[2],V=8191&j,G=j>>>13,Q=0|a[3],$=8191&Q,X=Q>>>13,Y=0|a[4],J=8191&Y,tt=Y>>>13,et=0|a[5],it=8191&et,nt=et>>>13,rt=0|a[6],ot=8191&rt,st=rt>>>13,at=0|a[7],ut=8191&at,mt=at>>>13,ht=0|a[8],lt=8191&ht,dt=ht>>>13,ct=0|a[9],pt=8191&ct,gt=ct>>>13;i.negative=t.negative^e.negative,i.length=19;var ft=(m+(n=Math.imul(l,F))|0)+((8191&(r=(r=Math.imul(l,U))+Math.imul(d,F)|0))<<13)|0;m=((o=Math.imul(d,U))+(r>>>13)|0)+(ft>>>26)|0,ft&=67108863,n=Math.imul(p,F),r=(r=Math.imul(p,U))+Math.imul(g,F)|0,o=Math.imul(g,U);var yt=(m+(n=n+Math.imul(l,Z)|0)|0)+((8191&(r=(r=r+Math.imul(l,H)|0)+Math.imul(d,Z)|0))<<13)|0;m=((o=o+Math.imul(d,H)|0)+(r>>>13)|0)+(yt>>>26)|0,yt&=67108863,n=Math.imul(y,F),r=(r=Math.imul(y,U))+Math.imul(M,F)|0,o=Math.imul(M,U),n=n+Math.imul(p,Z)|0,r=(r=r+Math.imul(p,H)|0)+Math.imul(g,Z)|0,o=o+Math.imul(g,H)|0;var Mt=(m+(n=n+Math.imul(l,V)|0)|0)+((8191&(r=(r=r+Math.imul(l,G)|0)+Math.imul(d,V)|0))<<13)|0;m=((o=o+Math.imul(d,G)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,n=Math.imul(w,F),r=(r=Math.imul(w,U))+Math.imul(b,F)|0,o=Math.imul(b,U),n=n+Math.imul(y,Z)|0,r=(r=r+Math.imul(y,H)|0)+Math.imul(M,Z)|0,o=o+Math.imul(M,H)|0,n=n+Math.imul(p,V)|0,r=(r=r+Math.imul(p,G)|0)+Math.imul(g,V)|0,o=o+Math.imul(g,G)|0;var vt=(m+(n=n+Math.imul(l,$)|0)|0)+((8191&(r=(r=r+Math.imul(l,X)|0)+Math.imul(d,$)|0))<<13)|0;m=((o=o+Math.imul(d,X)|0)+(r>>>13)|0)+(vt>>>26)|0,vt&=67108863,n=Math.imul(P,F),r=(r=Math.imul(P,U))+Math.imul(S,F)|0,o=Math.imul(S,U),n=n+Math.imul(w,Z)|0,r=(r=r+Math.imul(w,H)|0)+Math.imul(b,Z)|0,o=o+Math.imul(b,H)|0,n=n+Math.imul(y,V)|0,r=(r=r+Math.imul(y,G)|0)+Math.imul(M,V)|0,o=o+Math.imul(M,G)|0,n=n+Math.imul(p,$)|0,r=(r=r+Math.imul(p,X)|0)+Math.imul(g,$)|0,o=o+Math.imul(g,X)|0;var wt=(m+(n=n+Math.imul(l,J)|0)|0)+((8191&(r=(r=r+Math.imul(l,tt)|0)+Math.imul(d,J)|0))<<13)|0;m=((o=o+Math.imul(d,tt)|0)+(r>>>13)|0)+(wt>>>26)|0,wt&=67108863,n=Math.imul(T,F),r=(r=Math.imul(T,U))+Math.imul(C,F)|0,o=Math.imul(C,U),n=n+Math.imul(P,Z)|0,r=(r=r+Math.imul(P,H)|0)+Math.imul(S,Z)|0,o=o+Math.imul(S,H)|0,n=n+Math.imul(w,V)|0,r=(r=r+Math.imul(w,G)|0)+Math.imul(b,V)|0,o=o+Math.imul(b,G)|0,n=n+Math.imul(y,$)|0,r=(r=r+Math.imul(y,X)|0)+Math.imul(M,$)|0,o=o+Math.imul(M,X)|0,n=n+Math.imul(p,J)|0,r=(r=r+Math.imul(p,tt)|0)+Math.imul(g,J)|0,o=o+Math.imul(g,tt)|0;var bt=(m+(n=n+Math.imul(l,it)|0)|0)+((8191&(r=(r=r+Math.imul(l,nt)|0)+Math.imul(d,it)|0))<<13)|0;m=((o=o+Math.imul(d,nt)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863,n=Math.imul(x,F),r=(r=Math.imul(x,U))+Math.imul(_,F)|0,o=Math.imul(_,U),n=n+Math.imul(T,Z)|0,r=(r=r+Math.imul(T,H)|0)+Math.imul(C,Z)|0,o=o+Math.imul(C,H)|0,n=n+Math.imul(P,V)|0,r=(r=r+Math.imul(P,G)|0)+Math.imul(S,V)|0,o=o+Math.imul(S,G)|0,n=n+Math.imul(w,$)|0,r=(r=r+Math.imul(w,X)|0)+Math.imul(b,$)|0,o=o+Math.imul(b,X)|0,n=n+Math.imul(y,J)|0,r=(r=r+Math.imul(y,tt)|0)+Math.imul(M,J)|0,o=o+Math.imul(M,tt)|0,n=n+Math.imul(p,it)|0,r=(r=r+Math.imul(p,nt)|0)+Math.imul(g,it)|0,o=o+Math.imul(g,nt)|0;var kt=(m+(n=n+Math.imul(l,ot)|0)|0)+((8191&(r=(r=r+Math.imul(l,st)|0)+Math.imul(d,ot)|0))<<13)|0;m=((o=o+Math.imul(d,st)|0)+(r>>>13)|0)+(kt>>>26)|0,kt&=67108863,n=Math.imul(D,F),r=(r=Math.imul(D,U))+Math.imul(E,F)|0,o=Math.imul(E,U),n=n+Math.imul(x,Z)|0,r=(r=r+Math.imul(x,H)|0)+Math.imul(_,Z)|0,o=o+Math.imul(_,H)|0,n=n+Math.imul(T,V)|0,r=(r=r+Math.imul(T,G)|0)+Math.imul(C,V)|0,o=o+Math.imul(C,G)|0,n=n+Math.imul(P,$)|0,r=(r=r+Math.imul(P,X)|0)+Math.imul(S,$)|0,o=o+Math.imul(S,X)|0,n=n+Math.imul(w,J)|0,r=(r=r+Math.imul(w,tt)|0)+Math.imul(b,J)|0,o=o+Math.imul(b,tt)|0,n=n+Math.imul(y,it)|0,r=(r=r+Math.imul(y,nt)|0)+Math.imul(M,it)|0,o=o+Math.imul(M,nt)|0,n=n+Math.imul(p,ot)|0,r=(r=r+Math.imul(p,st)|0)+Math.imul(g,ot)|0,o=o+Math.imul(g,st)|0;var Pt=(m+(n=n+Math.imul(l,ut)|0)|0)+((8191&(r=(r=r+Math.imul(l,mt)|0)+Math.imul(d,ut)|0))<<13)|0;m=((o=o+Math.imul(d,mt)|0)+(r>>>13)|0)+(Pt>>>26)|0,Pt&=67108863,n=Math.imul(K,F),r=(r=Math.imul(K,U))+Math.imul(L,F)|0,o=Math.imul(L,U),n=n+Math.imul(D,Z)|0,r=(r=r+Math.imul(D,H)|0)+Math.imul(E,Z)|0,o=o+Math.imul(E,H)|0,n=n+Math.imul(x,V)|0,r=(r=r+Math.imul(x,G)|0)+Math.imul(_,V)|0,o=o+Math.imul(_,G)|0,n=n+Math.imul(T,$)|0,r=(r=r+Math.imul(T,X)|0)+Math.imul(C,$)|0,o=o+Math.imul(C,X)|0,n=n+Math.imul(P,J)|0,r=(r=r+Math.imul(P,tt)|0)+Math.imul(S,J)|0,o=o+Math.imul(S,tt)|0,n=n+Math.imul(w,it)|0,r=(r=r+Math.imul(w,nt)|0)+Math.imul(b,it)|0,o=o+Math.imul(b,nt)|0,n=n+Math.imul(y,ot)|0,r=(r=r+Math.imul(y,st)|0)+Math.imul(M,ot)|0,o=o+Math.imul(M,st)|0,n=n+Math.imul(p,ut)|0,r=(r=r+Math.imul(p,mt)|0)+Math.imul(g,ut)|0,o=o+Math.imul(g,mt)|0;var St=(m+(n=n+Math.imul(l,lt)|0)|0)+((8191&(r=(r=r+Math.imul(l,dt)|0)+Math.imul(d,lt)|0))<<13)|0;m=((o=o+Math.imul(d,dt)|0)+(r>>>13)|0)+(St>>>26)|0,St&=67108863,n=Math.imul(N,F),r=(r=Math.imul(N,U))+Math.imul(W,F)|0,o=Math.imul(W,U),n=n+Math.imul(K,Z)|0,r=(r=r+Math.imul(K,H)|0)+Math.imul(L,Z)|0,o=o+Math.imul(L,H)|0,n=n+Math.imul(D,V)|0,r=(r=r+Math.imul(D,G)|0)+Math.imul(E,V)|0,o=o+Math.imul(E,G)|0,n=n+Math.imul(x,$)|0,r=(r=r+Math.imul(x,X)|0)+Math.imul(_,$)|0,o=o+Math.imul(_,X)|0,n=n+Math.imul(T,J)|0,r=(r=r+Math.imul(T,tt)|0)+Math.imul(C,J)|0,o=o+Math.imul(C,tt)|0,n=n+Math.imul(P,it)|0,r=(r=r+Math.imul(P,nt)|0)+Math.imul(S,it)|0,o=o+Math.imul(S,nt)|0,n=n+Math.imul(w,ot)|0,r=(r=r+Math.imul(w,st)|0)+Math.imul(b,ot)|0,o=o+Math.imul(b,st)|0,n=n+Math.imul(y,ut)|0,r=(r=r+Math.imul(y,mt)|0)+Math.imul(M,ut)|0,o=o+Math.imul(M,mt)|0,n=n+Math.imul(p,lt)|0,r=(r=r+Math.imul(p,dt)|0)+Math.imul(g,lt)|0,o=o+Math.imul(g,dt)|0;var At=(m+(n=n+Math.imul(l,pt)|0)|0)+((8191&(r=(r=r+Math.imul(l,gt)|0)+Math.imul(d,pt)|0))<<13)|0;m=((o=o+Math.imul(d,gt)|0)+(r>>>13)|0)+(At>>>26)|0,At&=67108863,n=Math.imul(N,Z),r=(r=Math.imul(N,H))+Math.imul(W,Z)|0,o=Math.imul(W,H),n=n+Math.imul(K,V)|0,r=(r=r+Math.imul(K,G)|0)+Math.imul(L,V)|0,o=o+Math.imul(L,G)|0,n=n+Math.imul(D,$)|0,r=(r=r+Math.imul(D,X)|0)+Math.imul(E,$)|0,o=o+Math.imul(E,X)|0,n=n+Math.imul(x,J)|0,r=(r=r+Math.imul(x,tt)|0)+Math.imul(_,J)|0,o=o+Math.imul(_,tt)|0,n=n+Math.imul(T,it)|0,r=(r=r+Math.imul(T,nt)|0)+Math.imul(C,it)|0,o=o+Math.imul(C,nt)|0,n=n+Math.imul(P,ot)|0,r=(r=r+Math.imul(P,st)|0)+Math.imul(S,ot)|0,o=o+Math.imul(S,st)|0,n=n+Math.imul(w,ut)|0,r=(r=r+Math.imul(w,mt)|0)+Math.imul(b,ut)|0,o=o+Math.imul(b,mt)|0,n=n+Math.imul(y,lt)|0,r=(r=r+Math.imul(y,dt)|0)+Math.imul(M,lt)|0,o=o+Math.imul(M,dt)|0;var Tt=(m+(n=n+Math.imul(p,pt)|0)|0)+((8191&(r=(r=r+Math.imul(p,gt)|0)+Math.imul(g,pt)|0))<<13)|0;m=((o=o+Math.imul(g,gt)|0)+(r>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,n=Math.imul(N,V),r=(r=Math.imul(N,G))+Math.imul(W,V)|0,o=Math.imul(W,G),n=n+Math.imul(K,$)|0,r=(r=r+Math.imul(K,X)|0)+Math.imul(L,$)|0,o=o+Math.imul(L,X)|0,n=n+Math.imul(D,J)|0,r=(r=r+Math.imul(D,tt)|0)+Math.imul(E,J)|0,o=o+Math.imul(E,tt)|0,n=n+Math.imul(x,it)|0,r=(r=r+Math.imul(x,nt)|0)+Math.imul(_,it)|0,o=o+Math.imul(_,nt)|0,n=n+Math.imul(T,ot)|0,r=(r=r+Math.imul(T,st)|0)+Math.imul(C,ot)|0,o=o+Math.imul(C,st)|0,n=n+Math.imul(P,ut)|0,r=(r=r+Math.imul(P,mt)|0)+Math.imul(S,ut)|0,o=o+Math.imul(S,mt)|0,n=n+Math.imul(w,lt)|0,r=(r=r+Math.imul(w,dt)|0)+Math.imul(b,lt)|0,o=o+Math.imul(b,dt)|0;var Ct=(m+(n=n+Math.imul(y,pt)|0)|0)+((8191&(r=(r=r+Math.imul(y,gt)|0)+Math.imul(M,pt)|0))<<13)|0;m=((o=o+Math.imul(M,gt)|0)+(r>>>13)|0)+(Ct>>>26)|0,Ct&=67108863,n=Math.imul(N,$),r=(r=Math.imul(N,X))+Math.imul(W,$)|0,o=Math.imul(W,X),n=n+Math.imul(K,J)|0,r=(r=r+Math.imul(K,tt)|0)+Math.imul(L,J)|0,o=o+Math.imul(L,tt)|0,n=n+Math.imul(D,it)|0,r=(r=r+Math.imul(D,nt)|0)+Math.imul(E,it)|0,o=o+Math.imul(E,nt)|0,n=n+Math.imul(x,ot)|0,r=(r=r+Math.imul(x,st)|0)+Math.imul(_,ot)|0,o=o+Math.imul(_,st)|0,n=n+Math.imul(T,ut)|0,r=(r=r+Math.imul(T,mt)|0)+Math.imul(C,ut)|0,o=o+Math.imul(C,mt)|0,n=n+Math.imul(P,lt)|0,r=(r=r+Math.imul(P,dt)|0)+Math.imul(S,lt)|0,o=o+Math.imul(S,dt)|0;var It=(m+(n=n+Math.imul(w,pt)|0)|0)+((8191&(r=(r=r+Math.imul(w,gt)|0)+Math.imul(b,pt)|0))<<13)|0;m=((o=o+Math.imul(b,gt)|0)+(r>>>13)|0)+(It>>>26)|0,It&=67108863,n=Math.imul(N,J),r=(r=Math.imul(N,tt))+Math.imul(W,J)|0,o=Math.imul(W,tt),n=n+Math.imul(K,it)|0,r=(r=r+Math.imul(K,nt)|0)+Math.imul(L,it)|0,o=o+Math.imul(L,nt)|0,n=n+Math.imul(D,ot)|0,r=(r=r+Math.imul(D,st)|0)+Math.imul(E,ot)|0,o=o+Math.imul(E,st)|0,n=n+Math.imul(x,ut)|0,r=(r=r+Math.imul(x,mt)|0)+Math.imul(_,ut)|0,o=o+Math.imul(_,mt)|0,n=n+Math.imul(T,lt)|0,r=(r=r+Math.imul(T,dt)|0)+Math.imul(C,lt)|0,o=o+Math.imul(C,dt)|0;var xt=(m+(n=n+Math.imul(P,pt)|0)|0)+((8191&(r=(r=r+Math.imul(P,gt)|0)+Math.imul(S,pt)|0))<<13)|0;m=((o=o+Math.imul(S,gt)|0)+(r>>>13)|0)+(xt>>>26)|0,xt&=67108863,n=Math.imul(N,it),r=(r=Math.imul(N,nt))+Math.imul(W,it)|0,o=Math.imul(W,nt),n=n+Math.imul(K,ot)|0,r=(r=r+Math.imul(K,st)|0)+Math.imul(L,ot)|0,o=o+Math.imul(L,st)|0,n=n+Math.imul(D,ut)|0,r=(r=r+Math.imul(D,mt)|0)+Math.imul(E,ut)|0,o=o+Math.imul(E,mt)|0,n=n+Math.imul(x,lt)|0,r=(r=r+Math.imul(x,dt)|0)+Math.imul(_,lt)|0,o=o+Math.imul(_,dt)|0;var _t=(m+(n=n+Math.imul(T,pt)|0)|0)+((8191&(r=(r=r+Math.imul(T,gt)|0)+Math.imul(C,pt)|0))<<13)|0;m=((o=o+Math.imul(C,gt)|0)+(r>>>13)|0)+(_t>>>26)|0,_t&=67108863,n=Math.imul(N,ot),r=(r=Math.imul(N,st))+Math.imul(W,ot)|0,o=Math.imul(W,st),n=n+Math.imul(K,ut)|0,r=(r=r+Math.imul(K,mt)|0)+Math.imul(L,ut)|0,o=o+Math.imul(L,mt)|0,n=n+Math.imul(D,lt)|0,r=(r=r+Math.imul(D,dt)|0)+Math.imul(E,lt)|0,o=o+Math.imul(E,dt)|0;var Ot=(m+(n=n+Math.imul(x,pt)|0)|0)+((8191&(r=(r=r+Math.imul(x,gt)|0)+Math.imul(_,pt)|0))<<13)|0;m=((o=o+Math.imul(_,gt)|0)+(r>>>13)|0)+(Ot>>>26)|0,Ot&=67108863,n=Math.imul(N,ut),r=(r=Math.imul(N,mt))+Math.imul(W,ut)|0,o=Math.imul(W,mt),n=n+Math.imul(K,lt)|0,r=(r=r+Math.imul(K,dt)|0)+Math.imul(L,lt)|0,o=o+Math.imul(L,dt)|0;var Dt=(m+(n=n+Math.imul(D,pt)|0)|0)+((8191&(r=(r=r+Math.imul(D,gt)|0)+Math.imul(E,pt)|0))<<13)|0;m=((o=o+Math.imul(E,gt)|0)+(r>>>13)|0)+(Dt>>>26)|0,Dt&=67108863,n=Math.imul(N,lt),r=(r=Math.imul(N,dt))+Math.imul(W,lt)|0,o=Math.imul(W,dt);var Et=(m+(n=n+Math.imul(K,pt)|0)|0)+((8191&(r=(r=r+Math.imul(K,gt)|0)+Math.imul(L,pt)|0))<<13)|0;m=((o=o+Math.imul(L,gt)|0)+(r>>>13)|0)+(Et>>>26)|0,Et&=67108863;var Bt=(m+(n=Math.imul(N,pt))|0)+((8191&(r=(r=Math.imul(N,gt))+Math.imul(W,pt)|0))<<13)|0;return m=((o=Math.imul(W,gt))+(r>>>13)|0)+(Bt>>>26)|0,Bt&=67108863,u[0]=ft,u[1]=yt,u[2]=Mt,u[3]=vt,u[4]=wt,u[5]=bt,u[6]=kt,u[7]=Pt,u[8]=St,u[9]=At,u[10]=Tt,u[11]=Ct,u[12]=It,u[13]=xt,u[14]=_t,u[15]=Ot,u[16]=Dt,u[17]=Et,u[18]=Bt,0!==m&&(u[19]=m,i.length++),i};function M(t,e,i){i.negative=e.negative^t.negative,i.length=t.length+e.length;for(var n=0,r=0,o=0;o<i.length-1;o++){var s=r;r=0;for(var a=67108863&n,u=Math.min(o,e.length-1),m=Math.max(0,o-t.length+1);m<=u;m++){var h=o-m,l=(0|t.words[h])*(0|e.words[m]),d=67108863&l;a=67108863&(d=d+a|0),r+=(s=(s=s+(l/67108864|0)|0)+(d>>>26)|0)>>>26,s&=67108863}i.words[o]=a,n=s,s=r}return 0!==n?i.words[o]=n:i.length--,i._strip()}function v(t,e,i){return M(t,e,i)}Math.imul||(y=p),r.prototype.mulTo=function(t,e){var i=this.length+t.length;return 10===this.length&&10===t.length?y(this,t,e):i<63?p(this,t,e):i<1024?M(this,t,e):v(this,t,e)},r.prototype.mul=function(t){var e=new r(null);return e.words=new Array(this.length+t.length),this.mulTo(t,e)},r.prototype.mulf=function(t){var e=new r(null);return e.words=new Array(this.length+t.length),v(this,t,e)},r.prototype.imul=function(t){return this.clone().mulTo(t,this)},r.prototype.imuln=function(t){var e=t<0;e&&(t=-t),i("number"==typeof t),i(t<67108864);for(var n=0,r=0;r<this.length;r++){var o=(0|this.words[r])*t,s=(67108863&o)+(67108863&n);n>>=26,n+=o/67108864|0,n+=s>>>26,this.words[r]=67108863&s}return 0!==n&&(this.words[r]=n,this.length++),e?this.ineg():this},r.prototype.muln=function(t){return this.clone().imuln(t)},r.prototype.sqr=function(){return this.mul(this)},r.prototype.isqr=function(){return this.imul(this.clone())},r.prototype.pow=function(t){var e=function(t){for(var e=new Array(t.bitLength()),i=0;i<e.length;i++){var n=i/26|0,r=i%26;e[i]=t.words[n]>>>r&1}return e}(t);if(0===e.length)return new r(1);for(var i=this,n=0;n<e.length&&0===e[n];n++,i=i.sqr());if(++n<e.length)for(var o=i.sqr();n<e.length;n++,o=o.sqr())0!==e[n]&&(i=i.mul(o));return i},r.prototype.iushln=function(t){i("number"==typeof t&&t>=0);var e,n=t%26,r=(t-n)/26,o=67108863>>>26-n<<26-n;if(0!==n){var s=0;for(e=0;e<this.length;e++){var a=this.words[e]&o,u=(0|this.words[e])-a<<n;this.words[e]=u|s,s=a>>>26-n}s&&(this.words[e]=s,this.length++)}if(0!==r){for(e=this.length-1;e>=0;e--)this.words[e+r]=this.words[e];for(e=0;e<r;e++)this.words[e]=0;this.length+=r}return this._strip()},r.prototype.ishln=function(t){return i(0===this.negative),this.iushln(t)},r.prototype.iushrn=function(t,e,n){var r;i("number"==typeof t&&t>=0),r=e?(e-e%26)/26:0;var o=t%26,s=Math.min((t-o)/26,this.length),a=67108863^67108863>>>o<<o,u=n;if(r-=s,r=Math.max(0,r),u){for(var m=0;m<s;m++)u.words[m]=this.words[m];u.length=s}if(0===s);else if(this.length>s)for(this.length-=s,m=0;m<this.length;m++)this.words[m]=this.words[m+s];else this.words[0]=0,this.length=1;var h=0;for(m=this.length-1;m>=0&&(0!==h||m>=r);m--){var l=0|this.words[m];this.words[m]=h<<26-o|l>>>o,h=l&a}return u&&0!==h&&(u.words[u.length++]=h),0===this.length&&(this.words[0]=0,this.length=1),this._strip()},r.prototype.ishrn=function(t,e,n){return i(0===this.negative),this.iushrn(t,e,n)},r.prototype.shln=function(t){return this.clone().ishln(t)},r.prototype.ushln=function(t){return this.clone().iushln(t)},r.prototype.shrn=function(t){return this.clone().ishrn(t)},r.prototype.ushrn=function(t){return this.clone().iushrn(t)},r.prototype.testn=function(t){i("number"==typeof t&&t>=0);var e=t%26,n=(t-e)/26,r=1<<e;return this.length<=n?0:!!(this.words[n]&r)},r.prototype.imaskn=function(t){i("number"==typeof t&&t>=0);var e=t%26,n=(t-e)/26;if(i(0===this.negative,"imaskn works only with positive numbers"),this.length<=n)return this;if(0!==e&&n++,this.length=Math.min(n,this.length),0!==e){var r=67108863^67108863>>>e<<e;this.words[this.length-1]&=r}return this._strip()},r.prototype.maskn=function(t){return this.clone().imaskn(t)},r.prototype.iaddn=function(t){return i("number"==typeof t),i(t<67108864),t<0?this.isubn(-t):0!==this.negative?1===this.length&&(0|this.words[0])<=t?(this.words[0]=t-(0|this.words[0]),this.negative=0,this):(this.negative=0,this.isubn(t),this.negative=1,this):this._iaddn(t)},r.prototype._iaddn=function(t){this.words[0]+=t;for(var e=0;e<this.length&&this.words[e]>=67108864;e++)this.words[e]-=67108864,e===this.length-1?this.words[e+1]=1:this.words[e+1]++;return this.length=Math.max(this.length,e+1),this},r.prototype.isubn=function(t){if(i("number"==typeof t),i(t<67108864),t<0)return this.iaddn(-t);if(0!==this.negative)return this.negative=0,this.iaddn(t),this.negative=1,this;if(this.words[0]-=t,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var e=0;e<this.length&&this.words[e]<0;e++)this.words[e]+=67108864,this.words[e+1]-=1;return this._strip()},r.prototype.addn=function(t){return this.clone().iaddn(t)},r.prototype.subn=function(t){return this.clone().isubn(t)},r.prototype.iabs=function(){return this.negative=0,this},r.prototype.abs=function(){return this.clone().iabs()},r.prototype._ishlnsubmul=function(t,e,n){var r,o,s=t.length+n;this._expand(s);var a=0;for(r=0;r<t.length;r++){o=(0|this.words[r+n])+a;var u=(0|t.words[r])*e;a=((o-=67108863&u)>>26)-(u/67108864|0),this.words[r+n]=67108863&o}for(;r<this.length-n;r++)a=(o=(0|this.words[r+n])+a)>>26,this.words[r+n]=67108863&o;if(0===a)return this._strip();for(i(-1===a),a=0,r=0;r<this.length;r++)a=(o=-(0|this.words[r])+a)>>26,this.words[r]=67108863&o;return this.negative=1,this._strip()},r.prototype._wordDiv=function(t,e){var i=(this.length,t.length),n=this.clone(),o=t,s=0|o.words[o.length-1];0!=(i=26-this._countBits(s))&&(o=o.ushln(i),n.iushln(i),s=0|o.words[o.length-1]);var a,u=n.length-o.length;if("mod"!==e){(a=new r(null)).length=u+1,a.words=new Array(a.length);for(var m=0;m<a.length;m++)a.words[m]=0}var h=n.clone()._ishlnsubmul(o,1,u);0===h.negative&&(n=h,a&&(a.words[u]=1));for(var l=u-1;l>=0;l--){var d=67108864*(0|n.words[o.length+l])+(0|n.words[o.length+l-1]);for(d=Math.min(d/s|0,67108863),n._ishlnsubmul(o,d,l);0!==n.negative;)d--,n.negative=0,n._ishlnsubmul(o,1,l),n.isZero()||(n.negative^=1);a&&(a.words[l]=d)}return a&&a._strip(),n._strip(),"div"!==e&&0!==i&&n.iushrn(i),{div:a||null,mod:n}},r.prototype.divmod=function(t,e,n){return i(!t.isZero()),this.isZero()?{div:new r(0),mod:new r(0)}:0!==this.negative&&0===t.negative?(a=this.neg().divmod(t,e),"mod"!==e&&(o=a.div.neg()),"div"!==e&&(s=a.mod.neg(),n&&0!==s.negative&&s.iadd(t)),{div:o,mod:s}):0===this.negative&&0!==t.negative?(a=this.divmod(t.neg(),e),"mod"!==e&&(o=a.div.neg()),{div:o,mod:a.mod}):0!=(this.negative&t.negative)?(a=this.neg().divmod(t.neg(),e),"div"!==e&&(s=a.mod.neg(),n&&0!==s.negative&&s.isub(t)),{div:a.div,mod:s}):t.length>this.length||this.cmp(t)<0?{div:new r(0),mod:this}:1===t.length?"div"===e?{div:this.divn(t.words[0]),mod:null}:"mod"===e?{div:null,mod:new r(this.modrn(t.words[0]))}:{div:this.divn(t.words[0]),mod:new r(this.modrn(t.words[0]))}:this._wordDiv(t,e);var o,s,a},r.prototype.div=function(t){return this.divmod(t,"div",0).div},r.prototype.mod=function(t){return this.divmod(t,"mod",0).mod},r.prototype.umod=function(t){return this.divmod(t,"mod",1).mod},r.prototype.divRound=function(t){var e=this.divmod(t);if(e.mod.isZero())return e.div;var i=0!==e.div.negative?e.mod.isub(t):e.mod,n=t.ushrn(1),r=t.andln(1),o=i.cmp(n);return o<0||1===r&&0===o?e.div:0!==e.div.negative?e.div.isubn(1):e.div.iaddn(1)},r.prototype.modrn=function(t){var e=t<0;e&&(t=-t),i(t<=67108863);for(var n=(1<<26)%t,r=0,o=this.length-1;o>=0;o--)r=(n*r+(0|this.words[o]))%t;return e?-r:r},r.prototype.modn=function(t){return this.modrn(t)},r.prototype.idivn=function(t){var e=t<0;e&&(t=-t),i(t<=67108863);for(var n=0,r=this.length-1;r>=0;r--){var o=(0|this.words[r])+67108864*n;this.words[r]=o/t|0,n=o%t}return this._strip(),e?this.ineg():this},r.prototype.divn=function(t){return this.clone().idivn(t)},r.prototype.egcd=function(t){i(0===t.negative),i(!t.isZero());var e=this,n=t.clone();e=0!==e.negative?e.umod(t):e.clone();for(var o=new r(1),s=new r(0),a=new r(0),u=new r(1),m=0;e.isEven()&&n.isEven();)e.iushrn(1),n.iushrn(1),++m;for(var h=n.clone(),l=e.clone();!e.isZero();){for(var d=0,c=1;0==(e.words[0]&c)&&d<26;++d,c<<=1);if(d>0)for(e.iushrn(d);d-- >0;)(o.isOdd()||s.isOdd())&&(o.iadd(h),s.isub(l)),o.iushrn(1),s.iushrn(1);for(var p=0,g=1;0==(n.words[0]&g)&&p<26;++p,g<<=1);if(p>0)for(n.iushrn(p);p-- >0;)(a.isOdd()||u.isOdd())&&(a.iadd(h),u.isub(l)),a.iushrn(1),u.iushrn(1);e.cmp(n)>=0?(e.isub(n),o.isub(a),s.isub(u)):(n.isub(e),a.isub(o),u.isub(s))}return{a:a,b:u,gcd:n.iushln(m)}},r.prototype._invmp=function(t){i(0===t.negative),i(!t.isZero());var e=this,n=t.clone();e=0!==e.negative?e.umod(t):e.clone();for(var o,s=new r(1),a=new r(0),u=n.clone();e.cmpn(1)>0&&n.cmpn(1)>0;){for(var m=0,h=1;0==(e.words[0]&h)&&m<26;++m,h<<=1);if(m>0)for(e.iushrn(m);m-- >0;)s.isOdd()&&s.iadd(u),s.iushrn(1);for(var l=0,d=1;0==(n.words[0]&d)&&l<26;++l,d<<=1);if(l>0)for(n.iushrn(l);l-- >0;)a.isOdd()&&a.iadd(u),a.iushrn(1);e.cmp(n)>=0?(e.isub(n),s.isub(a)):(n.isub(e),a.isub(s))}return(o=0===e.cmpn(1)?s:a).cmpn(0)<0&&o.iadd(t),o},r.prototype.gcd=function(t){if(this.isZero())return t.abs();if(t.isZero())return this.abs();var e=this.clone(),i=t.clone();e.negative=0,i.negative=0;for(var n=0;e.isEven()&&i.isEven();n++)e.iushrn(1),i.iushrn(1);for(;;){for(;e.isEven();)e.iushrn(1);for(;i.isEven();)i.iushrn(1);var r=e.cmp(i);if(r<0){var o=e;e=i,i=o}else if(0===r||0===i.cmpn(1))break;e.isub(i)}return i.iushln(n)},r.prototype.invm=function(t){return this.egcd(t).a.umod(t)},r.prototype.isEven=function(){return 0==(1&this.words[0])},r.prototype.isOdd=function(){return 1==(1&this.words[0])},r.prototype.andln=function(t){return this.words[0]&t},r.prototype.bincn=function(t){i("number"==typeof t);var e=t%26,n=(t-e)/26,r=1<<e;if(this.length<=n)return this._expand(n+1),this.words[n]|=r,this;for(var o=r,s=n;0!==o&&s<this.length;s++){var a=0|this.words[s];o=(a+=o)>>>26,a&=67108863,this.words[s]=a}return 0!==o&&(this.words[s]=o,this.length++),this},r.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},r.prototype.cmpn=function(t){var e,n=t<0;if(0!==this.negative&&!n)return-1;if(0===this.negative&&n)return 1;if(this._strip(),this.length>1)e=1;else{n&&(t=-t),i(t<=67108863,"Number is too big");var r=0|this.words[0];e=r===t?0:r<t?-1:1}return 0!==this.negative?0|-e:e},r.prototype.cmp=function(t){if(0!==this.negative&&0===t.negative)return-1;if(0===this.negative&&0!==t.negative)return 1;var e=this.ucmp(t);return 0!==this.negative?0|-e:e},r.prototype.ucmp=function(t){if(this.length>t.length)return 1;if(this.length<t.length)return-1;for(var e=0,i=this.length-1;i>=0;i--){var n=0|this.words[i],r=0|t.words[i];if(n!==r){n<r?e=-1:n>r&&(e=1);break}}return e},r.prototype.gtn=function(t){return 1===this.cmpn(t)},r.prototype.gt=function(t){return 1===this.cmp(t)},r.prototype.gten=function(t){return this.cmpn(t)>=0},r.prototype.gte=function(t){return this.cmp(t)>=0},r.prototype.ltn=function(t){return-1===this.cmpn(t)},r.prototype.lt=function(t){return-1===this.cmp(t)},r.prototype.lten=function(t){return this.cmpn(t)<=0},r.prototype.lte=function(t){return this.cmp(t)<=0},r.prototype.eqn=function(t){return 0===this.cmpn(t)},r.prototype.eq=function(t){return 0===this.cmp(t)},r.red=function(t){return new T(t)},r.prototype.toRed=function(t){return i(!this.red,"Already a number in reduction context"),i(0===this.negative,"red works only with positives"),t.convertTo(this)._forceRed(t)},r.prototype.fromRed=function(){return i(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},r.prototype._forceRed=function(t){return this.red=t,this},r.prototype.forceRed=function(t){return i(!this.red,"Already a number in reduction context"),this._forceRed(t)},r.prototype.redAdd=function(t){return i(this.red,"redAdd works only with red numbers"),this.red.add(this,t)},r.prototype.redIAdd=function(t){return i(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,t)},r.prototype.redSub=function(t){return i(this.red,"redSub works only with red numbers"),this.red.sub(this,t)},r.prototype.redISub=function(t){return i(this.red,"redISub works only with red numbers"),this.red.isub(this,t)},r.prototype.redShl=function(t){return i(this.red,"redShl works only with red numbers"),this.red.shl(this,t)},r.prototype.redMul=function(t){return i(this.red,"redMul works only with red numbers"),this.red._verify2(this,t),this.red.mul(this,t)},r.prototype.redIMul=function(t){return i(this.red,"redMul works only with red numbers"),this.red._verify2(this,t),this.red.imul(this,t)},r.prototype.redSqr=function(){return i(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},r.prototype.redISqr=function(){return i(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},r.prototype.redSqrt=function(){return i(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},r.prototype.redInvm=function(){return i(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},r.prototype.redNeg=function(){return i(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},r.prototype.redPow=function(t){return i(this.red&&!t.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,t)};var w={k256:null,p224:null,p192:null,p25519:null};function b(t,e){this.name=t,this.p=new r(e,16),this.n=this.p.bitLength(),this.k=new r(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function k(){b.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function P(){b.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function S(){b.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function A(){b.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function T(t){if("string"==typeof t){var e=r._prime(t);this.m=e.p,this.prime=e}else i(t.gtn(1),"modulus must be greater than 1"),this.m=t,this.prime=null}function C(t){T.call(this,t),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new r(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}b.prototype._tmp=function(){var t=new r(null);return t.words=new Array(Math.ceil(this.n/13)),t},b.prototype.ireduce=function(t){var e,i=t;do{this.split(i,this.tmp),e=(i=(i=this.imulK(i)).iadd(this.tmp)).bitLength()}while(e>this.n);var n=e<this.n?-1:i.ucmp(this.p);return 0===n?(i.words[0]=0,i.length=1):n>0?i.isub(this.p):void 0!==i.strip?i.strip():i._strip(),i},b.prototype.split=function(t,e){t.iushrn(this.n,0,e)},b.prototype.imulK=function(t){return t.imul(this.k)},n(k,b),k.prototype.split=function(t,e){for(var i=4194303,n=Math.min(t.length,9),r=0;r<n;r++)e.words[r]=t.words[r];if(e.length=n,t.length<=9)return t.words[0]=0,void(t.length=1);var o=t.words[9];for(e.words[e.length++]=o&i,r=10;r<t.length;r++){var s=0|t.words[r];t.words[r-10]=(s&i)<<4|o>>>22,o=s}o>>>=22,t.words[r-10]=o,0===o&&t.length>10?t.length-=10:t.length-=9},k.prototype.imulK=function(t){t.words[t.length]=0,t.words[t.length+1]=0,t.length+=2;for(var e=0,i=0;i<t.length;i++){var n=0|t.words[i];e+=977*n,t.words[i]=67108863&e,e=64*n+(e/67108864|0)}return 0===t.words[t.length-1]&&(t.length--,0===t.words[t.length-1]&&t.length--),t},n(P,b),n(S,b),n(A,b),A.prototype.imulK=function(t){for(var e=0,i=0;i<t.length;i++){var n=19*(0|t.words[i])+e,r=67108863&n;n>>>=26,t.words[i]=r,e=n}return 0!==e&&(t.words[t.length++]=e),t},r._prime=function(t){if(w[t])return w[t];var e;if("k256"===t)e=new k;else if("p224"===t)e=new P;else if("p192"===t)e=new S;else{if("p25519"!==t)throw new Error("Unknown prime "+t);e=new A}return w[t]=e,e},T.prototype._verify1=function(t){i(0===t.negative,"red works only with positives"),i(t.red,"red works only with red numbers")},T.prototype._verify2=function(t,e){i(0==(t.negative|e.negative),"red works only with positives"),i(t.red&&t.red===e.red,"red works only with red numbers")},T.prototype.imod=function(t){return this.prime?this.prime.ireduce(t)._forceRed(this):(m(t,t.umod(this.m)._forceRed(this)),t)},T.prototype.neg=function(t){return t.isZero()?t.clone():this.m.sub(t)._forceRed(this)},T.prototype.add=function(t,e){this._verify2(t,e);var i=t.add(e);return i.cmp(this.m)>=0&&i.isub(this.m),i._forceRed(this)},T.prototype.iadd=function(t,e){this._verify2(t,e);var i=t.iadd(e);return i.cmp(this.m)>=0&&i.isub(this.m),i},T.prototype.sub=function(t,e){this._verify2(t,e);var i=t.sub(e);return i.cmpn(0)<0&&i.iadd(this.m),i._forceRed(this)},T.prototype.isub=function(t,e){this._verify2(t,e);var i=t.isub(e);return i.cmpn(0)<0&&i.iadd(this.m),i},T.prototype.shl=function(t,e){return this._verify1(t),this.imod(t.ushln(e))},T.prototype.imul=function(t,e){return this._verify2(t,e),this.imod(t.imul(e))},T.prototype.mul=function(t,e){return this._verify2(t,e),this.imod(t.mul(e))},T.prototype.isqr=function(t){return this.imul(t,t.clone())},T.prototype.sqr=function(t){return this.mul(t,t)},T.prototype.sqrt=function(t){if(t.isZero())return t.clone();var e=this.m.andln(3);if(i(e%2==1),3===e){var n=this.m.add(new r(1)).iushrn(2);return this.pow(t,n)}for(var o=this.m.subn(1),s=0;!o.isZero()&&0===o.andln(1);)s++,o.iushrn(1);i(!o.isZero());var a=new r(1).toRed(this),u=a.redNeg(),m=this.m.subn(1).iushrn(1),h=this.m.bitLength();for(h=new r(2*h*h).toRed(this);0!==this.pow(h,m).cmp(u);)h.redIAdd(u);for(var l=this.pow(h,o),d=this.pow(t,o.addn(1).iushrn(1)),c=this.pow(t,o),p=s;0!==c.cmp(a);){for(var g=c,f=0;0!==g.cmp(a);f++)g=g.redSqr();i(f<p);var y=this.pow(l,new r(1).iushln(p-f-1));d=d.redMul(y),l=y.redSqr(),c=c.redMul(l),p=f}return d},T.prototype.invm=function(t){var e=t._invmp(this.m);return 0!==e.negative?(e.negative=0,this.imod(e).redNeg()):this.imod(e)},T.prototype.pow=function(t,e){if(e.isZero())return new r(1).toRed(this);if(0===e.cmpn(1))return t.clone();var i=new Array(16);i[0]=new r(1).toRed(this),i[1]=t;for(var n=2;n<i.length;n++)i[n]=this.mul(i[n-1],t);var o=i[0],s=0,a=0,u=e.bitLength()%26;for(0===u&&(u=26),n=e.length-1;n>=0;n--){for(var m=e.words[n],h=u-1;h>=0;h--){var l=m>>h&1;o!==i[0]&&(o=this.sqr(o)),0!==l||0!==s?(s<<=1,s|=l,(4==++a||0===n&&0===h)&&(o=this.mul(o,i[s]),a=0,s=0)):a=0}u=26}return o},T.prototype.convertTo=function(t){var e=t.umod(this.m);return e===t?e.clone():e},T.prototype.convertFrom=function(t){var e=t.clone();return e.red=null,e},r.mont=function(t){return new C(t)},n(C,T),C.prototype.convertTo=function(t){return this.imod(t.ushln(this.shift))},C.prototype.convertFrom=function(t){var e=this.imod(t.mul(this.rinv));return e.red=null,e},C.prototype.imul=function(t,e){if(t.isZero()||e.isZero())return t.words[0]=0,t.length=1,t;var i=t.imul(e),n=i.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),r=i.isub(n).iushrn(this.shift),o=r;return r.cmp(this.m)>=0?o=r.isub(this.m):r.cmpn(0)<0&&(o=r.iadd(this.m)),o._forceRed(this)},C.prototype.mul=function(t,e){if(t.isZero()||e.isZero())return new r(0)._forceRed(this);var i=t.mul(e),n=i.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),o=i.isub(n).iushrn(this.shift),s=o;return o.cmp(this.m)>=0?s=o.isub(this.m):o.cmpn(0)<0&&(s=o.iadd(this.m)),s._forceRed(this)},C.prototype.invm=function(t){return this.imod(t._invmp(this.m).mul(this.r2))._forceRed(this)}}(0,d);var y=c(g.exports);const M=n.struct([n.array(n.u8(),32,"a"),n.array(n.u8(),64,"b"),n.array(n.u8(),32,"c")]),v=n.struct([n.publicKey("owner"),n.u64("amount"),n.option(n.u64(),"lamports"),n.u8("merkleTreeIndex"),n.option(n.vecU8(),"tlv")]),w=n.struct([n.u8("queueId"),n.u16("index")]),b=n.struct([n.u64("amount"),n.option(n.u8(),"delegateIndex"),n.struct([n.u8("merkleTreePubkeyIndex"),n.u8("nullifierQueuePubkeyIndex"),n.u32("leafIndex"),n.option(w,"queueIndex")],"merkleContext"),n.u16("rootIndex"),n.option(n.u64(),"lamports"),n.option(n.vecU8(),"tlv")]),k=n.struct([n.publicKey("owner"),n.option(n.u8(),"delegateChangeAccountIndex")]),P=n.struct([n.bool("setContext"),n.bool("firstSetContext"),n.u8("cpiContextAccountIndex")]),S=n.struct([n.option(M,"proof"),n.publicKey("mint"),n.option(k,"delegatedTransfer"),n.vec(b,"inputTokenDataWithContext"),n.vec(v,"outputCompressedAccounts"),n.bool("isCompress"),n.option(n.u64(),"compressOrDecompressAmount"),n.option(P,"cpiContext"),n.option(n.u8(),"lamportsChangeAccountMerkleTreeIndex")]),A=n.struct([n.vec(n.publicKey(),"recipients"),n.vec(n.u64(),"amounts"),n.option(n.u64(),"lamports")]),T=n.struct([n.publicKey("owner"),n.option(n.u64(),"remainingAmount"),n.option(P,"cpiContext")]);function C(t){const e=r.Buffer.alloc(1e3),i=A.encode({recipients:t.recipients,amounts:t.amounts,lamports:t.lamports},e);return r.Buffer.concat([m,e.slice(0,i)])}function I(t){const e=r.Buffer.alloc(1e3),i=T.encode({owner:t.owner,remainingAmount:t.remainingAmount,cpiContext:t.cpiContext},e);return r.Buffer.concat([l,e.slice(0,i)])}function x(t){const e=r.Buffer.alloc(1e3),i=S.encode(t,e),n=r.Buffer.alloc(4);return n.writeUInt32LE(i,0),r.Buffer.concat([h,n,e.slice(0,i)])}const _=t=>{const{feePayer:e,tokenPoolPda:i,systemProgram:n,mint:r,tokenProgram:o,cpiAuthorityPda:s}=t;return[{pubkey:e,isSigner:1,isWritable:1},{pubkey:i,isSigner:0,isWritable:1},{pubkey:n,isSigner:0,isWritable:0},{pubkey:r,isSigner:0,isWritable:1},{pubkey:o,isSigner:0,isWritable:0},{pubkey:s,isSigner:0,isWritable:0}]},O=t=>{const e=N.programId,{feePayer:i,authority:n,cpiAuthorityPda:r,mint:o,tokenPoolPda:s,tokenProgram:a,lightSystemProgram:u,registeredProgramPda:m,noopProgram:h,accountCompressionAuthority:l,accountCompressionProgram:d,merkleTree:c,selfProgram:p,systemProgram:g,solPoolPda:f}=t;return[{pubkey:i,isSigner:1,isWritable:1},{pubkey:n,isSigner:1,isWritable:0},{pubkey:r,isSigner:0,isWritable:0},{pubkey:o,isSigner:0,isWritable:1},{pubkey:s,isSigner:0,isWritable:1},{pubkey:a,isSigner:0,isWritable:0},{pubkey:u,isSigner:0,isWritable:0},{pubkey:m,isSigner:0,isWritable:0},{pubkey:h,isSigner:0,isWritable:0},{pubkey:l,isSigner:0,isWritable:0},{pubkey:d,isSigner:0,isWritable:0},{pubkey:c,isSigner:0,isWritable:1},{pubkey:p,isSigner:0,isWritable:0},{pubkey:g,isSigner:0,isWritable:0},{pubkey:null!=f?f:e,isSigner:0,isWritable:1}]},D=t=>{const e=N.programId,{feePayer:i,authority:n,cpiAuthorityPda:r,lightSystemProgram:o,registeredProgramPda:s,noopProgram:a,accountCompressionAuthority:u,accountCompressionProgram:m,selfProgram:h,tokenPoolPda:l,compressOrDecompressTokenAccount:d,tokenProgram:c,systemProgram:p}=t;return[{pubkey:i,isSigner:1,isWritable:1},{pubkey:n,isSigner:1,isWritable:0},{pubkey:r,isSigner:0,isWritable:0},{pubkey:o,isSigner:0,isWritable:0},{pubkey:s,isSigner:0,isWritable:0},{pubkey:a,isSigner:0,isWritable:0},{pubkey:u,isSigner:0,isWritable:0},{pubkey:m,isSigner:0,isWritable:0},{pubkey:h,isSigner:0,isWritable:0},{pubkey:null!=l?l:e,isSigner:0,isWritable:1},{pubkey:null!=d?d:e,isSigner:0,isWritable:1},{pubkey:null!=c?c:e,isSigner:0,isWritable:0},{pubkey:p,isSigner:0,isWritable:0}]},E=e=>e.reduce(((t,e)=>t.add(e.parsed.amount)),t.bn(0)),B=t=>{const e=t[0].parsed.owner;t.forEach((t=>{if(!t.parsed.owner.equals(e))throw new Error("Token accounts must be owned by the same owner")}))},K=t=>({mint:t[0].parsed.mint,currentOwner:t[0].parsed.owner,delegate:t[0].parsed.delegate});function L(e,i,n){n=t.bn(n);const r=E(e),o=t.sumUpLamports(e.map((t=>t.compressedAccount))),s=r.sub(n);return t.validateSufficientBalance(s),s.eq(t.bn(0))&&o.eq(t.bn(0))?[{owner:i,amount:n,lamports:o,tlv:null}]:(t.validateSameOwner(e.map((t=>t.compressedAccount))),B(e),[{owner:e[0].parsed.owner,amount:s,lamports:o,tlv:null},{owner:i,amount:n,lamports:t.bn(0),tlv:null}])}function R(e,i){i=t.bn(i);const n=t.sumUpLamports(e.map((t=>t.compressedAccount))),r=E(e).sub(i);return t.validateSufficientBalance(r),r.eq(t.bn(0))&&n.eq(t.bn(0))?[]:(t.validateSameOwner(e.map((t=>t.compressedAccount))),B(e),[{owner:e[0].parsed.owner,amount:r,lamports:n,tlv:null}])}class N{constructor(){}static setProgramId(t){this.programId="string"==typeof t?new e.PublicKey(t):t}static deriveTokenPoolPda(t){const i=[s,t.toBuffer()],[n,r]=e.PublicKey.findProgramAddressSync(i,this.programId);return n}static get deriveCpiAuthorityPda(){const[t,i]=e.PublicKey.findProgramAddressSync([a],this.programId);return t}static async createMint(t){const{mint:n,authority:r,feePayer:o,rentExemptBalance:s,tokenProgramId:a,freezeAuthority:u,mintSize:m}=t,h=null!=a?a:i.TOKEN_PROGRAM_ID;return[e.SystemProgram.createAccount({fromPubkey:o,lamports:s,newAccountPubkey:n,programId:h,space:null!=m?m:i.MINT_SIZE}),i.createInitializeMint2Instruction(n,t.decimals,r,u,h),await this.createTokenPool({feePayer:o,mint:n,tokenProgramId:h})]}static async createTokenPool(t){const{mint:n,feePayer:r,tokenProgramId:o}=t,s=null!=o?o:i.TOKEN_PROGRAM_ID,a=this.deriveTokenPoolPda(n),m=_({mint:n,feePayer:r,tokenPoolPda:a,tokenProgram:s,cpiAuthorityPda:this.deriveCpiAuthorityPda,systemProgram:e.SystemProgram.programId});return new e.TransactionInstruction({programId:this.programId,keys:m,data:u})}static async mintTo(n){const r=t.defaultStaticAccountsStruct(),{mint:o,feePayer:s,authority:a,merkleTree:u,toPubkey:m,amount:h,tokenProgramId:l}=n,d=null!=l?l:i.TOKEN_PROGRAM_ID,c=this.deriveTokenPoolPda(o),p=t.toArray(h).map((e=>t.bn(e))),g=t.toArray(m);if(p.length!==g.length)throw new Error("Amount and toPubkey arrays must have the same length");const f=O({mint:o,feePayer:s,authority:a,cpiAuthorityPda:this.deriveCpiAuthorityPda,tokenProgram:d,tokenPoolPda:c,lightSystemProgram:t.LightSystemProgram.programId,registeredProgramPda:r.registeredProgramPda,noopProgram:r.noopProgram,accountCompressionAuthority:r.accountCompressionAuthority,accountCompressionProgram:r.accountCompressionProgram,merkleTree:null!=u?u:t.defaultTestStateTreeAccounts().merkleTree,selfProgram:this.programId,systemProgram:e.SystemProgram.programId,solPoolPda:null}),y=C({recipients:g,amounts:p,lamports:null});return new e.TransactionInstruction({programId:this.programId,keys:f,data:y})}static async approveAndMintTo(t){const{mint:e,feePayer:n,authorityTokenAccount:r,authority:o,merkleTree:s,toPubkey:a,tokenProgramId:u}=t,m=BigInt(t.amount.toString());return[i.createMintToInstruction(e,r,o,m,[],u),await this.compress({payer:n,owner:o,source:r,toAddress:a,mint:e,amount:t.amount,outputStateTree:s,tokenProgramId:u})]}static async transfer(i){const{payer:n,inputCompressedTokenAccounts:r,recentInputStateRootIndices:s,recentValidityProof:a,amount:u,outputStateTrees:m,toAddress:h}=i,l=L(r,h,u),{inputTokenDataWithContext:d,packedOutputTokenData:c,remainingAccountMetas:p}=o({inputCompressedTokenAccounts:r,outputStateTrees:m,rootIndices:s,tokenTransferOutputs:l}),{mint:g,currentOwner:f}=K(r),y=x({proof:a,mint:g,delegatedTransfer:null,inputTokenDataWithContext:d,outputCompressedAccounts:c,compressOrDecompressAmount:null,isCompress:0,cpiContext:null,lamportsChangeAccountMerkleTreeIndex:null}),{accountCompressionAuthority:M,noopProgram:v,registeredProgramPda:w,accountCompressionProgram:b}=t.defaultStaticAccountsStruct(),k=D({feePayer:n,authority:f,cpiAuthorityPda:this.deriveCpiAuthorityPda,lightSystemProgram:t.LightSystemProgram.programId,registeredProgramPda:w,noopProgram:v,accountCompressionAuthority:M,accountCompressionProgram:b,selfProgram:this.programId,tokenPoolPda:void 0,compressOrDecompressTokenAccount:void 0,tokenProgram:void 0,systemProgram:e.SystemProgram.programId});return k.push(...p),new e.TransactionInstruction({programId:this.programId,keys:k,data:y})}static async createTokenProgramLookupTable(n){const{authority:r,mints:o,recentSlot:s,payer:a,remainingAccounts:u}=n,[m,h]=e.AddressLookupTableProgram.createLookupTable({authority:r,payer:r,recentSlot:s});let l=[];return o&&(l=[...o,...o.map((t=>this.deriveTokenPoolPda(t)))]),{instructions:[m,e.AddressLookupTableProgram.extendLookupTable({payer:a,authority:r,lookupTable:h,addresses:[this.deriveCpiAuthorityPda,t.LightSystemProgram.programId,t.defaultStaticAccountsStruct().registeredProgramPda,t.defaultStaticAccountsStruct().noopProgram,t.defaultStaticAccountsStruct().accountCompressionAuthority,t.defaultStaticAccountsStruct().accountCompressionProgram,t.defaultTestStateTreeAccounts().merkleTree,t.defaultTestStateTreeAccounts().nullifierQueue,t.defaultTestStateTreeAccounts().addressTree,t.defaultTestStateTreeAccounts().addressQueue,this.programId,i.TOKEN_PROGRAM_ID,i.TOKEN_2022_PROGRAM_ID,r,...l,...null!=u?u:[]]})],address:h}}static async compress(n){const{payer:r,owner:s,source:a,toAddress:u,mint:m,outputStateTree:h,tokenProgramId:l}=n;if(Array.isArray(n.amount)!==Array.isArray(n.toAddress))throw new Error("Both amount and toAddress must be arrays or both must be single values");let d;if(Array.isArray(n.amount)&&Array.isArray(n.toAddress)){if(n.amount.length!==n.toAddress.length)throw new Error("Amount and toAddress arrays must have the same length");d=n.amount.map(((e,i)=>{const r=t.bn(e);return{owner:n.toAddress[i],amount:r,lamports:t.bn(0),tlv:null}}))}else d=[{owner:u,amount:t.bn(n.amount),lamports:t.bn(0),tlv:null}];const{inputTokenDataWithContext:c,packedOutputTokenData:p,remainingAccountMetas:g}=o({inputCompressedTokenAccounts:[],outputStateTrees:h,rootIndices:[],tokenTransferOutputs:d}),f=x({proof:null,mint:m,delegatedTransfer:null,inputTokenDataWithContext:c,outputCompressedAccounts:p,compressOrDecompressAmount:Array.isArray(n.amount)?n.amount.map((t=>new y(t))).reduce(((t,e)=>t.add(e)),new y(0)):new y(n.amount),isCompress:1,cpiContext:null,lamportsChangeAccountMerkleTreeIndex:null}),M=null!=l?l:i.TOKEN_PROGRAM_ID,v=D(Object.assign(Object.assign({},t.defaultStaticAccountsStruct()),{feePayer:r,authority:s,cpiAuthorityPda:this.deriveCpiAuthorityPda,lightSystemProgram:t.LightSystemProgram.programId,selfProgram:this.programId,systemProgram:e.SystemProgram.programId,tokenPoolPda:this.deriveTokenPoolPda(m),compressOrDecompressTokenAccount:a,tokenProgram:M}));return v.push(...g),new e.TransactionInstruction({programId:this.programId,keys:v,data:f})}static async decompress(n){const{payer:r,inputCompressedTokenAccounts:s,toAddress:a,outputStateTree:u,recentValidityProof:m,recentInputStateRootIndices:h,tokenProgramId:l}=n,d=t.bn(n.amount),c=R(s,d),{inputTokenDataWithContext:p,packedOutputTokenData:g,remainingAccountMetas:f}=o({inputCompressedTokenAccounts:s,outputStateTrees:u,rootIndices:h,tokenTransferOutputs:c}),{mint:y,currentOwner:M}=K(s),v=x({proof:m,mint:y,delegatedTransfer:null,inputTokenDataWithContext:p,outputCompressedAccounts:g,compressOrDecompressAmount:d,isCompress:0,cpiContext:null,lamportsChangeAccountMerkleTreeIndex:null}),w=null!=l?l:i.TOKEN_PROGRAM_ID,{accountCompressionAuthority:b,noopProgram:k,registeredProgramPda:P,accountCompressionProgram:S}=t.defaultStaticAccountsStruct(),A=D({feePayer:r,authority:M,cpiAuthorityPda:this.deriveCpiAuthorityPda,lightSystemProgram:t.LightSystemProgram.programId,registeredProgramPda:P,noopProgram:k,accountCompressionAuthority:b,accountCompressionProgram:S,selfProgram:this.programId,tokenPoolPda:this.deriveTokenPoolPda(y),compressOrDecompressTokenAccount:a,tokenProgram:w,systemProgram:e.SystemProgram.programId});return A.push(...f),new e.TransactionInstruction({programId:this.programId,keys:A,data:v})}static async mergeTokenAccounts(t){const{payer:e,owner:i,inputCompressedTokenAccounts:n,outputStateTree:r,recentValidityProof:o,recentInputStateRootIndices:s}=t;if(n.length>3)throw new Error("Cannot merge more than 3 token accounts at once");return[await this.transfer({payer:e,inputCompressedTokenAccounts:n,toAddress:i,amount:n.reduce(((t,e)=>t.add(e.parsed.amount)),new y(0)),outputStateTrees:r,recentInputStateRootIndices:s,recentValidityProof:o})]}static async compressSplTokenAccount(n){const{feePayer:r,authority:o,tokenAccount:s,mint:a,remainingAmount:u,outputStateTree:m,tokenProgramId:h}=n,l=null!=h?h:i.TOKEN_PROGRAM_ID,d=[{pubkey:m,isSigner:0,isWritable:1}],c=I({owner:o,remainingAmount:null!=u?u:null,cpiContext:null}),{accountCompressionAuthority:p,noopProgram:g,registeredProgramPda:f,accountCompressionProgram:y}=t.defaultStaticAccountsStruct(),M=D({feePayer:r,authority:o,cpiAuthorityPda:this.deriveCpiAuthorityPda,lightSystemProgram:t.LightSystemProgram.programId,registeredProgramPda:f,noopProgram:g,accountCompressionAuthority:p,accountCompressionProgram:y,selfProgram:this.programId,tokenPoolPda:this.deriveTokenPoolPda(a),compressOrDecompressTokenAccount:s,tokenProgram:l,systemProgram:e.SystemProgram.programId});return M.push(...d),new e.TransactionInstruction({programId:this.programId,keys:M,data:c})}static async get_mint_program_id(t,e){var i;return null===(i=await e.getAccountInfo(t))||void 0===i?void 0:i.owner}}function W(e,i){let n=t.bn(0),r=t.bn(0);const o=[];e.sort(((t,e)=>e.parsed.amount.cmp(t.parsed.amount)));for(const s of e){if(n.gte(t.bn(i)))break;n=n.add(s.parsed.amount),r=r.add(s.compressedAccount.lamports),o.push(s)}if(n.lt(t.bn(i)))throw new Error(`Not enough balance for transfer. Required: ${i.toString()}, available: ${n.toString()}`);return[o,n,r.lt(t.bn(0))?r:null]}N.programId=new e.PublicKey("cTokenmWW8bLPjZEBAUgYy3zKxQZW6VKi7bqNFEVv3m"),exports.COMPRESS_SPL_TOKEN_ACCOUNT_DISCRIMINATOR=l,exports.CPI_AUTHORITY_SEED=a,exports.CREATE_TOKEN_POOL_DISCRIMINATOR=u,exports.CompressedTokenInstructionDataTransferLayout=S,exports.CompressedTokenProgram=N,exports.CpiContextLayout=P,exports.DelegatedTransferLayout=k,exports.IDL={version:"1.2.0",name:"light_compressed_token",instructions:[{name:"createTokenPool",docs:["This instruction creates a token pool for a given mint. Every spl mint","can have one token pool. When a token is compressed the tokens are","transferrred to the token pool, and their compressed equivalent is","minted into a Merkle tree."],accounts:[{name:"feePayer",isMut:1,isSigner:1,docs:["UNCHECKED: only pays fees."]},{name:"tokenPoolPda",isMut:1,isSigner:0},{name:"systemProgram",isMut:0,isSigner:0},{name:"mint",isMut:1,isSigner:0},{name:"tokenProgram",isMut:0,isSigner:0},{name:"cpiAuthorityPda",isMut:0,isSigner:0}],args:[]},{name:"addTokenPool",docs:["This instruction creates an additional token pool for a given mint.","The maximum number of token pools per mint is 5."],accounts:[{name:"feePayer",isMut:1,isSigner:1,docs:["UNCHECKED: only pays fees."]},{name:"tokenPoolPda",isMut:1,isSigner:0},{name:"existingTokenPoolPda",isMut:0,isSigner:0},{name:"systemProgram",isMut:0,isSigner:0},{name:"mint",isMut:1,isSigner:0},{name:"tokenProgram",isMut:0,isSigner:0},{name:"cpiAuthorityPda",isMut:0,isSigner:0}],args:[{name:"tokenPoolBump",type:"u8"}]},{name:"mintTo",docs:["Mints tokens from an spl token mint to a list of compressed accounts.","Minted tokens are transferred to a pool account owned by the compressed","token program. The instruction creates one compressed output account for","every amount and pubkey input pair. A constant amount of lamports can be","transferred to each output account to enable. A use case to add lamports","to a compressed token account is to prevent spam. This is the only way","to add lamports to a compressed token account."],accounts:[{name:"feePayer",isMut:1,isSigner:1,docs:["UNCHECKED: only pays fees."]},{name:"authority",isMut:0,isSigner:1},{name:"cpiAuthorityPda",isMut:0,isSigner:0},{name:"mint",isMut:1,isSigner:0},{name:"tokenPoolPda",isMut:1,isSigner:0},{name:"tokenProgram",isMut:0,isSigner:0},{name:"lightSystemProgram",isMut:0,isSigner:0},{name:"registeredProgramPda",isMut:0,isSigner:0},{name:"noopProgram",isMut:0,isSigner:0,docs:["programs"]},{name:"accountCompressionAuthority",isMut:0,isSigner:0},{name:"accountCompressionProgram",isMut:0,isSigner:0},{name:"merkleTree",isMut:1,isSigner:0},{name:"selfProgram",isMut:0,isSigner:0},{name:"systemProgram",isMut:0,isSigner:0},{name:"solPoolPda",isMut:1,isSigner:0,isOptional:1}],args:[{name:"publicKeys",type:{vec:"publicKey"}},{name:"amounts",type:{vec:"u64"}},{name:"lamports",type:{option:"u64"}}]},{name:"compressSplTokenAccount",docs:["Compresses the balance of an spl token account sub an optional remaining","amount. This instruction does not close the spl token account. To close","the account bundle a close spl account instruction in your transaction."],accounts:[{name:"feePayer",isMut:1,isSigner:1,docs:["UNCHECKED: only pays fees."]},{name:"authority",isMut:0,isSigner:1,docs:["Authority is verified through proof since both owner and delegate","are included in the token data hash, which is a public input to the","validity proof."]},{name:"cpiAuthorityPda",isMut:0,isSigner:0},{name:"lightSystemProgram",isMut:0,isSigner:0},{name:"registeredProgramPda",isMut:0,isSigner:0},{name:"noopProgram",isMut:0,isSigner:0},{name:"accountCompressionAuthority",isMut:0,isSigner:0},{name:"accountCompressionProgram",isMut:0,isSigner:0},{name:"selfProgram",isMut:0,isSigner:0,docs:["this program is the signer of the cpi."]},{name:"tokenPoolPda",isMut:1,isSigner:0,isOptional:1},{name:"compressOrDecompressTokenAccount",isMut:1,isSigner:0,isOptional:1},{name:"tokenProgram",isMut:0,isSigner:0,isOptional:1},{name:"systemProgram",isMut:0,isSigner:0}],args:[{name:"owner",type:"publicKey"},{name:"remainingAmount",type:{option:"u64"}},{name:"cpiContext",type:{option:{defined:"CompressedCpiContext"}}}]},{name:"transfer",docs:["Transfers compressed tokens from one account to another. All accounts","must be of the same mint. Additional spl tokens can be compressed or","decompressed. In one transaction only compression or decompression is","possible. Lamports can be transferred alongside tokens. If output token","accounts specify less lamports than inputs the remaining lamports are","transferred to an output compressed account. Signer must be owner or","delegate. If a delegated token account is transferred the delegate is","not preserved."],accounts:[{name:"feePayer",isMut:1,isSigner:1,docs:["UNCHECKED: only pays fees."]},{name:"authority",isMut:0,isSigner:1,docs:["Authority is verified through proof since both owner and delegate","are included in the token data hash, which is a public input to the","validity proof."]},{name:"cpiAuthorityPda",isMut:0,isSigner:0},{name:"lightSystemProgram",isMut:0,isSigner:0},{name:"registeredProgramPda",isMut:0,isSigner:0},{name:"noopProgram",isMut:0,isSigner:0},{name:"accountCompressionAuthority",isMut:0,isSigner:0},{name:"accountCompressionProgram",isMut:0,isSigner:0},{name:"selfProgram",isMut:0,isSigner:0,docs:["this program is the signer of the cpi."]},{name:"tokenPoolPda",isMut:1,isSigner:0,isOptional:1},{name:"compressOrDecompressTokenAccount",isMut:1,isSigner:0,isOptional:1},{name:"tokenProgram",isMut:0,isSigner:0,isOptional:1},{name:"systemProgram",isMut:0,isSigner:0}],args:[{name:"inputs",type:"bytes"}]},{name:"approve",docs:["Delegates an amount to a delegate. A compressed token account is either","completely delegated or not. Prior delegates are not preserved. Cannot","be called by a delegate.","The instruction creates two output accounts:","1. one account with delegated amount","2. one account with remaining(change) amount"],accounts:[{name:"feePayer",isMut:1,isSigner:1,docs:["UNCHECKED: only pays fees."]},{name:"authority",isMut:0,isSigner:1,docs:["Authority is verified through proof since both owner and delegate","are included in the token data hash, which is a public input to the","validity proof."]},{name:"cpiAuthorityPda",isMut:0,isSigner:0},{name:"lightSystemProgram",isMut:0,isSigner:0},{name:"registeredProgramPda",isMut:0,isSigner:0},{name:"noopProgram",isMut:0,isSigner:0},{name:"accountCompressionAuthority",isMut:0,isSigner:0},{name:"accountCompressionProgram",isMut:0,isSigner:0},{name:"selfProgram",isMut:0,isSigner:0,docs:["this program is the signer of the cpi."]},{name:"systemProgram",isMut:0,isSigner:0}],args:[{name:"inputs",type:"bytes"}]},{name:"revoke",docs:["Revokes a delegation. The instruction merges all inputs into one output","account. Cannot be called by a delegate. Delegates are not preserved."],accounts:[{name:"feePayer",isMut:1,isSigner:1,docs:["UNCHECKED: only pays fees."]},{name:"authority",isMut:0,isSigner:1,docs:["Authority is verified through proof since both owner and delegate","are included in the token data hash, which is a public input to the","validity proof."]},{name:"cpiAuthorityPda",isMut:0,isSigner:0},{name:"lightSystemProgram",isMut:0,isSigner:0},{name:"registeredProgramPda",isMut:0,isSigner:0},{name:"noopProgram",isMut:0,isSigner:0},{name:"accountCompressionAuthority",isMut:0,isSigner:0},{name:"accountCompressionProgram",isMut:0,isSigner:0},{name:"selfProgram",isMut:0,isSigner:0,docs:["this program is the signer of the cpi."]},{name:"systemProgram",isMut:0,isSigner:0}],args:[{name:"inputs",type:"bytes"}]},{name:"freeze",docs:["Freezes compressed token accounts. Inputs must not be frozen. Creates as","many outputs as inputs. Balances and delegates are preserved."],accounts:[{name:"feePayer",isMut:1,isSigner:1,docs:["UNCHECKED: only pays fees."]},{name:"authority",isMut:0,isSigner:1},{name:"cpiAuthorityPda",isMut:0,isSigner:0},{name:"lightSystemProgram",isMut:0,isSigner:0},{name:"registeredProgramPda",isMut:0,isSigner:0},{name:"noopProgram",isMut:0,isSigner:0},{name:"accountCompressionAuthority",isMut:0,isSigner:0},{name:"accountCompressionProgram",isMut:0,isSigner:0},{name:"selfProgram",isMut:0,isSigner:0,docs:["that this program is the signer of the cpi."]},{name:"systemProgram",isMut:0,isSigner:0},{name:"mint",isMut:0,isSigner:0}],args:[{name:"inputs",type:"bytes"}]},{name:"thaw",docs:["Thaws frozen compressed token accounts. Inputs must be frozen. Creates","as many outputs as inputs. Balances and delegates are preserved."],accounts:[{name:"feePayer",isMut:1,isSigner:1,docs:["UNCHECKED: only pays fees."]},{name:"authority",isMut:0,isSigner:1},{name:"cpiAuthorityPda",isMut:0,isSigner:0},{name:"lightSystemProgram",isMut:0,isSigner:0},{name:"registeredProgramPda",isMut:0,isSigner:0},{name:"noopProgram",isMut:0,isSigner:0},{name:"accountCompressionAuthority",isMut:0,isSigner:0},{name:"accountCompressionProgram",isMut:0,isSigner:0},{name:"selfProgram",isMut:0,isSigner:0,docs:["that this program is the signer of the cpi."]},{name:"systemProgram",isMut:0,isSigner:0},{name:"mint",isMut:0,isSigner:0}],args:[{name:"inputs",type:"bytes"}]},{name:"burn",docs:["Burns compressed tokens and spl tokens from the pool account. Delegates","can burn tokens. The output compressed token account remains delegated.","Creates one output compressed token account."],accounts:[{name:"feePayer",isMut:1,isSigner:1,docs:["UNCHECKED: only pays fees."]},{name:"authority",isMut:0,isSigner:1,docs:["Authority is verified through proof since both owner and delegate","are included in the token data hash, which is a public input to the","validity proof."]},{name:"cpiAuthorityPda",isMut:0,isSigner:0},{name:"mint",isMut:1,isSigner:0},{name:"tokenPoolPda",isMut:1,isSigner:0},{name:"tokenProgram",isMut:0,isSigner:0},{name:"lightSystemProgram",isMut:0,isSigner:0},{name:"registeredProgramPda",isMut:0,isSigner:0},{name:"noopProgram",isMut:0,isSigner:0},{name:"accountCompressionAuthority",isMut:0,isSigner:0},{name:"accountCompressionProgram",isMut:0,isSigner:0},{name:"selfProgram",isMut:0,isSigner:0},{name:"systemProgram",isMut:0,isSigner:0}],args:[{name:"inputs",type:"bytes"}]},{name:"stubIdlBuild",docs:["This function is a stub to allow Anchor to include the input types in","the IDL. It should not be included in production builds nor be called in","practice."],accounts:[{name:"feePayer",isMut:1,isSigner:1,docs:["UNCHECKED: only pays fees."]},{name:"authority",isMut:0,isSigner:1,docs:["Authority is verified through proof since both owner and delegate","are included in the token data hash, which is a public input to the","validity proof."]},{name:"cpiAuthorityPda",isMut:0,isSigner:0},{name:"lightSystemProgram",isMut:0,isSigner:0},{name:"registeredProgramPda",isMut:0,isSigner:0},{name:"noopProgram",isMut:0,isSigner:0},{name:"accountCompressionAuthority",isMut:0,isSigner:0},{name:"accountCompressionProgram",isMut:0,isSigner:0},{name:"selfProgram",isMut:0,isSigner:0,docs:["this program is the signer of the cpi."]},{name:"tokenPoolPda",isMut:1,isSigner:0,isOptional:1},{name:"compressOrDecompressTokenAccount",isMut:1,isSigner:0,isOptional:1},{name:"tokenProgram",isMut:0,isSigner:0,isOptional:1},{name:"systemProgram",isMut:0,isSigner:0}],args:[{name:"inputs1",type:{defined:"CompressedTokenInstructionDataTransfer"}},{name:"inputs2",type:{defined:"TokenData"}}]}],types:[{name:"AccountState",type:{kind:"enum",variants:[{name:"Initialized"},{name:"Frozen"}]}},{name:"CompressedAccount",type:{kind:"struct",fields:[{name:"owner",type:"publicKey"},{name:"lamports",type:"u64"},{name:"address",type:{option:{array:["u8",32]}}},{name:"data",type:{option:{defined:"CompressedAccountData"}}}]}},{name:"CompressedAccountData",type:{kind:"struct",fields:[{name:"discriminator",type:{array:["u8",8]}},{name:"data",type:"bytes"},{name:"dataHash",type:{array:["u8",32]}}]}},{name:"CompressedCpiContext",type:{kind:"struct",fields:[{name:"setContext",docs:["Is set by the program that is invoking the CPI to signal that is should","set the cpi context."],type:"bool"},{name:"firstSetContext",docs:["Is set to wipe the cpi context since someone could have set it before","with unrelated data."],type:"bool"},{name:"cpiContextAccountIndex",docs:["Index of cpi context account in remaining accounts."],type:"u8"}]}},{name:"CompressedProof",type:{kind:"struct",fields:[{name:"a",type:{array:["u8",32]}},{name:"b",type:{array:["u8",64]}},{name:"c",type:{array:["u8",32]}}]}},{name:"CompressedTokenInstructionDataTransfer",type:{kind:"struct",fields:[{name:"proof",type:{option:{defined:"CompressedProof"}}},{name:"mint",type:"publicKey"},{name:"delegatedTransfer",docs:["Is required if the signer is delegate,","-> delegate is authority account,","owner = Some(owner) is the owner of the token account."],type:{option:{defined:"DelegatedTransfer"}}},{name:"inputTokenDataWithContext",type:{vec:{defined:"InputTokenDataWithContext"}}},{name:"outputCompressedAccounts",type:{vec:{defined:"PackedTokenTransferOutputData"}}},{name:"isCompress",type:"bool"},{name:"compressOrDecompressAmount",type:{option:"u64"}},{name:"cpiContext",type:{option:{defined:"CompressedCpiContext"}}},{name:"lamportsChangeAccountMerkleTreeIndex",type:{option:"u8"}}]}},{name:"DelegatedTransfer",docs:["Struct to provide the owner when the delegate is signer of the transaction."],type:{kind:"struct",fields:[{name:"owner",type:"publicKey"},{name:"delegateChangeAccountIndex",docs:["Index of change compressed account in output compressed accounts. In","case that the delegate didn't spend the complete delegated compressed","account balance the change compressed account will be delegated to her","as well."],type:{option:"u8"}}]}},{name:"InputTokenDataWithContext",type:{kind:"struct",fields:[{name:"amount",type:"u64"},{name:"delegateIndex",type:{option:"u8"}},{name:"merkleContext",type:{defined:"PackedMerkleContext"}},{name:"rootIndex",type:"u16"},{name:"lamports",type:{option:"u64"}},{name:"tlv",docs:["Placeholder for TokenExtension tlv data (unimplemented)"],type:{option:"bytes"}}]}},{name:"InstructionDataInvoke",type:{kind:"struct",fields:[{name:"proof",type:{option:{defined:"CompressedProof"}}},{name:"inputCompressedAccountsWithMerkleContext",type:{vec:{defined:"PackedCompressedAccountWithMerkleContext"}}},{name:"outputCompressedAccounts",type:{vec:{defined:"OutputCompressedAccountWithPackedContext"}}},{name:"relayFee",type:{option:"u64"}},{name:"newAddressParams",type:{vec:{defined:"NewAddressParamsPacked"}}},{name:"compressOrDecompressLamports",type:{option:"u64"}},{name:"isCompress",type:"bool"}]}},{name:"InstructionDataInvokeCpi",type:{kind:"struct",fields:[{name:"proof",type:{option:{defined:"CompressedProof"}}},{name:"newAddressParams",type:{vec:{defined:"NewAddressParamsPacked"}}},{name:"inputCompressedAccountsWithMerkleContext",type:{vec:{defined:"PackedCompressedAccountWithMerkleContext"}}},{name:"outputCompressedAccounts",type:{vec:{defined:"OutputCompressedAccountWithPackedContext"}}},{name:"relayFee",type:{option:"u64"}},{name:"compressOrDecompressLamports",type:{option:"u64"}},{name:"isCompress",type:"bool"},{name:"cpiContext",type:{option:{defined:"CompressedCpiContext"}}}]}},{name:"MerkleTreeSequenceNumber",type:{kind:"struct",fields:[{name:"pubkey",type:"publicKey"},{name:"seq",type:"u64"}]}},{name:"NewAddressParamsPacked",type:{kind:"struct",fields:[{name:"seed",type:{array:["u8",32]}},{name:"addressQueueAccountIndex",type:"u8"},{name:"addressMerkleTreeAccountIndex",type:"u8"},{name:"addressMerkleTreeRootIndex",type:"u16"}]}},{name:"OutputCompressedAccountWithPackedContext",type:{kind:"struct",fields:[{name:"compressedAccount",type:{defined:"CompressedAccount"}},{name:"merkleTreeIndex",type:"u8"}]}},{name:"PackedCompressedAccountWithMerkleContext",type:{kind:"struct",fields:[{name:"compressedAccount",type:{defined:"CompressedAccount"}},{name:"merkleContext",type:{defined:"PackedMerkleContext"}},{name:"rootIndex",docs:["Index of root used in inclusion validity proof."],type:"u16"},{name:"readOnly",docs:["Placeholder to mark accounts read-only unimplemented set to false."],type:"bool"}]}},{name:"PackedMerkleContext",type:{kind:"struct",fields:[{name:"merkleTreePubkeyIndex",type:"u8"},{name:"nullifierQueuePubkeyIndex",type:"u8"},{name:"leafIndex",type:"u32"},{name:"queueIndex",type:{option:{defined:"QueueIndex"}}}]}},{name:"PackedTokenTransferOutputData",type:{kind:"struct",fields:[{name:"owner",type:"publicKey"},{name:"amount",type:"u64"},{name:"lamports",type:{option:"u64"}},{name:"merkleTreeIndex",type:"u8"},{name:"tlv",docs:["Placeholder for TokenExtension tlv data (unimplemented)"],type:{option:"bytes"}}]}},{name:"PublicTransactionEvent",type:{kind:"struct",fields:[{name:"inputCompressedAccountHashes",type:{vec:{array:["u8",32]}}},{name:"outputCompressedAccountHashes",type:{vec:{array:["u8",32]}}},{name:"outputCompressedAccounts",type:{vec:{defined:"OutputCompressedAccountWithPackedContext"}}},{name:"outputLeafIndices",type:{vec:"u32"}},{name:"sequenceNumbers",type:{vec:{defined:"MerkleTreeSequenceNumber"}}},{name:"relayFee",type:{option:"u64"}},{name:"isCompress",type:"bool"},{name:"compressOrDecompressLamports",type:{option:"u64"}},{name:"pubkeyArray",type:{vec:"publicKey"}},{name:"message",type:{option:"bytes"}}]}},{name:"QueueIndex",type:{kind:"struct",fields:[{name:"queueId",docs:["Id of queue in queue account."],type:"u8"},{name:"index",docs:["Index of compressed account hash in queue."],type:"u16"}]}},{name:"TokenData",type:{kind:"struct",fields:[{name:"mint",docs:["The mint associated with this account"],type:"publicKey"},{name:"owner",docs:["The owner of this account."],type:"publicKey"},{name:"amount",docs:["The amount of tokens this account holds."],type:"u64"},{name:"delegate",docs:["If `delegate` is `Some` then `delegated_amount` represents","the amount authorized by the delegate"],type:{option:"publicKey"}},{name:"state",docs:["The account's state"],type:{defined:"AccountState"}},{name:"tlv",docs:["Placeholder for TokenExtension tlv data (unimplemented)"],type:{option:"bytes"}}]}}],errors:[{code:6e3,name:"PublicKeyAmountMissmatch",msg:"public keys and amounts must be of same length"},{code:6001,name:"ComputeInputSumFailed",msg:"ComputeInputSumFailed"},{code:6002,name:"ComputeOutputSumFailed",msg:"ComputeOutputSumFailed"},{code:6003,name:"ComputeCompressSumFailed",msg:"ComputeCompressSumFailed"},{code:6004,name:"ComputeDecompressSumFailed",msg:"ComputeDecompressSumFailed"},{code:6005,name:"SumCheckFailed",msg:"SumCheckFailed"},{code:6006,name:"DecompressRecipientUndefinedForDecompress",msg:"DecompressRecipientUndefinedForDecompress"},{code:6007,name:"CompressedPdaUndefinedForDecompress",msg:"CompressedPdaUndefinedForDecompress"},{code:6008,name:"DeCompressAmountUndefinedForDecompress",msg:"DeCompressAmountUndefinedForDecompress"},{code:6009,name:"CompressedPdaUndefinedForCompress",msg:"CompressedPdaUndefinedForCompress"},{code:6010,name:"DeCompressAmountUndefinedForCompress",msg:"DeCompressAmountUndefinedForCompress"},{code:6011,name:"DelegateSignerCheckFailed",msg:"DelegateSignerCheckFailed"},{code:6012,name:"MintTooLarge",msg:"Minted amount greater than u64::MAX"},{code:6013,name:"SplTokenSupplyMismatch",msg:"SplTokenSupplyMismatch"},{code:6014,name:"HeapMemoryCheckFailed",msg:"HeapMemoryCheckFailed"},{code:6015,name:"InstructionNotCallable",msg:"The instruction is not callable"},{code:6016,name:"ArithmeticUnderflow",msg:"ArithmeticUnderflow"},{code:6017,name:"HashToFieldError",msg:"HashToFieldError"},{code:6018,name:"InvalidAuthorityMint",msg:"Expected the authority to be also a mint authority"},{code:6019,name:"InvalidFreezeAuthority",msg:"Provided authority is not the freeze authority"},{code:6020,name:"InvalidDelegateIndex"},{code:6021,name:"TokenPoolPdaUndefined"},{code:6022,name:"IsTokenPoolPda",msg:"Compress or decompress recipient is the same account as the token pool pda."},{code:6023,name:"InvalidTokenPoolPda"},{code:6024,name:"NoInputTokenAccountsProvided"},{code:6025,name:"NoInputsProvided"},{code:6026,name:"MintHasNoFreezeAuthority"},{code:6027,name:"MintWithInvalidExtension"},{code:6028,name:"InsufficientTokenAccountBalance",msg:"The token account balance is less than the remaining amount."},{code:6029,name:"InvalidTokenPoolBump",msg:"Max number of token pools reached."},{code:6030,name:"FailedToDecompress"},{code:6031,name:"FailedToBurnSplTokensFromTokenPool"},{code:6032,name:"NoMatchingBumpFound"}]},exports.MINT_TO_DISCRIMINATOR=m,exports.POOL_SEED=s,exports.SPL_TOKEN_MINT_RENT_EXEMPT_BALANCE=1461600,exports.TRANSFER_DISCRIMINATOR=h,exports.approveAndMintTo=async function(n,r,o,s,a,u,m,h,l){l=l||await N.get_mint_program_id(o,n);const d=await i.getOrCreateAssociatedTokenAccount(n,r,o,a.publicKey,void 0,void 0,h,l),c=await N.approveAndMintTo({feePayer:r.publicKey,mint:o,authority:a.publicKey,authorityTokenAccount:d.address,amount:u,toPubkey:s,merkleTree:m,tokenProgramId:l}),{blockhash:p}=await n.getLatestBlockhash(),g=t.dedupeSigner(r,[a]),f=t.buildAndSignTx([e.ComputeBudgetProgram.setComputeUnitLimit({units:1e6}),...c],r,p,g);return await t.sendAndConfirmTx(n,f,h)},exports.compress=async function(i,n,r,o,s,a,u,m,h,l){l=l||await N.get_mint_program_id(r,i);const d=await N.compress({payer:n.publicKey,owner:s.publicKey,source:a,toAddress:u,amount:o,mint:r,outputStateTree:m,tokenProgramId:l}),c=await i.getLatestBlockhash(),p=t.dedupeSigner(n,[s]),g=t.buildAndSignTx([e.ComputeBudgetProgram.setComputeUnitLimit({units:1e6}),d],n,c.blockhash,p);return await t.sendAndConfirmTx(i,g,h,c)},exports.compressSplTokenAccount=async function(i,n,r,o,s,a,u,m,h){h=h||await N.get_mint_program_id(r,i);const l=await N.compressSplTokenAccount({feePayer:n.publicKey,authority:o.publicKey,tokenAccount:s,mint:r,remainingAmount:u,outputStateTree:a,tokenProgramId:h}),d=await i.getLatestBlockhash(),c=t.dedupeSigner(n,[o]),p=t.buildAndSignTx([e.ComputeBudgetProgram.setComputeUnitLimit({units:1e6}),l],n,d.blockhash,c);return await t.sendAndConfirmTx(i,p,m,d)},exports.compressSplTokenAccountInstructionDataLayout=T,exports.createDecompressOutputState=R,exports.createMint=async function(n,r,o,s,a=e.Keypair.generate(),u,m=0){const h=await n.getMinimumBalanceForRentExemption(i.MINT_SIZE),l=m?i.TOKEN_2022_PROGRAM_ID:i.TOKEN_PROGRAM_ID,d=await N.createMint({feePayer:r.publicKey,mint:a.publicKey,decimals:s,authority:o,freezeAuthority:null,rentExemptBalance:h,tokenProgramId:l}),{blockhash:c}=await n.getLatestBlockhash(),p=t.dedupeSigner(r,[a]),g=t.buildAndSignTx(d,r,c,p),f=await t.sendAndConfirmTx(n,g,u);return{mint:a.publicKey,transactionSignature:f}},exports.createTokenPool=async function(e,i,n,r,o){o=o||await N.get_mint_program_id(n,e);const s=await N.createTokenPool({feePayer:i.publicKey,mint:n,tokenProgramId:o}),{blockhash:a}=await e.getLatestBlockhash(),u=t.buildAndSignTx([s],i,a);return await t.sendAndConfirmTx(e,u,r)},exports.createTokenPoolAccountsLayout=_,exports.createTokenProgramLookupTable=async function(e,i,n,r,o){const s=await e.getSlot("finalized"),{instructions:a,address:u}=await N.createTokenProgramLookupTable({payer:i.publicKey,authority:n.publicKey,mints:r,remainingAccounts:o,recentSlot:s}),m=t.dedupeSigner(i,[n]),h=await e.getLatestBlockhash(),l=t.buildAndSignTx([a[0]],i,h.blockhash,m),d=await t.sendAndConfirmTx(e,l,{commitment:"finalized"},h),c=await e.getLatestBlockhash(),p=t.buildAndSignTx([a[1]],i,c.blockhash,m);return{txIds:[d,await t.sendAndConfirmTx(e,p,{commitment:"finalized"},c)],address:u}},exports.createTransferOutputState=L,exports.decodeCompressSplTokenAccountInstructionData=function(t){const e=T.decode(t.slice(l.length));return{owner:e.owner,remainingAmount:e.remainingAmount,cpiContext:e.cpiContext}},exports.decodeMintToInstructionData=function(t){const e=A.decode(t.slice(m.length));return{recipients:e.recipients,amounts:e.amounts,lamports:e.lamports}},exports.decodeTransferInstructionData=function(t){return S.decode(t.slice(h.length+4))},exports.decompress=async function(i,n,r,o,s,a,u,m,h){h=h||await N.get_mint_program_id(r,i),o=t.bn(o);const l=await i.getCompressedTokenAccountsByOwner(s.publicKey,{mint:r}),[d]=W(l.items,o),c=await i.getValidityProof(d.map((e=>t.bn(e.compressedAccount.hash)))),p=await N.decompress({payer:n.publicKey,inputCompressedTokenAccounts:d,toAddress:a,amount:o,outputStateTree:u,recentInputStateRootIndices:c.rootIndices,recentValidityProof:c.compressedProof,tokenProgramId:h}),{blockhash:g}=await i.getLatestBlockhash(),f=t.dedupeSigner(n,[s]),y=t.buildAndSignTx([e.ComputeBudgetProgram.setComputeUnitLimit({units:1e6}),p],n,g,f);return await t.sendAndConfirmTx(i,y,m)},exports.encodeCompressSplTokenAccountInstructionData=I,exports.encodeMintToInstructionData=C,exports.encodeTransferInstructionData=x,exports.mergeTokenAccounts=async function(i,n,r,o,s,a){const u=await i.getCompressedTokenAccountsByOwner(o.publicKey,{mint:r});if(0===u.items.length)throw new Error(`No compressed token accounts found for mint ${r.toBase58()}`);if(u.items.length>=6)throw new Error(`Too many compressed token accounts used for mint ${r.toBase58()}`);const m=[e.ComputeBudgetProgram.setComputeUnitLimit({units:1e6})];for(let e=0;e<u.items.slice(0,6).length;e+=3){const a=u.items.slice(e,e+3),h=await i.getValidityProof(a.map((e=>t.bn(e.compressedAccount.hash)))),l=await N.mergeTokenAccounts({payer:n.publicKey,owner:o.publicKey,mint:r,inputCompressedTokenAccounts:a,outputStateTree:s,recentValidityProof:h.compressedProof,recentInputStateRootIndices:h.rootIndices});m.push(...l)}const{blockhash:h}=await i.getLatestBlockhash(),l=t.dedupeSigner(n,[o]),d=t.buildAndSignTx(m,n,h,l);return await t.sendAndConfirmTx(i,d,a)},exports.mintTo=async function(i,n,r,o,s,a,u,m,h){h=h||await N.get_mint_program_id(r,i);const l=t.dedupeSigner(n,[s]),d=await N.mintTo({feePayer:n.publicKey,mint:r,authority:s.publicKey,amount:a,toPubkey:o,merkleTree:u,tokenProgramId:h}),{blockhash:c}=await i.getLatestBlockhash(),p=t.buildAndSignTx([e.ComputeBudgetProgram.setComputeUnitLimit({units:1e6}),d],n,c,l);return await t.sendAndConfirmTx(i,p,m)},exports.mintToAccountsLayout=O,exports.mintToLayout=A,exports.packCompressedTokenAccounts=o,exports.parseTokenData=K,exports.selectMinCompressedTokenAccountsForTransfer=W,exports.sumUpTokenAmount=E,exports.transfer=async function(i,n,r,o,s,a,u,m){o=t.bn(o);const h=await i.getCompressedTokenAccountsByOwner(s.publicKey,{mint:r}),[l]=W(h.items,o),d=await i.getValidityProof(l.map((e=>t.bn(e.compressedAccount.hash)))),c=await N.transfer({payer:n.publicKey,inputCompressedTokenAccounts:l,toAddress:a,amount:o,recentInputStateRootIndices:d.rootIndices,recentValidityProof:d.compressedProof,outputStateTrees:u}),{blockhash:p}=await i.getLatestBlockhash(),g=t.dedupeSigner(n,[s]),f=t.buildAndSignTx([e.ComputeBudgetProgram.setComputeUnitLimit({units:1e6}),c],n,p,g);return await t.sendAndConfirmTx(i,f,m)},exports.transferAccountsLayout=D,exports.validateSameTokenOwner=B;
2835
2
  //# sourceMappingURL=index.cjs.map