@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.
- package/dist/cjs/browser/index.cjs +1 -2834
- package/dist/cjs/browser/index.cjs.map +1 -1
- package/dist/cjs/node/index.cjs +1 -2834
- package/dist/cjs/node/index.cjs.map +1 -1
- package/dist/types/index.d.ts +1839 -1840
- package/package.json +23 -19
- package/dist/es/browser/index.js +0 -2810
- package/dist/es/browser/index.js.map +0 -1
|
@@ -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"),r=require("@solana/spl-token"),n=require("@coral-xyz/borsh");function i(e){const{inputCompressedTokenAccounts:r,outputStateTrees:n,remainingAccounts:i=[],rootIndices:o,tokenTransferOutputs:s}=e,a=i.slice();let u=null;r.length>0&&r[0].parsed.delegate&&(u=t.getIndexOrAdd(a,r[0].parsed.delegate));const h=[];r.forEach(((e,r)=>{const n=t.getIndexOrAdd(a,e.compressedAccount.merkleTree),i=t.getIndexOrAdd(a,e.compressedAccount.nullifierQueue);h.push({amount:e.parsed.amount,delegateIndex:u,merkleContext:{merkleTreePubkeyIndex:n,nullifierQueuePubkeyIndex:i,leafIndex:e.compressedAccount.leafIndex,queueIndex:null},rootIndex:o[r],lamports:e.compressedAccount.lamports.eq(t.bn(0))?null:e.compressedAccount.lamports,tlv:null})}));const m=t.padOutputStateMerkleTrees(n,s.length,r.map((t=>t.compressedAccount))),l=[];m.forEach(((e,r)=>{var n;const i=t.getIndexOrAdd(a,e);l.push({owner:s[r].owner,amount:s[r].amount,lamports:(null===(n=s[r].lamports)||void 0===n?void 0:n.eq(t.bn(0)))?null:s[r].lamports,merkleTreeIndex:i,tlv:null})}));const c=a.map((t=>({pubkey:t,isWritable:1,isSigner:0})));return{inputTokenDataWithContext:h,remainingAccountMetas:c,packedOutputTokenData:l}}const o=Buffer.from("pool"),s=Buffer.from("cpi_authority"),a=Buffer.from([23,169,27,122,147,169,209,152]),u=Buffer.from([241,34,48,186,37,179,123,192]),h=Buffer.from([163,52,200,231,140,3,69,186]),m=Buffer.from([112,230,105,101,145,202,157,97]);var l="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 r=function t(){return this instanceof t?Reflect.construct(e,arguments,this.constructor):e.apply(this,arguments)};r.prototype=e.prototype}else r={};return Object.defineProperty(r,"__esModule",{value:1}),Object.keys(t).forEach((function(e){var n=Object.getOwnPropertyDescriptor(t,e);Object.defineProperty(r,e,n.get?n:{enumerable:1,get:function(){return t[e]}})})),r}var d={exports:{}},f="undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},g=[],y=[],M="undefined"!=typeof Uint8Array?Uint8Array:Array,v=0;function w(){v=1;for(var t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",e=0;e<64;++e)g[e]=t[e],y[t.charCodeAt(e)]=e;y["-".charCodeAt(0)]=62,y["_".charCodeAt(0)]=63}function b(t,e,r){for(var n,i,o=[],s=e;s<r;s+=3)n=(t[s]<<16)+(t[s+1]<<8)+t[s+2],o.push(g[(i=n)>>18&63]+g[i>>12&63]+g[i>>6&63]+g[63&i]);return o.join("")}function P(t){var e;v||w();for(var r=t.length,n=r%3,i="",o=[],s=16383,a=0,u=r-n;a<u;a+=s)o.push(b(t,a,a+s>u?u:a+s));return 1===n?(e=t[r-1],i+=g[e>>2],i+=g[e<<4&63],i+="=="):2===n&&(e=(t[r-2]<<8)+t[r-1],i+=g[e>>10],i+=g[e>>4&63],i+=g[e<<2&63],i+="="),o.push(i),o.join("")}function k(t,e,r,n,i){var o,s,a=8*i-n-1,u=(1<<a)-1,h=u>>1,m=-7,l=r?i-1:0,c=r?-1:1,p=t[e+l];for(l+=c,o=p&(1<<-m)-1,p>>=-m,m+=a;m>0;o=256*o+t[e+l],l+=c,m-=8);for(s=o&(1<<-m)-1,o>>=-m,m+=n;m>0;s=256*s+t[e+l],l+=c,m-=8);if(0===o)o=1-h;else{if(o===u)return s?NaN:Infinity*(p?-1:1);s+=Math.pow(2,n),o-=h}return(p?-1:1)*s*Math.pow(2,o-n)}function A(t,e,r,n,i,o){var s,a,u,h=8*o-i-1,m=(1<<h)-1,l=m>>1,c=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,p=n?0:o-1,d=n?1:-1,f=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||Infinity===e?(a=isNaN(e)?1:0,s=m):(s=Math.floor(Math.log(e)/Math.LN2),e*(u=Math.pow(2,-s))<1&&(s--,u*=2),(e+=s+l>=1?c/u:c*Math.pow(2,1-l))*u>=2&&(s++,u/=2),s+l>=m?(a=0,s=m):s+l>=1?(a=(e*u-1)*Math.pow(2,i),s+=l):(a=e*Math.pow(2,l-1)*Math.pow(2,i),s=0));i>=8;t[r+p]=255&a,p+=d,a/=256,i-=8);for(s=s<<i|a,h+=i;h>0;t[r+p]=255&s,p+=d,s/=256,h-=8);t[r+p-d]|=128*f}var S={}.toString,T=Array.isArray||function(t){return"[object Array]"==S.call(t)};x.TYPED_ARRAY_SUPPORT=void 0!==f.TYPED_ARRAY_SUPPORT?f.TYPED_ARRAY_SUPPORT:1;var C=I();function I(){return x.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function _(t,e){if(I()<e)throw new RangeError("Invalid typed array length");return x.TYPED_ARRAY_SUPPORT?(t=new Uint8Array(e)).__proto__=x.prototype:(null===t&&(t=new x(e)),t.length=e),t}function x(t,e,r){if(!(x.TYPED_ARRAY_SUPPORT||this instanceof x))return new x(t,e,r);if("number"==typeof t){if("string"==typeof e)throw new Error("If encoding is specified then the first argument must be a string");return O(this,t)}return E(this,t,e,r)}function E(t,e,r,n){if("number"==typeof e)throw new TypeError('"value" argument must not be a number');return"undefined"!=typeof ArrayBuffer&&e instanceof ArrayBuffer?function(t,e,r,n){if(e.byteLength,r<0||e.byteLength<r)throw new RangeError("'offset' is out of bounds");if(e.byteLength<r+(n||0))throw new RangeError("'length' is out of bounds");return e=void 0===r&&void 0===n?new Uint8Array(e):void 0===n?new Uint8Array(e,r):new Uint8Array(e,r,n),x.TYPED_ARRAY_SUPPORT?(t=e).__proto__=x.prototype:t=D(t,e),t}(t,e,r,n):"string"==typeof e?function(t,e,r){if("string"==typeof r&&""!==r||(r="utf8"),!x.isEncoding(r))throw new TypeError('"encoding" must be a valid string encoding');var n=0|U(e,r),i=(t=_(t,n)).write(e,r);return i!==n&&(t=t.slice(0,i)),t}(t,e,r):function(t,e){if(L(e)){var r=0|B(e.length);return 0===(t=_(t,r)).length||e.copy(t,0,0,r),t}if(e){if("undefined"!=typeof ArrayBuffer&&e.buffer instanceof ArrayBuffer||"length"in e)return"number"!=typeof e.length||(n=e.length)!=n?_(t,0):D(t,e);if("Buffer"===e.type&&T(e.data))return D(t,e.data)}var n;throw new TypeError("First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.")}(t,e)}function R(t){if("number"!=typeof t)throw new TypeError('"size" argument must be a number');if(t<0)throw new RangeError('"size" argument must not be negative')}function O(t,e){if(R(e),t=_(t,e<0?0:0|B(e)),!x.TYPED_ARRAY_SUPPORT)for(var r=0;r<e;++r)t[r]=0;return t}function D(t,e){var r=e.length<0?0:0|B(e.length);t=_(t,r);for(var n=0;n<r;n+=1)t[n]=255&e[n];return t}function B(t){if(t>=I())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+I().toString(16)+" bytes");return 0|t}function L(t){return!(null==t||!t._isBuffer)}function U(t,e){if(L(t))return t.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(t)||t instanceof ArrayBuffer))return t.byteLength;"string"!=typeof t&&(t=""+t);var r=t.length;if(0===r)return 0;for(var n=0;;)switch(e){case"ascii":case"latin1":case"binary":return r;case"utf8":case"utf-8":case void 0:return ht(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*r;case"hex":return r>>>1;case"base64":return mt(t).length;default:if(n)return ht(t).length;e=(""+e).toLowerCase(),n=1}}function N(t,e,r){var n=0;if((void 0===e||e<0)&&(e=0),e>this.length)return"";if((void 0===r||r>this.length)&&(r=this.length),r<=0)return"";if((r>>>=0)<=(e>>>=0))return"";for(t||(t="utf8");;)switch(t){case"hex":return J(this,e,r);case"utf8":case"utf-8":return G(this,e,r);case"ascii":return $(this,e,r);case"latin1":case"binary":return X(this,e,r);case"base64":return V(this,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return tt(this,e,r);default:if(n)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),n=1}}function K(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}function W(t,e,r,n,i){if(0===t.length)return-1;if("string"==typeof r?(n=r,r=0):r>2147483647?r=2147483647:r<-2147483648&&(r=-2147483648),r=+r,isNaN(r)&&(r=i?0:t.length-1),r<0&&(r=t.length+r),r>=t.length){if(i)return-1;r=t.length-1}else if(r<0){if(!i)return-1;r=0}if("string"==typeof e&&(e=x.from(e,n)),L(e))return 0===e.length?-1:q(t,e,r,n,i);if("number"==typeof e)return e&=255,x.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(t,e,r):Uint8Array.prototype.lastIndexOf.call(t,e,r):q(t,[e],r,n,i);throw new TypeError("val must be string, number or Buffer")}function q(t,e,r,n,i){var o,s=1,a=t.length,u=e.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(t.length<2||e.length<2)return-1;s=2,a/=2,u/=2,r/=2}function h(t,e){return 1===s?t[e]:t.readUInt16BE(e*s)}if(i){var m=-1;for(o=r;o<a;o++)if(h(t,o)===h(e,-1===m?0:o-m)){if(-1===m&&(m=o),o-m+1===u)return m*s}else-1!==m&&(o-=o-m),m=-1}else for(r+u>a&&(r=a-u),o=r;o>=0;o--){for(var l=1,c=0;c<u;c++)if(h(t,o+c)!==h(e,c)){l=0;break}if(l)return o}return-1}function F(t,e,r,n){r=Number(r)||0;var i=t.length-r;n?(n=Number(n))>i&&(n=i):n=i;var o=e.length;if(o%2!=0)throw new TypeError("Invalid hex string");n>o/2&&(n=o/2);for(var s=0;s<n;++s){var a=parseInt(e.substr(2*s,2),16);if(isNaN(a))return s;t[r+s]=a}return s}function Y(t,e,r,n){return lt(ht(e,t.length-r),t,r,n)}function z(t,e,r,n){return lt(function(t){for(var e=[],r=0;r<t.length;++r)e.push(255&t.charCodeAt(r));return e}(e),t,r,n)}function Z(t,e,r,n){return z(t,e,r,n)}function H(t,e,r,n){return lt(mt(e),t,r,n)}function j(t,e,r,n){return lt(function(t,e){for(var r,n,i,o=[],s=0;s<t.length&&!((e-=2)<0);++s)n=(r=t.charCodeAt(s))>>8,i=r%256,o.push(i),o.push(n);return o}(e,t.length-r),t,r,n)}function V(t,e,r){return 0===e&&r===t.length?P(t):P(t.slice(e,r))}function G(t,e,r){r=Math.min(t.length,r);for(var n=[],i=e;i<r;){var o,s,a,u,h=t[i],m=null,l=h>239?4:h>223?3:h>191?2:1;if(i+l<=r)switch(l){case 1:h<128&&(m=h);break;case 2:128==(192&(o=t[i+1]))&&(u=(31&h)<<6|63&o)>127&&(m=u);break;case 3:o=t[i+1],s=t[i+2],128==(192&o)&&128==(192&s)&&(u=(15&h)<<12|(63&o)<<6|63&s)>2047&&(u<55296||u>57343)&&(m=u);break;case 4:o=t[i+1],s=t[i+2],a=t[i+3],128==(192&o)&&128==(192&s)&&128==(192&a)&&(u=(15&h)<<18|(63&o)<<12|(63&s)<<6|63&a)>65535&&u<1114112&&(m=u)}null===m?(m=65533,l=1):m>65535&&(m-=65536,n.push(m>>>10&1023|55296),m=56320|1023&m),n.push(m),i+=l}return function(t){var e=t.length;if(e<=Q)return String.fromCharCode.apply(String,t);for(var r="",n=0;n<e;)r+=String.fromCharCode.apply(String,t.slice(n,n+=Q));return r}(n)}x.poolSize=8192,x._augment=function(t){return t.__proto__=x.prototype,t},x.from=function(t,e,r){return E(null,t,e,r)},x.TYPED_ARRAY_SUPPORT&&(x.prototype.__proto__=Uint8Array.prototype,x.__proto__=Uint8Array,"undefined"!=typeof Symbol&&Symbol.species&&x[Symbol.species]),x.alloc=function(t,e,r){return function(t,e,r,n){return R(e),e<=0?_(t,e):void 0!==r?"string"==typeof n?_(t,e).fill(r,n):_(t,e).fill(r):_(t,e)}(null,t,e,r)},x.allocUnsafe=function(t){return O(null,t)},x.allocUnsafeSlow=function(t){return O(null,t)},x.isBuffer=ct,x.compare=function(t,e){if(!L(t)||!L(e))throw new TypeError("Arguments must be Buffers");if(t===e)return 0;for(var r=t.length,n=e.length,i=0,o=Math.min(r,n);i<o;++i)if(t[i]!==e[i]){r=t[i],n=e[i];break}return r<n?-1:n<r?1:0},x.isEncoding=function(t){switch(String(t).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 1;default:return 0}},x.concat=function(t,e){if(!T(t))throw new TypeError('"list" argument must be an Array of Buffers');if(0===t.length)return x.alloc(0);var r;if(void 0===e)for(e=0,r=0;r<t.length;++r)e+=t[r].length;var n=x.allocUnsafe(e),i=0;for(r=0;r<t.length;++r){var o=t[r];if(!L(o))throw new TypeError('"list" argument must be an Array of Buffers');o.copy(n,i),i+=o.length}return n},x.byteLength=U,x.prototype._isBuffer=1,x.prototype.swap16=function(){var t=this.length;if(t%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var e=0;e<t;e+=2)K(this,e,e+1);return this},x.prototype.swap32=function(){var t=this.length;if(t%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var e=0;e<t;e+=4)K(this,e,e+3),K(this,e+1,e+2);return this},x.prototype.swap64=function(){var t=this.length;if(t%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var e=0;e<t;e+=8)K(this,e,e+7),K(this,e+1,e+6),K(this,e+2,e+5),K(this,e+3,e+4);return this},x.prototype.toString=function(){var t=0|this.length;return 0===t?"":0===arguments.length?G(this,0,t):N.apply(this,arguments)},x.prototype.equals=function(t){if(!L(t))throw new TypeError("Argument must be a Buffer");return this===t?1:0===x.compare(this,t)},x.prototype.inspect=function(){var t="";return this.length>0&&(t=this.toString("hex",0,50).match(/.{2}/g).join(" "),this.length>50&&(t+=" ... ")),"<Buffer "+t+">"},x.prototype.compare=function(t,e,r,n,i){if(!L(t))throw new TypeError("Argument must be a Buffer");if(void 0===e&&(e=0),void 0===r&&(r=t?t.length:0),void 0===n&&(n=0),void 0===i&&(i=this.length),e<0||r>t.length||n<0||i>this.length)throw new RangeError("out of range index");if(n>=i&&e>=r)return 0;if(n>=i)return-1;if(e>=r)return 1;if(this===t)return 0;for(var o=(i>>>=0)-(n>>>=0),s=(r>>>=0)-(e>>>=0),a=Math.min(o,s),u=this.slice(n,i),h=t.slice(e,r),m=0;m<a;++m)if(u[m]!==h[m]){o=u[m],s=h[m];break}return o<s?-1:s<o?1:0},x.prototype.includes=function(t,e,r){return-1!==this.indexOf(t,e,r)},x.prototype.indexOf=function(t,e,r){return W(this,t,e,r,1)},x.prototype.lastIndexOf=function(t,e,r){return W(this,t,e,r,0)},x.prototype.write=function(t,e,r,n){if(void 0===e)n="utf8",r=this.length,e=0;else if(void 0===r&&"string"==typeof e)n=e,r=this.length,e=0;else{if(!isFinite(e))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");e|=0,isFinite(r)?(r|=0,void 0===n&&(n="utf8")):(n=r,r=void 0)}var i=this.length-e;if((void 0===r||r>i)&&(r=i),t.length>0&&(r<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var o=0;;)switch(n){case"hex":return F(this,t,e,r);case"utf8":case"utf-8":return Y(this,t,e,r);case"ascii":return z(this,t,e,r);case"latin1":case"binary":return Z(this,t,e,r);case"base64":return H(this,t,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return j(this,t,e,r);default:if(o)throw new TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),o=1}},x.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var Q=4096;function $(t,e,r){var n="";r=Math.min(t.length,r);for(var i=e;i<r;++i)n+=String.fromCharCode(127&t[i]);return n}function X(t,e,r){var n="";r=Math.min(t.length,r);for(var i=e;i<r;++i)n+=String.fromCharCode(t[i]);return n}function J(t,e,r){var n,i=t.length;(!e||e<0)&&(e=0),(!r||r<0||r>i)&&(r=i);for(var o="",s=e;s<r;++s)o+=(n=t[s])<16?"0"+n.toString(16):n.toString(16);return o}function tt(t,e,r){for(var n=t.slice(e,r),i="",o=0;o<n.length;o+=2)i+=String.fromCharCode(n[o]+256*n[o+1]);return i}function et(t,e,r){if(t%1!=0||t<0)throw new RangeError("offset is not uint");if(t+e>r)throw new RangeError("Trying to access beyond buffer length")}function rt(t,e,r,n,i,o){if(!L(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>i||e<o)throw new RangeError('"value" argument is out of bounds');if(r+n>t.length)throw new RangeError("Index out of range")}function nt(t,e,r,n){e<0&&(e=65535+e+1);for(var i=0,o=Math.min(t.length-r,2);i<o;++i)t[r+i]=(e&255<<8*(n?i:1-i))>>>8*(n?i:1-i)}function it(t,e,r,n){e<0&&(e=4294967295+e+1);for(var i=0,o=Math.min(t.length-r,4);i<o;++i)t[r+i]=e>>>8*(n?i:3-i)&255}function ot(t,e,r,n){if(r+n>t.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("Index out of range")}function st(t,e,r,n,i){return i||ot(t,0,r,4),A(t,e,r,n,23,4),r+4}function at(t,e,r,n,i){return i||ot(t,0,r,8),A(t,e,r,n,52,8),r+8}x.prototype.slice=function(t,e){var r,n=this.length;if((t=~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),(e=void 0===e?n:~~e)<0?(e+=n)<0&&(e=0):e>n&&(e=n),e<t&&(e=t),x.TYPED_ARRAY_SUPPORT)(r=this.subarray(t,e)).__proto__=x.prototype;else{var i=e-t;r=new x(i,void 0);for(var o=0;o<i;++o)r[o]=this[o+t]}return r},x.prototype.readUIntLE=function(t,e,r){t|=0,e|=0,r||et(t,e,this.length);for(var n=this[t],i=1,o=0;++o<e&&(i*=256);)n+=this[t+o]*i;return n},x.prototype.readUIntBE=function(t,e,r){t|=0,e|=0,r||et(t,e,this.length);for(var n=this[t+--e],i=1;e>0&&(i*=256);)n+=this[t+--e]*i;return n},x.prototype.readUInt8=function(t,e){return e||et(t,1,this.length),this[t]},x.prototype.readUInt16LE=function(t,e){return e||et(t,2,this.length),this[t]|this[t+1]<<8},x.prototype.readUInt16BE=function(t,e){return e||et(t,2,this.length),this[t]<<8|this[t+1]},x.prototype.readUInt32LE=function(t,e){return e||et(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},x.prototype.readUInt32BE=function(t,e){return e||et(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},x.prototype.readIntLE=function(t,e,r){t|=0,e|=0,r||et(t,e,this.length);for(var n=this[t],i=1,o=0;++o<e&&(i*=256);)n+=this[t+o]*i;return n>=(i*=128)&&(n-=Math.pow(2,8*e)),n},x.prototype.readIntBE=function(t,e,r){t|=0,e|=0,r||et(t,e,this.length);for(var n=e,i=1,o=this[t+--n];n>0&&(i*=256);)o+=this[t+--n]*i;return o>=(i*=128)&&(o-=Math.pow(2,8*e)),o},x.prototype.readInt8=function(t,e){return e||et(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},x.prototype.readInt16LE=function(t,e){e||et(t,2,this.length);var r=this[t]|this[t+1]<<8;return 32768&r?4294901760|r:r},x.prototype.readInt16BE=function(t,e){e||et(t,2,this.length);var r=this[t+1]|this[t]<<8;return 32768&r?4294901760|r:r},x.prototype.readInt32LE=function(t,e){return e||et(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},x.prototype.readInt32BE=function(t,e){return e||et(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},x.prototype.readFloatLE=function(t,e){return e||et(t,4,this.length),k(this,t,1,23,4)},x.prototype.readFloatBE=function(t,e){return e||et(t,4,this.length),k(this,t,0,23,4)},x.prototype.readDoubleLE=function(t,e){return e||et(t,8,this.length),k(this,t,1,52,8)},x.prototype.readDoubleBE=function(t,e){return e||et(t,8,this.length),k(this,t,0,52,8)},x.prototype.writeUIntLE=function(t,e,r,n){t=+t,e|=0,r|=0,n||rt(this,t,e,r,Math.pow(2,8*r)-1,0);var i=1,o=0;for(this[e]=255&t;++o<r&&(i*=256);)this[e+o]=t/i&255;return e+r},x.prototype.writeUIntBE=function(t,e,r,n){t=+t,e|=0,r|=0,n||rt(this,t,e,r,Math.pow(2,8*r)-1,0);var i=r-1,o=1;for(this[e+i]=255&t;--i>=0&&(o*=256);)this[e+i]=t/o&255;return e+r},x.prototype.writeUInt8=function(t,e,r){return t=+t,e|=0,r||rt(this,t,e,1,255,0),x.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),this[e]=255&t,e+1},x.prototype.writeUInt16LE=function(t,e,r){return t=+t,e|=0,r||rt(this,t,e,2,65535,0),x.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):nt(this,t,e,1),e+2},x.prototype.writeUInt16BE=function(t,e,r){return t=+t,e|=0,r||rt(this,t,e,2,65535,0),x.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):nt(this,t,e,0),e+2},x.prototype.writeUInt32LE=function(t,e,r){return t=+t,e|=0,r||rt(this,t,e,4,4294967295,0),x.TYPED_ARRAY_SUPPORT?(this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t):it(this,t,e,1),e+4},x.prototype.writeUInt32BE=function(t,e,r){return t=+t,e|=0,r||rt(this,t,e,4,4294967295,0),x.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):it(this,t,e,0),e+4},x.prototype.writeIntLE=function(t,e,r,n){if(t=+t,e|=0,!n){var i=Math.pow(2,8*r-1);rt(this,t,e,r,i-1,-i)}var o=0,s=1,a=0;for(this[e]=255&t;++o<r&&(s*=256);)t<0&&0===a&&0!==this[e+o-1]&&(a=1),this[e+o]=(t/s>>0)-a&255;return e+r},x.prototype.writeIntBE=function(t,e,r,n){if(t=+t,e|=0,!n){var i=Math.pow(2,8*r-1);rt(this,t,e,r,i-1,-i)}var o=r-1,s=1,a=0;for(this[e+o]=255&t;--o>=0&&(s*=256);)t<0&&0===a&&0!==this[e+o+1]&&(a=1),this[e+o]=(t/s>>0)-a&255;return e+r},x.prototype.writeInt8=function(t,e,r){return t=+t,e|=0,r||rt(this,t,e,1,127,-128),x.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),t<0&&(t=255+t+1),this[e]=255&t,e+1},x.prototype.writeInt16LE=function(t,e,r){return t=+t,e|=0,r||rt(this,t,e,2,32767,-32768),x.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):nt(this,t,e,1),e+2},x.prototype.writeInt16BE=function(t,e,r){return t=+t,e|=0,r||rt(this,t,e,2,32767,-32768),x.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):nt(this,t,e,0),e+2},x.prototype.writeInt32LE=function(t,e,r){return t=+t,e|=0,r||rt(this,t,e,4,2147483647,-2147483648),x.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24):it(this,t,e,1),e+4},x.prototype.writeInt32BE=function(t,e,r){return t=+t,e|=0,r||rt(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),x.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):it(this,t,e,0),e+4},x.prototype.writeFloatLE=function(t,e,r){return st(this,t,e,1,r)},x.prototype.writeFloatBE=function(t,e,r){return st(this,t,e,0,r)},x.prototype.writeDoubleLE=function(t,e,r){return at(this,t,e,1,r)},x.prototype.writeDoubleBE=function(t,e,r){return at(this,t,e,0,r)},x.prototype.copy=function(t,e,r,n){if(r||(r=0),n||0===n||(n=this.length),e>=t.length&&(e=t.length),e||(e=0),n>0&&n<r&&(n=r),n===r)return 0;if(0===t.length||0===this.length)return 0;if(e<0)throw new RangeError("targetStart out of bounds");if(r<0||r>=this.length)throw new RangeError("sourceStart out of bounds");if(n<0)throw new RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),t.length-e<n-r&&(n=t.length-e+r);var i,o=n-r;if(this===t&&r<e&&e<n)for(i=o-1;i>=0;--i)t[i+e]=this[i+r];else if(o<1e3||!x.TYPED_ARRAY_SUPPORT)for(i=0;i<o;++i)t[i+e]=this[i+r];else Uint8Array.prototype.set.call(t,this.subarray(r,r+o),e);return o},x.prototype.fill=function(t,e,r,n){if("string"==typeof t){if("string"==typeof e?(n=e,e=0,r=this.length):"string"==typeof r&&(n=r,r=this.length),1===t.length){var i=t.charCodeAt(0);i<256&&(t=i)}if(void 0!==n&&"string"!=typeof n)throw new TypeError("encoding must be a string");if("string"==typeof n&&!x.isEncoding(n))throw new TypeError("Unknown encoding: "+n)}else"number"==typeof t&&(t&=255);if(e<0||this.length<e||this.length<r)throw new RangeError("Out of range index");if(r<=e)return this;var o;if(e>>>=0,r=void 0===r?this.length:r>>>0,t||(t=0),"number"==typeof t)for(o=e;o<r;++o)this[o]=t;else{var s=L(t)?t:ht(new x(t,n).toString()),a=s.length;for(o=0;o<r-e;++o)this[o+e]=s[o%a]}return this};var ut=/[^+\/0-9A-Za-z-_]/g;function ht(t,e){var r;e=e||Infinity;for(var n=t.length,i=null,o=[],s=0;s<n;++s){if((r=t.charCodeAt(s))>55295&&r<57344){if(!i){if(r>56319){(e-=3)>-1&&o.push(239,191,189);continue}if(s+1===n){(e-=3)>-1&&o.push(239,191,189);continue}i=r;continue}if(r<56320){(e-=3)>-1&&o.push(239,191,189),i=r;continue}r=65536+(i-55296<<10|r-56320)}else i&&(e-=3)>-1&&o.push(239,191,189);if(i=null,r<128){if((e-=1)<0)break;o.push(r)}else if(r<2048){if((e-=2)<0)break;o.push(r>>6|192,63&r|128)}else if(r<65536){if((e-=3)<0)break;o.push(r>>12|224,r>>6&63|128,63&r|128)}else{if(!(r<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;o.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}}return o}function mt(t){return function(t){var e,r,n,i,o,s;v||w();var a=t.length;if(a%4>0)throw new Error("Invalid string. Length must be a multiple of 4");o="="===t[a-2]?2:"="===t[a-1]?1:0,s=new M(3*a/4-o),n=o>0?a-4:a;var u=0;for(e=0,r=0;e<n;e+=4,r+=3)i=y[t.charCodeAt(e)]<<18|y[t.charCodeAt(e+1)]<<12|y[t.charCodeAt(e+2)]<<6|y[t.charCodeAt(e+3)],s[u++]=i>>16&255,s[u++]=i>>8&255,s[u++]=255&i;return 2===o?(i=y[t.charCodeAt(e)]<<2|y[t.charCodeAt(e+1)]>>4,s[u++]=255&i):1===o&&(i=y[t.charCodeAt(e)]<<10|y[t.charCodeAt(e+1)]<<4|y[t.charCodeAt(e+2)]>>2,s[u++]=i>>8&255,s[u++]=255&i),s}(function(t){if((t=function(t){return t.trim?t.trim():t.replace(/^\s+|\s+$/g,"")}(t).replace(ut,"")).length<2)return"";for(;t.length%4!=0;)t+="=";return t}(t))}function lt(t,e,r,n){for(var i=0;i<n&&!(i+r>=e.length||i>=t.length);++i)e[i+r]=t[i];return i}function ct(t){return null!=t&&(!!t._isBuffer||pt(t)||function(t){return"function"==typeof t.readFloatLE&&"function"==typeof t.slice&&pt(t.slice(0,0))}(t))}function pt(t){return!!t.constructor&&"function"==typeof t.constructor.isBuffer&&t.constructor.isBuffer(t)}var dt=p(Object.freeze({__proto__:null,Buffer:x,INSPECT_MAX_BYTES:50,SlowBuffer:function(t){return+t!=t&&(t=0),x.alloc(+t)},isBuffer:ct,kMaxLength:C}));!function(t,e){function r(t,e){if(!t)throw new Error(e||"Assertion failed")}function n(t,e){t.super_=e;var r=function(){};r.prototype=e.prototype,t.prototype=new r,t.prototype.constructor=t}function i(t,e,r){if(i.isBN(t))return t;this.negative=0,this.words=null,this.length=0,this.red=null,null!==t&&("le"!==e&&"be"!==e||(r=e,e=10),this._init(t||0,e||10,r||"be"))}var o;"object"==typeof d?d.exports=i:e.BN=i,i.BN=i,i.wordSize=26;try{o="undefined"!=typeof window&&void 0!==window.Buffer?window.Buffer:dt.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 r(0,"Invalid character in "+t)}function a(t,e,r){var n=s(t,r);return r-1>=e&&(n|=s(t,r-1)<<4),n}function u(t,e,n,i){for(var o=0,s=0,a=Math.min(t.length,n),u=e;u<a;u++){var h=t.charCodeAt(u)-48;o*=i,s=h>=49?h-49+10:h>=17?h-17+10:h,r(h>=0&&s<i,"Invalid character"),o+=s}return o}function h(t,e){t.words=e.words,t.length=e.length,t.negative=e.negative,t.red=e.red}if(i.isBN=function(t){return t instanceof i?1:null!==t&&"object"==typeof t&&t.constructor.wordSize===i.wordSize&&Array.isArray(t.words)},i.max=function(t,e){return t.cmp(e)>0?t:e},i.min=function(t,e){return t.cmp(e)<0?t:e},i.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),r(e===(0|e)&&e>=2&&e<=36);var i=0;"-"===(t=t.toString().replace(/\s+/g,""))[0]&&(i++,this.negative=1),i<t.length&&(16===e?this._parseHex(t,i,n):(this._parseBase(t,e,i),"le"===n&&this._initArray(this.toArray(),e,n)))},i.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):(r(t<9007199254740992),this.words=[67108863&t,t/67108864&67108863,1],this.length=3),"le"===n&&this._initArray(this.toArray(),e,n)},i.prototype._initArray=function(t,e,n){if(r("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 i=0;i<this.length;i++)this.words[i]=0;var o,s,a=0;if("be"===n)for(i=t.length-1,o=0;i>=0;i-=3)s=t[i]|t[i-1]<<8|t[i-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(i=0,o=0;i<t.length;i+=3)s=t[i]|t[i+1]<<8|t[i+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()},i.prototype._parseHex=function(t,e,r){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 i,o=0,s=0;if("be"===r)for(n=t.length-1;n>=e;n-=2)i=a(t,e,n)<<o,this.words[s]|=67108863&i,o>=18?(o-=18,s+=1,this.words[s]|=i>>>26):o+=8;else for(n=(t.length-e)%2==0?e+1:e;n<t.length;n+=2)i=a(t,e,n)<<o,this.words[s]|=67108863&i,o>=18?(o-=18,s+=1,this.words[s]|=i>>>26):o+=8;this._strip()},i.prototype._parseBase=function(t,e,r){this.words=[0],this.length=1;for(var n=0,i=1;i<=67108863;i*=e)n++;n--,i=i/e|0;for(var o=t.length-r,s=o%n,a=Math.min(o,o-s)+r,h=0,m=r;m<a;m+=n)h=u(t,m,m+n,e),this.imuln(i),this.words[0]+h<67108864?this.words[0]+=h:this._iaddn(h);if(0!==s){var l=1;for(h=u(t,m,t.length,e),m=0;m<s;m++)l*=e;this.imuln(l),this.words[0]+h<67108864?this.words[0]+=h:this._iaddn(h)}this._strip()},i.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},i.prototype._move=function(t){h(t,this)},i.prototype.clone=function(){var t=new i(null);return this.copy(t),t},i.prototype._expand=function(t){for(;this.length<t;)this.words[this.length++]=0;return this},i.prototype._strip=function(){for(;this.length>1&&0===this.words[this.length-1];)this.length--;return this._normSign()},i.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},"undefined"!=typeof Symbol&&"function"==typeof Symbol.for)try{i.prototype[Symbol.for("nodejs.util.inspect.custom")]=m}catch(t){i.prototype.inspect=m}else i.prototype.inspect=m;function m(){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"],c=[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],p=[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 f(t,e,r){r.negative=e.negative^t.negative;var n=t.length+e.length|0;r.length=n,n=n-1|0;var i=0|t.words[0],o=0|e.words[0],s=i*o,a=67108863&s,u=s/67108864|0;r.words[0]=a;for(var h=1;h<n;h++){for(var m=u>>>26,l=67108863&u,c=Math.min(h,e.length-1),p=Math.max(0,h-t.length+1);p<=c;p++){var d=h-p|0;m+=(s=(i=0|t.words[d])*(o=0|e.words[p])+l)/67108864|0,l=67108863&s}r.words[h]=0|l,u=0|m}return 0!==u?r.words[h]=0|u:r.length--,r._strip()}i.prototype.toString=function(t,e){var n;if(e=0|e||1,16===(t=t||10)||"hex"===t){n="";for(var i=0,o=0,s=0;s<this.length;s++){var a=this.words[s],u=(16777215&(a<<i|o)).toString(16);o=a>>>24-i&16777215,(i+=2)>=26&&(i-=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 h=c[t],m=p[t];n="";var d=this.clone();for(d.negative=0;!d.isZero();){var f=d.modrn(m).toString(t);n=(d=d.idivn(m)).isZero()?f+n:l[h-f.length]+f+n}for(this.isZero()&&(n="0"+n);n.length%e!=0;)n="0"+n;return 0!==this.negative&&(n="-"+n),n}r(0,"Base should be between 2 and 36")},i.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&&r(0,"Number can only safely store up to 53 bits"),0!==this.negative?-t:t},i.prototype.toJSON=function(){return this.toString(16,2)},o&&(i.prototype.toBuffer=function(t,e){return this.toArrayLike(o,t,e)}),i.prototype.toArray=function(t,e){return this.toArrayLike(Array,t,e)},i.prototype.toArrayLike=function(t,e,n){this._strip();var i=this.byteLength(),o=n||Math.max(1,i);r(i<=o,"byte array longer than desired length"),r(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,i),s},i.prototype._toArrayLikeLE=function(t){for(var e=0,r=0,n=0,i=0;n<this.length;n++){var o=this.words[n]<<i|r;t[e++]=255&o,e<t.length&&(t[e++]=o>>8&255),e<t.length&&(t[e++]=o>>16&255),6===i?(e<t.length&&(t[e++]=o>>24&255),r=0,i=0):(r=o>>>24,i+=2)}if(e<t.length)for(t[e++]=r;e<t.length;)t[e++]=0},i.prototype._toArrayLikeBE=function(t){for(var e=t.length-1,r=0,n=0,i=0;n<this.length;n++){var o=this.words[n]<<i|r;t[e--]=255&o,e>=0&&(t[e--]=o>>8&255),e>=0&&(t[e--]=o>>16&255),6===i?(e>=0&&(t[e--]=o>>24&255),r=0,i=0):(r=o>>>24,i+=2)}if(e>=0)for(t[e--]=r;e>=0;)t[e--]=0},Math.clz32?i.prototype._countBits=function(t){return 32-Math.clz32(t)}:i.prototype._countBits=function(t){var e=t,r=0;return e>=4096&&(r+=13,e>>>=13),e>=64&&(r+=7,e>>>=7),e>=8&&(r+=4,e>>>=4),e>=2&&(r+=2,e>>>=2),r+e},i.prototype._zeroBits=function(t){if(0===t)return 26;var e=t,r=0;return 0==(8191&e)&&(r+=13,e>>>=13),0==(127&e)&&(r+=7,e>>>=7),0==(15&e)&&(r+=4,e>>>=4),0==(3&e)&&(r+=2,e>>>=2),0==(1&e)&&r++,r},i.prototype.bitLength=function(){var t=this.words[this.length-1],e=this._countBits(t);return 26*(this.length-1)+e},i.prototype.zeroBits=function(){if(this.isZero())return 0;for(var t=0,e=0;e<this.length;e++){var r=this._zeroBits(this.words[e]);if(t+=r,26!==r)break}return t},i.prototype.byteLength=function(){return Math.ceil(this.bitLength()/8)},i.prototype.toTwos=function(t){return 0!==this.negative?this.abs().inotn(t).iaddn(1):this.clone()},i.prototype.fromTwos=function(t){return this.testn(t-1)?this.notn(t).iaddn(1).ineg():this.clone()},i.prototype.isNeg=function(){return 0!==this.negative},i.prototype.neg=function(){return this.clone().ineg()},i.prototype.ineg=function(){return this.isZero()||(this.negative^=1),this},i.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()},i.prototype.ior=function(t){return r(0==(this.negative|t.negative)),this.iuor(t)},i.prototype.or=function(t){return this.length>t.length?this.clone().ior(t):t.clone().ior(this)},i.prototype.uor=function(t){return this.length>t.length?this.clone().iuor(t):t.clone().iuor(this)},i.prototype.iuand=function(t){var e;e=this.length>t.length?t:this;for(var r=0;r<e.length;r++)this.words[r]=this.words[r]&t.words[r];return this.length=e.length,this._strip()},i.prototype.iand=function(t){return r(0==(this.negative|t.negative)),this.iuand(t)},i.prototype.and=function(t){return this.length>t.length?this.clone().iand(t):t.clone().iand(this)},i.prototype.uand=function(t){return this.length>t.length?this.clone().iuand(t):t.clone().iuand(this)},i.prototype.iuxor=function(t){var e,r;this.length>t.length?(e=this,r=t):(e=t,r=this);for(var n=0;n<r.length;n++)this.words[n]=e.words[n]^r.words[n];if(this!==e)for(;n<e.length;n++)this.words[n]=e.words[n];return this.length=e.length,this._strip()},i.prototype.ixor=function(t){return r(0==(this.negative|t.negative)),this.iuxor(t)},i.prototype.xor=function(t){return this.length>t.length?this.clone().ixor(t):t.clone().ixor(this)},i.prototype.uxor=function(t){return this.length>t.length?this.clone().iuxor(t):t.clone().iuxor(this)},i.prototype.inotn=function(t){r("number"==typeof t&&t>=0);var e=0|Math.ceil(t/26),n=t%26;this._expand(e),n>0&&e--;for(var i=0;i<e;i++)this.words[i]=67108863&~this.words[i];return n>0&&(this.words[i]=~this.words[i]&67108863>>26-n),this._strip()},i.prototype.notn=function(t){return this.clone().inotn(t)},i.prototype.setn=function(t,e){r("number"==typeof t&&t>=0);var n=t/26|0,i=t%26;return this._expand(n+1),this.words[n]=e?this.words[n]|1<<i:this.words[n]&~(1<<i),this._strip()},i.prototype.iadd=function(t){var e,r,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?(r=this,n=t):(r=t,n=this);for(var i=0,o=0;o<n.length;o++)e=(0|r.words[o])+(0|n.words[o])+i,this.words[o]=67108863&e,i=e>>>26;for(;0!==i&&o<r.length;o++)e=(0|r.words[o])+i,this.words[o]=67108863&e,i=e>>>26;if(this.length=r.length,0!==i)this.words[this.length]=i,this.length++;else if(r!==this)for(;o<r.length;o++)this.words[o]=r.words[o];return this},i.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)},i.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 r,n,i=this.cmp(t);if(0===i)return this.negative=0,this.length=1,this.words[0]=0,this;i>0?(r=this,n=t):(r=t,n=this);for(var o=0,s=0;s<n.length;s++)o=(e=(0|r.words[s])-(0|n.words[s])+o)>>26,this.words[s]=67108863&e;for(;0!==o&&s<r.length;s++)o=(e=(0|r.words[s])+o)>>26,this.words[s]=67108863&e;if(0===o&&s<r.length&&r!==this)for(;s<r.length;s++)this.words[s]=r.words[s];return this.length=Math.max(this.length,s),r!==this&&(this.negative=1),this._strip()},i.prototype.sub=function(t){return this.clone().isub(t)};var g=function(t,e,r){var n,i,o,s=t.words,a=e.words,u=r.words,h=0,m=0|s[0],l=8191&m,c=m>>>13,p=0|s[1],d=8191&p,f=p>>>13,g=0|s[2],y=8191&g,M=g>>>13,v=0|s[3],w=8191&v,b=v>>>13,P=0|s[4],k=8191&P,A=P>>>13,S=0|s[5],T=8191&S,C=S>>>13,I=0|s[6],_=8191&I,x=I>>>13,E=0|s[7],R=8191&E,O=E>>>13,D=0|s[8],B=8191&D,L=D>>>13,U=0|s[9],N=8191&U,K=U>>>13,W=0|a[0],q=8191&W,F=W>>>13,Y=0|a[1],z=8191&Y,Z=Y>>>13,H=0|a[2],j=8191&H,V=H>>>13,G=0|a[3],Q=8191&G,$=G>>>13,X=0|a[4],J=8191&X,tt=X>>>13,et=0|a[5],rt=8191&et,nt=et>>>13,it=0|a[6],ot=8191&it,st=it>>>13,at=0|a[7],ut=8191&at,ht=at>>>13,mt=0|a[8],lt=8191&mt,ct=mt>>>13,pt=0|a[9],dt=8191&pt,ft=pt>>>13;r.negative=t.negative^e.negative,r.length=19;var gt=(h+(n=Math.imul(l,q))|0)+((8191&(i=(i=Math.imul(l,F))+Math.imul(c,q)|0))<<13)|0;h=((o=Math.imul(c,F))+(i>>>13)|0)+(gt>>>26)|0,gt&=67108863,n=Math.imul(d,q),i=(i=Math.imul(d,F))+Math.imul(f,q)|0,o=Math.imul(f,F);var yt=(h+(n=n+Math.imul(l,z)|0)|0)+((8191&(i=(i=i+Math.imul(l,Z)|0)+Math.imul(c,z)|0))<<13)|0;h=((o=o+Math.imul(c,Z)|0)+(i>>>13)|0)+(yt>>>26)|0,yt&=67108863,n=Math.imul(y,q),i=(i=Math.imul(y,F))+Math.imul(M,q)|0,o=Math.imul(M,F),n=n+Math.imul(d,z)|0,i=(i=i+Math.imul(d,Z)|0)+Math.imul(f,z)|0,o=o+Math.imul(f,Z)|0;var Mt=(h+(n=n+Math.imul(l,j)|0)|0)+((8191&(i=(i=i+Math.imul(l,V)|0)+Math.imul(c,j)|0))<<13)|0;h=((o=o+Math.imul(c,V)|0)+(i>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,n=Math.imul(w,q),i=(i=Math.imul(w,F))+Math.imul(b,q)|0,o=Math.imul(b,F),n=n+Math.imul(y,z)|0,i=(i=i+Math.imul(y,Z)|0)+Math.imul(M,z)|0,o=o+Math.imul(M,Z)|0,n=n+Math.imul(d,j)|0,i=(i=i+Math.imul(d,V)|0)+Math.imul(f,j)|0,o=o+Math.imul(f,V)|0;var vt=(h+(n=n+Math.imul(l,Q)|0)|0)+((8191&(i=(i=i+Math.imul(l,$)|0)+Math.imul(c,Q)|0))<<13)|0;h=((o=o+Math.imul(c,$)|0)+(i>>>13)|0)+(vt>>>26)|0,vt&=67108863,n=Math.imul(k,q),i=(i=Math.imul(k,F))+Math.imul(A,q)|0,o=Math.imul(A,F),n=n+Math.imul(w,z)|0,i=(i=i+Math.imul(w,Z)|0)+Math.imul(b,z)|0,o=o+Math.imul(b,Z)|0,n=n+Math.imul(y,j)|0,i=(i=i+Math.imul(y,V)|0)+Math.imul(M,j)|0,o=o+Math.imul(M,V)|0,n=n+Math.imul(d,Q)|0,i=(i=i+Math.imul(d,$)|0)+Math.imul(f,Q)|0,o=o+Math.imul(f,$)|0;var wt=(h+(n=n+Math.imul(l,J)|0)|0)+((8191&(i=(i=i+Math.imul(l,tt)|0)+Math.imul(c,J)|0))<<13)|0;h=((o=o+Math.imul(c,tt)|0)+(i>>>13)|0)+(wt>>>26)|0,wt&=67108863,n=Math.imul(T,q),i=(i=Math.imul(T,F))+Math.imul(C,q)|0,o=Math.imul(C,F),n=n+Math.imul(k,z)|0,i=(i=i+Math.imul(k,Z)|0)+Math.imul(A,z)|0,o=o+Math.imul(A,Z)|0,n=n+Math.imul(w,j)|0,i=(i=i+Math.imul(w,V)|0)+Math.imul(b,j)|0,o=o+Math.imul(b,V)|0,n=n+Math.imul(y,Q)|0,i=(i=i+Math.imul(y,$)|0)+Math.imul(M,Q)|0,o=o+Math.imul(M,$)|0,n=n+Math.imul(d,J)|0,i=(i=i+Math.imul(d,tt)|0)+Math.imul(f,J)|0,o=o+Math.imul(f,tt)|0;var bt=(h+(n=n+Math.imul(l,rt)|0)|0)+((8191&(i=(i=i+Math.imul(l,nt)|0)+Math.imul(c,rt)|0))<<13)|0;h=((o=o+Math.imul(c,nt)|0)+(i>>>13)|0)+(bt>>>26)|0,bt&=67108863,n=Math.imul(_,q),i=(i=Math.imul(_,F))+Math.imul(x,q)|0,o=Math.imul(x,F),n=n+Math.imul(T,z)|0,i=(i=i+Math.imul(T,Z)|0)+Math.imul(C,z)|0,o=o+Math.imul(C,Z)|0,n=n+Math.imul(k,j)|0,i=(i=i+Math.imul(k,V)|0)+Math.imul(A,j)|0,o=o+Math.imul(A,V)|0,n=n+Math.imul(w,Q)|0,i=(i=i+Math.imul(w,$)|0)+Math.imul(b,Q)|0,o=o+Math.imul(b,$)|0,n=n+Math.imul(y,J)|0,i=(i=i+Math.imul(y,tt)|0)+Math.imul(M,J)|0,o=o+Math.imul(M,tt)|0,n=n+Math.imul(d,rt)|0,i=(i=i+Math.imul(d,nt)|0)+Math.imul(f,rt)|0,o=o+Math.imul(f,nt)|0;var Pt=(h+(n=n+Math.imul(l,ot)|0)|0)+((8191&(i=(i=i+Math.imul(l,st)|0)+Math.imul(c,ot)|0))<<13)|0;h=((o=o+Math.imul(c,st)|0)+(i>>>13)|0)+(Pt>>>26)|0,Pt&=67108863,n=Math.imul(R,q),i=(i=Math.imul(R,F))+Math.imul(O,q)|0,o=Math.imul(O,F),n=n+Math.imul(_,z)|0,i=(i=i+Math.imul(_,Z)|0)+Math.imul(x,z)|0,o=o+Math.imul(x,Z)|0,n=n+Math.imul(T,j)|0,i=(i=i+Math.imul(T,V)|0)+Math.imul(C,j)|0,o=o+Math.imul(C,V)|0,n=n+Math.imul(k,Q)|0,i=(i=i+Math.imul(k,$)|0)+Math.imul(A,Q)|0,o=o+Math.imul(A,$)|0,n=n+Math.imul(w,J)|0,i=(i=i+Math.imul(w,tt)|0)+Math.imul(b,J)|0,o=o+Math.imul(b,tt)|0,n=n+Math.imul(y,rt)|0,i=(i=i+Math.imul(y,nt)|0)+Math.imul(M,rt)|0,o=o+Math.imul(M,nt)|0,n=n+Math.imul(d,ot)|0,i=(i=i+Math.imul(d,st)|0)+Math.imul(f,ot)|0,o=o+Math.imul(f,st)|0;var kt=(h+(n=n+Math.imul(l,ut)|0)|0)+((8191&(i=(i=i+Math.imul(l,ht)|0)+Math.imul(c,ut)|0))<<13)|0;h=((o=o+Math.imul(c,ht)|0)+(i>>>13)|0)+(kt>>>26)|0,kt&=67108863,n=Math.imul(B,q),i=(i=Math.imul(B,F))+Math.imul(L,q)|0,o=Math.imul(L,F),n=n+Math.imul(R,z)|0,i=(i=i+Math.imul(R,Z)|0)+Math.imul(O,z)|0,o=o+Math.imul(O,Z)|0,n=n+Math.imul(_,j)|0,i=(i=i+Math.imul(_,V)|0)+Math.imul(x,j)|0,o=o+Math.imul(x,V)|0,n=n+Math.imul(T,Q)|0,i=(i=i+Math.imul(T,$)|0)+Math.imul(C,Q)|0,o=o+Math.imul(C,$)|0,n=n+Math.imul(k,J)|0,i=(i=i+Math.imul(k,tt)|0)+Math.imul(A,J)|0,o=o+Math.imul(A,tt)|0,n=n+Math.imul(w,rt)|0,i=(i=i+Math.imul(w,nt)|0)+Math.imul(b,rt)|0,o=o+Math.imul(b,nt)|0,n=n+Math.imul(y,ot)|0,i=(i=i+Math.imul(y,st)|0)+Math.imul(M,ot)|0,o=o+Math.imul(M,st)|0,n=n+Math.imul(d,ut)|0,i=(i=i+Math.imul(d,ht)|0)+Math.imul(f,ut)|0,o=o+Math.imul(f,ht)|0;var At=(h+(n=n+Math.imul(l,lt)|0)|0)+((8191&(i=(i=i+Math.imul(l,ct)|0)+Math.imul(c,lt)|0))<<13)|0;h=((o=o+Math.imul(c,ct)|0)+(i>>>13)|0)+(At>>>26)|0,At&=67108863,n=Math.imul(N,q),i=(i=Math.imul(N,F))+Math.imul(K,q)|0,o=Math.imul(K,F),n=n+Math.imul(B,z)|0,i=(i=i+Math.imul(B,Z)|0)+Math.imul(L,z)|0,o=o+Math.imul(L,Z)|0,n=n+Math.imul(R,j)|0,i=(i=i+Math.imul(R,V)|0)+Math.imul(O,j)|0,o=o+Math.imul(O,V)|0,n=n+Math.imul(_,Q)|0,i=(i=i+Math.imul(_,$)|0)+Math.imul(x,Q)|0,o=o+Math.imul(x,$)|0,n=n+Math.imul(T,J)|0,i=(i=i+Math.imul(T,tt)|0)+Math.imul(C,J)|0,o=o+Math.imul(C,tt)|0,n=n+Math.imul(k,rt)|0,i=(i=i+Math.imul(k,nt)|0)+Math.imul(A,rt)|0,o=o+Math.imul(A,nt)|0,n=n+Math.imul(w,ot)|0,i=(i=i+Math.imul(w,st)|0)+Math.imul(b,ot)|0,o=o+Math.imul(b,st)|0,n=n+Math.imul(y,ut)|0,i=(i=i+Math.imul(y,ht)|0)+Math.imul(M,ut)|0,o=o+Math.imul(M,ht)|0,n=n+Math.imul(d,lt)|0,i=(i=i+Math.imul(d,ct)|0)+Math.imul(f,lt)|0,o=o+Math.imul(f,ct)|0;var St=(h+(n=n+Math.imul(l,dt)|0)|0)+((8191&(i=(i=i+Math.imul(l,ft)|0)+Math.imul(c,dt)|0))<<13)|0;h=((o=o+Math.imul(c,ft)|0)+(i>>>13)|0)+(St>>>26)|0,St&=67108863,n=Math.imul(N,z),i=(i=Math.imul(N,Z))+Math.imul(K,z)|0,o=Math.imul(K,Z),n=n+Math.imul(B,j)|0,i=(i=i+Math.imul(B,V)|0)+Math.imul(L,j)|0,o=o+Math.imul(L,V)|0,n=n+Math.imul(R,Q)|0,i=(i=i+Math.imul(R,$)|0)+Math.imul(O,Q)|0,o=o+Math.imul(O,$)|0,n=n+Math.imul(_,J)|0,i=(i=i+Math.imul(_,tt)|0)+Math.imul(x,J)|0,o=o+Math.imul(x,tt)|0,n=n+Math.imul(T,rt)|0,i=(i=i+Math.imul(T,nt)|0)+Math.imul(C,rt)|0,o=o+Math.imul(C,nt)|0,n=n+Math.imul(k,ot)|0,i=(i=i+Math.imul(k,st)|0)+Math.imul(A,ot)|0,o=o+Math.imul(A,st)|0,n=n+Math.imul(w,ut)|0,i=(i=i+Math.imul(w,ht)|0)+Math.imul(b,ut)|0,o=o+Math.imul(b,ht)|0,n=n+Math.imul(y,lt)|0,i=(i=i+Math.imul(y,ct)|0)+Math.imul(M,lt)|0,o=o+Math.imul(M,ct)|0;var Tt=(h+(n=n+Math.imul(d,dt)|0)|0)+((8191&(i=(i=i+Math.imul(d,ft)|0)+Math.imul(f,dt)|0))<<13)|0;h=((o=o+Math.imul(f,ft)|0)+(i>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,n=Math.imul(N,j),i=(i=Math.imul(N,V))+Math.imul(K,j)|0,o=Math.imul(K,V),n=n+Math.imul(B,Q)|0,i=(i=i+Math.imul(B,$)|0)+Math.imul(L,Q)|0,o=o+Math.imul(L,$)|0,n=n+Math.imul(R,J)|0,i=(i=i+Math.imul(R,tt)|0)+Math.imul(O,J)|0,o=o+Math.imul(O,tt)|0,n=n+Math.imul(_,rt)|0,i=(i=i+Math.imul(_,nt)|0)+Math.imul(x,rt)|0,o=o+Math.imul(x,nt)|0,n=n+Math.imul(T,ot)|0,i=(i=i+Math.imul(T,st)|0)+Math.imul(C,ot)|0,o=o+Math.imul(C,st)|0,n=n+Math.imul(k,ut)|0,i=(i=i+Math.imul(k,ht)|0)+Math.imul(A,ut)|0,o=o+Math.imul(A,ht)|0,n=n+Math.imul(w,lt)|0,i=(i=i+Math.imul(w,ct)|0)+Math.imul(b,lt)|0,o=o+Math.imul(b,ct)|0;var Ct=(h+(n=n+Math.imul(y,dt)|0)|0)+((8191&(i=(i=i+Math.imul(y,ft)|0)+Math.imul(M,dt)|0))<<13)|0;h=((o=o+Math.imul(M,ft)|0)+(i>>>13)|0)+(Ct>>>26)|0,Ct&=67108863,n=Math.imul(N,Q),i=(i=Math.imul(N,$))+Math.imul(K,Q)|0,o=Math.imul(K,$),n=n+Math.imul(B,J)|0,i=(i=i+Math.imul(B,tt)|0)+Math.imul(L,J)|0,o=o+Math.imul(L,tt)|0,n=n+Math.imul(R,rt)|0,i=(i=i+Math.imul(R,nt)|0)+Math.imul(O,rt)|0,o=o+Math.imul(O,nt)|0,n=n+Math.imul(_,ot)|0,i=(i=i+Math.imul(_,st)|0)+Math.imul(x,ot)|0,o=o+Math.imul(x,st)|0,n=n+Math.imul(T,ut)|0,i=(i=i+Math.imul(T,ht)|0)+Math.imul(C,ut)|0,o=o+Math.imul(C,ht)|0,n=n+Math.imul(k,lt)|0,i=(i=i+Math.imul(k,ct)|0)+Math.imul(A,lt)|0,o=o+Math.imul(A,ct)|0;var It=(h+(n=n+Math.imul(w,dt)|0)|0)+((8191&(i=(i=i+Math.imul(w,ft)|0)+Math.imul(b,dt)|0))<<13)|0;h=((o=o+Math.imul(b,ft)|0)+(i>>>13)|0)+(It>>>26)|0,It&=67108863,n=Math.imul(N,J),i=(i=Math.imul(N,tt))+Math.imul(K,J)|0,o=Math.imul(K,tt),n=n+Math.imul(B,rt)|0,i=(i=i+Math.imul(B,nt)|0)+Math.imul(L,rt)|0,o=o+Math.imul(L,nt)|0,n=n+Math.imul(R,ot)|0,i=(i=i+Math.imul(R,st)|0)+Math.imul(O,ot)|0,o=o+Math.imul(O,st)|0,n=n+Math.imul(_,ut)|0,i=(i=i+Math.imul(_,ht)|0)+Math.imul(x,ut)|0,o=o+Math.imul(x,ht)|0,n=n+Math.imul(T,lt)|0,i=(i=i+Math.imul(T,ct)|0)+Math.imul(C,lt)|0,o=o+Math.imul(C,ct)|0;var _t=(h+(n=n+Math.imul(k,dt)|0)|0)+((8191&(i=(i=i+Math.imul(k,ft)|0)+Math.imul(A,dt)|0))<<13)|0;h=((o=o+Math.imul(A,ft)|0)+(i>>>13)|0)+(_t>>>26)|0,_t&=67108863,n=Math.imul(N,rt),i=(i=Math.imul(N,nt))+Math.imul(K,rt)|0,o=Math.imul(K,nt),n=n+Math.imul(B,ot)|0,i=(i=i+Math.imul(B,st)|0)+Math.imul(L,ot)|0,o=o+Math.imul(L,st)|0,n=n+Math.imul(R,ut)|0,i=(i=i+Math.imul(R,ht)|0)+Math.imul(O,ut)|0,o=o+Math.imul(O,ht)|0,n=n+Math.imul(_,lt)|0,i=(i=i+Math.imul(_,ct)|0)+Math.imul(x,lt)|0,o=o+Math.imul(x,ct)|0;var xt=(h+(n=n+Math.imul(T,dt)|0)|0)+((8191&(i=(i=i+Math.imul(T,ft)|0)+Math.imul(C,dt)|0))<<13)|0;h=((o=o+Math.imul(C,ft)|0)+(i>>>13)|0)+(xt>>>26)|0,xt&=67108863,n=Math.imul(N,ot),i=(i=Math.imul(N,st))+Math.imul(K,ot)|0,o=Math.imul(K,st),n=n+Math.imul(B,ut)|0,i=(i=i+Math.imul(B,ht)|0)+Math.imul(L,ut)|0,o=o+Math.imul(L,ht)|0,n=n+Math.imul(R,lt)|0,i=(i=i+Math.imul(R,ct)|0)+Math.imul(O,lt)|0,o=o+Math.imul(O,ct)|0;var Et=(h+(n=n+Math.imul(_,dt)|0)|0)+((8191&(i=(i=i+Math.imul(_,ft)|0)+Math.imul(x,dt)|0))<<13)|0;h=((o=o+Math.imul(x,ft)|0)+(i>>>13)|0)+(Et>>>26)|0,Et&=67108863,n=Math.imul(N,ut),i=(i=Math.imul(N,ht))+Math.imul(K,ut)|0,o=Math.imul(K,ht),n=n+Math.imul(B,lt)|0,i=(i=i+Math.imul(B,ct)|0)+Math.imul(L,lt)|0,o=o+Math.imul(L,ct)|0;var Rt=(h+(n=n+Math.imul(R,dt)|0)|0)+((8191&(i=(i=i+Math.imul(R,ft)|0)+Math.imul(O,dt)|0))<<13)|0;h=((o=o+Math.imul(O,ft)|0)+(i>>>13)|0)+(Rt>>>26)|0,Rt&=67108863,n=Math.imul(N,lt),i=(i=Math.imul(N,ct))+Math.imul(K,lt)|0,o=Math.imul(K,ct);var Ot=(h+(n=n+Math.imul(B,dt)|0)|0)+((8191&(i=(i=i+Math.imul(B,ft)|0)+Math.imul(L,dt)|0))<<13)|0;h=((o=o+Math.imul(L,ft)|0)+(i>>>13)|0)+(Ot>>>26)|0,Ot&=67108863;var Dt=(h+(n=Math.imul(N,dt))|0)+((8191&(i=(i=Math.imul(N,ft))+Math.imul(K,dt)|0))<<13)|0;return h=((o=Math.imul(K,ft))+(i>>>13)|0)+(Dt>>>26)|0,Dt&=67108863,u[0]=gt,u[1]=yt,u[2]=Mt,u[3]=vt,u[4]=wt,u[5]=bt,u[6]=Pt,u[7]=kt,u[8]=At,u[9]=St,u[10]=Tt,u[11]=Ct,u[12]=It,u[13]=_t,u[14]=xt,u[15]=Et,u[16]=Rt,u[17]=Ot,u[18]=Dt,0!==h&&(u[19]=h,r.length++),r};function y(t,e,r){r.negative=e.negative^t.negative,r.length=t.length+e.length;for(var n=0,i=0,o=0;o<r.length-1;o++){var s=i;i=0;for(var a=67108863&n,u=Math.min(o,e.length-1),h=Math.max(0,o-t.length+1);h<=u;h++){var m=o-h,l=(0|t.words[m])*(0|e.words[h]),c=67108863&l;a=67108863&(c=c+a|0),i+=(s=(s=s+(l/67108864|0)|0)+(c>>>26)|0)>>>26,s&=67108863}r.words[o]=a,n=s,s=i}return 0!==n?r.words[o]=n:r.length--,r._strip()}function M(t,e,r){return y(t,e,r)}Math.imul||(g=f),i.prototype.mulTo=function(t,e){var r=this.length+t.length;return 10===this.length&&10===t.length?g(this,t,e):r<63?f(this,t,e):r<1024?y(this,t,e):M(this,t,e)},i.prototype.mul=function(t){var e=new i(null);return e.words=new Array(this.length+t.length),this.mulTo(t,e)},i.prototype.mulf=function(t){var e=new i(null);return e.words=new Array(this.length+t.length),M(this,t,e)},i.prototype.imul=function(t){return this.clone().mulTo(t,this)},i.prototype.imuln=function(t){var e=t<0;e&&(t=-t),r("number"==typeof t),r(t<67108864);for(var n=0,i=0;i<this.length;i++){var o=(0|this.words[i])*t,s=(67108863&o)+(67108863&n);n>>=26,n+=o/67108864|0,n+=s>>>26,this.words[i]=67108863&s}return 0!==n&&(this.words[i]=n,this.length++),e?this.ineg():this},i.prototype.muln=function(t){return this.clone().imuln(t)},i.prototype.sqr=function(){return this.mul(this)},i.prototype.isqr=function(){return this.imul(this.clone())},i.prototype.pow=function(t){var e=function(t){for(var e=new Array(t.bitLength()),r=0;r<e.length;r++){var n=r/26|0,i=r%26;e[r]=t.words[n]>>>i&1}return e}(t);if(0===e.length)return new i(1);for(var r=this,n=0;n<e.length&&0===e[n];n++,r=r.sqr());if(++n<e.length)for(var o=r.sqr();n<e.length;n++,o=o.sqr())0!==e[n]&&(r=r.mul(o));return r},i.prototype.iushln=function(t){r("number"==typeof t&&t>=0);var e,n=t%26,i=(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!==i){for(e=this.length-1;e>=0;e--)this.words[e+i]=this.words[e];for(e=0;e<i;e++)this.words[e]=0;this.length+=i}return this._strip()},i.prototype.ishln=function(t){return r(0===this.negative),this.iushln(t)},i.prototype.iushrn=function(t,e,n){var i;r("number"==typeof t&&t>=0),i=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(i-=s,i=Math.max(0,i),u){for(var h=0;h<s;h++)u.words[h]=this.words[h];u.length=s}if(0===s);else if(this.length>s)for(this.length-=s,h=0;h<this.length;h++)this.words[h]=this.words[h+s];else this.words[0]=0,this.length=1;var m=0;for(h=this.length-1;h>=0&&(0!==m||h>=i);h--){var l=0|this.words[h];this.words[h]=m<<26-o|l>>>o,m=l&a}return u&&0!==m&&(u.words[u.length++]=m),0===this.length&&(this.words[0]=0,this.length=1),this._strip()},i.prototype.ishrn=function(t,e,n){return r(0===this.negative),this.iushrn(t,e,n)},i.prototype.shln=function(t){return this.clone().ishln(t)},i.prototype.ushln=function(t){return this.clone().iushln(t)},i.prototype.shrn=function(t){return this.clone().ishrn(t)},i.prototype.ushrn=function(t){return this.clone().iushrn(t)},i.prototype.testn=function(t){r("number"==typeof t&&t>=0);var e=t%26,n=(t-e)/26,i=1<<e;return this.length<=n?0:!!(this.words[n]&i)},i.prototype.imaskn=function(t){r("number"==typeof t&&t>=0);var e=t%26,n=(t-e)/26;if(r(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 i=67108863^67108863>>>e<<e;this.words[this.length-1]&=i}return this._strip()},i.prototype.maskn=function(t){return this.clone().imaskn(t)},i.prototype.iaddn=function(t){return r("number"==typeof t),r(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)},i.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},i.prototype.isubn=function(t){if(r("number"==typeof t),r(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()},i.prototype.addn=function(t){return this.clone().iaddn(t)},i.prototype.subn=function(t){return this.clone().isubn(t)},i.prototype.iabs=function(){return this.negative=0,this},i.prototype.abs=function(){return this.clone().iabs()},i.prototype._ishlnsubmul=function(t,e,n){var i,o,s=t.length+n;this._expand(s);var a=0;for(i=0;i<t.length;i++){o=(0|this.words[i+n])+a;var u=(0|t.words[i])*e;a=((o-=67108863&u)>>26)-(u/67108864|0),this.words[i+n]=67108863&o}for(;i<this.length-n;i++)a=(o=(0|this.words[i+n])+a)>>26,this.words[i+n]=67108863&o;if(0===a)return this._strip();for(r(-1===a),a=0,i=0;i<this.length;i++)a=(o=-(0|this.words[i])+a)>>26,this.words[i]=67108863&o;return this.negative=1,this._strip()},i.prototype._wordDiv=function(t,e){var r=(this.length,t.length),n=this.clone(),o=t,s=0|o.words[o.length-1];0!=(r=26-this._countBits(s))&&(o=o.ushln(r),n.iushln(r),s=0|o.words[o.length-1]);var a,u=n.length-o.length;if("mod"!==e){(a=new i(null)).length=u+1,a.words=new Array(a.length);for(var h=0;h<a.length;h++)a.words[h]=0}var m=n.clone()._ishlnsubmul(o,1,u);0===m.negative&&(n=m,a&&(a.words[u]=1));for(var l=u-1;l>=0;l--){var c=67108864*(0|n.words[o.length+l])+(0|n.words[o.length+l-1]);for(c=Math.min(c/s|0,67108863),n._ishlnsubmul(o,c,l);0!==n.negative;)c--,n.negative=0,n._ishlnsubmul(o,1,l),n.isZero()||(n.negative^=1);a&&(a.words[l]=c)}return a&&a._strip(),n._strip(),"div"!==e&&0!==r&&n.iushrn(r),{div:a||null,mod:n}},i.prototype.divmod=function(t,e,n){return r(!t.isZero()),this.isZero()?{div:new i(0),mod:new i(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 i(0),mod:this}:1===t.length?"div"===e?{div:this.divn(t.words[0]),mod:null}:"mod"===e?{div:null,mod:new i(this.modrn(t.words[0]))}:{div:this.divn(t.words[0]),mod:new i(this.modrn(t.words[0]))}:this._wordDiv(t,e);var o,s,a},i.prototype.div=function(t){return this.divmod(t,"div",0).div},i.prototype.mod=function(t){return this.divmod(t,"mod",0).mod},i.prototype.umod=function(t){return this.divmod(t,"mod",1).mod},i.prototype.divRound=function(t){var e=this.divmod(t);if(e.mod.isZero())return e.div;var r=0!==e.div.negative?e.mod.isub(t):e.mod,n=t.ushrn(1),i=t.andln(1),o=r.cmp(n);return o<0||1===i&&0===o?e.div:0!==e.div.negative?e.div.isubn(1):e.div.iaddn(1)},i.prototype.modrn=function(t){var e=t<0;e&&(t=-t),r(t<=67108863);for(var n=(1<<26)%t,i=0,o=this.length-1;o>=0;o--)i=(n*i+(0|this.words[o]))%t;return e?-i:i},i.prototype.modn=function(t){return this.modrn(t)},i.prototype.idivn=function(t){var e=t<0;e&&(t=-t),r(t<=67108863);for(var n=0,i=this.length-1;i>=0;i--){var o=(0|this.words[i])+67108864*n;this.words[i]=o/t|0,n=o%t}return this._strip(),e?this.ineg():this},i.prototype.divn=function(t){return this.clone().idivn(t)},i.prototype.egcd=function(t){r(0===t.negative),r(!t.isZero());var e=this,n=t.clone();e=0!==e.negative?e.umod(t):e.clone();for(var o=new i(1),s=new i(0),a=new i(0),u=new i(1),h=0;e.isEven()&&n.isEven();)e.iushrn(1),n.iushrn(1),++h;for(var m=n.clone(),l=e.clone();!e.isZero();){for(var c=0,p=1;0==(e.words[0]&p)&&c<26;++c,p<<=1);if(c>0)for(e.iushrn(c);c-- >0;)(o.isOdd()||s.isOdd())&&(o.iadd(m),s.isub(l)),o.iushrn(1),s.iushrn(1);for(var d=0,f=1;0==(n.words[0]&f)&&d<26;++d,f<<=1);if(d>0)for(n.iushrn(d);d-- >0;)(a.isOdd()||u.isOdd())&&(a.iadd(m),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(h)}},i.prototype._invmp=function(t){r(0===t.negative),r(!t.isZero());var e=this,n=t.clone();e=0!==e.negative?e.umod(t):e.clone();for(var o,s=new i(1),a=new i(0),u=n.clone();e.cmpn(1)>0&&n.cmpn(1)>0;){for(var h=0,m=1;0==(e.words[0]&m)&&h<26;++h,m<<=1);if(h>0)for(e.iushrn(h);h-- >0;)s.isOdd()&&s.iadd(u),s.iushrn(1);for(var l=0,c=1;0==(n.words[0]&c)&&l<26;++l,c<<=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},i.prototype.gcd=function(t){if(this.isZero())return t.abs();if(t.isZero())return this.abs();var e=this.clone(),r=t.clone();e.negative=0,r.negative=0;for(var n=0;e.isEven()&&r.isEven();n++)e.iushrn(1),r.iushrn(1);for(;;){for(;e.isEven();)e.iushrn(1);for(;r.isEven();)r.iushrn(1);var i=e.cmp(r);if(i<0){var o=e;e=r,r=o}else if(0===i||0===r.cmpn(1))break;e.isub(r)}return r.iushln(n)},i.prototype.invm=function(t){return this.egcd(t).a.umod(t)},i.prototype.isEven=function(){return 0==(1&this.words[0])},i.prototype.isOdd=function(){return 1==(1&this.words[0])},i.prototype.andln=function(t){return this.words[0]&t},i.prototype.bincn=function(t){r("number"==typeof t);var e=t%26,n=(t-e)/26,i=1<<e;if(this.length<=n)return this._expand(n+1),this.words[n]|=i,this;for(var o=i,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},i.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},i.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),r(t<=67108863,"Number is too big");var i=0|this.words[0];e=i===t?0:i<t?-1:1}return 0!==this.negative?0|-e:e},i.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},i.prototype.ucmp=function(t){if(this.length>t.length)return 1;if(this.length<t.length)return-1;for(var e=0,r=this.length-1;r>=0;r--){var n=0|this.words[r],i=0|t.words[r];if(n!==i){n<i?e=-1:n>i&&(e=1);break}}return e},i.prototype.gtn=function(t){return 1===this.cmpn(t)},i.prototype.gt=function(t){return 1===this.cmp(t)},i.prototype.gten=function(t){return this.cmpn(t)>=0},i.prototype.gte=function(t){return this.cmp(t)>=0},i.prototype.ltn=function(t){return-1===this.cmpn(t)},i.prototype.lt=function(t){return-1===this.cmp(t)},i.prototype.lten=function(t){return this.cmpn(t)<=0},i.prototype.lte=function(t){return this.cmp(t)<=0},i.prototype.eqn=function(t){return 0===this.cmpn(t)},i.prototype.eq=function(t){return 0===this.cmp(t)},i.red=function(t){return new S(t)},i.prototype.toRed=function(t){return r(!this.red,"Already a number in reduction context"),r(0===this.negative,"red works only with positives"),t.convertTo(this)._forceRed(t)},i.prototype.fromRed=function(){return r(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},i.prototype._forceRed=function(t){return this.red=t,this},i.prototype.forceRed=function(t){return r(!this.red,"Already a number in reduction context"),this._forceRed(t)},i.prototype.redAdd=function(t){return r(this.red,"redAdd works only with red numbers"),this.red.add(this,t)},i.prototype.redIAdd=function(t){return r(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,t)},i.prototype.redSub=function(t){return r(this.red,"redSub works only with red numbers"),this.red.sub(this,t)},i.prototype.redISub=function(t){return r(this.red,"redISub works only with red numbers"),this.red.isub(this,t)},i.prototype.redShl=function(t){return r(this.red,"redShl works only with red numbers"),this.red.shl(this,t)},i.prototype.redMul=function(t){return r(this.red,"redMul works only with red numbers"),this.red._verify2(this,t),this.red.mul(this,t)},i.prototype.redIMul=function(t){return r(this.red,"redMul works only with red numbers"),this.red._verify2(this,t),this.red.imul(this,t)},i.prototype.redSqr=function(){return r(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},i.prototype.redISqr=function(){return r(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},i.prototype.redSqrt=function(){return r(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},i.prototype.redInvm=function(){return r(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},i.prototype.redNeg=function(){return r(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},i.prototype.redPow=function(t){return r(this.red&&!t.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,t)};var v={k256:null,p224:null,p192:null,p25519:null};function w(t,e){this.name=t,this.p=new i(e,16),this.n=this.p.bitLength(),this.k=new i(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function b(){w.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function P(){w.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function k(){w.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function A(){w.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function S(t){if("string"==typeof t){var e=i._prime(t);this.m=e.p,this.prime=e}else r(t.gtn(1),"modulus must be greater than 1"),this.m=t,this.prime=null}function T(t){S.call(this,t),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new i(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)}w.prototype._tmp=function(){var t=new i(null);return t.words=new Array(Math.ceil(this.n/13)),t},w.prototype.ireduce=function(t){var e,r=t;do{this.split(r,this.tmp),e=(r=(r=this.imulK(r)).iadd(this.tmp)).bitLength()}while(e>this.n);var n=e<this.n?-1:r.ucmp(this.p);return 0===n?(r.words[0]=0,r.length=1):n>0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},w.prototype.split=function(t,e){t.iushrn(this.n,0,e)},w.prototype.imulK=function(t){return t.imul(this.k)},n(b,w),b.prototype.split=function(t,e){for(var r=4194303,n=Math.min(t.length,9),i=0;i<n;i++)e.words[i]=t.words[i];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&r,i=10;i<t.length;i++){var s=0|t.words[i];t.words[i-10]=(s&r)<<4|o>>>22,o=s}o>>>=22,t.words[i-10]=o,0===o&&t.length>10?t.length-=10:t.length-=9},b.prototype.imulK=function(t){t.words[t.length]=0,t.words[t.length+1]=0,t.length+=2;for(var e=0,r=0;r<t.length;r++){var n=0|t.words[r];e+=977*n,t.words[r]=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,w),n(k,w),n(A,w),A.prototype.imulK=function(t){for(var e=0,r=0;r<t.length;r++){var n=19*(0|t.words[r])+e,i=67108863&n;n>>>=26,t.words[r]=i,e=n}return 0!==e&&(t.words[t.length++]=e),t},i._prime=function(t){if(v[t])return v[t];var e;if("k256"===t)e=new b;else if("p224"===t)e=new P;else if("p192"===t)e=new k;else{if("p25519"!==t)throw new Error("Unknown prime "+t);e=new A}return v[t]=e,e},S.prototype._verify1=function(t){r(0===t.negative,"red works only with positives"),r(t.red,"red works only with red numbers")},S.prototype._verify2=function(t,e){r(0==(t.negative|e.negative),"red works only with positives"),r(t.red&&t.red===e.red,"red works only with red numbers")},S.prototype.imod=function(t){return this.prime?this.prime.ireduce(t)._forceRed(this):(h(t,t.umod(this.m)._forceRed(this)),t)},S.prototype.neg=function(t){return t.isZero()?t.clone():this.m.sub(t)._forceRed(this)},S.prototype.add=function(t,e){this._verify2(t,e);var r=t.add(e);return r.cmp(this.m)>=0&&r.isub(this.m),r._forceRed(this)},S.prototype.iadd=function(t,e){this._verify2(t,e);var r=t.iadd(e);return r.cmp(this.m)>=0&&r.isub(this.m),r},S.prototype.sub=function(t,e){this._verify2(t,e);var r=t.sub(e);return r.cmpn(0)<0&&r.iadd(this.m),r._forceRed(this)},S.prototype.isub=function(t,e){this._verify2(t,e);var r=t.isub(e);return r.cmpn(0)<0&&r.iadd(this.m),r},S.prototype.shl=function(t,e){return this._verify1(t),this.imod(t.ushln(e))},S.prototype.imul=function(t,e){return this._verify2(t,e),this.imod(t.imul(e))},S.prototype.mul=function(t,e){return this._verify2(t,e),this.imod(t.mul(e))},S.prototype.isqr=function(t){return this.imul(t,t.clone())},S.prototype.sqr=function(t){return this.mul(t,t)},S.prototype.sqrt=function(t){if(t.isZero())return t.clone();var e=this.m.andln(3);if(r(e%2==1),3===e){var n=this.m.add(new i(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);r(!o.isZero());var a=new i(1).toRed(this),u=a.redNeg(),h=this.m.subn(1).iushrn(1),m=this.m.bitLength();for(m=new i(2*m*m).toRed(this);0!==this.pow(m,h).cmp(u);)m.redIAdd(u);for(var l=this.pow(m,o),c=this.pow(t,o.addn(1).iushrn(1)),p=this.pow(t,o),d=s;0!==p.cmp(a);){for(var f=p,g=0;0!==f.cmp(a);g++)f=f.redSqr();r(g<d);var y=this.pow(l,new i(1).iushln(d-g-1));c=c.redMul(y),l=y.redSqr(),p=p.redMul(l),d=g}return c},S.prototype.invm=function(t){var e=t._invmp(this.m);return 0!==e.negative?(e.negative=0,this.imod(e).redNeg()):this.imod(e)},S.prototype.pow=function(t,e){if(e.isZero())return new i(1).toRed(this);if(0===e.cmpn(1))return t.clone();var r=new Array(16);r[0]=new i(1).toRed(this),r[1]=t;for(var n=2;n<r.length;n++)r[n]=this.mul(r[n-1],t);var o=r[0],s=0,a=0,u=e.bitLength()%26;for(0===u&&(u=26),n=e.length-1;n>=0;n--){for(var h=e.words[n],m=u-1;m>=0;m--){var l=h>>m&1;o!==r[0]&&(o=this.sqr(o)),0!==l||0!==s?(s<<=1,s|=l,(4==++a||0===n&&0===m)&&(o=this.mul(o,r[s]),a=0,s=0)):a=0}u=26}return o},S.prototype.convertTo=function(t){var e=t.umod(this.m);return e===t?e.clone():e},S.prototype.convertFrom=function(t){var e=t.clone();return e.red=null,e},i.mont=function(t){return new T(t)},n(T,S),T.prototype.convertTo=function(t){return this.imod(t.ushln(this.shift))},T.prototype.convertFrom=function(t){var e=this.imod(t.mul(this.rinv));return e.red=null,e},T.prototype.imul=function(t,e){if(t.isZero()||e.isZero())return t.words[0]=0,t.length=1,t;var r=t.imul(e),n=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),i=r.isub(n).iushrn(this.shift),o=i;return i.cmp(this.m)>=0?o=i.isub(this.m):i.cmpn(0)<0&&(o=i.iadd(this.m)),o._forceRed(this)},T.prototype.mul=function(t,e){if(t.isZero()||e.isZero())return new i(0)._forceRed(this);var r=t.mul(e),n=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),o=r.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)},T.prototype.invm=function(t){return this.imod(t._invmp(this.m).mul(this.r2))._forceRed(this)}}(0,l);var ft=c(d.exports);const gt=n.struct([n.array(n.u8(),32,"a"),n.array(n.u8(),64,"b"),n.array(n.u8(),32,"c")]),yt=n.struct([n.publicKey("owner"),n.u64("amount"),n.option(n.u64(),"lamports"),n.u8("merkleTreeIndex"),n.option(n.vecU8(),"tlv")]),Mt=n.struct([n.u8("queueId"),n.u16("index")]),vt=n.struct([n.u64("amount"),n.option(n.u8(),"delegateIndex"),n.struct([n.u8("merkleTreePubkeyIndex"),n.u8("nullifierQueuePubkeyIndex"),n.u32("leafIndex"),n.option(Mt,"queueIndex")],"merkleContext"),n.u16("rootIndex"),n.option(n.u64(),"lamports"),n.option(n.vecU8(),"tlv")]),wt=n.struct([n.publicKey("owner"),n.option(n.u8(),"delegateChangeAccountIndex")]),bt=n.struct([n.bool("setContext"),n.bool("firstSetContext"),n.u8("cpiContextAccountIndex")]),Pt=n.struct([n.option(gt,"proof"),n.publicKey("mint"),n.option(wt,"delegatedTransfer"),n.vec(vt,"inputTokenDataWithContext"),n.vec(yt,"outputCompressedAccounts"),n.bool("isCompress"),n.option(n.u64(),"compressOrDecompressAmount"),n.option(bt,"cpiContext"),n.option(n.u8(),"lamportsChangeAccountMerkleTreeIndex")]),kt=n.struct([n.vec(n.publicKey(),"recipients"),n.vec(n.u64(),"amounts"),n.option(n.u64(),"lamports")]),At=n.struct([n.publicKey("owner"),n.option(n.u64(),"remainingAmount"),n.option(bt,"cpiContext")]);function St(t){const e=x.alloc(1e3),r=kt.encode({recipients:t.recipients,amounts:t.amounts,lamports:t.lamports},e);return x.concat([u,e.slice(0,r)])}function Tt(t){const e=x.alloc(1e3),r=At.encode({owner:t.owner,remainingAmount:t.remainingAmount,cpiContext:t.cpiContext},e);return x.concat([m,e.slice(0,r)])}function Ct(t){const e=x.alloc(1e3),r=Pt.encode(t,e),n=x.alloc(4);return n.writeUInt32LE(r,0),x.concat([h,n,e.slice(0,r)])}const It=t=>{const{feePayer:e,tokenPoolPda:r,systemProgram:n,mint:i,tokenProgram:o,cpiAuthorityPda:s}=t;return[{pubkey:e,isSigner:1,isWritable:1},{pubkey:r,isSigner:0,isWritable:1},{pubkey:n,isSigner:0,isWritable:0},{pubkey:i,isSigner:0,isWritable:1},{pubkey:o,isSigner:0,isWritable:0},{pubkey:s,isSigner:0,isWritable:0}]},_t=t=>{const e=Lt.programId,{feePayer:r,authority:n,cpiAuthorityPda:i,mint:o,tokenPoolPda:s,tokenProgram:a,lightSystemProgram:u,registeredProgramPda:h,noopProgram:m,accountCompressionAuthority:l,accountCompressionProgram:c,merkleTree:p,selfProgram:d,systemProgram:f,solPoolPda:g}=t;return[{pubkey:r,isSigner:1,isWritable:1},{pubkey:n,isSigner:1,isWritable:0},{pubkey:i,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:h,isSigner:0,isWritable:0},{pubkey:m,isSigner:0,isWritable:0},{pubkey:l,isSigner:0,isWritable:0},{pubkey:c,isSigner:0,isWritable:0},{pubkey:p,isSigner:0,isWritable:1},{pubkey:d,isSigner:0,isWritable:0},{pubkey:f,isSigner:0,isWritable:0},{pubkey:null!=g?g:e,isSigner:0,isWritable:1}]},xt=t=>{const e=Lt.programId,{feePayer:r,authority:n,cpiAuthorityPda:i,lightSystemProgram:o,registeredProgramPda:s,noopProgram:a,accountCompressionAuthority:u,accountCompressionProgram:h,selfProgram:m,tokenPoolPda:l,compressOrDecompressTokenAccount:c,tokenProgram:p,systemProgram:d}=t;return[{pubkey:r,isSigner:1,isWritable:1},{pubkey:n,isSigner:1,isWritable:0},{pubkey:i,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:h,isSigner:0,isWritable:0},{pubkey:m,isSigner:0,isWritable:0},{pubkey:null!=l?l:e,isSigner:0,isWritable:1},{pubkey:null!=c?c:e,isSigner:0,isWritable:1},{pubkey:null!=p?p:e,isSigner:0,isWritable:0},{pubkey:d,isSigner:0,isWritable:0}]},Et=e=>e.reduce(((t,e)=>t.add(e.parsed.amount)),t.bn(0)),Rt=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")}))},Ot=t=>({mint:t[0].parsed.mint,currentOwner:t[0].parsed.owner,delegate:t[0].parsed.delegate});function Dt(e,r,n){n=t.bn(n);const i=Et(e),o=t.sumUpLamports(e.map((t=>t.compressedAccount))),s=i.sub(n);return t.validateSufficientBalance(s),s.eq(t.bn(0))&&o.eq(t.bn(0))?[{owner:r,amount:n,lamports:o,tlv:null}]:(t.validateSameOwner(e.map((t=>t.compressedAccount))),Rt(e),[{owner:e[0].parsed.owner,amount:s,lamports:o,tlv:null},{owner:r,amount:n,lamports:t.bn(0),tlv:null}])}function Bt(e,r){r=t.bn(r);const n=t.sumUpLamports(e.map((t=>t.compressedAccount))),i=Et(e).sub(r);return t.validateSufficientBalance(i),i.eq(t.bn(0))&&n.eq(t.bn(0))?[]:(t.validateSameOwner(e.map((t=>t.compressedAccount))),Rt(e),[{owner:e[0].parsed.owner,amount:i,lamports:n,tlv:null}])}class Lt{constructor(){}static setProgramId(t){this.programId="string"==typeof t?new e.PublicKey(t):t}static deriveTokenPoolPda(t){const r=[o,t.toBuffer()],[n,i]=e.PublicKey.findProgramAddressSync(r,this.programId);return n}static get deriveCpiAuthorityPda(){const[t,r]=e.PublicKey.findProgramAddressSync([s],this.programId);return t}static async createMint(t){const{mint:n,authority:i,feePayer:o,rentExemptBalance:s,tokenProgramId:a,freezeAuthority:u,mintSize:h}=t,m=null!=a?a:r.TOKEN_PROGRAM_ID;return[e.SystemProgram.createAccount({fromPubkey:o,lamports:s,newAccountPubkey:n,programId:m,space:null!=h?h:r.MINT_SIZE}),r.createInitializeMint2Instruction(n,t.decimals,i,u,m),await this.createTokenPool({feePayer:o,mint:n,tokenProgramId:m})]}static async createTokenPool(t){const{mint:n,feePayer:i,tokenProgramId:o}=t,s=null!=o?o:r.TOKEN_PROGRAM_ID,u=this.deriveTokenPoolPda(n),h=It({mint:n,feePayer:i,tokenPoolPda:u,tokenProgram:s,cpiAuthorityPda:this.deriveCpiAuthorityPda,systemProgram:e.SystemProgram.programId});return new e.TransactionInstruction({programId:this.programId,keys:h,data:a})}static async mintTo(n){const i=t.defaultStaticAccountsStruct(),{mint:o,feePayer:s,authority:a,merkleTree:u,toPubkey:h,amount:m,tokenProgramId:l}=n,c=null!=l?l:r.TOKEN_PROGRAM_ID,p=this.deriveTokenPoolPda(o),d=t.toArray(m).map((e=>t.bn(e))),f=t.toArray(h);if(d.length!==f.length)throw new Error("Amount and toPubkey arrays must have the same length");const g=_t({mint:o,feePayer:s,authority:a,cpiAuthorityPda:this.deriveCpiAuthorityPda,tokenProgram:c,tokenPoolPda:p,lightSystemProgram:t.LightSystemProgram.programId,registeredProgramPda:i.registeredProgramPda,noopProgram:i.noopProgram,accountCompressionAuthority:i.accountCompressionAuthority,accountCompressionProgram:i.accountCompressionProgram,merkleTree:null!=u?u:t.defaultTestStateTreeAccounts().merkleTree,selfProgram:this.programId,systemProgram:e.SystemProgram.programId,solPoolPda:null}),y=St({recipients:f,amounts:d,lamports:null});return new e.TransactionInstruction({programId:this.programId,keys:g,data:y})}static async approveAndMintTo(t){const{mint:e,feePayer:n,authorityTokenAccount:i,authority:o,merkleTree:s,toPubkey:a,tokenProgramId:u}=t,h=BigInt(t.amount.toString());return[r.createMintToInstruction(e,i,o,h,[],u),await this.compress({payer:n,owner:o,source:i,toAddress:a,mint:e,amount:t.amount,outputStateTree:s,tokenProgramId:u})]}static async transfer(r){const{payer:n,inputCompressedTokenAccounts:o,recentInputStateRootIndices:s,recentValidityProof:a,amount:u,outputStateTrees:h,toAddress:m}=r,l=Dt(o,m,u),{inputTokenDataWithContext:c,packedOutputTokenData:p,remainingAccountMetas:d}=i({inputCompressedTokenAccounts:o,outputStateTrees:h,rootIndices:s,tokenTransferOutputs:l}),{mint:f,currentOwner:g}=Ot(o),y=Ct({proof:a,mint:f,delegatedTransfer:null,inputTokenDataWithContext:c,outputCompressedAccounts:p,compressOrDecompressAmount:null,isCompress:0,cpiContext:null,lamportsChangeAccountMerkleTreeIndex:null}),{accountCompressionAuthority:M,noopProgram:v,registeredProgramPda:w,accountCompressionProgram:b}=t.defaultStaticAccountsStruct(),P=xt({feePayer:n,authority:g,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 P.push(...d),new e.TransactionInstruction({programId:this.programId,keys:P,data:y})}static async createTokenProgramLookupTable(n){const{authority:i,mints:o,recentSlot:s,payer:a,remainingAccounts:u}=n,[h,m]=e.AddressLookupTableProgram.createLookupTable({authority:i,payer:i,recentSlot:s});let l=[];return o&&(l=[...o,...o.map((t=>this.deriveTokenPoolPda(t)))]),{instructions:[h,e.AddressLookupTableProgram.extendLookupTable({payer:a,authority:i,lookupTable:m,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,r.TOKEN_PROGRAM_ID,r.TOKEN_2022_PROGRAM_ID,i,...l,...null!=u?u:[]]})],address:m}}static async compress(n){const{payer:o,owner:s,source:a,toAddress:u,mint:h,outputStateTree:m,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 c;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");c=n.amount.map(((e,r)=>{const i=t.bn(e);return{owner:n.toAddress[r],amount:i,lamports:t.bn(0),tlv:null}}))}else c=[{owner:u,amount:t.bn(n.amount),lamports:t.bn(0),tlv:null}];const{inputTokenDataWithContext:p,packedOutputTokenData:d,remainingAccountMetas:f}=i({inputCompressedTokenAccounts:[],outputStateTrees:m,rootIndices:[],tokenTransferOutputs:c}),g=Ct({proof:null,mint:h,delegatedTransfer:null,inputTokenDataWithContext:p,outputCompressedAccounts:d,compressOrDecompressAmount:Array.isArray(n.amount)?n.amount.map((t=>new ft(t))).reduce(((t,e)=>t.add(e)),new ft(0)):new ft(n.amount),isCompress:1,cpiContext:null,lamportsChangeAccountMerkleTreeIndex:null}),y=null!=l?l:r.TOKEN_PROGRAM_ID,M=xt(Object.assign(Object.assign({},t.defaultStaticAccountsStruct()),{feePayer:o,authority:s,cpiAuthorityPda:this.deriveCpiAuthorityPda,lightSystemProgram:t.LightSystemProgram.programId,selfProgram:this.programId,systemProgram:e.SystemProgram.programId,tokenPoolPda:this.deriveTokenPoolPda(h),compressOrDecompressTokenAccount:a,tokenProgram:y}));return M.push(...f),new e.TransactionInstruction({programId:this.programId,keys:M,data:g})}static async decompress(n){const{payer:o,inputCompressedTokenAccounts:s,toAddress:a,outputStateTree:u,recentValidityProof:h,recentInputStateRootIndices:m,tokenProgramId:l}=n,c=t.bn(n.amount),p=Bt(s,c),{inputTokenDataWithContext:d,packedOutputTokenData:f,remainingAccountMetas:g}=i({inputCompressedTokenAccounts:s,outputStateTrees:u,rootIndices:m,tokenTransferOutputs:p}),{mint:y,currentOwner:M}=Ot(s),v=Ct({proof:h,mint:y,delegatedTransfer:null,inputTokenDataWithContext:d,outputCompressedAccounts:f,compressOrDecompressAmount:c,isCompress:0,cpiContext:null,lamportsChangeAccountMerkleTreeIndex:null}),w=null!=l?l:r.TOKEN_PROGRAM_ID,{accountCompressionAuthority:b,noopProgram:P,registeredProgramPda:k,accountCompressionProgram:A}=t.defaultStaticAccountsStruct(),S=xt({feePayer:o,authority:M,cpiAuthorityPda:this.deriveCpiAuthorityPda,lightSystemProgram:t.LightSystemProgram.programId,registeredProgramPda:k,noopProgram:P,accountCompressionAuthority:b,accountCompressionProgram:A,selfProgram:this.programId,tokenPoolPda:this.deriveTokenPoolPda(y),compressOrDecompressTokenAccount:a,tokenProgram:w,systemProgram:e.SystemProgram.programId});return S.push(...g),new e.TransactionInstruction({programId:this.programId,keys:S,data:v})}static async mergeTokenAccounts(t){const{payer:e,owner:r,inputCompressedTokenAccounts:n,outputStateTree:i,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:r,amount:n.reduce(((t,e)=>t.add(e.parsed.amount)),new ft(0)),outputStateTrees:i,recentInputStateRootIndices:s,recentValidityProof:o})]}static async compressSplTokenAccount(n){const{feePayer:i,authority:o,tokenAccount:s,mint:a,remainingAmount:u,outputStateTree:h,tokenProgramId:m}=n,l=null!=m?m:r.TOKEN_PROGRAM_ID,c=[{pubkey:h,isSigner:0,isWritable:1}],p=Tt({owner:o,remainingAmount:null!=u?u:null,cpiContext:null}),{accountCompressionAuthority:d,noopProgram:f,registeredProgramPda:g,accountCompressionProgram:y}=t.defaultStaticAccountsStruct(),M=xt({feePayer:i,authority:o,cpiAuthorityPda:this.deriveCpiAuthorityPda,lightSystemProgram:t.LightSystemProgram.programId,registeredProgramPda:g,noopProgram:f,accountCompressionAuthority:d,accountCompressionProgram:y,selfProgram:this.programId,tokenPoolPda:this.deriveTokenPoolPda(a),compressOrDecompressTokenAccount:s,tokenProgram:l,systemProgram:e.SystemProgram.programId});return M.push(...c),new e.TransactionInstruction({programId:this.programId,keys:M,data:p})}static async get_mint_program_id(t,e){var r;return null===(r=await e.getAccountInfo(t))||void 0===r?void 0:r.owner}}function Ut(e,r){let n=t.bn(0),i=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(r)))break;n=n.add(s.parsed.amount),i=i.add(s.compressedAccount.lamports),o.push(s)}if(n.lt(t.bn(r)))throw new Error(`Not enough balance for transfer. Required: ${r.toString()}, available: ${n.toString()}`);return[o,n,i.lt(t.bn(0))?i:null]}Lt.programId=new e.PublicKey("cTokenmWW8bLPjZEBAUgYy3zKxQZW6VKi7bqNFEVv3m"),exports.COMPRESS_SPL_TOKEN_ACCOUNT_DISCRIMINATOR=m,exports.CPI_AUTHORITY_SEED=s,exports.CREATE_TOKEN_POOL_DISCRIMINATOR=a,exports.CompressedTokenInstructionDataTransferLayout=Pt,exports.CompressedTokenProgram=Lt,exports.CpiContextLayout=bt,exports.DelegatedTransferLayout=wt,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=u,exports.POOL_SEED=o,exports.SPL_TOKEN_MINT_RENT_EXEMPT_BALANCE=1461600,exports.TRANSFER_DISCRIMINATOR=h,exports.approveAndMintTo=async function(n,i,o,s,a,u,h,m,l){l=l||await Lt.get_mint_program_id(o,n);const c=await r.getOrCreateAssociatedTokenAccount(n,i,o,a.publicKey,void 0,void 0,m,l),p=await Lt.approveAndMintTo({feePayer:i.publicKey,mint:o,authority:a.publicKey,authorityTokenAccount:c.address,amount:u,toPubkey:s,merkleTree:h,tokenProgramId:l}),{blockhash:d}=await n.getLatestBlockhash(),f=t.dedupeSigner(i,[a]),g=t.buildAndSignTx([e.ComputeBudgetProgram.setComputeUnitLimit({units:1e6}),...p],i,d,f);return await t.sendAndConfirmTx(n,g,m)},exports.compress=async function(r,n,i,o,s,a,u,h,m,l){l=l||await Lt.get_mint_program_id(i,r);const c=await Lt.compress({payer:n.publicKey,owner:s.publicKey,source:a,toAddress:u,amount:o,mint:i,outputStateTree:h,tokenProgramId:l}),p=await r.getLatestBlockhash(),d=t.dedupeSigner(n,[s]),f=t.buildAndSignTx([e.ComputeBudgetProgram.setComputeUnitLimit({units:1e6}),c],n,p.blockhash,d);return await t.sendAndConfirmTx(r,f,m,p)},exports.compressSplTokenAccount=async function(r,n,i,o,s,a,u,h,m){m=m||await Lt.get_mint_program_id(i,r);const l=await Lt.compressSplTokenAccount({feePayer:n.publicKey,authority:o.publicKey,tokenAccount:s,mint:i,remainingAmount:u,outputStateTree:a,tokenProgramId:m}),c=await r.getLatestBlockhash(),p=t.dedupeSigner(n,[o]),d=t.buildAndSignTx([e.ComputeBudgetProgram.setComputeUnitLimit({units:1e6}),l],n,c.blockhash,p);return await t.sendAndConfirmTx(r,d,h,c)},exports.compressSplTokenAccountInstructionDataLayout=At,exports.createDecompressOutputState=Bt,exports.createMint=async function(n,i,o,s,a=e.Keypair.generate(),u,h=0){const m=await n.getMinimumBalanceForRentExemption(r.MINT_SIZE),l=h?r.TOKEN_2022_PROGRAM_ID:r.TOKEN_PROGRAM_ID,c=await Lt.createMint({feePayer:i.publicKey,mint:a.publicKey,decimals:s,authority:o,freezeAuthority:null,rentExemptBalance:m,tokenProgramId:l}),{blockhash:p}=await n.getLatestBlockhash(),d=t.dedupeSigner(i,[a]),f=t.buildAndSignTx(c,i,p,d),g=await t.sendAndConfirmTx(n,f,u);return{mint:a.publicKey,transactionSignature:g}},exports.createTokenPool=async function(e,r,n,i,o){o=o||await Lt.get_mint_program_id(n,e);const s=await Lt.createTokenPool({feePayer:r.publicKey,mint:n,tokenProgramId:o}),{blockhash:a}=await e.getLatestBlockhash(),u=t.buildAndSignTx([s],r,a);return await t.sendAndConfirmTx(e,u,i)},exports.createTokenPoolAccountsLayout=It,exports.createTokenProgramLookupTable=async function(e,r,n,i,o){const s=await e.getSlot("finalized"),{instructions:a,address:u}=await Lt.createTokenProgramLookupTable({payer:r.publicKey,authority:n.publicKey,mints:i,remainingAccounts:o,recentSlot:s}),h=t.dedupeSigner(r,[n]),m=await e.getLatestBlockhash(),l=t.buildAndSignTx([a[0]],r,m.blockhash,h),c=await t.sendAndConfirmTx(e,l,{commitment:"finalized"},m),p=await e.getLatestBlockhash(),d=t.buildAndSignTx([a[1]],r,p.blockhash,h);return{txIds:[c,await t.sendAndConfirmTx(e,d,{commitment:"finalized"},p)],address:u}},exports.createTransferOutputState=Dt,exports.decodeCompressSplTokenAccountInstructionData=function(t){const e=At.decode(t.slice(m.length));return{owner:e.owner,remainingAmount:e.remainingAmount,cpiContext:e.cpiContext}},exports.decodeMintToInstructionData=function(t){const e=kt.decode(t.slice(u.length));return{recipients:e.recipients,amounts:e.amounts,lamports:e.lamports}},exports.decodeTransferInstructionData=function(t){return Pt.decode(t.slice(h.length+4))},exports.decompress=async function(r,n,i,o,s,a,u,h,m){m=m||await Lt.get_mint_program_id(i,r),o=t.bn(o);const l=await r.getCompressedTokenAccountsByOwner(s.publicKey,{mint:i}),[c]=Ut(l.items,o),p=await r.getValidityProof(c.map((e=>t.bn(e.compressedAccount.hash)))),d=await Lt.decompress({payer:n.publicKey,inputCompressedTokenAccounts:c,toAddress:a,amount:o,outputStateTree:u,recentInputStateRootIndices:p.rootIndices,recentValidityProof:p.compressedProof,tokenProgramId:m}),{blockhash:f}=await r.getLatestBlockhash(),g=t.dedupeSigner(n,[s]),y=t.buildAndSignTx([e.ComputeBudgetProgram.setComputeUnitLimit({units:1e6}),d],n,f,g);return await t.sendAndConfirmTx(r,y,h)},exports.encodeCompressSplTokenAccountInstructionData=Tt,exports.encodeMintToInstructionData=St,exports.encodeTransferInstructionData=Ct,exports.mergeTokenAccounts=async function(r,n,i,o,s,a){const u=await r.getCompressedTokenAccountsByOwner(o.publicKey,{mint:i});if(0===u.items.length)throw new Error(`No compressed token accounts found for mint ${i.toBase58()}`);if(u.items.length>=6)throw new Error(`Too many compressed token accounts used for mint ${i.toBase58()}`);const h=[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),m=await r.getValidityProof(a.map((e=>t.bn(e.compressedAccount.hash)))),l=await Lt.mergeTokenAccounts({payer:n.publicKey,owner:o.publicKey,mint:i,inputCompressedTokenAccounts:a,outputStateTree:s,recentValidityProof:m.compressedProof,recentInputStateRootIndices:m.rootIndices});h.push(...l)}const{blockhash:m}=await r.getLatestBlockhash(),l=t.dedupeSigner(n,[o]),c=t.buildAndSignTx(h,n,m,l);return await t.sendAndConfirmTx(r,c,a)},exports.mintTo=async function(r,n,i,o,s,a,u,h,m){m=m||await Lt.get_mint_program_id(i,r);const l=t.dedupeSigner(n,[s]),c=await Lt.mintTo({feePayer:n.publicKey,mint:i,authority:s.publicKey,amount:a,toPubkey:o,merkleTree:u,tokenProgramId:m}),{blockhash:p}=await r.getLatestBlockhash(),d=t.buildAndSignTx([e.ComputeBudgetProgram.setComputeUnitLimit({units:1e6}),c],n,p,l);return await t.sendAndConfirmTx(r,d,h)},exports.mintToAccountsLayout=_t,exports.mintToLayout=kt,exports.packCompressedTokenAccounts=i,exports.parseTokenData=Ot,exports.selectMinCompressedTokenAccountsForTransfer=Ut,exports.sumUpTokenAmount=Et,exports.transfer=async function(r,n,i,o,s,a,u,h){o=t.bn(o);const m=await r.getCompressedTokenAccountsByOwner(s.publicKey,{mint:i}),[l]=Ut(m.items,o),c=await r.getValidityProof(l.map((e=>t.bn(e.compressedAccount.hash)))),p=await Lt.transfer({payer:n.publicKey,inputCompressedTokenAccounts:l,toAddress:a,amount:o,recentInputStateRootIndices:c.rootIndices,recentValidityProof:c.compressedProof,outputStateTrees:u}),{blockhash:d}=await r.getLatestBlockhash(),f=t.dedupeSigner(n,[s]),g=t.buildAndSignTx([e.ComputeBudgetProgram.setComputeUnitLimit({units:1e6}),p],n,d,f);return await t.sendAndConfirmTx(r,g,h)},exports.transferAccountsLayout=xt,exports.validateSameTokenOwner=Rt;
|
|
2835
2
|
//# sourceMappingURL=index.cjs.map
|