@revibase/core 0.2.0 → 0.3.0
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/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +491 -44
- package/dist/index.d.ts +491 -44
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/dist/index.d.cts
CHANGED
|
@@ -60,6 +60,24 @@ declare function fetchAllGlobalCounter(rpc: Parameters<typeof fetchEncodedAccoun
|
|
|
60
60
|
declare function fetchAllMaybeGlobalCounter(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Array<Address>, config?: FetchAccountsConfig): Promise<MaybeAccount<GlobalCounter>[]>;
|
|
61
61
|
declare function getGlobalCounterSize(): number;
|
|
62
62
|
|
|
63
|
+
declare enum AccountState {
|
|
64
|
+
Initialized = 0,
|
|
65
|
+
Frozen = 1
|
|
66
|
+
}
|
|
67
|
+
type AccountStateArgs = AccountState;
|
|
68
|
+
declare function getAccountStateEncoder(): FixedSizeEncoder<AccountStateArgs>;
|
|
69
|
+
declare function getAccountStateDecoder(): FixedSizeDecoder<AccountState>;
|
|
70
|
+
declare function getAccountStateCodec(): FixedSizeCodec<AccountStateArgs, AccountState>;
|
|
71
|
+
|
|
72
|
+
type AdditionalMetadata = {
|
|
73
|
+
key: ReadonlyUint8Array;
|
|
74
|
+
value: ReadonlyUint8Array;
|
|
75
|
+
};
|
|
76
|
+
type AdditionalMetadataArgs = AdditionalMetadata;
|
|
77
|
+
declare function getAdditionalMetadataEncoder(): Encoder<AdditionalMetadataArgs>;
|
|
78
|
+
declare function getAdditionalMetadataDecoder(): Decoder<AdditionalMetadata>;
|
|
79
|
+
declare function getAdditionalMetadataCodec(): Codec<AdditionalMetadataArgs, AdditionalMetadata>;
|
|
80
|
+
|
|
63
81
|
type AddMemberArgs$1 = {
|
|
64
82
|
memberKey: MemberKey;
|
|
65
83
|
permissions: IPermissions;
|
|
@@ -110,6 +128,20 @@ declare function getCompressedAccountMetaReadOnlyEncoder(): FixedSizeEncoder<Com
|
|
|
110
128
|
declare function getCompressedAccountMetaReadOnlyDecoder(): FixedSizeDecoder<CompressedAccountMetaReadOnly>;
|
|
111
129
|
declare function getCompressedAccountMetaReadOnlyCodec(): FixedSizeCodec<CompressedAccountMetaReadOnlyArgs, CompressedAccountMetaReadOnly>;
|
|
112
130
|
|
|
131
|
+
type CompressedOnlyExtension = {
|
|
132
|
+
delegatedAmount: bigint;
|
|
133
|
+
withheldTransferFee: bigint;
|
|
134
|
+
isAta: number;
|
|
135
|
+
};
|
|
136
|
+
type CompressedOnlyExtensionArgs = {
|
|
137
|
+
delegatedAmount: number | bigint;
|
|
138
|
+
withheldTransferFee: number | bigint;
|
|
139
|
+
isAta: number;
|
|
140
|
+
};
|
|
141
|
+
declare function getCompressedOnlyExtensionEncoder(): FixedSizeEncoder<CompressedOnlyExtensionArgs>;
|
|
142
|
+
declare function getCompressedOnlyExtensionDecoder(): FixedSizeDecoder<CompressedOnlyExtension>;
|
|
143
|
+
declare function getCompressedOnlyExtensionCodec(): FixedSizeCodec<CompressedOnlyExtensionArgs, CompressedOnlyExtension>;
|
|
144
|
+
|
|
113
145
|
type CompressedProof = {
|
|
114
146
|
a: ReadonlyUint8Array;
|
|
115
147
|
b: ReadonlyUint8Array;
|
|
@@ -152,6 +184,72 @@ declare function getCompressedSettingsDataEncoder(): Encoder<CompressedSettingsD
|
|
|
152
184
|
declare function getCompressedSettingsDataDecoder(): Decoder<CompressedSettingsData>;
|
|
153
185
|
declare function getCompressedSettingsDataCodec(): Codec<CompressedSettingsDataArgs, CompressedSettingsData>;
|
|
154
186
|
|
|
187
|
+
type CompressedTokenArgs = {
|
|
188
|
+
version: number;
|
|
189
|
+
rootIndex: number;
|
|
190
|
+
amount: bigint;
|
|
191
|
+
merkleContext: PackedMerkleContext;
|
|
192
|
+
tlv: Option<Array<ExtensionStruct>>;
|
|
193
|
+
state: AccountState;
|
|
194
|
+
};
|
|
195
|
+
type CompressedTokenArgsArgs = {
|
|
196
|
+
version: number;
|
|
197
|
+
rootIndex: number;
|
|
198
|
+
amount: number | bigint;
|
|
199
|
+
merkleContext: PackedMerkleContextArgs;
|
|
200
|
+
tlv: OptionOrNullable<Array<ExtensionStructArgs>>;
|
|
201
|
+
state: AccountStateArgs;
|
|
202
|
+
};
|
|
203
|
+
declare function getCompressedTokenArgsEncoder(): Encoder<CompressedTokenArgsArgs>;
|
|
204
|
+
declare function getCompressedTokenArgsDecoder(): Decoder<CompressedTokenArgs>;
|
|
205
|
+
declare function getCompressedTokenArgsCodec(): Codec<CompressedTokenArgsArgs, CompressedTokenArgs>;
|
|
206
|
+
|
|
207
|
+
type CompressibleExtension = {
|
|
208
|
+
decimalsOption: number;
|
|
209
|
+
decimals: number;
|
|
210
|
+
compressionOnly: boolean;
|
|
211
|
+
isAta: number;
|
|
212
|
+
info: CompressionInfo;
|
|
213
|
+
};
|
|
214
|
+
type CompressibleExtensionArgs = {
|
|
215
|
+
decimalsOption: number;
|
|
216
|
+
decimals: number;
|
|
217
|
+
compressionOnly: boolean;
|
|
218
|
+
isAta: number;
|
|
219
|
+
info: CompressionInfoArgs;
|
|
220
|
+
};
|
|
221
|
+
declare function getCompressibleExtensionEncoder(): FixedSizeEncoder<CompressibleExtensionArgs>;
|
|
222
|
+
declare function getCompressibleExtensionDecoder(): FixedSizeDecoder<CompressibleExtension>;
|
|
223
|
+
declare function getCompressibleExtensionCodec(): FixedSizeCodec<CompressibleExtensionArgs, CompressibleExtension>;
|
|
224
|
+
|
|
225
|
+
type CompressionInfo = {
|
|
226
|
+
configAccountVersion: number;
|
|
227
|
+
compressToPubkey: number;
|
|
228
|
+
accountVersion: number;
|
|
229
|
+
lamportsPerWrite: number;
|
|
230
|
+
compressionAuthority: ReadonlyUint8Array;
|
|
231
|
+
rentSponsor: ReadonlyUint8Array;
|
|
232
|
+
lastClaimedSlot: bigint;
|
|
233
|
+
rentExemptionPaid: number;
|
|
234
|
+
reserved: number;
|
|
235
|
+
rentConfig: RentConfig;
|
|
236
|
+
};
|
|
237
|
+
type CompressionInfoArgs = {
|
|
238
|
+
configAccountVersion: number;
|
|
239
|
+
compressToPubkey: number;
|
|
240
|
+
accountVersion: number;
|
|
241
|
+
lamportsPerWrite: number;
|
|
242
|
+
compressionAuthority: ReadonlyUint8Array;
|
|
243
|
+
rentSponsor: ReadonlyUint8Array;
|
|
244
|
+
lastClaimedSlot: number | bigint;
|
|
245
|
+
rentExemptionPaid: number;
|
|
246
|
+
reserved: number;
|
|
247
|
+
rentConfig: RentConfigArgs;
|
|
248
|
+
};
|
|
249
|
+
declare function getCompressionInfoEncoder(): FixedSizeEncoder<CompressionInfoArgs>;
|
|
250
|
+
declare function getCompressionInfoDecoder(): FixedSizeDecoder<CompressionInfo>;
|
|
251
|
+
declare function getCompressionInfoCodec(): FixedSizeCodec<CompressionInfoArgs, CompressionInfo>;
|
|
252
|
+
|
|
155
253
|
type ConfigAction = {
|
|
156
254
|
__kind: "EditPermissions";
|
|
157
255
|
fields: readonly [Array<EditMemberArgs$1>];
|
|
@@ -229,6 +327,194 @@ declare function getExpectedSignerEncoder(): Encoder<ExpectedSignerArgs>;
|
|
|
229
327
|
declare function getExpectedSignerDecoder(): Decoder<ExpectedSigner>;
|
|
230
328
|
declare function getExpectedSignerCodec(): Codec<ExpectedSignerArgs, ExpectedSigner>;
|
|
231
329
|
|
|
330
|
+
type ExtensionStruct = {
|
|
331
|
+
__kind: "Placeholder0";
|
|
332
|
+
} | {
|
|
333
|
+
__kind: "Placeholder1";
|
|
334
|
+
} | {
|
|
335
|
+
__kind: "Placeholder2";
|
|
336
|
+
} | {
|
|
337
|
+
__kind: "Placeholder3";
|
|
338
|
+
} | {
|
|
339
|
+
__kind: "Placeholder4";
|
|
340
|
+
} | {
|
|
341
|
+
__kind: "Placeholder5";
|
|
342
|
+
} | {
|
|
343
|
+
__kind: "Placeholder6";
|
|
344
|
+
} | {
|
|
345
|
+
__kind: "Placeholder7";
|
|
346
|
+
} | {
|
|
347
|
+
__kind: "Placeholder8";
|
|
348
|
+
} | {
|
|
349
|
+
__kind: "Placeholder9";
|
|
350
|
+
} | {
|
|
351
|
+
__kind: "Placeholder10";
|
|
352
|
+
} | {
|
|
353
|
+
__kind: "Placeholder11";
|
|
354
|
+
} | {
|
|
355
|
+
__kind: "Placeholder12";
|
|
356
|
+
} | {
|
|
357
|
+
__kind: "Placeholder13";
|
|
358
|
+
} | {
|
|
359
|
+
__kind: "Placeholder14";
|
|
360
|
+
} | {
|
|
361
|
+
__kind: "Placeholder15";
|
|
362
|
+
} | {
|
|
363
|
+
__kind: "Placeholder16";
|
|
364
|
+
} | {
|
|
365
|
+
__kind: "Placeholder17";
|
|
366
|
+
} | {
|
|
367
|
+
__kind: "Placeholder18";
|
|
368
|
+
} | {
|
|
369
|
+
__kind: "TokenMetadata";
|
|
370
|
+
fields: readonly [TokenMetadata];
|
|
371
|
+
} | {
|
|
372
|
+
__kind: "Placeholder20";
|
|
373
|
+
} | {
|
|
374
|
+
__kind: "Placeholder21";
|
|
375
|
+
} | {
|
|
376
|
+
__kind: "Placeholder22";
|
|
377
|
+
} | {
|
|
378
|
+
__kind: "Placeholder23";
|
|
379
|
+
} | {
|
|
380
|
+
__kind: "Placeholder24";
|
|
381
|
+
} | {
|
|
382
|
+
__kind: "Placeholder25";
|
|
383
|
+
} | {
|
|
384
|
+
__kind: "Placeholder26";
|
|
385
|
+
} | {
|
|
386
|
+
__kind: "PausableAccount";
|
|
387
|
+
fields: readonly [PausableAccountExtension];
|
|
388
|
+
} | {
|
|
389
|
+
__kind: "PermanentDelegateAccount";
|
|
390
|
+
fields: readonly [PermanentDelegateAccountExtension];
|
|
391
|
+
} | {
|
|
392
|
+
__kind: "TransferFeeAccount";
|
|
393
|
+
fields: readonly [TransferFeeAccountExtension];
|
|
394
|
+
} | {
|
|
395
|
+
__kind: "TransferHookAccount";
|
|
396
|
+
fields: readonly [TransferHookAccountExtension];
|
|
397
|
+
} | {
|
|
398
|
+
__kind: "CompressedOnly";
|
|
399
|
+
fields: readonly [CompressedOnlyExtension];
|
|
400
|
+
} | {
|
|
401
|
+
__kind: "Compressible";
|
|
402
|
+
fields: readonly [CompressibleExtension];
|
|
403
|
+
};
|
|
404
|
+
type ExtensionStructArgs = {
|
|
405
|
+
__kind: "Placeholder0";
|
|
406
|
+
} | {
|
|
407
|
+
__kind: "Placeholder1";
|
|
408
|
+
} | {
|
|
409
|
+
__kind: "Placeholder2";
|
|
410
|
+
} | {
|
|
411
|
+
__kind: "Placeholder3";
|
|
412
|
+
} | {
|
|
413
|
+
__kind: "Placeholder4";
|
|
414
|
+
} | {
|
|
415
|
+
__kind: "Placeholder5";
|
|
416
|
+
} | {
|
|
417
|
+
__kind: "Placeholder6";
|
|
418
|
+
} | {
|
|
419
|
+
__kind: "Placeholder7";
|
|
420
|
+
} | {
|
|
421
|
+
__kind: "Placeholder8";
|
|
422
|
+
} | {
|
|
423
|
+
__kind: "Placeholder9";
|
|
424
|
+
} | {
|
|
425
|
+
__kind: "Placeholder10";
|
|
426
|
+
} | {
|
|
427
|
+
__kind: "Placeholder11";
|
|
428
|
+
} | {
|
|
429
|
+
__kind: "Placeholder12";
|
|
430
|
+
} | {
|
|
431
|
+
__kind: "Placeholder13";
|
|
432
|
+
} | {
|
|
433
|
+
__kind: "Placeholder14";
|
|
434
|
+
} | {
|
|
435
|
+
__kind: "Placeholder15";
|
|
436
|
+
} | {
|
|
437
|
+
__kind: "Placeholder16";
|
|
438
|
+
} | {
|
|
439
|
+
__kind: "Placeholder17";
|
|
440
|
+
} | {
|
|
441
|
+
__kind: "Placeholder18";
|
|
442
|
+
} | {
|
|
443
|
+
__kind: "TokenMetadata";
|
|
444
|
+
fields: readonly [TokenMetadataArgs];
|
|
445
|
+
} | {
|
|
446
|
+
__kind: "Placeholder20";
|
|
447
|
+
} | {
|
|
448
|
+
__kind: "Placeholder21";
|
|
449
|
+
} | {
|
|
450
|
+
__kind: "Placeholder22";
|
|
451
|
+
} | {
|
|
452
|
+
__kind: "Placeholder23";
|
|
453
|
+
} | {
|
|
454
|
+
__kind: "Placeholder24";
|
|
455
|
+
} | {
|
|
456
|
+
__kind: "Placeholder25";
|
|
457
|
+
} | {
|
|
458
|
+
__kind: "Placeholder26";
|
|
459
|
+
} | {
|
|
460
|
+
__kind: "PausableAccount";
|
|
461
|
+
fields: readonly [PausableAccountExtensionArgs];
|
|
462
|
+
} | {
|
|
463
|
+
__kind: "PermanentDelegateAccount";
|
|
464
|
+
fields: readonly [PermanentDelegateAccountExtensionArgs];
|
|
465
|
+
} | {
|
|
466
|
+
__kind: "TransferFeeAccount";
|
|
467
|
+
fields: readonly [TransferFeeAccountExtensionArgs];
|
|
468
|
+
} | {
|
|
469
|
+
__kind: "TransferHookAccount";
|
|
470
|
+
fields: readonly [TransferHookAccountExtensionArgs];
|
|
471
|
+
} | {
|
|
472
|
+
__kind: "CompressedOnly";
|
|
473
|
+
fields: readonly [CompressedOnlyExtensionArgs];
|
|
474
|
+
} | {
|
|
475
|
+
__kind: "Compressible";
|
|
476
|
+
fields: readonly [CompressibleExtensionArgs];
|
|
477
|
+
};
|
|
478
|
+
declare function getExtensionStructEncoder(): Encoder<ExtensionStructArgs>;
|
|
479
|
+
declare function getExtensionStructDecoder(): Decoder<ExtensionStruct>;
|
|
480
|
+
declare function getExtensionStructCodec(): Codec<ExtensionStructArgs, ExtensionStruct>;
|
|
481
|
+
declare function extensionStruct(kind: "Placeholder0"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder0">;
|
|
482
|
+
declare function extensionStruct(kind: "Placeholder1"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder1">;
|
|
483
|
+
declare function extensionStruct(kind: "Placeholder2"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder2">;
|
|
484
|
+
declare function extensionStruct(kind: "Placeholder3"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder3">;
|
|
485
|
+
declare function extensionStruct(kind: "Placeholder4"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder4">;
|
|
486
|
+
declare function extensionStruct(kind: "Placeholder5"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder5">;
|
|
487
|
+
declare function extensionStruct(kind: "Placeholder6"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder6">;
|
|
488
|
+
declare function extensionStruct(kind: "Placeholder7"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder7">;
|
|
489
|
+
declare function extensionStruct(kind: "Placeholder8"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder8">;
|
|
490
|
+
declare function extensionStruct(kind: "Placeholder9"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder9">;
|
|
491
|
+
declare function extensionStruct(kind: "Placeholder10"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder10">;
|
|
492
|
+
declare function extensionStruct(kind: "Placeholder11"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder11">;
|
|
493
|
+
declare function extensionStruct(kind: "Placeholder12"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder12">;
|
|
494
|
+
declare function extensionStruct(kind: "Placeholder13"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder13">;
|
|
495
|
+
declare function extensionStruct(kind: "Placeholder14"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder14">;
|
|
496
|
+
declare function extensionStruct(kind: "Placeholder15"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder15">;
|
|
497
|
+
declare function extensionStruct(kind: "Placeholder16"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder16">;
|
|
498
|
+
declare function extensionStruct(kind: "Placeholder17"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder17">;
|
|
499
|
+
declare function extensionStruct(kind: "Placeholder18"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder18">;
|
|
500
|
+
declare function extensionStruct(kind: "TokenMetadata", data: GetDiscriminatedUnionVariantContent<ExtensionStructArgs, "__kind", "TokenMetadata">["fields"]): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "TokenMetadata">;
|
|
501
|
+
declare function extensionStruct(kind: "Placeholder20"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder20">;
|
|
502
|
+
declare function extensionStruct(kind: "Placeholder21"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder21">;
|
|
503
|
+
declare function extensionStruct(kind: "Placeholder22"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder22">;
|
|
504
|
+
declare function extensionStruct(kind: "Placeholder23"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder23">;
|
|
505
|
+
declare function extensionStruct(kind: "Placeholder24"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder24">;
|
|
506
|
+
declare function extensionStruct(kind: "Placeholder25"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder25">;
|
|
507
|
+
declare function extensionStruct(kind: "Placeholder26"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder26">;
|
|
508
|
+
declare function extensionStruct(kind: "PausableAccount", data: GetDiscriminatedUnionVariantContent<ExtensionStructArgs, "__kind", "PausableAccount">["fields"]): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "PausableAccount">;
|
|
509
|
+
declare function extensionStruct(kind: "PermanentDelegateAccount", data: GetDiscriminatedUnionVariantContent<ExtensionStructArgs, "__kind", "PermanentDelegateAccount">["fields"]): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "PermanentDelegateAccount">;
|
|
510
|
+
declare function extensionStruct(kind: "TransferFeeAccount", data: GetDiscriminatedUnionVariantContent<ExtensionStructArgs, "__kind", "TransferFeeAccount">["fields"]): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "TransferFeeAccount">;
|
|
511
|
+
declare function extensionStruct(kind: "TransferHookAccount", data: GetDiscriminatedUnionVariantContent<ExtensionStructArgs, "__kind", "TransferHookAccount">["fields"]): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "TransferHookAccount">;
|
|
512
|
+
declare function extensionStruct(kind: "CompressedOnly", data: GetDiscriminatedUnionVariantContent<ExtensionStructArgs, "__kind", "CompressedOnly">["fields"]): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "CompressedOnly">;
|
|
513
|
+
declare function extensionStruct(kind: "Compressible", data: GetDiscriminatedUnionVariantContent<ExtensionStructArgs, "__kind", "Compressible">["fields"]): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Compressible">;
|
|
514
|
+
declare function isExtensionStruct<K extends ExtensionStruct["__kind"]>(kind: K, value: ExtensionStruct): value is ExtensionStruct & {
|
|
515
|
+
__kind: K;
|
|
516
|
+
};
|
|
517
|
+
|
|
232
518
|
type LinkWalletArgs = {
|
|
233
519
|
settingsMutArgs: SettingsMutArgs;
|
|
234
520
|
transactionManager: Option<UserReadOnlyArgs>;
|
|
@@ -290,6 +576,17 @@ declare function getPackedAddressTreeInfoEncoder(): FixedSizeEncoder<PackedAddre
|
|
|
290
576
|
declare function getPackedAddressTreeInfoDecoder(): FixedSizeDecoder<PackedAddressTreeInfo>;
|
|
291
577
|
declare function getPackedAddressTreeInfoCodec(): FixedSizeCodec<PackedAddressTreeInfoArgs, PackedAddressTreeInfo>;
|
|
292
578
|
|
|
579
|
+
type PackedMerkleContext = {
|
|
580
|
+
merkleTreePubkeyIndex: number;
|
|
581
|
+
queuePubkeyIndex: number;
|
|
582
|
+
leafIndex: number;
|
|
583
|
+
proveByIndex: boolean;
|
|
584
|
+
};
|
|
585
|
+
type PackedMerkleContextArgs = PackedMerkleContext;
|
|
586
|
+
declare function getPackedMerkleContextEncoder(): FixedSizeEncoder<PackedMerkleContextArgs>;
|
|
587
|
+
declare function getPackedMerkleContextDecoder(): FixedSizeDecoder<PackedMerkleContext>;
|
|
588
|
+
declare function getPackedMerkleContextCodec(): FixedSizeCodec<PackedMerkleContextArgs, PackedMerkleContext>;
|
|
589
|
+
|
|
293
590
|
type PackedStateTreeInfo = {
|
|
294
591
|
rootIndex: number;
|
|
295
592
|
proveByIndex: boolean;
|
|
@@ -302,6 +599,18 @@ declare function getPackedStateTreeInfoEncoder(): FixedSizeEncoder<PackedStateTr
|
|
|
302
599
|
declare function getPackedStateTreeInfoDecoder(): FixedSizeDecoder<PackedStateTreeInfo>;
|
|
303
600
|
declare function getPackedStateTreeInfoCodec(): FixedSizeCodec<PackedStateTreeInfoArgs, PackedStateTreeInfo>;
|
|
304
601
|
|
|
602
|
+
type PausableAccountExtension = {};
|
|
603
|
+
type PausableAccountExtensionArgs = PausableAccountExtension;
|
|
604
|
+
declare function getPausableAccountExtensionEncoder(): FixedSizeEncoder<PausableAccountExtensionArgs>;
|
|
605
|
+
declare function getPausableAccountExtensionDecoder(): FixedSizeDecoder<PausableAccountExtension>;
|
|
606
|
+
declare function getPausableAccountExtensionCodec(): FixedSizeCodec<PausableAccountExtensionArgs, PausableAccountExtension>;
|
|
607
|
+
|
|
608
|
+
type PermanentDelegateAccountExtension = {};
|
|
609
|
+
type PermanentDelegateAccountExtensionArgs = PermanentDelegateAccountExtension;
|
|
610
|
+
declare function getPermanentDelegateAccountExtensionEncoder(): FixedSizeEncoder<PermanentDelegateAccountExtensionArgs>;
|
|
611
|
+
declare function getPermanentDelegateAccountExtensionDecoder(): FixedSizeDecoder<PermanentDelegateAccountExtension>;
|
|
612
|
+
declare function getPermanentDelegateAccountExtensionCodec(): FixedSizeCodec<PermanentDelegateAccountExtensionArgs, PermanentDelegateAccountExtension>;
|
|
613
|
+
|
|
305
614
|
type IPermissions = {
|
|
306
615
|
mask: number;
|
|
307
616
|
};
|
|
@@ -334,6 +643,18 @@ declare function getRemoveMemberArgsEncoder(): Encoder<RemoveMemberArgsArgs>;
|
|
|
334
643
|
declare function getRemoveMemberArgsDecoder(): Decoder<RemoveMemberArgs$1>;
|
|
335
644
|
declare function getRemoveMemberArgsCodec(): Codec<RemoveMemberArgsArgs, RemoveMemberArgs$1>;
|
|
336
645
|
|
|
646
|
+
type RentConfig = {
|
|
647
|
+
baseRent: number;
|
|
648
|
+
compressionCost: number;
|
|
649
|
+
lamportsPerBytePerEpoch: number;
|
|
650
|
+
maxFundedEpochs: number;
|
|
651
|
+
maxTopUp: number;
|
|
652
|
+
};
|
|
653
|
+
type RentConfigArgs = RentConfig;
|
|
654
|
+
declare function getRentConfigEncoder(): FixedSizeEncoder<RentConfigArgs>;
|
|
655
|
+
declare function getRentConfigDecoder(): FixedSizeDecoder<RentConfig>;
|
|
656
|
+
declare function getRentConfigCodec(): FixedSizeCodec<RentConfigArgs, RentConfig>;
|
|
657
|
+
|
|
337
658
|
type Secp256r1Pubkey = readonly [ReadonlyUint8Array];
|
|
338
659
|
type Secp256r1PubkeyArgs = Secp256r1Pubkey;
|
|
339
660
|
declare function getSecp256r1PubkeyEncoder(): FixedSizeEncoder<Secp256r1PubkeyArgs>;
|
|
@@ -422,6 +743,35 @@ declare function getSettingsReadonlyArgsEncoder(): Encoder<SettingsReadonlyArgsA
|
|
|
422
743
|
declare function getSettingsReadonlyArgsDecoder(): Decoder<SettingsReadonlyArgs>;
|
|
423
744
|
declare function getSettingsReadonlyArgsCodec(): Codec<SettingsReadonlyArgsArgs, SettingsReadonlyArgs>;
|
|
424
745
|
|
|
746
|
+
type SplInterfacePdaArgs = {
|
|
747
|
+
index: number;
|
|
748
|
+
restricted: boolean;
|
|
749
|
+
};
|
|
750
|
+
type SplInterfacePdaArgsArgs = SplInterfacePdaArgs;
|
|
751
|
+
declare function getSplInterfacePdaArgsEncoder(): FixedSizeEncoder<SplInterfacePdaArgsArgs>;
|
|
752
|
+
declare function getSplInterfacePdaArgsDecoder(): FixedSizeDecoder<SplInterfacePdaArgs>;
|
|
753
|
+
declare function getSplInterfacePdaArgsCodec(): FixedSizeCodec<SplInterfacePdaArgsArgs, SplInterfacePdaArgs>;
|
|
754
|
+
|
|
755
|
+
type TokenMetadata = {
|
|
756
|
+
updateAuthority: Address;
|
|
757
|
+
mint: Address;
|
|
758
|
+
name: ReadonlyUint8Array;
|
|
759
|
+
symbol: ReadonlyUint8Array;
|
|
760
|
+
uri: ReadonlyUint8Array;
|
|
761
|
+
additionalMetadata: Array<AdditionalMetadata>;
|
|
762
|
+
};
|
|
763
|
+
type TokenMetadataArgs = {
|
|
764
|
+
updateAuthority: Address;
|
|
765
|
+
mint: Address;
|
|
766
|
+
name: ReadonlyUint8Array;
|
|
767
|
+
symbol: ReadonlyUint8Array;
|
|
768
|
+
uri: ReadonlyUint8Array;
|
|
769
|
+
additionalMetadata: Array<AdditionalMetadataArgs>;
|
|
770
|
+
};
|
|
771
|
+
declare function getTokenMetadataEncoder(): Encoder<TokenMetadataArgs>;
|
|
772
|
+
declare function getTokenMetadataDecoder(): Decoder<TokenMetadata>;
|
|
773
|
+
declare function getTokenMetadataCodec(): Codec<TokenMetadataArgs, TokenMetadata>;
|
|
774
|
+
|
|
425
775
|
type TransactionBufferCreateArgs = {
|
|
426
776
|
bufferIndex: number;
|
|
427
777
|
preauthorizeExecution: boolean;
|
|
@@ -495,6 +845,24 @@ declare function isTransactionSyncSigners<K extends TransactionSyncSigners["__ki
|
|
|
495
845
|
__kind: K;
|
|
496
846
|
};
|
|
497
847
|
|
|
848
|
+
type TransferFeeAccountExtension = {
|
|
849
|
+
withheldAmount: bigint;
|
|
850
|
+
};
|
|
851
|
+
type TransferFeeAccountExtensionArgs = {
|
|
852
|
+
withheldAmount: number | bigint;
|
|
853
|
+
};
|
|
854
|
+
declare function getTransferFeeAccountExtensionEncoder(): FixedSizeEncoder<TransferFeeAccountExtensionArgs>;
|
|
855
|
+
declare function getTransferFeeAccountExtensionDecoder(): FixedSizeDecoder<TransferFeeAccountExtension>;
|
|
856
|
+
declare function getTransferFeeAccountExtensionCodec(): FixedSizeCodec<TransferFeeAccountExtensionArgs, TransferFeeAccountExtension>;
|
|
857
|
+
|
|
858
|
+
type TransferHookAccountExtension = {
|
|
859
|
+
transferring: number;
|
|
860
|
+
};
|
|
861
|
+
type TransferHookAccountExtensionArgs = TransferHookAccountExtension;
|
|
862
|
+
declare function getTransferHookAccountExtensionEncoder(): FixedSizeEncoder<TransferHookAccountExtensionArgs>;
|
|
863
|
+
declare function getTransferHookAccountExtensionDecoder(): FixedSizeDecoder<TransferHookAccountExtension>;
|
|
864
|
+
declare function getTransferHookAccountExtensionCodec(): FixedSizeCodec<TransferHookAccountExtensionArgs, TransferHookAccountExtension>;
|
|
865
|
+
|
|
498
866
|
declare enum Transports {
|
|
499
867
|
Ble = 0,
|
|
500
868
|
Cable = 1,
|
|
@@ -1845,27 +2213,40 @@ declare function parseNativeTransferIntentCompressedInstruction<TProgram extends
|
|
|
1845
2213
|
|
|
1846
2214
|
declare const TOKEN_TRANSFER_INTENT_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
1847
2215
|
declare function getTokenTransferIntentDiscriminatorBytes(): ReadonlyUint8Array;
|
|
1848
|
-
type TokenTransferIntentInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountSource extends string | AccountMeta<string> = string, TAccountSourceSplTokenAccount extends string | AccountMeta<string> = string, TAccountDestination extends string | AccountMeta<string> = string, TAccountDestinationSplTokenAccount extends string | AccountMeta<string> = string, TAccountTokenProgram extends string | AccountMeta<string> = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA", TAccountMint extends string | AccountMeta<string> = string,
|
|
2216
|
+
type TokenTransferIntentInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountSource extends string | AccountMeta<string> = string, TAccountSourceSplTokenAccount extends string | AccountMeta<string> = string, TAccountSourceCtokenTokenAccount extends string | AccountMeta<string> = string, TAccountDestination extends string | AccountMeta<string> = string, TAccountDestinationSplTokenAccount extends string | AccountMeta<string> = string, TAccountDestinationCtokenTokenAccount extends string | AccountMeta<string> = string, TAccountTokenProgram extends string | AccountMeta<string> = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA", TAccountMint extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountCompressedTokenProgramAuthority extends string | AccountMeta<string> = "GXtd2izAiMJPwMEjfgTRH3d7k9mjn4Jq3JrWFv9gySYy", TAccountSplInterfacePda extends string | AccountMeta<string> = string, TAccountCompressibleConfig extends string | AccountMeta<string> = string, TAccountRentSponsor extends string | AccountMeta<string> = string, TAccountCompressedTokenProgram extends string | AccountMeta<string> = "cTokenmWW8bLPjZEBAUgYy3zKxQZW6VKi7bqNFEVv3m", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
1849
2217
|
TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
|
|
2218
|
+
TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
|
|
1850
2219
|
TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
|
|
1851
2220
|
TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
|
|
1852
|
-
TAccountSource extends string ?
|
|
2221
|
+
TAccountSource extends string ? ReadonlyAccount<TAccountSource> : TAccountSource,
|
|
1853
2222
|
TAccountSourceSplTokenAccount extends string ? WritableAccount<TAccountSourceSplTokenAccount> : TAccountSourceSplTokenAccount,
|
|
2223
|
+
TAccountSourceCtokenTokenAccount extends string ? WritableAccount<TAccountSourceCtokenTokenAccount> : TAccountSourceCtokenTokenAccount,
|
|
1854
2224
|
TAccountDestination extends string ? ReadonlyAccount<TAccountDestination> : TAccountDestination,
|
|
1855
2225
|
TAccountDestinationSplTokenAccount extends string ? WritableAccount<TAccountDestinationSplTokenAccount> : TAccountDestinationSplTokenAccount,
|
|
2226
|
+
TAccountDestinationCtokenTokenAccount extends string ? WritableAccount<TAccountDestinationCtokenTokenAccount> : TAccountDestinationCtokenTokenAccount,
|
|
1856
2227
|
TAccountTokenProgram extends string ? ReadonlyAccount<TAccountTokenProgram> : TAccountTokenProgram,
|
|
1857
|
-
TAccountMint extends string ?
|
|
1858
|
-
TAccountAssociatedTokenProgram extends string ? ReadonlyAccount<TAccountAssociatedTokenProgram> : TAccountAssociatedTokenProgram,
|
|
2228
|
+
TAccountMint extends string ? WritableAccount<TAccountMint> : TAccountMint,
|
|
1859
2229
|
TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
|
|
2230
|
+
TAccountCompressedTokenProgramAuthority extends string ? ReadonlyAccount<TAccountCompressedTokenProgramAuthority> : TAccountCompressedTokenProgramAuthority,
|
|
2231
|
+
TAccountSplInterfacePda extends string ? WritableAccount<TAccountSplInterfacePda> : TAccountSplInterfacePda,
|
|
2232
|
+
TAccountCompressibleConfig extends string ? ReadonlyAccount<TAccountCompressibleConfig> : TAccountCompressibleConfig,
|
|
2233
|
+
TAccountRentSponsor extends string ? WritableAccount<TAccountRentSponsor> : TAccountRentSponsor,
|
|
2234
|
+
TAccountCompressedTokenProgram extends string ? ReadonlyAccount<TAccountCompressedTokenProgram> : TAccountCompressedTokenProgram,
|
|
1860
2235
|
...TRemainingAccounts
|
|
1861
2236
|
]>;
|
|
1862
2237
|
type TokenTransferIntentInstructionData = {
|
|
1863
2238
|
discriminator: ReadonlyUint8Array;
|
|
2239
|
+
splInterfacePdaArgs: Option<SplInterfacePdaArgs>;
|
|
1864
2240
|
amount: bigint;
|
|
2241
|
+
sourceCompressedTokenAccounts: Array<CompressedTokenArgs>;
|
|
2242
|
+
compressedProofArgs: Option<ProofArgs>;
|
|
1865
2243
|
signers: Array<TransactionSyncSigners>;
|
|
1866
2244
|
};
|
|
1867
2245
|
type TokenTransferIntentInstructionDataArgs = {
|
|
2246
|
+
splInterfacePdaArgs: OptionOrNullable<SplInterfacePdaArgsArgs>;
|
|
1868
2247
|
amount: number | bigint;
|
|
2248
|
+
sourceCompressedTokenAccounts: Array<CompressedTokenArgsArgs>;
|
|
2249
|
+
compressedProofArgs: OptionOrNullable<ProofArgsArgs>;
|
|
1869
2250
|
signers: Array<TransactionSyncSignersArgs>;
|
|
1870
2251
|
};
|
|
1871
2252
|
declare function getTokenTransferIntentInstructionDataEncoder(): Encoder<TokenTransferIntentInstructionDataArgs>;
|
|
@@ -1877,58 +2258,85 @@ type TokenTransferIntentInstructionExtraArgs = {
|
|
|
1877
2258
|
role: number;
|
|
1878
2259
|
}>;
|
|
1879
2260
|
};
|
|
1880
|
-
type TokenTransferIntentAsyncInput<TAccountSettings extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountSource extends string = string, TAccountSourceSplTokenAccount extends string = string, TAccountDestination extends string = string, TAccountDestinationSplTokenAccount extends string = string, TAccountTokenProgram extends string = string, TAccountMint extends string = string,
|
|
2261
|
+
type TokenTransferIntentAsyncInput<TAccountSettings extends string = string, TAccountPayer extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountSource extends string = string, TAccountSourceSplTokenAccount extends string = string, TAccountSourceCtokenTokenAccount extends string = string, TAccountDestination extends string = string, TAccountDestinationSplTokenAccount extends string = string, TAccountDestinationCtokenTokenAccount extends string = string, TAccountTokenProgram extends string = string, TAccountMint extends string = string, TAccountSystemProgram extends string = string, TAccountCompressedTokenProgramAuthority extends string = string, TAccountSplInterfacePda extends string = string, TAccountCompressibleConfig extends string = string, TAccountRentSponsor extends string = string, TAccountCompressedTokenProgram extends string = string> = {
|
|
1881
2262
|
settings: Address<TAccountSettings>;
|
|
2263
|
+
payer: TransactionSigner<TAccountPayer>;
|
|
1882
2264
|
slotHashSysvar?: Address<TAccountSlotHashSysvar>;
|
|
1883
2265
|
instructionsSysvar?: Address<TAccountInstructionsSysvar>;
|
|
1884
2266
|
source?: Address<TAccountSource>;
|
|
1885
2267
|
sourceSplTokenAccount?: Address<TAccountSourceSplTokenAccount>;
|
|
2268
|
+
sourceCtokenTokenAccount?: Address<TAccountSourceCtokenTokenAccount>;
|
|
1886
2269
|
destination: Address<TAccountDestination>;
|
|
1887
2270
|
destinationSplTokenAccount?: Address<TAccountDestinationSplTokenAccount>;
|
|
2271
|
+
destinationCtokenTokenAccount?: Address<TAccountDestinationCtokenTokenAccount>;
|
|
1888
2272
|
tokenProgram?: Address<TAccountTokenProgram>;
|
|
1889
2273
|
mint: Address<TAccountMint>;
|
|
1890
|
-
associatedTokenProgram?: Address<TAccountAssociatedTokenProgram>;
|
|
1891
2274
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
2275
|
+
compressedTokenProgramAuthority?: Address<TAccountCompressedTokenProgramAuthority>;
|
|
2276
|
+
splInterfacePda?: Address<TAccountSplInterfacePda>;
|
|
2277
|
+
compressibleConfig: Address<TAccountCompressibleConfig>;
|
|
2278
|
+
rentSponsor?: Address<TAccountRentSponsor>;
|
|
2279
|
+
compressedTokenProgram?: Address<TAccountCompressedTokenProgram>;
|
|
2280
|
+
splInterfacePdaArgs: TokenTransferIntentInstructionDataArgs["splInterfacePdaArgs"];
|
|
1892
2281
|
amount: TokenTransferIntentInstructionDataArgs["amount"];
|
|
2282
|
+
sourceCompressedTokenAccounts: TokenTransferIntentInstructionDataArgs["sourceCompressedTokenAccounts"];
|
|
2283
|
+
compressedProofArgs: TokenTransferIntentInstructionDataArgs["compressedProofArgs"];
|
|
1893
2284
|
signers: TokenTransferIntentInstructionDataArgs["signers"];
|
|
1894
2285
|
remainingAccounts: TokenTransferIntentInstructionExtraArgs["remainingAccounts"];
|
|
1895
2286
|
};
|
|
1896
|
-
declare function getTokenTransferIntentInstructionAsync<TAccountSettings extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceSplTokenAccount extends string, TAccountDestination extends string, TAccountDestinationSplTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string,
|
|
2287
|
+
declare function getTokenTransferIntentInstructionAsync<TAccountSettings extends string, TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceSplTokenAccount extends string, TAccountSourceCtokenTokenAccount extends string, TAccountDestination extends string, TAccountDestinationSplTokenAccount extends string, TAccountDestinationCtokenTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string, TAccountSystemProgram extends string, TAccountCompressedTokenProgramAuthority extends string, TAccountSplInterfacePda extends string, TAccountCompressibleConfig extends string, TAccountRentSponsor extends string, TAccountCompressedTokenProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentAsyncInput<TAccountSettings, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>, config?: {
|
|
1897
2288
|
programAddress?: TProgramAddress;
|
|
1898
|
-
}): Promise<TokenTransferIntentInstruction<TProgramAddress, TAccountSettings, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountTokenProgram, TAccountMint,
|
|
1899
|
-
type TokenTransferIntentInput<TAccountSettings extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountSource extends string = string, TAccountSourceSplTokenAccount extends string = string, TAccountDestination extends string = string, TAccountDestinationSplTokenAccount extends string = string, TAccountTokenProgram extends string = string, TAccountMint extends string = string,
|
|
2289
|
+
}): Promise<TokenTransferIntentInstruction<TProgramAddress, TAccountSettings, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>>;
|
|
2290
|
+
type TokenTransferIntentInput<TAccountSettings extends string = string, TAccountPayer extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountSource extends string = string, TAccountSourceSplTokenAccount extends string = string, TAccountSourceCtokenTokenAccount extends string = string, TAccountDestination extends string = string, TAccountDestinationSplTokenAccount extends string = string, TAccountDestinationCtokenTokenAccount extends string = string, TAccountTokenProgram extends string = string, TAccountMint extends string = string, TAccountSystemProgram extends string = string, TAccountCompressedTokenProgramAuthority extends string = string, TAccountSplInterfacePda extends string = string, TAccountCompressibleConfig extends string = string, TAccountRentSponsor extends string = string, TAccountCompressedTokenProgram extends string = string> = {
|
|
1900
2291
|
settings: Address<TAccountSettings>;
|
|
2292
|
+
payer: TransactionSigner<TAccountPayer>;
|
|
1901
2293
|
slotHashSysvar?: Address<TAccountSlotHashSysvar>;
|
|
1902
2294
|
instructionsSysvar?: Address<TAccountInstructionsSysvar>;
|
|
1903
2295
|
source: Address<TAccountSource>;
|
|
1904
2296
|
sourceSplTokenAccount: Address<TAccountSourceSplTokenAccount>;
|
|
2297
|
+
sourceCtokenTokenAccount: Address<TAccountSourceCtokenTokenAccount>;
|
|
1905
2298
|
destination: Address<TAccountDestination>;
|
|
1906
|
-
destinationSplTokenAccount
|
|
2299
|
+
destinationSplTokenAccount?: Address<TAccountDestinationSplTokenAccount>;
|
|
2300
|
+
destinationCtokenTokenAccount?: Address<TAccountDestinationCtokenTokenAccount>;
|
|
1907
2301
|
tokenProgram?: Address<TAccountTokenProgram>;
|
|
1908
2302
|
mint: Address<TAccountMint>;
|
|
1909
|
-
associatedTokenProgram?: Address<TAccountAssociatedTokenProgram>;
|
|
1910
2303
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
2304
|
+
compressedTokenProgramAuthority?: Address<TAccountCompressedTokenProgramAuthority>;
|
|
2305
|
+
splInterfacePda?: Address<TAccountSplInterfacePda>;
|
|
2306
|
+
compressibleConfig: Address<TAccountCompressibleConfig>;
|
|
2307
|
+
rentSponsor?: Address<TAccountRentSponsor>;
|
|
2308
|
+
compressedTokenProgram?: Address<TAccountCompressedTokenProgram>;
|
|
2309
|
+
splInterfacePdaArgs: TokenTransferIntentInstructionDataArgs["splInterfacePdaArgs"];
|
|
1911
2310
|
amount: TokenTransferIntentInstructionDataArgs["amount"];
|
|
2311
|
+
sourceCompressedTokenAccounts: TokenTransferIntentInstructionDataArgs["sourceCompressedTokenAccounts"];
|
|
2312
|
+
compressedProofArgs: TokenTransferIntentInstructionDataArgs["compressedProofArgs"];
|
|
1912
2313
|
signers: TokenTransferIntentInstructionDataArgs["signers"];
|
|
1913
2314
|
remainingAccounts: TokenTransferIntentInstructionExtraArgs["remainingAccounts"];
|
|
1914
2315
|
};
|
|
1915
|
-
declare function getTokenTransferIntentInstruction<TAccountSettings extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceSplTokenAccount extends string, TAccountDestination extends string, TAccountDestinationSplTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string,
|
|
2316
|
+
declare function getTokenTransferIntentInstruction<TAccountSettings extends string, TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceSplTokenAccount extends string, TAccountSourceCtokenTokenAccount extends string, TAccountDestination extends string, TAccountDestinationSplTokenAccount extends string, TAccountDestinationCtokenTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string, TAccountSystemProgram extends string, TAccountCompressedTokenProgramAuthority extends string, TAccountSplInterfacePda extends string, TAccountCompressibleConfig extends string, TAccountRentSponsor extends string, TAccountCompressedTokenProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentInput<TAccountSettings, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>, config?: {
|
|
1916
2317
|
programAddress?: TProgramAddress;
|
|
1917
|
-
}): TokenTransferIntentInstruction<TProgramAddress, TAccountSettings, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountTokenProgram, TAccountMint,
|
|
2318
|
+
}): TokenTransferIntentInstruction<TProgramAddress, TAccountSettings, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>;
|
|
1918
2319
|
type ParsedTokenTransferIntentInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
|
|
1919
2320
|
programAddress: Address<TProgram>;
|
|
1920
2321
|
accounts: {
|
|
1921
2322
|
settings: TAccountMetas[0];
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
2323
|
+
payer: TAccountMetas[1];
|
|
2324
|
+
slotHashSysvar?: TAccountMetas[2] | undefined;
|
|
2325
|
+
instructionsSysvar: TAccountMetas[3];
|
|
2326
|
+
source: TAccountMetas[4];
|
|
2327
|
+
sourceSplTokenAccount: TAccountMetas[5];
|
|
2328
|
+
sourceCtokenTokenAccount: TAccountMetas[6];
|
|
2329
|
+
destination: TAccountMetas[7];
|
|
2330
|
+
destinationSplTokenAccount?: TAccountMetas[8] | undefined;
|
|
2331
|
+
destinationCtokenTokenAccount?: TAccountMetas[9] | undefined;
|
|
2332
|
+
tokenProgram: TAccountMetas[10];
|
|
2333
|
+
mint: TAccountMetas[11];
|
|
2334
|
+
systemProgram: TAccountMetas[12];
|
|
2335
|
+
compressedTokenProgramAuthority: TAccountMetas[13];
|
|
2336
|
+
splInterfacePda?: TAccountMetas[14] | undefined;
|
|
2337
|
+
compressibleConfig: TAccountMetas[15];
|
|
2338
|
+
rentSponsor?: TAccountMetas[16] | undefined;
|
|
2339
|
+
compressedTokenProgram: TAccountMetas[17];
|
|
1932
2340
|
};
|
|
1933
2341
|
data: TokenTransferIntentInstructionData;
|
|
1934
2342
|
};
|
|
@@ -1936,29 +2344,39 @@ declare function parseTokenTransferIntentInstruction<TProgram extends string, TA
|
|
|
1936
2344
|
|
|
1937
2345
|
declare const TOKEN_TRANSFER_INTENT_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
1938
2346
|
declare function getTokenTransferIntentCompressedDiscriminatorBytes(): ReadonlyUint8Array;
|
|
1939
|
-
type TokenTransferIntentCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountSource extends string | AccountMeta<string> = string, TAccountSourceSplTokenAccount extends string | AccountMeta<string> = string, TAccountDestination extends string | AccountMeta<string> = string, TAccountDestinationSplTokenAccount extends string | AccountMeta<string> = string, TAccountTokenProgram extends string | AccountMeta<string> = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA", TAccountMint extends string | AccountMeta<string> = string,
|
|
2347
|
+
type TokenTransferIntentCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountSource extends string | AccountMeta<string> = string, TAccountSourceSplTokenAccount extends string | AccountMeta<string> = string, TAccountSourceCtokenTokenAccount extends string | AccountMeta<string> = string, TAccountDestination extends string | AccountMeta<string> = string, TAccountDestinationSplTokenAccount extends string | AccountMeta<string> = string, TAccountDestinationCtokenTokenAccount extends string | AccountMeta<string> = string, TAccountTokenProgram extends string | AccountMeta<string> = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA", TAccountMint extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountCompressedTokenProgramAuthority extends string | AccountMeta<string> = "GXtd2izAiMJPwMEjfgTRH3d7k9mjn4Jq3JrWFv9gySYy", TAccountSplInterfacePda extends string | AccountMeta<string> = string, TAccountCompressibleConfig extends string | AccountMeta<string> = string, TAccountRentSponsor extends string | AccountMeta<string> = string, TAccountCompressedTokenProgram extends string | AccountMeta<string> = "cTokenmWW8bLPjZEBAUgYy3zKxQZW6VKi7bqNFEVv3m", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
1940
2348
|
TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
|
|
1941
2349
|
TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
|
|
1942
2350
|
TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
|
|
1943
|
-
TAccountSource extends string ?
|
|
2351
|
+
TAccountSource extends string ? ReadonlyAccount<TAccountSource> : TAccountSource,
|
|
1944
2352
|
TAccountSourceSplTokenAccount extends string ? WritableAccount<TAccountSourceSplTokenAccount> : TAccountSourceSplTokenAccount,
|
|
2353
|
+
TAccountSourceCtokenTokenAccount extends string ? WritableAccount<TAccountSourceCtokenTokenAccount> : TAccountSourceCtokenTokenAccount,
|
|
1945
2354
|
TAccountDestination extends string ? ReadonlyAccount<TAccountDestination> : TAccountDestination,
|
|
1946
2355
|
TAccountDestinationSplTokenAccount extends string ? WritableAccount<TAccountDestinationSplTokenAccount> : TAccountDestinationSplTokenAccount,
|
|
2356
|
+
TAccountDestinationCtokenTokenAccount extends string ? WritableAccount<TAccountDestinationCtokenTokenAccount> : TAccountDestinationCtokenTokenAccount,
|
|
1947
2357
|
TAccountTokenProgram extends string ? ReadonlyAccount<TAccountTokenProgram> : TAccountTokenProgram,
|
|
1948
|
-
TAccountMint extends string ?
|
|
1949
|
-
TAccountAssociatedTokenProgram extends string ? ReadonlyAccount<TAccountAssociatedTokenProgram> : TAccountAssociatedTokenProgram,
|
|
2358
|
+
TAccountMint extends string ? WritableAccount<TAccountMint> : TAccountMint,
|
|
1950
2359
|
TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
|
|
2360
|
+
TAccountCompressedTokenProgramAuthority extends string ? ReadonlyAccount<TAccountCompressedTokenProgramAuthority> : TAccountCompressedTokenProgramAuthority,
|
|
2361
|
+
TAccountSplInterfacePda extends string ? WritableAccount<TAccountSplInterfacePda> : TAccountSplInterfacePda,
|
|
2362
|
+
TAccountCompressibleConfig extends string ? ReadonlyAccount<TAccountCompressibleConfig> : TAccountCompressibleConfig,
|
|
2363
|
+
TAccountRentSponsor extends string ? WritableAccount<TAccountRentSponsor> : TAccountRentSponsor,
|
|
2364
|
+
TAccountCompressedTokenProgram extends string ? ReadonlyAccount<TAccountCompressedTokenProgram> : TAccountCompressedTokenProgram,
|
|
1951
2365
|
...TRemainingAccounts
|
|
1952
2366
|
]>;
|
|
1953
2367
|
type TokenTransferIntentCompressedInstructionData = {
|
|
1954
2368
|
discriminator: ReadonlyUint8Array;
|
|
2369
|
+
splInterfacePdaArgs: Option<SplInterfacePdaArgs>;
|
|
1955
2370
|
amount: bigint;
|
|
2371
|
+
sourceCompressedTokenAccounts: Array<CompressedTokenArgs>;
|
|
1956
2372
|
signers: Array<TransactionSyncSigners>;
|
|
1957
2373
|
settingsMutArgs: SettingsMutArgs;
|
|
1958
2374
|
compressedProofArgs: ProofArgs;
|
|
1959
2375
|
};
|
|
1960
2376
|
type TokenTransferIntentCompressedInstructionDataArgs = {
|
|
2377
|
+
splInterfacePdaArgs: OptionOrNullable<SplInterfacePdaArgsArgs>;
|
|
1961
2378
|
amount: number | bigint;
|
|
2379
|
+
sourceCompressedTokenAccounts: Array<CompressedTokenArgsArgs>;
|
|
1962
2380
|
signers: Array<TransactionSyncSignersArgs>;
|
|
1963
2381
|
settingsMutArgs: SettingsMutArgsArgs;
|
|
1964
2382
|
compressedProofArgs: ProofArgsArgs;
|
|
@@ -1972,48 +2390,64 @@ type TokenTransferIntentCompressedInstructionExtraArgs = {
|
|
|
1972
2390
|
role: number;
|
|
1973
2391
|
}>;
|
|
1974
2392
|
};
|
|
1975
|
-
type TokenTransferIntentCompressedAsyncInput<TAccountPayer extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountSource extends string = string, TAccountSourceSplTokenAccount extends string = string, TAccountDestination extends string = string, TAccountDestinationSplTokenAccount extends string = string, TAccountTokenProgram extends string = string, TAccountMint extends string = string,
|
|
2393
|
+
type TokenTransferIntentCompressedAsyncInput<TAccountPayer extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountSource extends string = string, TAccountSourceSplTokenAccount extends string = string, TAccountSourceCtokenTokenAccount extends string = string, TAccountDestination extends string = string, TAccountDestinationSplTokenAccount extends string = string, TAccountDestinationCtokenTokenAccount extends string = string, TAccountTokenProgram extends string = string, TAccountMint extends string = string, TAccountSystemProgram extends string = string, TAccountCompressedTokenProgramAuthority extends string = string, TAccountSplInterfacePda extends string = string, TAccountCompressibleConfig extends string = string, TAccountRentSponsor extends string = string, TAccountCompressedTokenProgram extends string = string> = {
|
|
1976
2394
|
payer: TransactionSigner<TAccountPayer>;
|
|
1977
2395
|
slotHashSysvar?: Address<TAccountSlotHashSysvar>;
|
|
1978
2396
|
instructionsSysvar?: Address<TAccountInstructionsSysvar>;
|
|
1979
2397
|
source: Address<TAccountSource>;
|
|
1980
2398
|
sourceSplTokenAccount?: Address<TAccountSourceSplTokenAccount>;
|
|
2399
|
+
sourceCtokenTokenAccount?: Address<TAccountSourceCtokenTokenAccount>;
|
|
1981
2400
|
destination: Address<TAccountDestination>;
|
|
1982
2401
|
destinationSplTokenAccount?: Address<TAccountDestinationSplTokenAccount>;
|
|
2402
|
+
destinationCtokenTokenAccount?: Address<TAccountDestinationCtokenTokenAccount>;
|
|
1983
2403
|
tokenProgram?: Address<TAccountTokenProgram>;
|
|
1984
2404
|
mint: Address<TAccountMint>;
|
|
1985
|
-
associatedTokenProgram?: Address<TAccountAssociatedTokenProgram>;
|
|
1986
2405
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
2406
|
+
compressedTokenProgramAuthority?: Address<TAccountCompressedTokenProgramAuthority>;
|
|
2407
|
+
splInterfacePda?: Address<TAccountSplInterfacePda>;
|
|
2408
|
+
compressibleConfig: Address<TAccountCompressibleConfig>;
|
|
2409
|
+
rentSponsor?: Address<TAccountRentSponsor>;
|
|
2410
|
+
compressedTokenProgram?: Address<TAccountCompressedTokenProgram>;
|
|
2411
|
+
splInterfacePdaArgs: TokenTransferIntentCompressedInstructionDataArgs["splInterfacePdaArgs"];
|
|
1987
2412
|
amount: TokenTransferIntentCompressedInstructionDataArgs["amount"];
|
|
2413
|
+
sourceCompressedTokenAccounts: TokenTransferIntentCompressedInstructionDataArgs["sourceCompressedTokenAccounts"];
|
|
1988
2414
|
signers: TokenTransferIntentCompressedInstructionDataArgs["signers"];
|
|
1989
2415
|
settingsMutArgs: TokenTransferIntentCompressedInstructionDataArgs["settingsMutArgs"];
|
|
1990
2416
|
compressedProofArgs: TokenTransferIntentCompressedInstructionDataArgs["compressedProofArgs"];
|
|
1991
2417
|
remainingAccounts: TokenTransferIntentCompressedInstructionExtraArgs["remainingAccounts"];
|
|
1992
2418
|
};
|
|
1993
|
-
declare function getTokenTransferIntentCompressedInstructionAsync<TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceSplTokenAccount extends string, TAccountDestination extends string, TAccountDestinationSplTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string,
|
|
2419
|
+
declare function getTokenTransferIntentCompressedInstructionAsync<TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceSplTokenAccount extends string, TAccountSourceCtokenTokenAccount extends string, TAccountDestination extends string, TAccountDestinationSplTokenAccount extends string, TAccountDestinationCtokenTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string, TAccountSystemProgram extends string, TAccountCompressedTokenProgramAuthority extends string, TAccountSplInterfacePda extends string, TAccountCompressibleConfig extends string, TAccountRentSponsor extends string, TAccountCompressedTokenProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentCompressedAsyncInput<TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>, config?: {
|
|
1994
2420
|
programAddress?: TProgramAddress;
|
|
1995
|
-
}): Promise<TokenTransferIntentCompressedInstruction<TProgramAddress, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountTokenProgram, TAccountMint,
|
|
1996
|
-
type TokenTransferIntentCompressedInput<TAccountPayer extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountSource extends string = string, TAccountSourceSplTokenAccount extends string = string, TAccountDestination extends string = string, TAccountDestinationSplTokenAccount extends string = string, TAccountTokenProgram extends string = string, TAccountMint extends string = string,
|
|
2421
|
+
}): Promise<TokenTransferIntentCompressedInstruction<TProgramAddress, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>>;
|
|
2422
|
+
type TokenTransferIntentCompressedInput<TAccountPayer extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountSource extends string = string, TAccountSourceSplTokenAccount extends string = string, TAccountSourceCtokenTokenAccount extends string = string, TAccountDestination extends string = string, TAccountDestinationSplTokenAccount extends string = string, TAccountDestinationCtokenTokenAccount extends string = string, TAccountTokenProgram extends string = string, TAccountMint extends string = string, TAccountSystemProgram extends string = string, TAccountCompressedTokenProgramAuthority extends string = string, TAccountSplInterfacePda extends string = string, TAccountCompressibleConfig extends string = string, TAccountRentSponsor extends string = string, TAccountCompressedTokenProgram extends string = string> = {
|
|
1997
2423
|
payer: TransactionSigner<TAccountPayer>;
|
|
1998
2424
|
slotHashSysvar?: Address<TAccountSlotHashSysvar>;
|
|
1999
2425
|
instructionsSysvar?: Address<TAccountInstructionsSysvar>;
|
|
2000
2426
|
source: Address<TAccountSource>;
|
|
2001
2427
|
sourceSplTokenAccount: Address<TAccountSourceSplTokenAccount>;
|
|
2428
|
+
sourceCtokenTokenAccount: Address<TAccountSourceCtokenTokenAccount>;
|
|
2002
2429
|
destination: Address<TAccountDestination>;
|
|
2003
|
-
destinationSplTokenAccount
|
|
2430
|
+
destinationSplTokenAccount?: Address<TAccountDestinationSplTokenAccount>;
|
|
2431
|
+
destinationCtokenTokenAccount?: Address<TAccountDestinationCtokenTokenAccount>;
|
|
2004
2432
|
tokenProgram?: Address<TAccountTokenProgram>;
|
|
2005
2433
|
mint: Address<TAccountMint>;
|
|
2006
|
-
associatedTokenProgram?: Address<TAccountAssociatedTokenProgram>;
|
|
2007
2434
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
2435
|
+
compressedTokenProgramAuthority?: Address<TAccountCompressedTokenProgramAuthority>;
|
|
2436
|
+
splInterfacePda?: Address<TAccountSplInterfacePda>;
|
|
2437
|
+
compressibleConfig: Address<TAccountCompressibleConfig>;
|
|
2438
|
+
rentSponsor?: Address<TAccountRentSponsor>;
|
|
2439
|
+
compressedTokenProgram?: Address<TAccountCompressedTokenProgram>;
|
|
2440
|
+
splInterfacePdaArgs: TokenTransferIntentCompressedInstructionDataArgs["splInterfacePdaArgs"];
|
|
2008
2441
|
amount: TokenTransferIntentCompressedInstructionDataArgs["amount"];
|
|
2442
|
+
sourceCompressedTokenAccounts: TokenTransferIntentCompressedInstructionDataArgs["sourceCompressedTokenAccounts"];
|
|
2009
2443
|
signers: TokenTransferIntentCompressedInstructionDataArgs["signers"];
|
|
2010
2444
|
settingsMutArgs: TokenTransferIntentCompressedInstructionDataArgs["settingsMutArgs"];
|
|
2011
2445
|
compressedProofArgs: TokenTransferIntentCompressedInstructionDataArgs["compressedProofArgs"];
|
|
2012
2446
|
remainingAccounts: TokenTransferIntentCompressedInstructionExtraArgs["remainingAccounts"];
|
|
2013
2447
|
};
|
|
2014
|
-
declare function getTokenTransferIntentCompressedInstruction<TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceSplTokenAccount extends string, TAccountDestination extends string, TAccountDestinationSplTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string,
|
|
2448
|
+
declare function getTokenTransferIntentCompressedInstruction<TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceSplTokenAccount extends string, TAccountSourceCtokenTokenAccount extends string, TAccountDestination extends string, TAccountDestinationSplTokenAccount extends string, TAccountDestinationCtokenTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string, TAccountSystemProgram extends string, TAccountCompressedTokenProgramAuthority extends string, TAccountSplInterfacePda extends string, TAccountCompressibleConfig extends string, TAccountRentSponsor extends string, TAccountCompressedTokenProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentCompressedInput<TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>, config?: {
|
|
2015
2449
|
programAddress?: TProgramAddress;
|
|
2016
|
-
}): TokenTransferIntentCompressedInstruction<TProgramAddress, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountTokenProgram, TAccountMint,
|
|
2450
|
+
}): TokenTransferIntentCompressedInstruction<TProgramAddress, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>;
|
|
2017
2451
|
type ParsedTokenTransferIntentCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
|
|
2018
2452
|
programAddress: Address<TProgram>;
|
|
2019
2453
|
accounts: {
|
|
@@ -2022,12 +2456,18 @@ type ParsedTokenTransferIntentCompressedInstruction<TProgram extends string = ty
|
|
|
2022
2456
|
instructionsSysvar: TAccountMetas[2];
|
|
2023
2457
|
source: TAccountMetas[3];
|
|
2024
2458
|
sourceSplTokenAccount: TAccountMetas[4];
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2459
|
+
sourceCtokenTokenAccount: TAccountMetas[5];
|
|
2460
|
+
destination: TAccountMetas[6];
|
|
2461
|
+
destinationSplTokenAccount?: TAccountMetas[7] | undefined;
|
|
2462
|
+
destinationCtokenTokenAccount?: TAccountMetas[8] | undefined;
|
|
2463
|
+
tokenProgram: TAccountMetas[9];
|
|
2464
|
+
mint: TAccountMetas[10];
|
|
2465
|
+
systemProgram: TAccountMetas[11];
|
|
2466
|
+
compressedTokenProgramAuthority: TAccountMetas[12];
|
|
2467
|
+
splInterfacePda?: TAccountMetas[13] | undefined;
|
|
2468
|
+
compressibleConfig: TAccountMetas[14];
|
|
2469
|
+
rentSponsor?: TAccountMetas[15] | undefined;
|
|
2470
|
+
compressedTokenProgram: TAccountMetas[16];
|
|
2031
2471
|
};
|
|
2032
2472
|
data: TokenTransferIntentCompressedInstructionData;
|
|
2033
2473
|
};
|
|
@@ -2926,6 +3366,7 @@ declare const StartMessageRequestSchema: z.ZodObject<{
|
|
|
2926
3366
|
data: z.ZodObject<{
|
|
2927
3367
|
type: z.ZodLiteral<"message">;
|
|
2928
3368
|
payload: z.ZodString;
|
|
3369
|
+
trustedDeviceCheck: z.ZodBoolean;
|
|
2929
3370
|
}, z.core.$strict>;
|
|
2930
3371
|
}, z.core.$strict>;
|
|
2931
3372
|
declare const StartTransactionRequestSchema: z.ZodObject<{
|
|
@@ -2973,6 +3414,7 @@ declare const AuthenticationContextSchema: z.ZodObject<{
|
|
|
2973
3414
|
data: z.ZodObject<{
|
|
2974
3415
|
type: z.ZodLiteral<"message">;
|
|
2975
3416
|
payload: z.ZodString;
|
|
3417
|
+
trustedDeviceCheck: z.ZodBoolean;
|
|
2976
3418
|
}, z.core.$strict>;
|
|
2977
3419
|
}, z.core.$strict>, z.ZodObject<{
|
|
2978
3420
|
phase: z.ZodLiteral<"start">;
|
|
@@ -3051,6 +3493,7 @@ declare const CompleteMessageRequestSchema: z.ZodObject<{
|
|
|
3051
3493
|
data: z.ZodObject<{
|
|
3052
3494
|
type: z.ZodLiteral<"message">;
|
|
3053
3495
|
payload: z.ZodString;
|
|
3496
|
+
trustedDeviceCheck: z.ZodBoolean;
|
|
3054
3497
|
}, z.core.$strict>;
|
|
3055
3498
|
}, z.core.$strict>, z.ZodObject<{
|
|
3056
3499
|
phase: z.ZodLiteral<"start">;
|
|
@@ -3120,6 +3563,7 @@ declare const CompleteTransactionRequestSchema: z.ZodObject<{
|
|
|
3120
3563
|
data: z.ZodObject<{
|
|
3121
3564
|
type: z.ZodLiteral<"message">;
|
|
3122
3565
|
payload: z.ZodString;
|
|
3566
|
+
trustedDeviceCheck: z.ZodBoolean;
|
|
3123
3567
|
}, z.core.$strict>;
|
|
3124
3568
|
}, z.core.$strict>, z.ZodObject<{
|
|
3125
3569
|
phase: z.ZodLiteral<"start">;
|
|
@@ -3223,6 +3667,7 @@ declare const CompleteSendTransactionRequestSchema: z.ZodObject<{
|
|
|
3223
3667
|
data: z.ZodObject<{
|
|
3224
3668
|
type: z.ZodLiteral<"message">;
|
|
3225
3669
|
payload: z.ZodString;
|
|
3670
|
+
trustedDeviceCheck: z.ZodBoolean;
|
|
3226
3671
|
}, z.core.$strict>;
|
|
3227
3672
|
}, z.core.$strict>]>;
|
|
3228
3673
|
txSig: z.ZodString;
|
|
@@ -3444,10 +3889,12 @@ type TokenTransferIntentParams = {
|
|
|
3444
3889
|
signers: (TransactionSigner | SignedSecp256r1Key)[];
|
|
3445
3890
|
tokenProgram: Address;
|
|
3446
3891
|
payer: TransactionSigner;
|
|
3892
|
+
useDestinationSplAccount?: boolean;
|
|
3893
|
+
splInterfacePdaArgs?: SplInterfacePdaArgsArgs;
|
|
3447
3894
|
compressed?: boolean;
|
|
3448
3895
|
cachedAccounts?: AccountCache;
|
|
3449
3896
|
};
|
|
3450
|
-
declare function tokenTransferIntent({ settings, settingsAddressTreeIndex, destination, mint, signers, cachedAccounts, amount, payer, tokenProgram, compressed, }: TokenTransferIntentParams): Promise<Instruction[]>;
|
|
3897
|
+
declare function tokenTransferIntent({ settings, settingsAddressTreeIndex, destination, mint, signers, cachedAccounts, amount, payer, tokenProgram, splInterfacePdaArgs, compressed, useDestinationSplAccount, }: TokenTransferIntentParams): Promise<Instruction[]>;
|
|
3451
3898
|
|
|
3452
3899
|
interface MapData {
|
|
3453
3900
|
index: number;
|
|
@@ -3771,4 +4218,4 @@ declare function convertMemberKeyToString(memberKey: MemberKey): string;
|
|
|
3771
4218
|
declare function serializeConfigActions(configActions: ConfigAction[]): Uint8Array<ArrayBuffer>;
|
|
3772
4219
|
declare function deserializeConfigActions(bytes: Uint8Array<ArrayBuffer>): ConfigAction[];
|
|
3773
4220
|
|
|
3774
|
-
export { ADD_WHITELISTED_ADDRESS_TREES_DISCRIMINATOR, type AccountCache, type AddMemberArgs$1 as AddMemberArgs, type AddMemberArgsArgs, type AddWhitelistedAddressTreesAsyncInput, type AddWhitelistedAddressTreesInput, type AddWhitelistedAddressTreesInstruction, type AddWhitelistedAddressTreesInstructionData, type AddWhitelistedAddressTreesInstructionDataArgs, type AddWhitelistedAddressTreesInstructionExtraArgs, type AdditionalSignersParam, AdditionalSignersSchema, AuthenticationContextSchema, BaseResponseSchema, CHANGE_CONFIG_COMPRESSED_DISCRIMINATOR, CHANGE_CONFIG_DISCRIMINATOR, CREATE_COMPRESSED_WALLET_DISCRIMINATOR, CREATE_DOMAIN_CONFIG_DISCRIMINATOR, CREATE_DOMAIN_USER_ACCOUNT_DISCRIMINATOR, CREATE_GLOBAL_COUNTER_DISCRIMINATOR, CREATE_USER_ACCOUNTS_DISCRIMINATOR, type CachedAccountData, type ChangeConfigCompressedInput, type ChangeConfigCompressedInstruction, type ChangeConfigCompressedInstructionData, type ChangeConfigCompressedInstructionDataArgs, type ChangeConfigCompressedInstructionExtraArgs, type ChangeConfigInput, type ChangeConfigInstruction, type ChangeConfigInstructionData, type ChangeConfigInstructionDataArgs, type ChangeConfigInstructionExtraArgs, type CompiledInstruction, type CompiledInstructionArgs, type CompleteMessageRequest, CompleteMessageRequestSchema, type CompleteSendTransactionRequest, CompleteSendTransactionRequestSchema, type CompleteTransactionRequest, CompleteTransactionRequestSchema, type CompressedAccountMeta, type CompressedAccountMetaArgs, type CompressedAccountMetaReadOnly, type CompressedAccountMetaReadOnlyArgs, type CompressedProof, type CompressedProofArgs, type CompressedSettings, type CompressedSettingsArgs, type CompressedSettingsData, type CompressedSettingsDataArgs, type ConfigAction, type ConfigActionArgs, type ConfigurationArgs, type CreateCompressedWalletAsyncInput, type CreateCompressedWalletInput, type CreateCompressedWalletInstruction, type CreateCompressedWalletInstructionData, type CreateCompressedWalletInstructionDataArgs, type CreateCompressedWalletInstructionExtraArgs, type CreateDomainConfigAsyncInput, type CreateDomainConfigInput, type CreateDomainConfigInstruction, type CreateDomainConfigInstructionData, type CreateDomainConfigInstructionDataArgs, type CreateDomainConfigInstructionExtraArgs, type CreateDomainUserAccountAsyncInput, type CreateDomainUserAccountInput, type CreateDomainUserAccountInstruction, type CreateDomainUserAccountInstructionData, type CreateDomainUserAccountInstructionDataArgs, type CreateDomainUserAccountInstructionExtraArgs, type CreateGlobalCounterAsyncInput, type CreateGlobalCounterInput, type CreateGlobalCounterInstruction, type CreateGlobalCounterInstructionData, type CreateGlobalCounterInstructionDataArgs, type CreateGlobalCounterInstructionExtraArgs, type CreateUserAccountArgs, type CreateUserAccountArgsArgs, type CreateUserAccountsAsyncInput, type CreateUserAccountsInput, type CreateUserAccountsInstruction, type CreateUserAccountsInstructionData, type CreateUserAccountsInstructionDataArgs, type CreateUserAccountsInstructionExtraArgs, DECOMPRESS_SETTINGS_ACCOUNT_DISCRIMINATOR, DISABLE_DOMAIN_CONFIG_DISCRIMINATOR, DOMAIN_CONFIG_DISCRIMINATOR, type DecompressSettingsAccountInput, type DecompressSettingsAccountInstruction, type DecompressSettingsAccountInstructionData, type DecompressSettingsAccountInstructionDataArgs, type DecompressSettingsAccountInstructionExtraArgs, type DisableDomainConfigInput, type DisableDomainConfigInstruction, type DisableDomainConfigInstructionData, type DisableDomainConfigInstructionDataArgs, type DisableDomainConfigInstructionExtraArgs, type DomainConfig, type DomainConfigArgs, EDIT_DOMAIN_CONFIG_DISCRIMINATOR, EDIT_TRANSACTION_MANAGER_URL_DISCRIMINATOR, EDIT_USER_DELEGATE_DISCRIMINATOR, type EditDomainConfigAsyncInput, type EditDomainConfigInput, type EditDomainConfigInstruction, type EditDomainConfigInstructionData, type EditDomainConfigInstructionDataArgs, type EditDomainConfigInstructionExtraArgs, type EditMemberArgs$1 as EditMemberArgs, type EditMemberArgsArgs, type EditTransactionManagerUrlInput, type EditTransactionManagerUrlInstruction, type EditTransactionManagerUrlInstructionData, type EditTransactionManagerUrlInstructionDataArgs, type EditTransactionManagerUrlInstructionExtraArgs, type EditUserDelegateInput, type EditUserDelegateInstruction, type EditUserDelegateInstructionData, type EditUserDelegateInstructionDataArgs, type EditUserDelegateInstructionExtraArgs, type ExpectedSigner, type ExpectedSignerArgs, GLOBAL_COUNTER_DISCRIMINATOR, type GlobalCounter, type GlobalCounterArgs, type IKeyType, type IPermission, type IPermissions, type JitoTipsConfig, KeyType, type LinkWalletArgs, type LinkWalletArgsArgs, MULTI_WALLET_ERROR__ALREADY_DELEGATED, MULTI_WALLET_ERROR__CLIENT_DATA_HASH_MISMATCH, MULTI_WALLET_ERROR__CLOCK_SYSVAR_ACCESS_FAILED, MULTI_WALLET_ERROR__CREDENTIAL_ID_IS_MISSING, MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_DISABLED, MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_MISSING, MULTI_WALLET_ERROR__DOMAIN_CONFIG_KEY_MISMATCH, MULTI_WALLET_ERROR__DUPLICATE_ADDRESS_TREE, MULTI_WALLET_ERROR__DUPLICATE_MEMBER, MULTI_WALLET_ERROR__DURABLE_NONCE_DETECTED, MULTI_WALLET_ERROR__EMPTY_MEMBERS, MULTI_WALLET_ERROR__EMPTY_SLOT_NUMBERS, MULTI_WALLET_ERROR__EXPECTED_ADMINISTRATOR_ROLE_MISMATCH, MULTI_WALLET_ERROR__EXPECTED_MESSAGE_HASH_MISMATCH, MULTI_WALLET_ERROR__EXPECTED_TRANSACTION_MANAGER_ROLE_MISMATCH, MULTI_WALLET_ERROR__FINAL_BUFFER_HASH_MISMATCH, MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_EXCEEDED, MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_MISMATCH, MULTI_WALLET_ERROR__HASH_COMPUTATION_FAILED, MULTI_WALLET_ERROR__INSUFFICIENT_SIGNERS_WITH_VOTE_PERMISSION, MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_EXECUTE_PERMISSION, MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_INITIATE_PERMISSION, MULTI_WALLET_ERROR__INVALID_ACCOUNT, MULTI_WALLET_ERROR__INVALID_ACCOUNT_INDEX, MULTI_WALLET_ERROR__INVALID_ADDRESS_TREE, MULTI_WALLET_ERROR__INVALID_ADMINISTRATOR_CONFIG, MULTI_WALLET_ERROR__INVALID_ARGUMENTS, MULTI_WALLET_ERROR__INVALID_BUFFER, MULTI_WALLET_ERROR__INVALID_MEMBER_KEY_FORMAT, MULTI_WALLET_ERROR__INVALID_NON_DELEGATED_SIGNERS, MULTI_WALLET_ERROR__INVALID_NUMBER_OF_ACCOUNTS, MULTI_WALLET_ERROR__INVALID_PERMANENT_MEMBER_CONFIG, MULTI_WALLET_ERROR__INVALID_SECP256R1_INSTRUCTION, MULTI_WALLET_ERROR__INVALID_SECP256R1_PUBLIC_KEY, MULTI_WALLET_ERROR__INVALID_SECP256R1_VERIFY_ARG, MULTI_WALLET_ERROR__INVALID_SIGNATURE_OFFSETS, MULTI_WALLET_ERROR__INVALID_SLOT_NUMBER, MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT, MULTI_WALLET_ERROR__INVALID_THRESHOLD, MULTI_WALLET_ERROR__INVALID_TOKEN_SOURCE_TYPE, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_CONFIG, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_PERMISSION, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MESSAGE, MULTI_WALLET_ERROR__INVALID_USER_ED25519_CONFIG, MULTI_WALLET_ERROR__INVALID_USER_ROLE, MULTI_WALLET_ERROR__INVALID_USER_TRANSACTION_MANAGER_CONFIG, MULTI_WALLET_ERROR__LIGHT_CPI_ACCOUNT_ERROR, MULTI_WALLET_ERROR__MALFORMED_SIGNED_MESSAGE, MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED, MULTI_WALLET_ERROR__MEMBER_DOES_NOT_BELONG_TO_DOMAIN_CONFIG, MULTI_WALLET_ERROR__MEMBER_NOT_FOUND, MULTI_WALLET_ERROR__MEMBER_NOT_FOUND_IN_SETTINGS, MULTI_WALLET_ERROR__MISSING_ACCOUNT, MULTI_WALLET_ERROR__MISSING_COMPRESSED_PROOF_ARGS, MULTI_WALLET_ERROR__MISSING_COMPRESSED_TOKEN_ACCOUNT, MULTI_WALLET_ERROR__MISSING_DESTINATION_TOKEN_ACCOUNT, MULTI_WALLET_ERROR__MISSING_INSTRUCTIONS_SYSVAR, MULTI_WALLET_ERROR__MISSING_LIGHT_CPI_ACCOUNTS, MULTI_WALLET_ERROR__MISSING_MUTATION_USER_ARGS, MULTI_WALLET_ERROR__MISSING_NEW_AUTHORITY, MULTI_WALLET_ERROR__MISSING_SETTINGS_ACCOUNT_FOR_DELEGATE, MULTI_WALLET_ERROR__MISSING_SETTINGS_DATA, MULTI_WALLET_ERROR__MISSING_SOURCE_TOKEN_ACCOUNT, MULTI_WALLET_ERROR__MISSING_SPL_INTERFACE_PDA, MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY, MULTI_WALLET_ERROR__MISSING_USER_ACCOUNT_ADDRESS, MULTI_WALLET_ERROR__MISSING_WHITELISTED_ADDRESS_TREES, MULTI_WALLET_ERROR__NO_SIGNER_FOUND, MULTI_WALLET_ERROR__ONLY_ONE_ADMINISTRATOR_ALLOWED, MULTI_WALLET_ERROR__ONLY_ONE_PERMANENT_MEMBER_ALLOWED, MULTI_WALLET_ERROR__ONLY_ONE_TRANSACTION_MANAGER_ALLOWED, MULTI_WALLET_ERROR__ORIGIN_INDEX_OUT_OF_BOUNDS, MULTI_WALLET_ERROR__PAYER_MISMATCH, MULTI_WALLET_ERROR__PERMANENT_MEMBER, MULTI_WALLET_ERROR__PROTECTED_ACCOUNT, MULTI_WALLET_ERROR__RP_ID_HASH_MISMATCH, MULTI_WALLET_ERROR__SETTINGS_KEY_MISMATCH, MULTI_WALLET_ERROR__SIGNATURE_INDEX_OUT_OF_BOUNDS, MULTI_WALLET_ERROR__SLOT_NUMBER_NOT_FOUND, MULTI_WALLET_ERROR__SOURCE_ACCOUNT_MISMATCH, MULTI_WALLET_ERROR__TOO_MANY_MEMBERS, MULTI_WALLET_ERROR__TRANSACTION_HAS_EXPIRED, MULTI_WALLET_ERROR__TRANSACTION_NOT_APPROVED, MULTI_WALLET_ERROR__TRANSPORTS_IS_MISSING, MULTI_WALLET_ERROR__UNAUTHORISED_TO_CLOSE_TRANSACTION_BUFFER, MULTI_WALLET_ERROR__UNAUTHORIZED_ADMIN_ONLY, MULTI_WALLET_ERROR__UNEXPECTED_SIGNER, MULTI_WALLET_PROGRAM_ADDRESS, type Member, type MemberArgs, type MemberKey, type MemberKeyArgs, type MessageAuthenticationResponse, MultiWalletAccount, type MultiWalletError, MultiWalletInstruction, NATIVE_TRANSFER_INTENT_COMPRESSED_DISCRIMINATOR, NATIVE_TRANSFER_INTENT_DISCRIMINATOR, type NativeTransferIntentAsyncInput, type NativeTransferIntentCompressedInput, type NativeTransferIntentCompressedInstruction, type NativeTransferIntentCompressedInstructionData, type NativeTransferIntentCompressedInstructionDataArgs, type NativeTransferIntentCompressedInstructionExtraArgs, type NativeTransferIntentInput, type NativeTransferIntentInstruction, type NativeTransferIntentInstructionData, type NativeTransferIntentInstructionDataArgs, type NativeTransferIntentInstructionExtraArgs, type NativeTransferIntentParams, type NewAuthorityArgs, type NewAuthorityArgsArgs, type PackedAddressTreeInfo, type PackedAddressTreeInfoArgs, type PackedStateTreeInfo, type PackedStateTreeInfoArgs, type ParsedAddWhitelistedAddressTreesInstruction, type ParsedChangeConfigCompressedInstruction, type ParsedChangeConfigInstruction, type ParsedCreateCompressedWalletInstruction, type ParsedCreateDomainConfigInstruction, type ParsedCreateDomainUserAccountInstruction, type ParsedCreateGlobalCounterInstruction, type ParsedCreateUserAccountsInstruction, type ParsedDecompressSettingsAccountInstruction, type ParsedDisableDomainConfigInstruction, type ParsedEditDomainConfigInstruction, type ParsedEditTransactionManagerUrlInstruction, type ParsedEditUserDelegateInstruction, type ParsedMultiWalletInstruction, type ParsedNativeTransferIntentCompressedInstruction, type ParsedNativeTransferIntentInstruction, type ParsedSecp256r1VerifyInstruction, type ParsedTokenTransferIntentCompressedInstruction, type ParsedTokenTransferIntentInstruction, type ParsedTransactionBufferCloseCompressedInstruction, type ParsedTransactionBufferCloseInstruction, type ParsedTransactionBufferCreateCompressedInstruction, type ParsedTransactionBufferCreateInstruction, type ParsedTransactionBufferExecuteCompressedInstruction, type ParsedTransactionBufferExecuteInstruction, type ParsedTransactionBufferExtendCompressedInstruction, type ParsedTransactionBufferExtendInstruction, type ParsedTransactionBufferVoteCompressedInstruction, type ParsedTransactionBufferVoteInstruction, type ParsedTransactionExecuteCompressedInstruction, type ParsedTransactionExecuteInstruction, type ParsedTransactionExecuteSyncCompressedInstruction, type ParsedTransactionExecuteSyncInstruction, Permission, type PermissionArgs, Permissions, type PermissionsArgs, type ProofArgs, type ProofArgsArgs, type RemoveMemberArgs$1 as RemoveMemberArgs, type RemoveMemberArgsArgs, SETTINGS_DISCRIMINATOR, Secp256r1Key, type Secp256r1Pubkey, type Secp256r1PubkeyArgs, type Secp256r1SignatureOffsetsDataArgs, type Secp256r1VerifyArgs, type Secp256r1VerifyArgsArgs, type Secp256r1VerifyArgsWithDomainConfigIndex, type Secp256r1VerifyArgsWithDomainConfigIndexArgs, type Secp256r1VerifyInput, type Secp256r1VerifyInstruction, type Secp256r1VerifyInstructionData, type Secp256r1VerifyInstructionDataArgs, type Settings, type SettingsArgs, type SettingsIndexWithAddress, type SettingsIndexWithAddressAndDelegateInfo, type SettingsIndexWithAddressAndDelegateInfoArgs, type SettingsIndexWithAddressArgs, type SettingsMutArgs, type SettingsMutArgsArgs, type SettingsReadonlyArgs, type SettingsReadonlyArgsArgs, SignedSecp256r1Key, type StartMessageRequest, StartMessageRequestSchema, type StartTransactionRequest, StartTransactionRequestSchema, TOKEN_TRANSFER_INTENT_COMPRESSED_DISCRIMINATOR, TOKEN_TRANSFER_INTENT_DISCRIMINATOR, TRANSACTION_BUFFER_CLOSE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_CLOSE_DISCRIMINATOR, TRANSACTION_BUFFER_CREATE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_CREATE_DISCRIMINATOR, TRANSACTION_BUFFER_DISCRIMINATOR, TRANSACTION_BUFFER_EXECUTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_EXECUTE_DISCRIMINATOR, TRANSACTION_BUFFER_EXTEND_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_EXTEND_DISCRIMINATOR, TRANSACTION_BUFFER_VOTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_VOTE_DISCRIMINATOR, TRANSACTION_EXECUTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_EXECUTE_DISCRIMINATOR, TRANSACTION_EXECUTE_SYNC_COMPRESSED_DISCRIMINATOR, TRANSACTION_EXECUTE_SYNC_DISCRIMINATOR, type TokenTransferIntentAsyncInput, type TokenTransferIntentCompressedAsyncInput, type TokenTransferIntentCompressedInput, type TokenTransferIntentCompressedInstruction, type TokenTransferIntentCompressedInstructionData, type TokenTransferIntentCompressedInstructionDataArgs, type TokenTransferIntentCompressedInstructionExtraArgs, type TokenTransferIntentInput, type TokenTransferIntentInstruction, type TokenTransferIntentInstructionData, type TokenTransferIntentInstructionDataArgs, type TokenTransferIntentInstructionExtraArgs, type TokenTransferIntentParams, type TransactionActionType, TransactionActionTypeSchema, type TransactionAuthDetails, type TransactionAuthenticationResponse, type TransactionBuffer, type TransactionBufferArgs, type TransactionBufferCloseCompressedInput, type TransactionBufferCloseCompressedInstruction, type TransactionBufferCloseCompressedInstructionData, type TransactionBufferCloseCompressedInstructionDataArgs, type TransactionBufferCloseCompressedInstructionExtraArgs, type TransactionBufferCloseInput, type TransactionBufferCloseInstruction, type TransactionBufferCloseInstructionData, type TransactionBufferCloseInstructionDataArgs, type TransactionBufferCloseInstructionExtraArgs, type TransactionBufferCreateArgs, type TransactionBufferCreateArgsArgs, type TransactionBufferCreateCompressedInput, type TransactionBufferCreateCompressedInstruction, type TransactionBufferCreateCompressedInstructionData, type TransactionBufferCreateCompressedInstructionDataArgs, type TransactionBufferCreateCompressedInstructionExtraArgs, type TransactionBufferCreateInput, type TransactionBufferCreateInstruction, type TransactionBufferCreateInstructionData, type TransactionBufferCreateInstructionDataArgs, type TransactionBufferCreateInstructionExtraArgs, type TransactionBufferExecuteCompressedInput, type TransactionBufferExecuteCompressedInstruction, type TransactionBufferExecuteCompressedInstructionData, type TransactionBufferExecuteCompressedInstructionDataArgs, type TransactionBufferExecuteCompressedInstructionExtraArgs, type TransactionBufferExecuteInput, type TransactionBufferExecuteInstruction, type TransactionBufferExecuteInstructionData, type TransactionBufferExecuteInstructionDataArgs, type TransactionBufferExecuteInstructionExtraArgs, type TransactionBufferExtendCompressedInput, type TransactionBufferExtendCompressedInstruction, type TransactionBufferExtendCompressedInstructionData, type TransactionBufferExtendCompressedInstructionDataArgs, type TransactionBufferExtendCompressedInstructionExtraArgs, type TransactionBufferExtendInput, type TransactionBufferExtendInstruction, type TransactionBufferExtendInstructionData, type TransactionBufferExtendInstructionDataArgs, type TransactionBufferExtendInstructionExtraArgs, type TransactionBufferVoteCompressedInput, type TransactionBufferVoteCompressedInstruction, type TransactionBufferVoteCompressedInstructionData, type TransactionBufferVoteCompressedInstructionDataArgs, type TransactionBufferVoteCompressedInstructionExtraArgs, type TransactionBufferVoteInput, type TransactionBufferVoteInstruction, type TransactionBufferVoteInstructionData, type TransactionBufferVoteInstructionDataArgs, type TransactionBufferVoteInstructionExtraArgs, type TransactionDetails, TransactionDetailsSchema, type TransactionExecuteCompressedInput, type TransactionExecuteCompressedInstruction, type TransactionExecuteCompressedInstructionData, type TransactionExecuteCompressedInstructionDataArgs, type TransactionExecuteCompressedInstructionExtraArgs, type TransactionExecuteInput, type TransactionExecuteInstruction, type TransactionExecuteInstructionData, type TransactionExecuteInstructionDataArgs, type TransactionExecuteInstructionExtraArgs, type TransactionExecuteSyncCompressedInput, type TransactionExecuteSyncCompressedInstruction, type TransactionExecuteSyncCompressedInstructionData, type TransactionExecuteSyncCompressedInstructionDataArgs, type TransactionExecuteSyncCompressedInstructionExtraArgs, type TransactionExecuteSyncInput, type TransactionExecuteSyncInstruction, type TransactionExecuteSyncInstructionData, type TransactionExecuteSyncInstructionDataArgs, type TransactionExecuteSyncInstructionExtraArgs, type TransactionMessage, type TransactionMessageAddressTableLookup, type TransactionMessageAddressTableLookupArgs, type TransactionMessageArgs, type TransactionPayload, TransactionPayloadSchema, type TransactionPayloadWithBase64MessageBytes, TransactionPayloadWithBase64MessageBytesSchema, type TransactionSyncSigners, type TransactionSyncSignersArgs, Transports, type TransportsArgs, type User, type UserArgs, type UserCreationArgs$2 as UserCreationArgs, type UserCreationArgsArgs, type UserInfo, UserInfoSchema, type UserMutArgs, type UserMutArgsArgs, type UserReadOnlyArgs, type UserReadOnlyArgsArgs, type UserReadOnlyOrMutateArgs, type UserReadOnlyOrMutateArgsArgs, UserRole, type UserRoleArgs, WHITELISTED_ADDRESS_TREE_DISCRIMINATOR, type WhitelistedAddressTree, type WhitelistedAddressTreeArgs, addWhitelistedAddressTrees, base64URLStringToBuffer, bufferToBase64URLString, changeConfig, closeTransactionBuffer, configAction, convertBase64StringToJWK, convertJWKToBase64String, convertMemberKeyToString, convertPubkeyCompressedToCose, convertPubkeyCoseToCompressed, createClientAuthorizationCompleteRequestChallenge, createClientAuthorizationStartRequestChallenge, createDomainConfig, createDomainUserAccounts, createGlobalCounter, createMessageChallenge, createTransactionBuffer, createTransactionChallenge, createTransactionManagerSigner, createUserAccounts, createWallet, decodeDomainConfig, decodeGlobalCounter, decodeSettings, decodeTransactionBuffer, decodeWhitelistedAddressTree, decompressSettingsAccount, deserializeConfigActions, disableDomainConfig, editDomainConfig, editTransactionManagerUrl, editUserDelegate, executeTransaction, executeTransactionBuffer, executeTransactionSync, extendTransactionBuffer, fetchAllDomainConfig, fetchAllGlobalCounter, fetchAllMaybeDomainConfig, fetchAllMaybeGlobalCounter, fetchAllMaybeSettings, fetchAllMaybeTransactionBuffer, fetchAllMaybeWhitelistedAddressTree, fetchAllSettings, fetchAllSettingsAccountByMember, fetchAllTransactionBuffer, fetchAllWhitelistedAddressTree, fetchDomainConfig, fetchGlobalCounter, fetchMaybeDomainConfig, fetchMaybeGlobalCounter, fetchMaybeSettings, fetchMaybeSettingsAccountData, fetchMaybeTransactionBuffer, fetchMaybeUserAccountData, fetchMaybeWhitelistedAddressTree, fetchSettings, fetchSettingsAccountData, fetchTransactionBuffer, fetchUserAccountByFilters, fetchUserAccountData, fetchWhitelistedAddressTree, getAddMemberArgsCodec, getAddMemberArgsDecoder, getAddMemberArgsEncoder, getAddWhitelistedAddressTreesDiscriminatorBytes, getAddWhitelistedAddressTreesInstruction, getAddWhitelistedAddressTreesInstructionAsync, getAddWhitelistedAddressTreesInstructionDataCodec, getAddWhitelistedAddressTreesInstructionDataDecoder, getAddWhitelistedAddressTreesInstructionDataEncoder, getChangeConfigCompressedDiscriminatorBytes, getChangeConfigCompressedInstruction, getChangeConfigCompressedInstructionDataCodec, getChangeConfigCompressedInstructionDataDecoder, getChangeConfigCompressedInstructionDataEncoder, getChangeConfigDiscriminatorBytes, getChangeConfigInstruction, getChangeConfigInstructionDataCodec, getChangeConfigInstructionDataDecoder, getChangeConfigInstructionDataEncoder, getClientAndDeviceHash, getCompiledInstructionCodec, getCompiledInstructionDecoder, getCompiledInstructionEncoder, getCompressedAccountMetaCodec, getCompressedAccountMetaDecoder, getCompressedAccountMetaEncoder, getCompressedAccountMetaReadOnlyCodec, getCompressedAccountMetaReadOnlyDecoder, getCompressedAccountMetaReadOnlyEncoder, getCompressedProofCodec, getCompressedProofDecoder, getCompressedProofEncoder, getCompressedSettingsAddress, getCompressedSettingsCodec, getCompressedSettingsDataCodec, getCompressedSettingsDataDecoder, getCompressedSettingsDataEncoder, getCompressedSettingsDecoder, getCompressedSettingsEncoder, getConfigActionCodec, getConfigActionDecoder, getConfigActionEncoder, getCreateCompressedWalletDiscriminatorBytes, getCreateCompressedWalletInstruction, getCreateCompressedWalletInstructionAsync, getCreateCompressedWalletInstructionDataCodec, getCreateCompressedWalletInstructionDataDecoder, getCreateCompressedWalletInstructionDataEncoder, getCreateDomainConfigDiscriminatorBytes, getCreateDomainConfigInstruction, getCreateDomainConfigInstructionAsync, getCreateDomainConfigInstructionDataCodec, getCreateDomainConfigInstructionDataDecoder, getCreateDomainConfigInstructionDataEncoder, getCreateDomainUserAccountDiscriminatorBytes, getCreateDomainUserAccountInstruction, getCreateDomainUserAccountInstructionAsync, getCreateDomainUserAccountInstructionDataCodec, getCreateDomainUserAccountInstructionDataDecoder, getCreateDomainUserAccountInstructionDataEncoder, getCreateGlobalCounterDiscriminatorBytes, getCreateGlobalCounterInstruction, getCreateGlobalCounterInstructionAsync, getCreateGlobalCounterInstructionDataCodec, getCreateGlobalCounterInstructionDataDecoder, getCreateGlobalCounterInstructionDataEncoder, getCreateUserAccountArgsCodec, getCreateUserAccountArgsDecoder, getCreateUserAccountArgsEncoder, getCreateUserAccountsDiscriminatorBytes, getCreateUserAccountsInstruction, getCreateUserAccountsInstructionAsync, getCreateUserAccountsInstructionDataCodec, getCreateUserAccountsInstructionDataDecoder, getCreateUserAccountsInstructionDataEncoder, getDecompressSettingsAccountDiscriminatorBytes, getDecompressSettingsAccountInstruction, getDecompressSettingsAccountInstructionDataCodec, getDecompressSettingsAccountInstructionDataDecoder, getDecompressSettingsAccountInstructionDataEncoder, getDisableDomainConfigDiscriminatorBytes, getDisableDomainConfigInstruction, getDisableDomainConfigInstructionDataCodec, getDisableDomainConfigInstructionDataDecoder, getDisableDomainConfigInstructionDataEncoder, getDomainConfigAddress, getDomainConfigCodec, getDomainConfigDecoder, getDomainConfigDiscriminatorBytes, getDomainConfigEncoder, getDomainConfigSize, getEditDomainConfigDiscriminatorBytes, getEditDomainConfigInstruction, getEditDomainConfigInstructionAsync, getEditDomainConfigInstructionDataCodec, getEditDomainConfigInstructionDataDecoder, getEditDomainConfigInstructionDataEncoder, getEditMemberArgsCodec, getEditMemberArgsDecoder, getEditMemberArgsEncoder, getEditTransactionManagerUrlDiscriminatorBytes, getEditTransactionManagerUrlInstruction, getEditTransactionManagerUrlInstructionDataCodec, getEditTransactionManagerUrlInstructionDataDecoder, getEditTransactionManagerUrlInstructionDataEncoder, getEditUserDelegateDiscriminatorBytes, getEditUserDelegateInstruction, getEditUserDelegateInstructionDataCodec, getEditUserDelegateInstructionDataDecoder, getEditUserDelegateInstructionDataEncoder, getExpectedSignerCodec, getExpectedSignerDecoder, getExpectedSignerEncoder, getGlobalCounterAddress, getGlobalCounterCodec, getGlobalCounterDecoder, getGlobalCounterDiscriminatorBytes, getGlobalCounterEncoder, getGlobalCounterSize, getJitoTipsConfig, getLightCpiSigner, getLightProtocolRpc, getLinkWalletArgsCodec, getLinkWalletArgsDecoder, getLinkWalletArgsEncoder, getMemberCodec, getMemberDecoder, getMemberEncoder, getMemberKeyCodec, getMemberKeyDecoder, getMemberKeyEncoder, getMultiWalletErrorMessage, getNativeTransferIntentCompressedDiscriminatorBytes, getNativeTransferIntentCompressedInstruction, getNativeTransferIntentCompressedInstructionDataCodec, getNativeTransferIntentCompressedInstructionDataDecoder, getNativeTransferIntentCompressedInstructionDataEncoder, getNativeTransferIntentDiscriminatorBytes, getNativeTransferIntentInstruction, getNativeTransferIntentInstructionAsync, getNativeTransferIntentInstructionDataCodec, getNativeTransferIntentInstructionDataDecoder, getNativeTransferIntentInstructionDataEncoder, getNewAuthorityArgsCodec, getNewAuthorityArgsDecoder, getNewAuthorityArgsEncoder, getOriginIndex, getPackedAddressTreeInfoCodec, getPackedAddressTreeInfoDecoder, getPackedAddressTreeInfoEncoder, getPackedStateTreeInfoCodec, getPackedStateTreeInfoDecoder, getPackedStateTreeInfoEncoder, getPermissionsCodec, getPermissionsDecoder, getPermissionsEncoder, getProofArgsCodec, getProofArgsDecoder, getProofArgsEncoder, getRemoveMemberArgsCodec, getRemoveMemberArgsDecoder, getRemoveMemberArgsEncoder, getSecp256r1MessageHash, getSecp256r1PubkeyCodec, getSecp256r1PubkeyDecoder, getSecp256r1PubkeyEncoder, getSecp256r1SignatureOffsetsDataDecoder, getSecp256r1SignatureOffsetsDataEncoder, getSecp256r1VerifyArgsCodec, getSecp256r1VerifyArgsDecoder, getSecp256r1VerifyArgsEncoder, getSecp256r1VerifyArgsWithDomainConfigIndexCodec, getSecp256r1VerifyArgsWithDomainConfigIndexDecoder, getSecp256r1VerifyArgsWithDomainConfigIndexEncoder, getSecp256r1VerifyInstruction, getSecp256r1VerifyInstructionDataCodec, getSecp256r1VerifyInstructionDataDecoder, getSecp256r1VerifyInstructionDataEncoder, getSendAndConfirmTransaction, getSettingsCodec, getSettingsDecoder, getSettingsDiscriminatorBytes, getSettingsEncoder, getSettingsFromIndex, getSettingsIndexWithAddressAndDelegateInfoCodec, getSettingsIndexWithAddressAndDelegateInfoDecoder, getSettingsIndexWithAddressAndDelegateInfoEncoder, getSettingsIndexWithAddressCodec, getSettingsIndexWithAddressDecoder, getSettingsIndexWithAddressEncoder, getSettingsMutArgsCodec, getSettingsMutArgsDecoder, getSettingsMutArgsEncoder, getSettingsReadonlyArgsCodec, getSettingsReadonlyArgsDecoder, getSettingsReadonlyArgsEncoder, getSignedSecp256r1Key, getSignedTransactionManager, getSolanaRpc, getSolanaRpcEndpoint, getTokenTransferIntentCompressedDiscriminatorBytes, getTokenTransferIntentCompressedInstruction, getTokenTransferIntentCompressedInstructionAsync, getTokenTransferIntentCompressedInstructionDataCodec, getTokenTransferIntentCompressedInstructionDataDecoder, getTokenTransferIntentCompressedInstructionDataEncoder, getTokenTransferIntentDiscriminatorBytes, getTokenTransferIntentInstruction, getTokenTransferIntentInstructionAsync, getTokenTransferIntentInstructionDataCodec, getTokenTransferIntentInstructionDataDecoder, getTokenTransferIntentInstructionDataEncoder, getTransactionBufferAddress, getTransactionBufferCloseCompressedDiscriminatorBytes, getTransactionBufferCloseCompressedInstruction, getTransactionBufferCloseCompressedInstructionDataCodec, getTransactionBufferCloseCompressedInstructionDataDecoder, getTransactionBufferCloseCompressedInstructionDataEncoder, getTransactionBufferCloseDiscriminatorBytes, getTransactionBufferCloseInstruction, getTransactionBufferCloseInstructionDataCodec, getTransactionBufferCloseInstructionDataDecoder, getTransactionBufferCloseInstructionDataEncoder, getTransactionBufferCodec, getTransactionBufferCreateArgsCodec, getTransactionBufferCreateArgsDecoder, getTransactionBufferCreateArgsEncoder, getTransactionBufferCreateCompressedDiscriminatorBytes, getTransactionBufferCreateCompressedInstruction, getTransactionBufferCreateCompressedInstructionDataCodec, getTransactionBufferCreateCompressedInstructionDataDecoder, getTransactionBufferCreateCompressedInstructionDataEncoder, getTransactionBufferCreateDiscriminatorBytes, getTransactionBufferCreateInstruction, getTransactionBufferCreateInstructionDataCodec, getTransactionBufferCreateInstructionDataDecoder, getTransactionBufferCreateInstructionDataEncoder, getTransactionBufferDecoder, getTransactionBufferDiscriminatorBytes, getTransactionBufferEncoder, getTransactionBufferExecuteCompressedDiscriminatorBytes, getTransactionBufferExecuteCompressedInstruction, getTransactionBufferExecuteCompressedInstructionDataCodec, getTransactionBufferExecuteCompressedInstructionDataDecoder, getTransactionBufferExecuteCompressedInstructionDataEncoder, getTransactionBufferExecuteDiscriminatorBytes, getTransactionBufferExecuteInstruction, getTransactionBufferExecuteInstructionDataCodec, getTransactionBufferExecuteInstructionDataDecoder, getTransactionBufferExecuteInstructionDataEncoder, getTransactionBufferExtendCompressedDiscriminatorBytes, getTransactionBufferExtendCompressedInstruction, getTransactionBufferExtendCompressedInstructionDataCodec, getTransactionBufferExtendCompressedInstructionDataDecoder, getTransactionBufferExtendCompressedInstructionDataEncoder, getTransactionBufferExtendDiscriminatorBytes, getTransactionBufferExtendInstruction, getTransactionBufferExtendInstructionDataCodec, getTransactionBufferExtendInstructionDataDecoder, getTransactionBufferExtendInstructionDataEncoder, getTransactionBufferVoteCompressedDiscriminatorBytes, getTransactionBufferVoteCompressedInstruction, getTransactionBufferVoteCompressedInstructionDataCodec, getTransactionBufferVoteCompressedInstructionDataDecoder, getTransactionBufferVoteCompressedInstructionDataEncoder, getTransactionBufferVoteDiscriminatorBytes, getTransactionBufferVoteInstruction, getTransactionBufferVoteInstructionDataCodec, getTransactionBufferVoteInstructionDataDecoder, getTransactionBufferVoteInstructionDataEncoder, getTransactionExecuteCompressedDiscriminatorBytes, getTransactionExecuteCompressedInstruction, getTransactionExecuteCompressedInstructionDataCodec, getTransactionExecuteCompressedInstructionDataDecoder, getTransactionExecuteCompressedInstructionDataEncoder, getTransactionExecuteDiscriminatorBytes, getTransactionExecuteInstruction, getTransactionExecuteInstructionDataCodec, getTransactionExecuteInstructionDataDecoder, getTransactionExecuteInstructionDataEncoder, getTransactionExecuteSyncCompressedDiscriminatorBytes, getTransactionExecuteSyncCompressedInstruction, getTransactionExecuteSyncCompressedInstructionDataCodec, getTransactionExecuteSyncCompressedInstructionDataDecoder, getTransactionExecuteSyncCompressedInstructionDataEncoder, getTransactionExecuteSyncDiscriminatorBytes, getTransactionExecuteSyncInstruction, getTransactionExecuteSyncInstructionDataCodec, getTransactionExecuteSyncInstructionDataDecoder, getTransactionExecuteSyncInstructionDataEncoder, getTransactionMessageAddressTableLookupCodec, getTransactionMessageAddressTableLookupDecoder, getTransactionMessageAddressTableLookupEncoder, getTransactionMessageCodec, getTransactionMessageDecoder, getTransactionMessageEncoder, getTransactionSyncSignersCodec, getTransactionSyncSignersDecoder, getTransactionSyncSignersEncoder, getTransportsCodec, getTransportsDecoder, getTransportsEncoder, getUserAccountAddress, getUserCodec, getUserCreationArgsCodec, getUserCreationArgsDecoder, getUserCreationArgsEncoder, getUserDecoder, getUserEncoder, getUserMutArgsCodec, getUserMutArgsDecoder, getUserMutArgsEncoder, getUserReadOnlyArgsCodec, getUserReadOnlyArgsDecoder, getUserReadOnlyArgsEncoder, getUserReadOnlyOrMutateArgsCodec, getUserReadOnlyOrMutateArgsDecoder, getUserReadOnlyOrMutateArgsEncoder, getUserRoleCodec, getUserRoleDecoder, getUserRoleEncoder, getWalletAddressFromIndex, getWalletAddressFromSettings, getWhitelistedAddressTreeCodec, getWhitelistedAddressTreeDecoder, getWhitelistedAddressTreeDiscriminatorBytes, getWhitelistedAddressTreeEncoder, getWhitelistedAddressTreeFromIndex, getWhitelistedAddressTreeIndexFromAddress, getWhitelistedAddressTreesAddress, identifyMultiWalletAccount, identifyMultiWalletInstruction, initialize, isConfigAction, isMultiWalletError, isTransactionSyncSigners, isUserReadOnlyOrMutateArgs, nativeTransferIntent, parseAddWhitelistedAddressTreesInstruction, parseChangeConfigCompressedInstruction, parseChangeConfigInstruction, parseCreateCompressedWalletInstruction, parseCreateDomainConfigInstruction, parseCreateDomainUserAccountInstruction, parseCreateGlobalCounterInstruction, parseCreateUserAccountsInstruction, parseDecompressSettingsAccountInstruction, parseDisableDomainConfigInstruction, parseEditDomainConfigInstruction, parseEditTransactionManagerUrlInstruction, parseEditUserDelegateInstruction, parseNativeTransferIntentCompressedInstruction, parseNativeTransferIntentInstruction, parseSecp256r1VerifyInstruction, parseTokenTransferIntentCompressedInstruction, parseTokenTransferIntentInstruction, parseTransactionBufferCloseCompressedInstruction, parseTransactionBufferCloseInstruction, parseTransactionBufferCreateCompressedInstruction, parseTransactionBufferCreateInstruction, parseTransactionBufferExecuteCompressedInstruction, parseTransactionBufferExecuteInstruction, parseTransactionBufferExtendCompressedInstruction, parseTransactionBufferExtendInstruction, parseTransactionBufferVoteCompressedInstruction, parseTransactionBufferVoteInstruction, parseTransactionExecuteCompressedInstruction, parseTransactionExecuteInstruction, parseTransactionExecuteSyncCompressedInstruction, parseTransactionExecuteSyncInstruction, pollJitoBundleConfirmation, prepareChangeConfigArgs, prepareTransactionBundle, prepareTransactionMessage, prepareTransactionSync, retrieveTransactionManager, sendJitoBundle, serializeConfigActions, signAndSendBundledTransactions, signAndSendTransaction, tokenTransferIntent, transactionSyncSigners, userReadOnlyOrMutateArgs, vaultTransactionMessageDeserialize, vaultTransactionMessageSerialize, voteTransactionBuffer };
|
|
4221
|
+
export { ADD_WHITELISTED_ADDRESS_TREES_DISCRIMINATOR, type AccountCache, AccountState, type AccountStateArgs, type AddMemberArgs$1 as AddMemberArgs, type AddMemberArgsArgs, type AddWhitelistedAddressTreesAsyncInput, type AddWhitelistedAddressTreesInput, type AddWhitelistedAddressTreesInstruction, type AddWhitelistedAddressTreesInstructionData, type AddWhitelistedAddressTreesInstructionDataArgs, type AddWhitelistedAddressTreesInstructionExtraArgs, type AdditionalMetadata, type AdditionalMetadataArgs, type AdditionalSignersParam, AdditionalSignersSchema, AuthenticationContextSchema, BaseResponseSchema, CHANGE_CONFIG_COMPRESSED_DISCRIMINATOR, CHANGE_CONFIG_DISCRIMINATOR, CREATE_COMPRESSED_WALLET_DISCRIMINATOR, CREATE_DOMAIN_CONFIG_DISCRIMINATOR, CREATE_DOMAIN_USER_ACCOUNT_DISCRIMINATOR, CREATE_GLOBAL_COUNTER_DISCRIMINATOR, CREATE_USER_ACCOUNTS_DISCRIMINATOR, type CachedAccountData, type ChangeConfigCompressedInput, type ChangeConfigCompressedInstruction, type ChangeConfigCompressedInstructionData, type ChangeConfigCompressedInstructionDataArgs, type ChangeConfigCompressedInstructionExtraArgs, type ChangeConfigInput, type ChangeConfigInstruction, type ChangeConfigInstructionData, type ChangeConfigInstructionDataArgs, type ChangeConfigInstructionExtraArgs, type CompiledInstruction, type CompiledInstructionArgs, type CompleteMessageRequest, CompleteMessageRequestSchema, type CompleteSendTransactionRequest, CompleteSendTransactionRequestSchema, type CompleteTransactionRequest, CompleteTransactionRequestSchema, type CompressedAccountMeta, type CompressedAccountMetaArgs, type CompressedAccountMetaReadOnly, type CompressedAccountMetaReadOnlyArgs, type CompressedOnlyExtension, type CompressedOnlyExtensionArgs, type CompressedProof, type CompressedProofArgs, type CompressedSettings, type CompressedSettingsArgs, type CompressedSettingsData, type CompressedSettingsDataArgs, type CompressedTokenArgs, type CompressedTokenArgsArgs, type CompressibleExtension, type CompressibleExtensionArgs, type CompressionInfo, type CompressionInfoArgs, type ConfigAction, type ConfigActionArgs, type ConfigurationArgs, type CreateCompressedWalletAsyncInput, type CreateCompressedWalletInput, type CreateCompressedWalletInstruction, type CreateCompressedWalletInstructionData, type CreateCompressedWalletInstructionDataArgs, type CreateCompressedWalletInstructionExtraArgs, type CreateDomainConfigAsyncInput, type CreateDomainConfigInput, type CreateDomainConfigInstruction, type CreateDomainConfigInstructionData, type CreateDomainConfigInstructionDataArgs, type CreateDomainConfigInstructionExtraArgs, type CreateDomainUserAccountAsyncInput, type CreateDomainUserAccountInput, type CreateDomainUserAccountInstruction, type CreateDomainUserAccountInstructionData, type CreateDomainUserAccountInstructionDataArgs, type CreateDomainUserAccountInstructionExtraArgs, type CreateGlobalCounterAsyncInput, type CreateGlobalCounterInput, type CreateGlobalCounterInstruction, type CreateGlobalCounterInstructionData, type CreateGlobalCounterInstructionDataArgs, type CreateGlobalCounterInstructionExtraArgs, type CreateUserAccountArgs, type CreateUserAccountArgsArgs, type CreateUserAccountsAsyncInput, type CreateUserAccountsInput, type CreateUserAccountsInstruction, type CreateUserAccountsInstructionData, type CreateUserAccountsInstructionDataArgs, type CreateUserAccountsInstructionExtraArgs, DECOMPRESS_SETTINGS_ACCOUNT_DISCRIMINATOR, DISABLE_DOMAIN_CONFIG_DISCRIMINATOR, DOMAIN_CONFIG_DISCRIMINATOR, type DecompressSettingsAccountInput, type DecompressSettingsAccountInstruction, type DecompressSettingsAccountInstructionData, type DecompressSettingsAccountInstructionDataArgs, type DecompressSettingsAccountInstructionExtraArgs, type DisableDomainConfigInput, type DisableDomainConfigInstruction, type DisableDomainConfigInstructionData, type DisableDomainConfigInstructionDataArgs, type DisableDomainConfigInstructionExtraArgs, type DomainConfig, type DomainConfigArgs, EDIT_DOMAIN_CONFIG_DISCRIMINATOR, EDIT_TRANSACTION_MANAGER_URL_DISCRIMINATOR, EDIT_USER_DELEGATE_DISCRIMINATOR, type EditDomainConfigAsyncInput, type EditDomainConfigInput, type EditDomainConfigInstruction, type EditDomainConfigInstructionData, type EditDomainConfigInstructionDataArgs, type EditDomainConfigInstructionExtraArgs, type EditMemberArgs$1 as EditMemberArgs, type EditMemberArgsArgs, type EditTransactionManagerUrlInput, type EditTransactionManagerUrlInstruction, type EditTransactionManagerUrlInstructionData, type EditTransactionManagerUrlInstructionDataArgs, type EditTransactionManagerUrlInstructionExtraArgs, type EditUserDelegateInput, type EditUserDelegateInstruction, type EditUserDelegateInstructionData, type EditUserDelegateInstructionDataArgs, type EditUserDelegateInstructionExtraArgs, type ExpectedSigner, type ExpectedSignerArgs, type ExtensionStruct, type ExtensionStructArgs, GLOBAL_COUNTER_DISCRIMINATOR, type GlobalCounter, type GlobalCounterArgs, type IKeyType, type IPermission, type IPermissions, type JitoTipsConfig, KeyType, type LinkWalletArgs, type LinkWalletArgsArgs, MULTI_WALLET_ERROR__ALREADY_DELEGATED, MULTI_WALLET_ERROR__CLIENT_DATA_HASH_MISMATCH, MULTI_WALLET_ERROR__CLOCK_SYSVAR_ACCESS_FAILED, MULTI_WALLET_ERROR__CREDENTIAL_ID_IS_MISSING, MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_DISABLED, MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_MISSING, MULTI_WALLET_ERROR__DOMAIN_CONFIG_KEY_MISMATCH, MULTI_WALLET_ERROR__DUPLICATE_ADDRESS_TREE, MULTI_WALLET_ERROR__DUPLICATE_MEMBER, MULTI_WALLET_ERROR__DURABLE_NONCE_DETECTED, MULTI_WALLET_ERROR__EMPTY_MEMBERS, MULTI_WALLET_ERROR__EMPTY_SLOT_NUMBERS, MULTI_WALLET_ERROR__EXPECTED_ADMINISTRATOR_ROLE_MISMATCH, MULTI_WALLET_ERROR__EXPECTED_MESSAGE_HASH_MISMATCH, MULTI_WALLET_ERROR__EXPECTED_TRANSACTION_MANAGER_ROLE_MISMATCH, MULTI_WALLET_ERROR__FINAL_BUFFER_HASH_MISMATCH, MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_EXCEEDED, MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_MISMATCH, MULTI_WALLET_ERROR__HASH_COMPUTATION_FAILED, MULTI_WALLET_ERROR__INSUFFICIENT_SIGNERS_WITH_VOTE_PERMISSION, MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_EXECUTE_PERMISSION, MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_INITIATE_PERMISSION, MULTI_WALLET_ERROR__INVALID_ACCOUNT, MULTI_WALLET_ERROR__INVALID_ACCOUNT_INDEX, MULTI_WALLET_ERROR__INVALID_ADDRESS_TREE, MULTI_WALLET_ERROR__INVALID_ADMINISTRATOR_CONFIG, MULTI_WALLET_ERROR__INVALID_ARGUMENTS, MULTI_WALLET_ERROR__INVALID_BUFFER, MULTI_WALLET_ERROR__INVALID_MEMBER_KEY_FORMAT, MULTI_WALLET_ERROR__INVALID_NON_DELEGATED_SIGNERS, MULTI_WALLET_ERROR__INVALID_NUMBER_OF_ACCOUNTS, MULTI_WALLET_ERROR__INVALID_PERMANENT_MEMBER_CONFIG, MULTI_WALLET_ERROR__INVALID_SECP256R1_INSTRUCTION, MULTI_WALLET_ERROR__INVALID_SECP256R1_PUBLIC_KEY, MULTI_WALLET_ERROR__INVALID_SECP256R1_VERIFY_ARG, MULTI_WALLET_ERROR__INVALID_SIGNATURE_OFFSETS, MULTI_WALLET_ERROR__INVALID_SLOT_NUMBER, MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT, MULTI_WALLET_ERROR__INVALID_THRESHOLD, MULTI_WALLET_ERROR__INVALID_TOKEN_SOURCE_TYPE, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_CONFIG, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_PERMISSION, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MESSAGE, MULTI_WALLET_ERROR__INVALID_USER_ED25519_CONFIG, MULTI_WALLET_ERROR__INVALID_USER_ROLE, MULTI_WALLET_ERROR__INVALID_USER_TRANSACTION_MANAGER_CONFIG, MULTI_WALLET_ERROR__LIGHT_CPI_ACCOUNT_ERROR, MULTI_WALLET_ERROR__MALFORMED_SIGNED_MESSAGE, MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED, MULTI_WALLET_ERROR__MEMBER_DOES_NOT_BELONG_TO_DOMAIN_CONFIG, MULTI_WALLET_ERROR__MEMBER_NOT_FOUND, MULTI_WALLET_ERROR__MEMBER_NOT_FOUND_IN_SETTINGS, MULTI_WALLET_ERROR__MISSING_ACCOUNT, MULTI_WALLET_ERROR__MISSING_COMPRESSED_PROOF_ARGS, MULTI_WALLET_ERROR__MISSING_COMPRESSED_TOKEN_ACCOUNT, MULTI_WALLET_ERROR__MISSING_DESTINATION_TOKEN_ACCOUNT, MULTI_WALLET_ERROR__MISSING_INSTRUCTIONS_SYSVAR, MULTI_WALLET_ERROR__MISSING_LIGHT_CPI_ACCOUNTS, MULTI_WALLET_ERROR__MISSING_MUTATION_USER_ARGS, MULTI_WALLET_ERROR__MISSING_NEW_AUTHORITY, MULTI_WALLET_ERROR__MISSING_SETTINGS_ACCOUNT_FOR_DELEGATE, MULTI_WALLET_ERROR__MISSING_SETTINGS_DATA, MULTI_WALLET_ERROR__MISSING_SOURCE_TOKEN_ACCOUNT, MULTI_WALLET_ERROR__MISSING_SPL_INTERFACE_PDA, MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY, MULTI_WALLET_ERROR__MISSING_USER_ACCOUNT_ADDRESS, MULTI_WALLET_ERROR__MISSING_WHITELISTED_ADDRESS_TREES, MULTI_WALLET_ERROR__NO_SIGNER_FOUND, MULTI_WALLET_ERROR__ONLY_ONE_ADMINISTRATOR_ALLOWED, MULTI_WALLET_ERROR__ONLY_ONE_PERMANENT_MEMBER_ALLOWED, MULTI_WALLET_ERROR__ONLY_ONE_TRANSACTION_MANAGER_ALLOWED, MULTI_WALLET_ERROR__ORIGIN_INDEX_OUT_OF_BOUNDS, MULTI_WALLET_ERROR__PAYER_MISMATCH, MULTI_WALLET_ERROR__PERMANENT_MEMBER, MULTI_WALLET_ERROR__PROTECTED_ACCOUNT, MULTI_WALLET_ERROR__RP_ID_HASH_MISMATCH, MULTI_WALLET_ERROR__SETTINGS_KEY_MISMATCH, MULTI_WALLET_ERROR__SIGNATURE_INDEX_OUT_OF_BOUNDS, MULTI_WALLET_ERROR__SLOT_NUMBER_NOT_FOUND, MULTI_WALLET_ERROR__SOURCE_ACCOUNT_MISMATCH, MULTI_WALLET_ERROR__TOO_MANY_MEMBERS, MULTI_WALLET_ERROR__TRANSACTION_HAS_EXPIRED, MULTI_WALLET_ERROR__TRANSACTION_NOT_APPROVED, MULTI_WALLET_ERROR__TRANSPORTS_IS_MISSING, MULTI_WALLET_ERROR__UNAUTHORISED_TO_CLOSE_TRANSACTION_BUFFER, MULTI_WALLET_ERROR__UNAUTHORIZED_ADMIN_ONLY, MULTI_WALLET_ERROR__UNEXPECTED_SIGNER, MULTI_WALLET_PROGRAM_ADDRESS, type Member, type MemberArgs, type MemberKey, type MemberKeyArgs, type MessageAuthenticationResponse, MultiWalletAccount, type MultiWalletError, MultiWalletInstruction, NATIVE_TRANSFER_INTENT_COMPRESSED_DISCRIMINATOR, NATIVE_TRANSFER_INTENT_DISCRIMINATOR, type NativeTransferIntentAsyncInput, type NativeTransferIntentCompressedInput, type NativeTransferIntentCompressedInstruction, type NativeTransferIntentCompressedInstructionData, type NativeTransferIntentCompressedInstructionDataArgs, type NativeTransferIntentCompressedInstructionExtraArgs, type NativeTransferIntentInput, type NativeTransferIntentInstruction, type NativeTransferIntentInstructionData, type NativeTransferIntentInstructionDataArgs, type NativeTransferIntentInstructionExtraArgs, type NativeTransferIntentParams, type NewAuthorityArgs, type NewAuthorityArgsArgs, type PackedAddressTreeInfo, type PackedAddressTreeInfoArgs, type PackedMerkleContext, type PackedMerkleContextArgs, type PackedStateTreeInfo, type PackedStateTreeInfoArgs, type ParsedAddWhitelistedAddressTreesInstruction, type ParsedChangeConfigCompressedInstruction, type ParsedChangeConfigInstruction, type ParsedCreateCompressedWalletInstruction, type ParsedCreateDomainConfigInstruction, type ParsedCreateDomainUserAccountInstruction, type ParsedCreateGlobalCounterInstruction, type ParsedCreateUserAccountsInstruction, type ParsedDecompressSettingsAccountInstruction, type ParsedDisableDomainConfigInstruction, type ParsedEditDomainConfigInstruction, type ParsedEditTransactionManagerUrlInstruction, type ParsedEditUserDelegateInstruction, type ParsedMultiWalletInstruction, type ParsedNativeTransferIntentCompressedInstruction, type ParsedNativeTransferIntentInstruction, type ParsedSecp256r1VerifyInstruction, type ParsedTokenTransferIntentCompressedInstruction, type ParsedTokenTransferIntentInstruction, type ParsedTransactionBufferCloseCompressedInstruction, type ParsedTransactionBufferCloseInstruction, type ParsedTransactionBufferCreateCompressedInstruction, type ParsedTransactionBufferCreateInstruction, type ParsedTransactionBufferExecuteCompressedInstruction, type ParsedTransactionBufferExecuteInstruction, type ParsedTransactionBufferExtendCompressedInstruction, type ParsedTransactionBufferExtendInstruction, type ParsedTransactionBufferVoteCompressedInstruction, type ParsedTransactionBufferVoteInstruction, type ParsedTransactionExecuteCompressedInstruction, type ParsedTransactionExecuteInstruction, type ParsedTransactionExecuteSyncCompressedInstruction, type ParsedTransactionExecuteSyncInstruction, type PausableAccountExtension, type PausableAccountExtensionArgs, type PermanentDelegateAccountExtension, type PermanentDelegateAccountExtensionArgs, Permission, type PermissionArgs, Permissions, type PermissionsArgs, type ProofArgs, type ProofArgsArgs, type RemoveMemberArgs$1 as RemoveMemberArgs, type RemoveMemberArgsArgs, type RentConfig, type RentConfigArgs, SETTINGS_DISCRIMINATOR, Secp256r1Key, type Secp256r1Pubkey, type Secp256r1PubkeyArgs, type Secp256r1SignatureOffsetsDataArgs, type Secp256r1VerifyArgs, type Secp256r1VerifyArgsArgs, type Secp256r1VerifyArgsWithDomainConfigIndex, type Secp256r1VerifyArgsWithDomainConfigIndexArgs, type Secp256r1VerifyInput, type Secp256r1VerifyInstruction, type Secp256r1VerifyInstructionData, type Secp256r1VerifyInstructionDataArgs, type Settings, type SettingsArgs, type SettingsIndexWithAddress, type SettingsIndexWithAddressAndDelegateInfo, type SettingsIndexWithAddressAndDelegateInfoArgs, type SettingsIndexWithAddressArgs, type SettingsMutArgs, type SettingsMutArgsArgs, type SettingsReadonlyArgs, type SettingsReadonlyArgsArgs, SignedSecp256r1Key, type SplInterfacePdaArgs, type SplInterfacePdaArgsArgs, type StartMessageRequest, StartMessageRequestSchema, type StartTransactionRequest, StartTransactionRequestSchema, TOKEN_TRANSFER_INTENT_COMPRESSED_DISCRIMINATOR, TOKEN_TRANSFER_INTENT_DISCRIMINATOR, TRANSACTION_BUFFER_CLOSE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_CLOSE_DISCRIMINATOR, TRANSACTION_BUFFER_CREATE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_CREATE_DISCRIMINATOR, TRANSACTION_BUFFER_DISCRIMINATOR, TRANSACTION_BUFFER_EXECUTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_EXECUTE_DISCRIMINATOR, TRANSACTION_BUFFER_EXTEND_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_EXTEND_DISCRIMINATOR, TRANSACTION_BUFFER_VOTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_VOTE_DISCRIMINATOR, TRANSACTION_EXECUTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_EXECUTE_DISCRIMINATOR, TRANSACTION_EXECUTE_SYNC_COMPRESSED_DISCRIMINATOR, TRANSACTION_EXECUTE_SYNC_DISCRIMINATOR, type TokenMetadata, type TokenMetadataArgs, type TokenTransferIntentAsyncInput, type TokenTransferIntentCompressedAsyncInput, type TokenTransferIntentCompressedInput, type TokenTransferIntentCompressedInstruction, type TokenTransferIntentCompressedInstructionData, type TokenTransferIntentCompressedInstructionDataArgs, type TokenTransferIntentCompressedInstructionExtraArgs, type TokenTransferIntentInput, type TokenTransferIntentInstruction, type TokenTransferIntentInstructionData, type TokenTransferIntentInstructionDataArgs, type TokenTransferIntentInstructionExtraArgs, type TokenTransferIntentParams, type TransactionActionType, TransactionActionTypeSchema, type TransactionAuthDetails, type TransactionAuthenticationResponse, type TransactionBuffer, type TransactionBufferArgs, type TransactionBufferCloseCompressedInput, type TransactionBufferCloseCompressedInstruction, type TransactionBufferCloseCompressedInstructionData, type TransactionBufferCloseCompressedInstructionDataArgs, type TransactionBufferCloseCompressedInstructionExtraArgs, type TransactionBufferCloseInput, type TransactionBufferCloseInstruction, type TransactionBufferCloseInstructionData, type TransactionBufferCloseInstructionDataArgs, type TransactionBufferCloseInstructionExtraArgs, type TransactionBufferCreateArgs, type TransactionBufferCreateArgsArgs, type TransactionBufferCreateCompressedInput, type TransactionBufferCreateCompressedInstruction, type TransactionBufferCreateCompressedInstructionData, type TransactionBufferCreateCompressedInstructionDataArgs, type TransactionBufferCreateCompressedInstructionExtraArgs, type TransactionBufferCreateInput, type TransactionBufferCreateInstruction, type TransactionBufferCreateInstructionData, type TransactionBufferCreateInstructionDataArgs, type TransactionBufferCreateInstructionExtraArgs, type TransactionBufferExecuteCompressedInput, type TransactionBufferExecuteCompressedInstruction, type TransactionBufferExecuteCompressedInstructionData, type TransactionBufferExecuteCompressedInstructionDataArgs, type TransactionBufferExecuteCompressedInstructionExtraArgs, type TransactionBufferExecuteInput, type TransactionBufferExecuteInstruction, type TransactionBufferExecuteInstructionData, type TransactionBufferExecuteInstructionDataArgs, type TransactionBufferExecuteInstructionExtraArgs, type TransactionBufferExtendCompressedInput, type TransactionBufferExtendCompressedInstruction, type TransactionBufferExtendCompressedInstructionData, type TransactionBufferExtendCompressedInstructionDataArgs, type TransactionBufferExtendCompressedInstructionExtraArgs, type TransactionBufferExtendInput, type TransactionBufferExtendInstruction, type TransactionBufferExtendInstructionData, type TransactionBufferExtendInstructionDataArgs, type TransactionBufferExtendInstructionExtraArgs, type TransactionBufferVoteCompressedInput, type TransactionBufferVoteCompressedInstruction, type TransactionBufferVoteCompressedInstructionData, type TransactionBufferVoteCompressedInstructionDataArgs, type TransactionBufferVoteCompressedInstructionExtraArgs, type TransactionBufferVoteInput, type TransactionBufferVoteInstruction, type TransactionBufferVoteInstructionData, type TransactionBufferVoteInstructionDataArgs, type TransactionBufferVoteInstructionExtraArgs, type TransactionDetails, TransactionDetailsSchema, type TransactionExecuteCompressedInput, type TransactionExecuteCompressedInstruction, type TransactionExecuteCompressedInstructionData, type TransactionExecuteCompressedInstructionDataArgs, type TransactionExecuteCompressedInstructionExtraArgs, type TransactionExecuteInput, type TransactionExecuteInstruction, type TransactionExecuteInstructionData, type TransactionExecuteInstructionDataArgs, type TransactionExecuteInstructionExtraArgs, type TransactionExecuteSyncCompressedInput, type TransactionExecuteSyncCompressedInstruction, type TransactionExecuteSyncCompressedInstructionData, type TransactionExecuteSyncCompressedInstructionDataArgs, type TransactionExecuteSyncCompressedInstructionExtraArgs, type TransactionExecuteSyncInput, type TransactionExecuteSyncInstruction, type TransactionExecuteSyncInstructionData, type TransactionExecuteSyncInstructionDataArgs, type TransactionExecuteSyncInstructionExtraArgs, type TransactionMessage, type TransactionMessageAddressTableLookup, type TransactionMessageAddressTableLookupArgs, type TransactionMessageArgs, type TransactionPayload, TransactionPayloadSchema, type TransactionPayloadWithBase64MessageBytes, TransactionPayloadWithBase64MessageBytesSchema, type TransactionSyncSigners, type TransactionSyncSignersArgs, type TransferFeeAccountExtension, type TransferFeeAccountExtensionArgs, type TransferHookAccountExtension, type TransferHookAccountExtensionArgs, Transports, type TransportsArgs, type User, type UserArgs, type UserCreationArgs$2 as UserCreationArgs, type UserCreationArgsArgs, type UserInfo, UserInfoSchema, type UserMutArgs, type UserMutArgsArgs, type UserReadOnlyArgs, type UserReadOnlyArgsArgs, type UserReadOnlyOrMutateArgs, type UserReadOnlyOrMutateArgsArgs, UserRole, type UserRoleArgs, WHITELISTED_ADDRESS_TREE_DISCRIMINATOR, type WhitelistedAddressTree, type WhitelistedAddressTreeArgs, addWhitelistedAddressTrees, base64URLStringToBuffer, bufferToBase64URLString, changeConfig, closeTransactionBuffer, configAction, convertBase64StringToJWK, convertJWKToBase64String, convertMemberKeyToString, convertPubkeyCompressedToCose, convertPubkeyCoseToCompressed, createClientAuthorizationCompleteRequestChallenge, createClientAuthorizationStartRequestChallenge, createDomainConfig, createDomainUserAccounts, createGlobalCounter, createMessageChallenge, createTransactionBuffer, createTransactionChallenge, createTransactionManagerSigner, createUserAccounts, createWallet, decodeDomainConfig, decodeGlobalCounter, decodeSettings, decodeTransactionBuffer, decodeWhitelistedAddressTree, decompressSettingsAccount, deserializeConfigActions, disableDomainConfig, editDomainConfig, editTransactionManagerUrl, editUserDelegate, executeTransaction, executeTransactionBuffer, executeTransactionSync, extendTransactionBuffer, extensionStruct, fetchAllDomainConfig, fetchAllGlobalCounter, fetchAllMaybeDomainConfig, fetchAllMaybeGlobalCounter, fetchAllMaybeSettings, fetchAllMaybeTransactionBuffer, fetchAllMaybeWhitelistedAddressTree, fetchAllSettings, fetchAllSettingsAccountByMember, fetchAllTransactionBuffer, fetchAllWhitelistedAddressTree, fetchDomainConfig, fetchGlobalCounter, fetchMaybeDomainConfig, fetchMaybeGlobalCounter, fetchMaybeSettings, fetchMaybeSettingsAccountData, fetchMaybeTransactionBuffer, fetchMaybeUserAccountData, fetchMaybeWhitelistedAddressTree, fetchSettings, fetchSettingsAccountData, fetchTransactionBuffer, fetchUserAccountByFilters, fetchUserAccountData, fetchWhitelistedAddressTree, getAccountStateCodec, getAccountStateDecoder, getAccountStateEncoder, getAddMemberArgsCodec, getAddMemberArgsDecoder, getAddMemberArgsEncoder, getAddWhitelistedAddressTreesDiscriminatorBytes, getAddWhitelistedAddressTreesInstruction, getAddWhitelistedAddressTreesInstructionAsync, getAddWhitelistedAddressTreesInstructionDataCodec, getAddWhitelistedAddressTreesInstructionDataDecoder, getAddWhitelistedAddressTreesInstructionDataEncoder, getAdditionalMetadataCodec, getAdditionalMetadataDecoder, getAdditionalMetadataEncoder, getChangeConfigCompressedDiscriminatorBytes, getChangeConfigCompressedInstruction, getChangeConfigCompressedInstructionDataCodec, getChangeConfigCompressedInstructionDataDecoder, getChangeConfigCompressedInstructionDataEncoder, getChangeConfigDiscriminatorBytes, getChangeConfigInstruction, getChangeConfigInstructionDataCodec, getChangeConfigInstructionDataDecoder, getChangeConfigInstructionDataEncoder, getClientAndDeviceHash, getCompiledInstructionCodec, getCompiledInstructionDecoder, getCompiledInstructionEncoder, getCompressedAccountMetaCodec, getCompressedAccountMetaDecoder, getCompressedAccountMetaEncoder, getCompressedAccountMetaReadOnlyCodec, getCompressedAccountMetaReadOnlyDecoder, getCompressedAccountMetaReadOnlyEncoder, getCompressedOnlyExtensionCodec, getCompressedOnlyExtensionDecoder, getCompressedOnlyExtensionEncoder, getCompressedProofCodec, getCompressedProofDecoder, getCompressedProofEncoder, getCompressedSettingsAddress, getCompressedSettingsCodec, getCompressedSettingsDataCodec, getCompressedSettingsDataDecoder, getCompressedSettingsDataEncoder, getCompressedSettingsDecoder, getCompressedSettingsEncoder, getCompressedTokenArgsCodec, getCompressedTokenArgsDecoder, getCompressedTokenArgsEncoder, getCompressibleExtensionCodec, getCompressibleExtensionDecoder, getCompressibleExtensionEncoder, getCompressionInfoCodec, getCompressionInfoDecoder, getCompressionInfoEncoder, getConfigActionCodec, getConfigActionDecoder, getConfigActionEncoder, getCreateCompressedWalletDiscriminatorBytes, getCreateCompressedWalletInstruction, getCreateCompressedWalletInstructionAsync, getCreateCompressedWalletInstructionDataCodec, getCreateCompressedWalletInstructionDataDecoder, getCreateCompressedWalletInstructionDataEncoder, getCreateDomainConfigDiscriminatorBytes, getCreateDomainConfigInstruction, getCreateDomainConfigInstructionAsync, getCreateDomainConfigInstructionDataCodec, getCreateDomainConfigInstructionDataDecoder, getCreateDomainConfigInstructionDataEncoder, getCreateDomainUserAccountDiscriminatorBytes, getCreateDomainUserAccountInstruction, getCreateDomainUserAccountInstructionAsync, getCreateDomainUserAccountInstructionDataCodec, getCreateDomainUserAccountInstructionDataDecoder, getCreateDomainUserAccountInstructionDataEncoder, getCreateGlobalCounterDiscriminatorBytes, getCreateGlobalCounterInstruction, getCreateGlobalCounterInstructionAsync, getCreateGlobalCounterInstructionDataCodec, getCreateGlobalCounterInstructionDataDecoder, getCreateGlobalCounterInstructionDataEncoder, getCreateUserAccountArgsCodec, getCreateUserAccountArgsDecoder, getCreateUserAccountArgsEncoder, getCreateUserAccountsDiscriminatorBytes, getCreateUserAccountsInstruction, getCreateUserAccountsInstructionAsync, getCreateUserAccountsInstructionDataCodec, getCreateUserAccountsInstructionDataDecoder, getCreateUserAccountsInstructionDataEncoder, getDecompressSettingsAccountDiscriminatorBytes, getDecompressSettingsAccountInstruction, getDecompressSettingsAccountInstructionDataCodec, getDecompressSettingsAccountInstructionDataDecoder, getDecompressSettingsAccountInstructionDataEncoder, getDisableDomainConfigDiscriminatorBytes, getDisableDomainConfigInstruction, getDisableDomainConfigInstructionDataCodec, getDisableDomainConfigInstructionDataDecoder, getDisableDomainConfigInstructionDataEncoder, getDomainConfigAddress, getDomainConfigCodec, getDomainConfigDecoder, getDomainConfigDiscriminatorBytes, getDomainConfigEncoder, getDomainConfigSize, getEditDomainConfigDiscriminatorBytes, getEditDomainConfigInstruction, getEditDomainConfigInstructionAsync, getEditDomainConfigInstructionDataCodec, getEditDomainConfigInstructionDataDecoder, getEditDomainConfigInstructionDataEncoder, getEditMemberArgsCodec, getEditMemberArgsDecoder, getEditMemberArgsEncoder, getEditTransactionManagerUrlDiscriminatorBytes, getEditTransactionManagerUrlInstruction, getEditTransactionManagerUrlInstructionDataCodec, getEditTransactionManagerUrlInstructionDataDecoder, getEditTransactionManagerUrlInstructionDataEncoder, getEditUserDelegateDiscriminatorBytes, getEditUserDelegateInstruction, getEditUserDelegateInstructionDataCodec, getEditUserDelegateInstructionDataDecoder, getEditUserDelegateInstructionDataEncoder, getExpectedSignerCodec, getExpectedSignerDecoder, getExpectedSignerEncoder, getExtensionStructCodec, getExtensionStructDecoder, getExtensionStructEncoder, getGlobalCounterAddress, getGlobalCounterCodec, getGlobalCounterDecoder, getGlobalCounterDiscriminatorBytes, getGlobalCounterEncoder, getGlobalCounterSize, getJitoTipsConfig, getLightCpiSigner, getLightProtocolRpc, getLinkWalletArgsCodec, getLinkWalletArgsDecoder, getLinkWalletArgsEncoder, getMemberCodec, getMemberDecoder, getMemberEncoder, getMemberKeyCodec, getMemberKeyDecoder, getMemberKeyEncoder, getMultiWalletErrorMessage, getNativeTransferIntentCompressedDiscriminatorBytes, getNativeTransferIntentCompressedInstruction, getNativeTransferIntentCompressedInstructionDataCodec, getNativeTransferIntentCompressedInstructionDataDecoder, getNativeTransferIntentCompressedInstructionDataEncoder, getNativeTransferIntentDiscriminatorBytes, getNativeTransferIntentInstruction, getNativeTransferIntentInstructionAsync, getNativeTransferIntentInstructionDataCodec, getNativeTransferIntentInstructionDataDecoder, getNativeTransferIntentInstructionDataEncoder, getNewAuthorityArgsCodec, getNewAuthorityArgsDecoder, getNewAuthorityArgsEncoder, getOriginIndex, getPackedAddressTreeInfoCodec, getPackedAddressTreeInfoDecoder, getPackedAddressTreeInfoEncoder, getPackedMerkleContextCodec, getPackedMerkleContextDecoder, getPackedMerkleContextEncoder, getPackedStateTreeInfoCodec, getPackedStateTreeInfoDecoder, getPackedStateTreeInfoEncoder, getPausableAccountExtensionCodec, getPausableAccountExtensionDecoder, getPausableAccountExtensionEncoder, getPermanentDelegateAccountExtensionCodec, getPermanentDelegateAccountExtensionDecoder, getPermanentDelegateAccountExtensionEncoder, getPermissionsCodec, getPermissionsDecoder, getPermissionsEncoder, getProofArgsCodec, getProofArgsDecoder, getProofArgsEncoder, getRemoveMemberArgsCodec, getRemoveMemberArgsDecoder, getRemoveMemberArgsEncoder, getRentConfigCodec, getRentConfigDecoder, getRentConfigEncoder, getSecp256r1MessageHash, getSecp256r1PubkeyCodec, getSecp256r1PubkeyDecoder, getSecp256r1PubkeyEncoder, getSecp256r1SignatureOffsetsDataDecoder, getSecp256r1SignatureOffsetsDataEncoder, getSecp256r1VerifyArgsCodec, getSecp256r1VerifyArgsDecoder, getSecp256r1VerifyArgsEncoder, getSecp256r1VerifyArgsWithDomainConfigIndexCodec, getSecp256r1VerifyArgsWithDomainConfigIndexDecoder, getSecp256r1VerifyArgsWithDomainConfigIndexEncoder, getSecp256r1VerifyInstruction, getSecp256r1VerifyInstructionDataCodec, getSecp256r1VerifyInstructionDataDecoder, getSecp256r1VerifyInstructionDataEncoder, getSendAndConfirmTransaction, getSettingsCodec, getSettingsDecoder, getSettingsDiscriminatorBytes, getSettingsEncoder, getSettingsFromIndex, getSettingsIndexWithAddressAndDelegateInfoCodec, getSettingsIndexWithAddressAndDelegateInfoDecoder, getSettingsIndexWithAddressAndDelegateInfoEncoder, getSettingsIndexWithAddressCodec, getSettingsIndexWithAddressDecoder, getSettingsIndexWithAddressEncoder, getSettingsMutArgsCodec, getSettingsMutArgsDecoder, getSettingsMutArgsEncoder, getSettingsReadonlyArgsCodec, getSettingsReadonlyArgsDecoder, getSettingsReadonlyArgsEncoder, getSignedSecp256r1Key, getSignedTransactionManager, getSolanaRpc, getSolanaRpcEndpoint, getSplInterfacePdaArgsCodec, getSplInterfacePdaArgsDecoder, getSplInterfacePdaArgsEncoder, getTokenMetadataCodec, getTokenMetadataDecoder, getTokenMetadataEncoder, getTokenTransferIntentCompressedDiscriminatorBytes, getTokenTransferIntentCompressedInstruction, getTokenTransferIntentCompressedInstructionAsync, getTokenTransferIntentCompressedInstructionDataCodec, getTokenTransferIntentCompressedInstructionDataDecoder, getTokenTransferIntentCompressedInstructionDataEncoder, getTokenTransferIntentDiscriminatorBytes, getTokenTransferIntentInstruction, getTokenTransferIntentInstructionAsync, getTokenTransferIntentInstructionDataCodec, getTokenTransferIntentInstructionDataDecoder, getTokenTransferIntentInstructionDataEncoder, getTransactionBufferAddress, getTransactionBufferCloseCompressedDiscriminatorBytes, getTransactionBufferCloseCompressedInstruction, getTransactionBufferCloseCompressedInstructionDataCodec, getTransactionBufferCloseCompressedInstructionDataDecoder, getTransactionBufferCloseCompressedInstructionDataEncoder, getTransactionBufferCloseDiscriminatorBytes, getTransactionBufferCloseInstruction, getTransactionBufferCloseInstructionDataCodec, getTransactionBufferCloseInstructionDataDecoder, getTransactionBufferCloseInstructionDataEncoder, getTransactionBufferCodec, getTransactionBufferCreateArgsCodec, getTransactionBufferCreateArgsDecoder, getTransactionBufferCreateArgsEncoder, getTransactionBufferCreateCompressedDiscriminatorBytes, getTransactionBufferCreateCompressedInstruction, getTransactionBufferCreateCompressedInstructionDataCodec, getTransactionBufferCreateCompressedInstructionDataDecoder, getTransactionBufferCreateCompressedInstructionDataEncoder, getTransactionBufferCreateDiscriminatorBytes, getTransactionBufferCreateInstruction, getTransactionBufferCreateInstructionDataCodec, getTransactionBufferCreateInstructionDataDecoder, getTransactionBufferCreateInstructionDataEncoder, getTransactionBufferDecoder, getTransactionBufferDiscriminatorBytes, getTransactionBufferEncoder, getTransactionBufferExecuteCompressedDiscriminatorBytes, getTransactionBufferExecuteCompressedInstruction, getTransactionBufferExecuteCompressedInstructionDataCodec, getTransactionBufferExecuteCompressedInstructionDataDecoder, getTransactionBufferExecuteCompressedInstructionDataEncoder, getTransactionBufferExecuteDiscriminatorBytes, getTransactionBufferExecuteInstruction, getTransactionBufferExecuteInstructionDataCodec, getTransactionBufferExecuteInstructionDataDecoder, getTransactionBufferExecuteInstructionDataEncoder, getTransactionBufferExtendCompressedDiscriminatorBytes, getTransactionBufferExtendCompressedInstruction, getTransactionBufferExtendCompressedInstructionDataCodec, getTransactionBufferExtendCompressedInstructionDataDecoder, getTransactionBufferExtendCompressedInstructionDataEncoder, getTransactionBufferExtendDiscriminatorBytes, getTransactionBufferExtendInstruction, getTransactionBufferExtendInstructionDataCodec, getTransactionBufferExtendInstructionDataDecoder, getTransactionBufferExtendInstructionDataEncoder, getTransactionBufferVoteCompressedDiscriminatorBytes, getTransactionBufferVoteCompressedInstruction, getTransactionBufferVoteCompressedInstructionDataCodec, getTransactionBufferVoteCompressedInstructionDataDecoder, getTransactionBufferVoteCompressedInstructionDataEncoder, getTransactionBufferVoteDiscriminatorBytes, getTransactionBufferVoteInstruction, getTransactionBufferVoteInstructionDataCodec, getTransactionBufferVoteInstructionDataDecoder, getTransactionBufferVoteInstructionDataEncoder, getTransactionExecuteCompressedDiscriminatorBytes, getTransactionExecuteCompressedInstruction, getTransactionExecuteCompressedInstructionDataCodec, getTransactionExecuteCompressedInstructionDataDecoder, getTransactionExecuteCompressedInstructionDataEncoder, getTransactionExecuteDiscriminatorBytes, getTransactionExecuteInstruction, getTransactionExecuteInstructionDataCodec, getTransactionExecuteInstructionDataDecoder, getTransactionExecuteInstructionDataEncoder, getTransactionExecuteSyncCompressedDiscriminatorBytes, getTransactionExecuteSyncCompressedInstruction, getTransactionExecuteSyncCompressedInstructionDataCodec, getTransactionExecuteSyncCompressedInstructionDataDecoder, getTransactionExecuteSyncCompressedInstructionDataEncoder, getTransactionExecuteSyncDiscriminatorBytes, getTransactionExecuteSyncInstruction, getTransactionExecuteSyncInstructionDataCodec, getTransactionExecuteSyncInstructionDataDecoder, getTransactionExecuteSyncInstructionDataEncoder, getTransactionMessageAddressTableLookupCodec, getTransactionMessageAddressTableLookupDecoder, getTransactionMessageAddressTableLookupEncoder, getTransactionMessageCodec, getTransactionMessageDecoder, getTransactionMessageEncoder, getTransactionSyncSignersCodec, getTransactionSyncSignersDecoder, getTransactionSyncSignersEncoder, getTransferFeeAccountExtensionCodec, getTransferFeeAccountExtensionDecoder, getTransferFeeAccountExtensionEncoder, getTransferHookAccountExtensionCodec, getTransferHookAccountExtensionDecoder, getTransferHookAccountExtensionEncoder, getTransportsCodec, getTransportsDecoder, getTransportsEncoder, getUserAccountAddress, getUserCodec, getUserCreationArgsCodec, getUserCreationArgsDecoder, getUserCreationArgsEncoder, getUserDecoder, getUserEncoder, getUserMutArgsCodec, getUserMutArgsDecoder, getUserMutArgsEncoder, getUserReadOnlyArgsCodec, getUserReadOnlyArgsDecoder, getUserReadOnlyArgsEncoder, getUserReadOnlyOrMutateArgsCodec, getUserReadOnlyOrMutateArgsDecoder, getUserReadOnlyOrMutateArgsEncoder, getUserRoleCodec, getUserRoleDecoder, getUserRoleEncoder, getWalletAddressFromIndex, getWalletAddressFromSettings, getWhitelistedAddressTreeCodec, getWhitelistedAddressTreeDecoder, getWhitelistedAddressTreeDiscriminatorBytes, getWhitelistedAddressTreeEncoder, getWhitelistedAddressTreeFromIndex, getWhitelistedAddressTreeIndexFromAddress, getWhitelistedAddressTreesAddress, identifyMultiWalletAccount, identifyMultiWalletInstruction, initialize, isConfigAction, isExtensionStruct, isMultiWalletError, isTransactionSyncSigners, isUserReadOnlyOrMutateArgs, nativeTransferIntent, parseAddWhitelistedAddressTreesInstruction, parseChangeConfigCompressedInstruction, parseChangeConfigInstruction, parseCreateCompressedWalletInstruction, parseCreateDomainConfigInstruction, parseCreateDomainUserAccountInstruction, parseCreateGlobalCounterInstruction, parseCreateUserAccountsInstruction, parseDecompressSettingsAccountInstruction, parseDisableDomainConfigInstruction, parseEditDomainConfigInstruction, parseEditTransactionManagerUrlInstruction, parseEditUserDelegateInstruction, parseNativeTransferIntentCompressedInstruction, parseNativeTransferIntentInstruction, parseSecp256r1VerifyInstruction, parseTokenTransferIntentCompressedInstruction, parseTokenTransferIntentInstruction, parseTransactionBufferCloseCompressedInstruction, parseTransactionBufferCloseInstruction, parseTransactionBufferCreateCompressedInstruction, parseTransactionBufferCreateInstruction, parseTransactionBufferExecuteCompressedInstruction, parseTransactionBufferExecuteInstruction, parseTransactionBufferExtendCompressedInstruction, parseTransactionBufferExtendInstruction, parseTransactionBufferVoteCompressedInstruction, parseTransactionBufferVoteInstruction, parseTransactionExecuteCompressedInstruction, parseTransactionExecuteInstruction, parseTransactionExecuteSyncCompressedInstruction, parseTransactionExecuteSyncInstruction, pollJitoBundleConfirmation, prepareChangeConfigArgs, prepareTransactionBundle, prepareTransactionMessage, prepareTransactionSync, retrieveTransactionManager, sendJitoBundle, serializeConfigActions, signAndSendBundledTransactions, signAndSendTransaction, tokenTransferIntent, transactionSyncSigners, userReadOnlyOrMutateArgs, vaultTransactionMessageDeserialize, vaultTransactionMessageSerialize, voteTransactionBuffer };
|