@revibase/core 0.0.60 → 0.1.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/README.md +35 -18
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +42 -477
- package/dist/index.d.ts +42 -477
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -60,15 +60,6 @@ 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
|
-
type AdditionalMetadata = {
|
|
64
|
-
key: ReadonlyUint8Array;
|
|
65
|
-
value: ReadonlyUint8Array;
|
|
66
|
-
};
|
|
67
|
-
type AdditionalMetadataArgs = AdditionalMetadata;
|
|
68
|
-
declare function getAdditionalMetadataEncoder(): Encoder<AdditionalMetadataArgs>;
|
|
69
|
-
declare function getAdditionalMetadataDecoder(): Decoder<AdditionalMetadata>;
|
|
70
|
-
declare function getAdditionalMetadataCodec(): Codec<AdditionalMetadataArgs, AdditionalMetadata>;
|
|
71
|
-
|
|
72
63
|
type AddMemberArgs$1 = {
|
|
73
64
|
memberKey: MemberKey;
|
|
74
65
|
permissions: IPermissions;
|
|
@@ -119,20 +110,6 @@ declare function getCompressedAccountMetaReadOnlyEncoder(): FixedSizeEncoder<Com
|
|
|
119
110
|
declare function getCompressedAccountMetaReadOnlyDecoder(): FixedSizeDecoder<CompressedAccountMetaReadOnly>;
|
|
120
111
|
declare function getCompressedAccountMetaReadOnlyCodec(): FixedSizeCodec<CompressedAccountMetaReadOnlyArgs, CompressedAccountMetaReadOnly>;
|
|
121
112
|
|
|
122
|
-
type CompressedOnlyExtension = {
|
|
123
|
-
delegatedAmount: bigint;
|
|
124
|
-
withheldTransferFee: bigint;
|
|
125
|
-
isAta: number;
|
|
126
|
-
};
|
|
127
|
-
type CompressedOnlyExtensionArgs = {
|
|
128
|
-
delegatedAmount: number | bigint;
|
|
129
|
-
withheldTransferFee: number | bigint;
|
|
130
|
-
isAta: number;
|
|
131
|
-
};
|
|
132
|
-
declare function getCompressedOnlyExtensionEncoder(): FixedSizeEncoder<CompressedOnlyExtensionArgs>;
|
|
133
|
-
declare function getCompressedOnlyExtensionDecoder(): FixedSizeDecoder<CompressedOnlyExtension>;
|
|
134
|
-
declare function getCompressedOnlyExtensionCodec(): FixedSizeCodec<CompressedOnlyExtensionArgs, CompressedOnlyExtension>;
|
|
135
|
-
|
|
136
113
|
type CompressedProof = {
|
|
137
114
|
a: ReadonlyUint8Array;
|
|
138
115
|
b: ReadonlyUint8Array;
|
|
@@ -175,74 +152,6 @@ declare function getCompressedSettingsDataEncoder(): Encoder<CompressedSettingsD
|
|
|
175
152
|
declare function getCompressedSettingsDataDecoder(): Decoder<CompressedSettingsData>;
|
|
176
153
|
declare function getCompressedSettingsDataCodec(): Codec<CompressedSettingsDataArgs, CompressedSettingsData>;
|
|
177
154
|
|
|
178
|
-
type CompressedTokenArgs = {
|
|
179
|
-
version: number;
|
|
180
|
-
rootIndex: number;
|
|
181
|
-
amount: bigint;
|
|
182
|
-
merkleContext: PackedMerkleContext;
|
|
183
|
-
tlv: Option<Array<ExtensionStruct>>;
|
|
184
|
-
hasDelegate: boolean;
|
|
185
|
-
isFrozen: boolean;
|
|
186
|
-
};
|
|
187
|
-
type CompressedTokenArgsArgs = {
|
|
188
|
-
version: number;
|
|
189
|
-
rootIndex: number;
|
|
190
|
-
amount: number | bigint;
|
|
191
|
-
merkleContext: PackedMerkleContextArgs;
|
|
192
|
-
tlv: OptionOrNullable<Array<ExtensionStructArgs>>;
|
|
193
|
-
hasDelegate: boolean;
|
|
194
|
-
isFrozen: boolean;
|
|
195
|
-
};
|
|
196
|
-
declare function getCompressedTokenArgsEncoder(): Encoder<CompressedTokenArgsArgs>;
|
|
197
|
-
declare function getCompressedTokenArgsDecoder(): Decoder<CompressedTokenArgs>;
|
|
198
|
-
declare function getCompressedTokenArgsCodec(): Codec<CompressedTokenArgsArgs, CompressedTokenArgs>;
|
|
199
|
-
|
|
200
|
-
type CompressibleExtension = {
|
|
201
|
-
decimalsOption: number;
|
|
202
|
-
decimals: number;
|
|
203
|
-
compressionOnly: boolean;
|
|
204
|
-
isAta: number;
|
|
205
|
-
info: CompressionInfo;
|
|
206
|
-
};
|
|
207
|
-
type CompressibleExtensionArgs = {
|
|
208
|
-
decimalsOption: number;
|
|
209
|
-
decimals: number;
|
|
210
|
-
compressionOnly: boolean;
|
|
211
|
-
isAta: number;
|
|
212
|
-
info: CompressionInfoArgs;
|
|
213
|
-
};
|
|
214
|
-
declare function getCompressibleExtensionEncoder(): FixedSizeEncoder<CompressibleExtensionArgs>;
|
|
215
|
-
declare function getCompressibleExtensionDecoder(): FixedSizeDecoder<CompressibleExtension>;
|
|
216
|
-
declare function getCompressibleExtensionCodec(): FixedSizeCodec<CompressibleExtensionArgs, CompressibleExtension>;
|
|
217
|
-
|
|
218
|
-
type CompressionInfo = {
|
|
219
|
-
configAccountVersion: number;
|
|
220
|
-
compressToPubkey: number;
|
|
221
|
-
accountVersion: number;
|
|
222
|
-
lamportsPerWrite: number;
|
|
223
|
-
compressionAuthority: ReadonlyUint8Array;
|
|
224
|
-
rentSponsor: ReadonlyUint8Array;
|
|
225
|
-
lastClaimedSlot: bigint;
|
|
226
|
-
rentExemptionPaid: number;
|
|
227
|
-
reserved: number;
|
|
228
|
-
rentConfig: RentConfig;
|
|
229
|
-
};
|
|
230
|
-
type CompressionInfoArgs = {
|
|
231
|
-
configAccountVersion: number;
|
|
232
|
-
compressToPubkey: number;
|
|
233
|
-
accountVersion: number;
|
|
234
|
-
lamportsPerWrite: number;
|
|
235
|
-
compressionAuthority: ReadonlyUint8Array;
|
|
236
|
-
rentSponsor: ReadonlyUint8Array;
|
|
237
|
-
lastClaimedSlot: number | bigint;
|
|
238
|
-
rentExemptionPaid: number;
|
|
239
|
-
reserved: number;
|
|
240
|
-
rentConfig: RentConfigArgs;
|
|
241
|
-
};
|
|
242
|
-
declare function getCompressionInfoEncoder(): FixedSizeEncoder<CompressionInfoArgs>;
|
|
243
|
-
declare function getCompressionInfoDecoder(): FixedSizeDecoder<CompressionInfo>;
|
|
244
|
-
declare function getCompressionInfoCodec(): FixedSizeCodec<CompressionInfoArgs, CompressionInfo>;
|
|
245
|
-
|
|
246
155
|
type ConfigAction = {
|
|
247
156
|
__kind: "EditPermissions";
|
|
248
157
|
fields: readonly [Array<EditMemberArgs$1>];
|
|
@@ -320,194 +229,6 @@ declare function getExpectedSignerEncoder(): Encoder<ExpectedSignerArgs>;
|
|
|
320
229
|
declare function getExpectedSignerDecoder(): Decoder<ExpectedSigner>;
|
|
321
230
|
declare function getExpectedSignerCodec(): Codec<ExpectedSignerArgs, ExpectedSigner>;
|
|
322
231
|
|
|
323
|
-
type ExtensionStruct = {
|
|
324
|
-
__kind: "Placeholder0";
|
|
325
|
-
} | {
|
|
326
|
-
__kind: "Placeholder1";
|
|
327
|
-
} | {
|
|
328
|
-
__kind: "Placeholder2";
|
|
329
|
-
} | {
|
|
330
|
-
__kind: "Placeholder3";
|
|
331
|
-
} | {
|
|
332
|
-
__kind: "Placeholder4";
|
|
333
|
-
} | {
|
|
334
|
-
__kind: "Placeholder5";
|
|
335
|
-
} | {
|
|
336
|
-
__kind: "Placeholder6";
|
|
337
|
-
} | {
|
|
338
|
-
__kind: "Placeholder7";
|
|
339
|
-
} | {
|
|
340
|
-
__kind: "Placeholder8";
|
|
341
|
-
} | {
|
|
342
|
-
__kind: "Placeholder9";
|
|
343
|
-
} | {
|
|
344
|
-
__kind: "Placeholder10";
|
|
345
|
-
} | {
|
|
346
|
-
__kind: "Placeholder11";
|
|
347
|
-
} | {
|
|
348
|
-
__kind: "Placeholder12";
|
|
349
|
-
} | {
|
|
350
|
-
__kind: "Placeholder13";
|
|
351
|
-
} | {
|
|
352
|
-
__kind: "Placeholder14";
|
|
353
|
-
} | {
|
|
354
|
-
__kind: "Placeholder15";
|
|
355
|
-
} | {
|
|
356
|
-
__kind: "Placeholder16";
|
|
357
|
-
} | {
|
|
358
|
-
__kind: "Placeholder17";
|
|
359
|
-
} | {
|
|
360
|
-
__kind: "Placeholder18";
|
|
361
|
-
} | {
|
|
362
|
-
__kind: "TokenMetadata";
|
|
363
|
-
fields: readonly [TokenMetadata];
|
|
364
|
-
} | {
|
|
365
|
-
__kind: "Placeholder20";
|
|
366
|
-
} | {
|
|
367
|
-
__kind: "Placeholder21";
|
|
368
|
-
} | {
|
|
369
|
-
__kind: "Placeholder22";
|
|
370
|
-
} | {
|
|
371
|
-
__kind: "Placeholder23";
|
|
372
|
-
} | {
|
|
373
|
-
__kind: "Placeholder24";
|
|
374
|
-
} | {
|
|
375
|
-
__kind: "Placeholder25";
|
|
376
|
-
} | {
|
|
377
|
-
__kind: "Placeholder26";
|
|
378
|
-
} | {
|
|
379
|
-
__kind: "PausableAccount";
|
|
380
|
-
fields: readonly [PausableAccountExtension];
|
|
381
|
-
} | {
|
|
382
|
-
__kind: "PermanentDelegateAccount";
|
|
383
|
-
fields: readonly [PermanentDelegateAccountExtension];
|
|
384
|
-
} | {
|
|
385
|
-
__kind: "TransferFeeAccount";
|
|
386
|
-
fields: readonly [TransferFeeAccountExtension];
|
|
387
|
-
} | {
|
|
388
|
-
__kind: "TransferHookAccount";
|
|
389
|
-
fields: readonly [TransferHookAccountExtension];
|
|
390
|
-
} | {
|
|
391
|
-
__kind: "CompressedOnly";
|
|
392
|
-
fields: readonly [CompressedOnlyExtension];
|
|
393
|
-
} | {
|
|
394
|
-
__kind: "Compressible";
|
|
395
|
-
fields: readonly [CompressibleExtension];
|
|
396
|
-
};
|
|
397
|
-
type ExtensionStructArgs = {
|
|
398
|
-
__kind: "Placeholder0";
|
|
399
|
-
} | {
|
|
400
|
-
__kind: "Placeholder1";
|
|
401
|
-
} | {
|
|
402
|
-
__kind: "Placeholder2";
|
|
403
|
-
} | {
|
|
404
|
-
__kind: "Placeholder3";
|
|
405
|
-
} | {
|
|
406
|
-
__kind: "Placeholder4";
|
|
407
|
-
} | {
|
|
408
|
-
__kind: "Placeholder5";
|
|
409
|
-
} | {
|
|
410
|
-
__kind: "Placeholder6";
|
|
411
|
-
} | {
|
|
412
|
-
__kind: "Placeholder7";
|
|
413
|
-
} | {
|
|
414
|
-
__kind: "Placeholder8";
|
|
415
|
-
} | {
|
|
416
|
-
__kind: "Placeholder9";
|
|
417
|
-
} | {
|
|
418
|
-
__kind: "Placeholder10";
|
|
419
|
-
} | {
|
|
420
|
-
__kind: "Placeholder11";
|
|
421
|
-
} | {
|
|
422
|
-
__kind: "Placeholder12";
|
|
423
|
-
} | {
|
|
424
|
-
__kind: "Placeholder13";
|
|
425
|
-
} | {
|
|
426
|
-
__kind: "Placeholder14";
|
|
427
|
-
} | {
|
|
428
|
-
__kind: "Placeholder15";
|
|
429
|
-
} | {
|
|
430
|
-
__kind: "Placeholder16";
|
|
431
|
-
} | {
|
|
432
|
-
__kind: "Placeholder17";
|
|
433
|
-
} | {
|
|
434
|
-
__kind: "Placeholder18";
|
|
435
|
-
} | {
|
|
436
|
-
__kind: "TokenMetadata";
|
|
437
|
-
fields: readonly [TokenMetadataArgs];
|
|
438
|
-
} | {
|
|
439
|
-
__kind: "Placeholder20";
|
|
440
|
-
} | {
|
|
441
|
-
__kind: "Placeholder21";
|
|
442
|
-
} | {
|
|
443
|
-
__kind: "Placeholder22";
|
|
444
|
-
} | {
|
|
445
|
-
__kind: "Placeholder23";
|
|
446
|
-
} | {
|
|
447
|
-
__kind: "Placeholder24";
|
|
448
|
-
} | {
|
|
449
|
-
__kind: "Placeholder25";
|
|
450
|
-
} | {
|
|
451
|
-
__kind: "Placeholder26";
|
|
452
|
-
} | {
|
|
453
|
-
__kind: "PausableAccount";
|
|
454
|
-
fields: readonly [PausableAccountExtensionArgs];
|
|
455
|
-
} | {
|
|
456
|
-
__kind: "PermanentDelegateAccount";
|
|
457
|
-
fields: readonly [PermanentDelegateAccountExtensionArgs];
|
|
458
|
-
} | {
|
|
459
|
-
__kind: "TransferFeeAccount";
|
|
460
|
-
fields: readonly [TransferFeeAccountExtensionArgs];
|
|
461
|
-
} | {
|
|
462
|
-
__kind: "TransferHookAccount";
|
|
463
|
-
fields: readonly [TransferHookAccountExtensionArgs];
|
|
464
|
-
} | {
|
|
465
|
-
__kind: "CompressedOnly";
|
|
466
|
-
fields: readonly [CompressedOnlyExtensionArgs];
|
|
467
|
-
} | {
|
|
468
|
-
__kind: "Compressible";
|
|
469
|
-
fields: readonly [CompressibleExtensionArgs];
|
|
470
|
-
};
|
|
471
|
-
declare function getExtensionStructEncoder(): Encoder<ExtensionStructArgs>;
|
|
472
|
-
declare function getExtensionStructDecoder(): Decoder<ExtensionStruct>;
|
|
473
|
-
declare function getExtensionStructCodec(): Codec<ExtensionStructArgs, ExtensionStruct>;
|
|
474
|
-
declare function extensionStruct(kind: "Placeholder0"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder0">;
|
|
475
|
-
declare function extensionStruct(kind: "Placeholder1"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder1">;
|
|
476
|
-
declare function extensionStruct(kind: "Placeholder2"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder2">;
|
|
477
|
-
declare function extensionStruct(kind: "Placeholder3"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder3">;
|
|
478
|
-
declare function extensionStruct(kind: "Placeholder4"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder4">;
|
|
479
|
-
declare function extensionStruct(kind: "Placeholder5"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder5">;
|
|
480
|
-
declare function extensionStruct(kind: "Placeholder6"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder6">;
|
|
481
|
-
declare function extensionStruct(kind: "Placeholder7"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder7">;
|
|
482
|
-
declare function extensionStruct(kind: "Placeholder8"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder8">;
|
|
483
|
-
declare function extensionStruct(kind: "Placeholder9"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder9">;
|
|
484
|
-
declare function extensionStruct(kind: "Placeholder10"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder10">;
|
|
485
|
-
declare function extensionStruct(kind: "Placeholder11"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder11">;
|
|
486
|
-
declare function extensionStruct(kind: "Placeholder12"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder12">;
|
|
487
|
-
declare function extensionStruct(kind: "Placeholder13"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder13">;
|
|
488
|
-
declare function extensionStruct(kind: "Placeholder14"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder14">;
|
|
489
|
-
declare function extensionStruct(kind: "Placeholder15"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder15">;
|
|
490
|
-
declare function extensionStruct(kind: "Placeholder16"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder16">;
|
|
491
|
-
declare function extensionStruct(kind: "Placeholder17"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder17">;
|
|
492
|
-
declare function extensionStruct(kind: "Placeholder18"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder18">;
|
|
493
|
-
declare function extensionStruct(kind: "TokenMetadata", data: GetDiscriminatedUnionVariantContent<ExtensionStructArgs, "__kind", "TokenMetadata">["fields"]): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "TokenMetadata">;
|
|
494
|
-
declare function extensionStruct(kind: "Placeholder20"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder20">;
|
|
495
|
-
declare function extensionStruct(kind: "Placeholder21"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder21">;
|
|
496
|
-
declare function extensionStruct(kind: "Placeholder22"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder22">;
|
|
497
|
-
declare function extensionStruct(kind: "Placeholder23"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder23">;
|
|
498
|
-
declare function extensionStruct(kind: "Placeholder24"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder24">;
|
|
499
|
-
declare function extensionStruct(kind: "Placeholder25"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder25">;
|
|
500
|
-
declare function extensionStruct(kind: "Placeholder26"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder26">;
|
|
501
|
-
declare function extensionStruct(kind: "PausableAccount", data: GetDiscriminatedUnionVariantContent<ExtensionStructArgs, "__kind", "PausableAccount">["fields"]): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "PausableAccount">;
|
|
502
|
-
declare function extensionStruct(kind: "PermanentDelegateAccount", data: GetDiscriminatedUnionVariantContent<ExtensionStructArgs, "__kind", "PermanentDelegateAccount">["fields"]): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "PermanentDelegateAccount">;
|
|
503
|
-
declare function extensionStruct(kind: "TransferFeeAccount", data: GetDiscriminatedUnionVariantContent<ExtensionStructArgs, "__kind", "TransferFeeAccount">["fields"]): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "TransferFeeAccount">;
|
|
504
|
-
declare function extensionStruct(kind: "TransferHookAccount", data: GetDiscriminatedUnionVariantContent<ExtensionStructArgs, "__kind", "TransferHookAccount">["fields"]): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "TransferHookAccount">;
|
|
505
|
-
declare function extensionStruct(kind: "CompressedOnly", data: GetDiscriminatedUnionVariantContent<ExtensionStructArgs, "__kind", "CompressedOnly">["fields"]): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "CompressedOnly">;
|
|
506
|
-
declare function extensionStruct(kind: "Compressible", data: GetDiscriminatedUnionVariantContent<ExtensionStructArgs, "__kind", "Compressible">["fields"]): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Compressible">;
|
|
507
|
-
declare function isExtensionStruct<K extends ExtensionStruct["__kind"]>(kind: K, value: ExtensionStruct): value is ExtensionStruct & {
|
|
508
|
-
__kind: K;
|
|
509
|
-
};
|
|
510
|
-
|
|
511
232
|
type LinkWalletArgs = {
|
|
512
233
|
settingsMutArgs: SettingsMutArgs;
|
|
513
234
|
transactionManager: Option<UserReadOnlyArgs>;
|
|
@@ -569,17 +290,6 @@ declare function getPackedAddressTreeInfoEncoder(): FixedSizeEncoder<PackedAddre
|
|
|
569
290
|
declare function getPackedAddressTreeInfoDecoder(): FixedSizeDecoder<PackedAddressTreeInfo>;
|
|
570
291
|
declare function getPackedAddressTreeInfoCodec(): FixedSizeCodec<PackedAddressTreeInfoArgs, PackedAddressTreeInfo>;
|
|
571
292
|
|
|
572
|
-
type PackedMerkleContext = {
|
|
573
|
-
merkleTreePubkeyIndex: number;
|
|
574
|
-
queuePubkeyIndex: number;
|
|
575
|
-
leafIndex: number;
|
|
576
|
-
proveByIndex: boolean;
|
|
577
|
-
};
|
|
578
|
-
type PackedMerkleContextArgs = PackedMerkleContext;
|
|
579
|
-
declare function getPackedMerkleContextEncoder(): FixedSizeEncoder<PackedMerkleContextArgs>;
|
|
580
|
-
declare function getPackedMerkleContextDecoder(): FixedSizeDecoder<PackedMerkleContext>;
|
|
581
|
-
declare function getPackedMerkleContextCodec(): FixedSizeCodec<PackedMerkleContextArgs, PackedMerkleContext>;
|
|
582
|
-
|
|
583
293
|
type PackedStateTreeInfo = {
|
|
584
294
|
rootIndex: number;
|
|
585
295
|
proveByIndex: boolean;
|
|
@@ -592,18 +302,6 @@ declare function getPackedStateTreeInfoEncoder(): FixedSizeEncoder<PackedStateTr
|
|
|
592
302
|
declare function getPackedStateTreeInfoDecoder(): FixedSizeDecoder<PackedStateTreeInfo>;
|
|
593
303
|
declare function getPackedStateTreeInfoCodec(): FixedSizeCodec<PackedStateTreeInfoArgs, PackedStateTreeInfo>;
|
|
594
304
|
|
|
595
|
-
type PausableAccountExtension = {};
|
|
596
|
-
type PausableAccountExtensionArgs = PausableAccountExtension;
|
|
597
|
-
declare function getPausableAccountExtensionEncoder(): FixedSizeEncoder<PausableAccountExtensionArgs>;
|
|
598
|
-
declare function getPausableAccountExtensionDecoder(): FixedSizeDecoder<PausableAccountExtension>;
|
|
599
|
-
declare function getPausableAccountExtensionCodec(): FixedSizeCodec<PausableAccountExtensionArgs, PausableAccountExtension>;
|
|
600
|
-
|
|
601
|
-
type PermanentDelegateAccountExtension = {};
|
|
602
|
-
type PermanentDelegateAccountExtensionArgs = PermanentDelegateAccountExtension;
|
|
603
|
-
declare function getPermanentDelegateAccountExtensionEncoder(): FixedSizeEncoder<PermanentDelegateAccountExtensionArgs>;
|
|
604
|
-
declare function getPermanentDelegateAccountExtensionDecoder(): FixedSizeDecoder<PermanentDelegateAccountExtension>;
|
|
605
|
-
declare function getPermanentDelegateAccountExtensionCodec(): FixedSizeCodec<PermanentDelegateAccountExtensionArgs, PermanentDelegateAccountExtension>;
|
|
606
|
-
|
|
607
305
|
type IPermissions = {
|
|
608
306
|
mask: number;
|
|
609
307
|
};
|
|
@@ -636,18 +334,6 @@ declare function getRemoveMemberArgsEncoder(): Encoder<RemoveMemberArgsArgs>;
|
|
|
636
334
|
declare function getRemoveMemberArgsDecoder(): Decoder<RemoveMemberArgs$1>;
|
|
637
335
|
declare function getRemoveMemberArgsCodec(): Codec<RemoveMemberArgsArgs, RemoveMemberArgs$1>;
|
|
638
336
|
|
|
639
|
-
type RentConfig = {
|
|
640
|
-
baseRent: number;
|
|
641
|
-
compressionCost: number;
|
|
642
|
-
lamportsPerBytePerEpoch: number;
|
|
643
|
-
maxFundedEpochs: number;
|
|
644
|
-
maxTopUp: number;
|
|
645
|
-
};
|
|
646
|
-
type RentConfigArgs = RentConfig;
|
|
647
|
-
declare function getRentConfigEncoder(): FixedSizeEncoder<RentConfigArgs>;
|
|
648
|
-
declare function getRentConfigDecoder(): FixedSizeDecoder<RentConfig>;
|
|
649
|
-
declare function getRentConfigCodec(): FixedSizeCodec<RentConfigArgs, RentConfig>;
|
|
650
|
-
|
|
651
337
|
type Secp256r1Pubkey = readonly [ReadonlyUint8Array];
|
|
652
338
|
type Secp256r1PubkeyArgs = Secp256r1Pubkey;
|
|
653
339
|
declare function getSecp256r1PubkeyEncoder(): FixedSizeEncoder<Secp256r1PubkeyArgs>;
|
|
@@ -736,35 +422,6 @@ declare function getSettingsReadonlyArgsEncoder(): Encoder<SettingsReadonlyArgsA
|
|
|
736
422
|
declare function getSettingsReadonlyArgsDecoder(): Decoder<SettingsReadonlyArgs>;
|
|
737
423
|
declare function getSettingsReadonlyArgsCodec(): Codec<SettingsReadonlyArgsArgs, SettingsReadonlyArgs>;
|
|
738
424
|
|
|
739
|
-
type SplInterfacePdaArgs = {
|
|
740
|
-
index: number;
|
|
741
|
-
restricted: boolean;
|
|
742
|
-
};
|
|
743
|
-
type SplInterfacePdaArgsArgs = SplInterfacePdaArgs;
|
|
744
|
-
declare function getSplInterfacePdaArgsEncoder(): FixedSizeEncoder<SplInterfacePdaArgsArgs>;
|
|
745
|
-
declare function getSplInterfacePdaArgsDecoder(): FixedSizeDecoder<SplInterfacePdaArgs>;
|
|
746
|
-
declare function getSplInterfacePdaArgsCodec(): FixedSizeCodec<SplInterfacePdaArgsArgs, SplInterfacePdaArgs>;
|
|
747
|
-
|
|
748
|
-
type TokenMetadata = {
|
|
749
|
-
updateAuthority: Address;
|
|
750
|
-
mint: Address;
|
|
751
|
-
name: ReadonlyUint8Array;
|
|
752
|
-
symbol: ReadonlyUint8Array;
|
|
753
|
-
uri: ReadonlyUint8Array;
|
|
754
|
-
additionalMetadata: Array<AdditionalMetadata>;
|
|
755
|
-
};
|
|
756
|
-
type TokenMetadataArgs = {
|
|
757
|
-
updateAuthority: Address;
|
|
758
|
-
mint: Address;
|
|
759
|
-
name: ReadonlyUint8Array;
|
|
760
|
-
symbol: ReadonlyUint8Array;
|
|
761
|
-
uri: ReadonlyUint8Array;
|
|
762
|
-
additionalMetadata: Array<AdditionalMetadataArgs>;
|
|
763
|
-
};
|
|
764
|
-
declare function getTokenMetadataEncoder(): Encoder<TokenMetadataArgs>;
|
|
765
|
-
declare function getTokenMetadataDecoder(): Decoder<TokenMetadata>;
|
|
766
|
-
declare function getTokenMetadataCodec(): Codec<TokenMetadataArgs, TokenMetadata>;
|
|
767
|
-
|
|
768
425
|
type TransactionBufferCreateArgs = {
|
|
769
426
|
bufferIndex: number;
|
|
770
427
|
preauthorizeExecution: boolean;
|
|
@@ -838,24 +495,6 @@ declare function isTransactionSyncSigners<K extends TransactionSyncSigners["__ki
|
|
|
838
495
|
__kind: K;
|
|
839
496
|
};
|
|
840
497
|
|
|
841
|
-
type TransferFeeAccountExtension = {
|
|
842
|
-
withheldAmount: bigint;
|
|
843
|
-
};
|
|
844
|
-
type TransferFeeAccountExtensionArgs = {
|
|
845
|
-
withheldAmount: number | bigint;
|
|
846
|
-
};
|
|
847
|
-
declare function getTransferFeeAccountExtensionEncoder(): FixedSizeEncoder<TransferFeeAccountExtensionArgs>;
|
|
848
|
-
declare function getTransferFeeAccountExtensionDecoder(): FixedSizeDecoder<TransferFeeAccountExtension>;
|
|
849
|
-
declare function getTransferFeeAccountExtensionCodec(): FixedSizeCodec<TransferFeeAccountExtensionArgs, TransferFeeAccountExtension>;
|
|
850
|
-
|
|
851
|
-
type TransferHookAccountExtension = {
|
|
852
|
-
transferring: number;
|
|
853
|
-
};
|
|
854
|
-
type TransferHookAccountExtensionArgs = TransferHookAccountExtension;
|
|
855
|
-
declare function getTransferHookAccountExtensionEncoder(): FixedSizeEncoder<TransferHookAccountExtensionArgs>;
|
|
856
|
-
declare function getTransferHookAccountExtensionDecoder(): FixedSizeDecoder<TransferHookAccountExtension>;
|
|
857
|
-
declare function getTransferHookAccountExtensionCodec(): FixedSizeCodec<TransferHookAccountExtensionArgs, TransferHookAccountExtension>;
|
|
858
|
-
|
|
859
498
|
declare enum Transports {
|
|
860
499
|
Ble = 0,
|
|
861
500
|
Cable = 1,
|
|
@@ -2206,40 +1845,27 @@ declare function parseNativeTransferIntentCompressedInstruction<TProgram extends
|
|
|
2206
1845
|
|
|
2207
1846
|
declare const TOKEN_TRANSFER_INTENT_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
2208
1847
|
declare function getTokenTransferIntentDiscriminatorBytes(): ReadonlyUint8Array;
|
|
2209
|
-
type TokenTransferIntentInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string,
|
|
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, TAccountAssociatedTokenProgram extends string | AccountMeta<string> = "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL", TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
2210
1849
|
TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
|
|
2211
|
-
TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
|
|
2212
1850
|
TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
|
|
2213
1851
|
TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
|
|
2214
|
-
TAccountSource extends string ?
|
|
1852
|
+
TAccountSource extends string ? WritableAccount<TAccountSource> : TAccountSource,
|
|
2215
1853
|
TAccountSourceSplTokenAccount extends string ? WritableAccount<TAccountSourceSplTokenAccount> : TAccountSourceSplTokenAccount,
|
|
2216
|
-
TAccountSourceCtokenTokenAccount extends string ? WritableAccount<TAccountSourceCtokenTokenAccount> : TAccountSourceCtokenTokenAccount,
|
|
2217
1854
|
TAccountDestination extends string ? ReadonlyAccount<TAccountDestination> : TAccountDestination,
|
|
2218
1855
|
TAccountDestinationSplTokenAccount extends string ? WritableAccount<TAccountDestinationSplTokenAccount> : TAccountDestinationSplTokenAccount,
|
|
2219
|
-
TAccountDestinationCtokenTokenAccount extends string ? WritableAccount<TAccountDestinationCtokenTokenAccount> : TAccountDestinationCtokenTokenAccount,
|
|
2220
1856
|
TAccountTokenProgram extends string ? ReadonlyAccount<TAccountTokenProgram> : TAccountTokenProgram,
|
|
2221
1857
|
TAccountMint extends string ? ReadonlyAccount<TAccountMint> : TAccountMint,
|
|
1858
|
+
TAccountAssociatedTokenProgram extends string ? ReadonlyAccount<TAccountAssociatedTokenProgram> : TAccountAssociatedTokenProgram,
|
|
2222
1859
|
TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
|
|
2223
|
-
TAccountCompressedTokenProgramAuthority extends string ? ReadonlyAccount<TAccountCompressedTokenProgramAuthority> : TAccountCompressedTokenProgramAuthority,
|
|
2224
|
-
TAccountSplInterfacePda extends string ? WritableAccount<TAccountSplInterfacePda> : TAccountSplInterfacePda,
|
|
2225
|
-
TAccountCompressibleConfig extends string ? ReadonlyAccount<TAccountCompressibleConfig> : TAccountCompressibleConfig,
|
|
2226
|
-
TAccountRentSponsor extends string ? WritableAccount<TAccountRentSponsor> : TAccountRentSponsor,
|
|
2227
|
-
TAccountCompressedTokenProgram extends string ? ReadonlyAccount<TAccountCompressedTokenProgram> : TAccountCompressedTokenProgram,
|
|
2228
1860
|
...TRemainingAccounts
|
|
2229
1861
|
]>;
|
|
2230
1862
|
type TokenTransferIntentInstructionData = {
|
|
2231
1863
|
discriminator: ReadonlyUint8Array;
|
|
2232
|
-
splInterfacePdaArgs: Option<SplInterfacePdaArgs>;
|
|
2233
1864
|
amount: bigint;
|
|
2234
|
-
sourceCompressedTokenAccounts: Option<Array<CompressedTokenArgs>>;
|
|
2235
|
-
compressedProofArgs: Option<ProofArgs>;
|
|
2236
1865
|
signers: Array<TransactionSyncSigners>;
|
|
2237
1866
|
};
|
|
2238
1867
|
type TokenTransferIntentInstructionDataArgs = {
|
|
2239
|
-
splInterfacePdaArgs: OptionOrNullable<SplInterfacePdaArgsArgs>;
|
|
2240
1868
|
amount: number | bigint;
|
|
2241
|
-
sourceCompressedTokenAccounts: OptionOrNullable<Array<CompressedTokenArgsArgs>>;
|
|
2242
|
-
compressedProofArgs: OptionOrNullable<ProofArgsArgs>;
|
|
2243
1869
|
signers: Array<TransactionSyncSignersArgs>;
|
|
2244
1870
|
};
|
|
2245
1871
|
declare function getTokenTransferIntentInstructionDataEncoder(): Encoder<TokenTransferIntentInstructionDataArgs>;
|
|
@@ -2251,85 +1877,58 @@ type TokenTransferIntentInstructionExtraArgs = {
|
|
|
2251
1877
|
role: number;
|
|
2252
1878
|
}>;
|
|
2253
1879
|
};
|
|
2254
|
-
type TokenTransferIntentAsyncInput<TAccountSettings extends string = string,
|
|
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, TAccountAssociatedTokenProgram extends string = string, TAccountSystemProgram extends string = string> = {
|
|
2255
1881
|
settings: Address<TAccountSettings>;
|
|
2256
|
-
payer: TransactionSigner<TAccountPayer>;
|
|
2257
1882
|
slotHashSysvar?: Address<TAccountSlotHashSysvar>;
|
|
2258
1883
|
instructionsSysvar?: Address<TAccountInstructionsSysvar>;
|
|
2259
1884
|
source?: Address<TAccountSource>;
|
|
2260
1885
|
sourceSplTokenAccount?: Address<TAccountSourceSplTokenAccount>;
|
|
2261
|
-
sourceCtokenTokenAccount?: Address<TAccountSourceCtokenTokenAccount>;
|
|
2262
1886
|
destination: Address<TAccountDestination>;
|
|
2263
1887
|
destinationSplTokenAccount?: Address<TAccountDestinationSplTokenAccount>;
|
|
2264
|
-
destinationCtokenTokenAccount?: Address<TAccountDestinationCtokenTokenAccount>;
|
|
2265
1888
|
tokenProgram?: Address<TAccountTokenProgram>;
|
|
2266
1889
|
mint: Address<TAccountMint>;
|
|
1890
|
+
associatedTokenProgram?: Address<TAccountAssociatedTokenProgram>;
|
|
2267
1891
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
2268
|
-
compressedTokenProgramAuthority?: Address<TAccountCompressedTokenProgramAuthority>;
|
|
2269
|
-
splInterfacePda?: Address<TAccountSplInterfacePda>;
|
|
2270
|
-
compressibleConfig: Address<TAccountCompressibleConfig>;
|
|
2271
|
-
rentSponsor?: Address<TAccountRentSponsor>;
|
|
2272
|
-
compressedTokenProgram?: Address<TAccountCompressedTokenProgram>;
|
|
2273
|
-
splInterfacePdaArgs: TokenTransferIntentInstructionDataArgs["splInterfacePdaArgs"];
|
|
2274
1892
|
amount: TokenTransferIntentInstructionDataArgs["amount"];
|
|
2275
|
-
sourceCompressedTokenAccounts: TokenTransferIntentInstructionDataArgs["sourceCompressedTokenAccounts"];
|
|
2276
|
-
compressedProofArgs: TokenTransferIntentInstructionDataArgs["compressedProofArgs"];
|
|
2277
1893
|
signers: TokenTransferIntentInstructionDataArgs["signers"];
|
|
2278
1894
|
remainingAccounts: TokenTransferIntentInstructionExtraArgs["remainingAccounts"];
|
|
2279
1895
|
};
|
|
2280
|
-
declare function getTokenTransferIntentInstructionAsync<TAccountSettings extends string,
|
|
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, TAccountAssociatedTokenProgram extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentAsyncInput<TAccountSettings, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountTokenProgram, TAccountMint, TAccountAssociatedTokenProgram, TAccountSystemProgram>, config?: {
|
|
2281
1897
|
programAddress?: TProgramAddress;
|
|
2282
|
-
}): Promise<TokenTransferIntentInstruction<TProgramAddress, TAccountSettings,
|
|
2283
|
-
type TokenTransferIntentInput<TAccountSettings extends string = string,
|
|
1898
|
+
}): Promise<TokenTransferIntentInstruction<TProgramAddress, TAccountSettings, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountTokenProgram, TAccountMint, TAccountAssociatedTokenProgram, TAccountSystemProgram>>;
|
|
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, TAccountAssociatedTokenProgram extends string = string, TAccountSystemProgram extends string = string> = {
|
|
2284
1900
|
settings: Address<TAccountSettings>;
|
|
2285
|
-
payer: TransactionSigner<TAccountPayer>;
|
|
2286
1901
|
slotHashSysvar?: Address<TAccountSlotHashSysvar>;
|
|
2287
1902
|
instructionsSysvar?: Address<TAccountInstructionsSysvar>;
|
|
2288
1903
|
source: Address<TAccountSource>;
|
|
2289
1904
|
sourceSplTokenAccount: Address<TAccountSourceSplTokenAccount>;
|
|
2290
|
-
sourceCtokenTokenAccount: Address<TAccountSourceCtokenTokenAccount>;
|
|
2291
1905
|
destination: Address<TAccountDestination>;
|
|
2292
|
-
destinationSplTokenAccount
|
|
2293
|
-
destinationCtokenTokenAccount?: Address<TAccountDestinationCtokenTokenAccount>;
|
|
1906
|
+
destinationSplTokenAccount: Address<TAccountDestinationSplTokenAccount>;
|
|
2294
1907
|
tokenProgram?: Address<TAccountTokenProgram>;
|
|
2295
1908
|
mint: Address<TAccountMint>;
|
|
1909
|
+
associatedTokenProgram?: Address<TAccountAssociatedTokenProgram>;
|
|
2296
1910
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
2297
|
-
compressedTokenProgramAuthority?: Address<TAccountCompressedTokenProgramAuthority>;
|
|
2298
|
-
splInterfacePda?: Address<TAccountSplInterfacePda>;
|
|
2299
|
-
compressibleConfig: Address<TAccountCompressibleConfig>;
|
|
2300
|
-
rentSponsor?: Address<TAccountRentSponsor>;
|
|
2301
|
-
compressedTokenProgram?: Address<TAccountCompressedTokenProgram>;
|
|
2302
|
-
splInterfacePdaArgs: TokenTransferIntentInstructionDataArgs["splInterfacePdaArgs"];
|
|
2303
1911
|
amount: TokenTransferIntentInstructionDataArgs["amount"];
|
|
2304
|
-
sourceCompressedTokenAccounts: TokenTransferIntentInstructionDataArgs["sourceCompressedTokenAccounts"];
|
|
2305
|
-
compressedProofArgs: TokenTransferIntentInstructionDataArgs["compressedProofArgs"];
|
|
2306
1912
|
signers: TokenTransferIntentInstructionDataArgs["signers"];
|
|
2307
1913
|
remainingAccounts: TokenTransferIntentInstructionExtraArgs["remainingAccounts"];
|
|
2308
1914
|
};
|
|
2309
|
-
declare function getTokenTransferIntentInstruction<TAccountSettings extends string,
|
|
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, TAccountAssociatedTokenProgram extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentInput<TAccountSettings, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountTokenProgram, TAccountMint, TAccountAssociatedTokenProgram, TAccountSystemProgram>, config?: {
|
|
2310
1916
|
programAddress?: TProgramAddress;
|
|
2311
|
-
}): TokenTransferIntentInstruction<TProgramAddress, TAccountSettings,
|
|
1917
|
+
}): TokenTransferIntentInstruction<TProgramAddress, TAccountSettings, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountTokenProgram, TAccountMint, TAccountAssociatedTokenProgram, TAccountSystemProgram>;
|
|
2312
1918
|
type ParsedTokenTransferIntentInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
|
|
2313
1919
|
programAddress: Address<TProgram>;
|
|
2314
1920
|
accounts: {
|
|
2315
1921
|
settings: TAccountMetas[0];
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
mint: TAccountMetas[11];
|
|
2327
|
-
systemProgram: TAccountMetas[12];
|
|
2328
|
-
compressedTokenProgramAuthority: TAccountMetas[13];
|
|
2329
|
-
splInterfacePda?: TAccountMetas[14] | undefined;
|
|
2330
|
-
compressibleConfig: TAccountMetas[15];
|
|
2331
|
-
rentSponsor?: TAccountMetas[16] | undefined;
|
|
2332
|
-
compressedTokenProgram: TAccountMetas[17];
|
|
1922
|
+
slotHashSysvar?: TAccountMetas[1] | undefined;
|
|
1923
|
+
instructionsSysvar: TAccountMetas[2];
|
|
1924
|
+
source: TAccountMetas[3];
|
|
1925
|
+
sourceSplTokenAccount: TAccountMetas[4];
|
|
1926
|
+
destination: TAccountMetas[5];
|
|
1927
|
+
destinationSplTokenAccount: TAccountMetas[6];
|
|
1928
|
+
tokenProgram: TAccountMetas[7];
|
|
1929
|
+
mint: TAccountMetas[8];
|
|
1930
|
+
associatedTokenProgram: TAccountMetas[9];
|
|
1931
|
+
systemProgram: TAccountMetas[10];
|
|
2333
1932
|
};
|
|
2334
1933
|
data: TokenTransferIntentInstructionData;
|
|
2335
1934
|
};
|
|
@@ -2337,39 +1936,29 @@ declare function parseTokenTransferIntentInstruction<TProgram extends string, TA
|
|
|
2337
1936
|
|
|
2338
1937
|
declare const TOKEN_TRANSFER_INTENT_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
2339
1938
|
declare function getTokenTransferIntentCompressedDiscriminatorBytes(): ReadonlyUint8Array;
|
|
2340
|
-
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,
|
|
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, TAccountAssociatedTokenProgram extends string | AccountMeta<string> = "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL", TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
2341
1940
|
TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
|
|
2342
1941
|
TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
|
|
2343
1942
|
TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
|
|
2344
|
-
TAccountSource extends string ?
|
|
1943
|
+
TAccountSource extends string ? WritableAccount<TAccountSource> : TAccountSource,
|
|
2345
1944
|
TAccountSourceSplTokenAccount extends string ? WritableAccount<TAccountSourceSplTokenAccount> : TAccountSourceSplTokenAccount,
|
|
2346
|
-
TAccountSourceCtokenTokenAccount extends string ? WritableAccount<TAccountSourceCtokenTokenAccount> : TAccountSourceCtokenTokenAccount,
|
|
2347
1945
|
TAccountDestination extends string ? ReadonlyAccount<TAccountDestination> : TAccountDestination,
|
|
2348
1946
|
TAccountDestinationSplTokenAccount extends string ? WritableAccount<TAccountDestinationSplTokenAccount> : TAccountDestinationSplTokenAccount,
|
|
2349
|
-
TAccountDestinationCtokenTokenAccount extends string ? WritableAccount<TAccountDestinationCtokenTokenAccount> : TAccountDestinationCtokenTokenAccount,
|
|
2350
1947
|
TAccountTokenProgram extends string ? ReadonlyAccount<TAccountTokenProgram> : TAccountTokenProgram,
|
|
2351
1948
|
TAccountMint extends string ? ReadonlyAccount<TAccountMint> : TAccountMint,
|
|
1949
|
+
TAccountAssociatedTokenProgram extends string ? ReadonlyAccount<TAccountAssociatedTokenProgram> : TAccountAssociatedTokenProgram,
|
|
2352
1950
|
TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
|
|
2353
|
-
TAccountCompressedTokenProgramAuthority extends string ? ReadonlyAccount<TAccountCompressedTokenProgramAuthority> : TAccountCompressedTokenProgramAuthority,
|
|
2354
|
-
TAccountSplInterfacePda extends string ? WritableAccount<TAccountSplInterfacePda> : TAccountSplInterfacePda,
|
|
2355
|
-
TAccountCompressibleConfig extends string ? ReadonlyAccount<TAccountCompressibleConfig> : TAccountCompressibleConfig,
|
|
2356
|
-
TAccountRentSponsor extends string ? WritableAccount<TAccountRentSponsor> : TAccountRentSponsor,
|
|
2357
|
-
TAccountCompressedTokenProgram extends string ? ReadonlyAccount<TAccountCompressedTokenProgram> : TAccountCompressedTokenProgram,
|
|
2358
1951
|
...TRemainingAccounts
|
|
2359
1952
|
]>;
|
|
2360
1953
|
type TokenTransferIntentCompressedInstructionData = {
|
|
2361
1954
|
discriminator: ReadonlyUint8Array;
|
|
2362
|
-
splInterfacePdaArgs: Option<SplInterfacePdaArgs>;
|
|
2363
1955
|
amount: bigint;
|
|
2364
|
-
sourceCompressedTokenAccounts: Option<Array<CompressedTokenArgs>>;
|
|
2365
1956
|
signers: Array<TransactionSyncSigners>;
|
|
2366
1957
|
settingsMutArgs: SettingsMutArgs;
|
|
2367
1958
|
compressedProofArgs: ProofArgs;
|
|
2368
1959
|
};
|
|
2369
1960
|
type TokenTransferIntentCompressedInstructionDataArgs = {
|
|
2370
|
-
splInterfacePdaArgs: OptionOrNullable<SplInterfacePdaArgsArgs>;
|
|
2371
1961
|
amount: number | bigint;
|
|
2372
|
-
sourceCompressedTokenAccounts: OptionOrNullable<Array<CompressedTokenArgsArgs>>;
|
|
2373
1962
|
signers: Array<TransactionSyncSignersArgs>;
|
|
2374
1963
|
settingsMutArgs: SettingsMutArgsArgs;
|
|
2375
1964
|
compressedProofArgs: ProofArgsArgs;
|
|
@@ -2383,64 +1972,48 @@ type TokenTransferIntentCompressedInstructionExtraArgs = {
|
|
|
2383
1972
|
role: number;
|
|
2384
1973
|
}>;
|
|
2385
1974
|
};
|
|
2386
|
-
type TokenTransferIntentCompressedAsyncInput<TAccountPayer extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountSource extends string = string, TAccountSourceSplTokenAccount extends string = string,
|
|
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, TAccountAssociatedTokenProgram extends string = string, TAccountSystemProgram extends string = string> = {
|
|
2387
1976
|
payer: TransactionSigner<TAccountPayer>;
|
|
2388
1977
|
slotHashSysvar?: Address<TAccountSlotHashSysvar>;
|
|
2389
1978
|
instructionsSysvar?: Address<TAccountInstructionsSysvar>;
|
|
2390
1979
|
source: Address<TAccountSource>;
|
|
2391
1980
|
sourceSplTokenAccount?: Address<TAccountSourceSplTokenAccount>;
|
|
2392
|
-
sourceCtokenTokenAccount?: Address<TAccountSourceCtokenTokenAccount>;
|
|
2393
1981
|
destination: Address<TAccountDestination>;
|
|
2394
1982
|
destinationSplTokenAccount?: Address<TAccountDestinationSplTokenAccount>;
|
|
2395
|
-
destinationCtokenTokenAccount?: Address<TAccountDestinationCtokenTokenAccount>;
|
|
2396
1983
|
tokenProgram?: Address<TAccountTokenProgram>;
|
|
2397
1984
|
mint: Address<TAccountMint>;
|
|
1985
|
+
associatedTokenProgram?: Address<TAccountAssociatedTokenProgram>;
|
|
2398
1986
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
2399
|
-
compressedTokenProgramAuthority?: Address<TAccountCompressedTokenProgramAuthority>;
|
|
2400
|
-
splInterfacePda?: Address<TAccountSplInterfacePda>;
|
|
2401
|
-
compressibleConfig: Address<TAccountCompressibleConfig>;
|
|
2402
|
-
rentSponsor?: Address<TAccountRentSponsor>;
|
|
2403
|
-
compressedTokenProgram?: Address<TAccountCompressedTokenProgram>;
|
|
2404
|
-
splInterfacePdaArgs: TokenTransferIntentCompressedInstructionDataArgs["splInterfacePdaArgs"];
|
|
2405
1987
|
amount: TokenTransferIntentCompressedInstructionDataArgs["amount"];
|
|
2406
|
-
sourceCompressedTokenAccounts: TokenTransferIntentCompressedInstructionDataArgs["sourceCompressedTokenAccounts"];
|
|
2407
1988
|
signers: TokenTransferIntentCompressedInstructionDataArgs["signers"];
|
|
2408
1989
|
settingsMutArgs: TokenTransferIntentCompressedInstructionDataArgs["settingsMutArgs"];
|
|
2409
1990
|
compressedProofArgs: TokenTransferIntentCompressedInstructionDataArgs["compressedProofArgs"];
|
|
2410
1991
|
remainingAccounts: TokenTransferIntentCompressedInstructionExtraArgs["remainingAccounts"];
|
|
2411
1992
|
};
|
|
2412
|
-
declare function getTokenTransferIntentCompressedInstructionAsync<TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceSplTokenAccount extends string,
|
|
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, TAccountAssociatedTokenProgram extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentCompressedAsyncInput<TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountTokenProgram, TAccountMint, TAccountAssociatedTokenProgram, TAccountSystemProgram>, config?: {
|
|
2413
1994
|
programAddress?: TProgramAddress;
|
|
2414
|
-
}): Promise<TokenTransferIntentCompressedInstruction<TProgramAddress, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount,
|
|
2415
|
-
type TokenTransferIntentCompressedInput<TAccountPayer extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountSource extends string = string, TAccountSourceSplTokenAccount extends string = string,
|
|
1995
|
+
}): Promise<TokenTransferIntentCompressedInstruction<TProgramAddress, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountTokenProgram, TAccountMint, TAccountAssociatedTokenProgram, TAccountSystemProgram>>;
|
|
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, TAccountAssociatedTokenProgram extends string = string, TAccountSystemProgram extends string = string> = {
|
|
2416
1997
|
payer: TransactionSigner<TAccountPayer>;
|
|
2417
1998
|
slotHashSysvar?: Address<TAccountSlotHashSysvar>;
|
|
2418
1999
|
instructionsSysvar?: Address<TAccountInstructionsSysvar>;
|
|
2419
2000
|
source: Address<TAccountSource>;
|
|
2420
2001
|
sourceSplTokenAccount: Address<TAccountSourceSplTokenAccount>;
|
|
2421
|
-
sourceCtokenTokenAccount: Address<TAccountSourceCtokenTokenAccount>;
|
|
2422
2002
|
destination: Address<TAccountDestination>;
|
|
2423
|
-
destinationSplTokenAccount
|
|
2424
|
-
destinationCtokenTokenAccount?: Address<TAccountDestinationCtokenTokenAccount>;
|
|
2003
|
+
destinationSplTokenAccount: Address<TAccountDestinationSplTokenAccount>;
|
|
2425
2004
|
tokenProgram?: Address<TAccountTokenProgram>;
|
|
2426
2005
|
mint: Address<TAccountMint>;
|
|
2006
|
+
associatedTokenProgram?: Address<TAccountAssociatedTokenProgram>;
|
|
2427
2007
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
2428
|
-
compressedTokenProgramAuthority?: Address<TAccountCompressedTokenProgramAuthority>;
|
|
2429
|
-
splInterfacePda?: Address<TAccountSplInterfacePda>;
|
|
2430
|
-
compressibleConfig: Address<TAccountCompressibleConfig>;
|
|
2431
|
-
rentSponsor?: Address<TAccountRentSponsor>;
|
|
2432
|
-
compressedTokenProgram?: Address<TAccountCompressedTokenProgram>;
|
|
2433
|
-
splInterfacePdaArgs: TokenTransferIntentCompressedInstructionDataArgs["splInterfacePdaArgs"];
|
|
2434
2008
|
amount: TokenTransferIntentCompressedInstructionDataArgs["amount"];
|
|
2435
|
-
sourceCompressedTokenAccounts: TokenTransferIntentCompressedInstructionDataArgs["sourceCompressedTokenAccounts"];
|
|
2436
2009
|
signers: TokenTransferIntentCompressedInstructionDataArgs["signers"];
|
|
2437
2010
|
settingsMutArgs: TokenTransferIntentCompressedInstructionDataArgs["settingsMutArgs"];
|
|
2438
2011
|
compressedProofArgs: TokenTransferIntentCompressedInstructionDataArgs["compressedProofArgs"];
|
|
2439
2012
|
remainingAccounts: TokenTransferIntentCompressedInstructionExtraArgs["remainingAccounts"];
|
|
2440
2013
|
};
|
|
2441
|
-
declare function getTokenTransferIntentCompressedInstruction<TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceSplTokenAccount extends string,
|
|
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, TAccountAssociatedTokenProgram extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentCompressedInput<TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountTokenProgram, TAccountMint, TAccountAssociatedTokenProgram, TAccountSystemProgram>, config?: {
|
|
2442
2015
|
programAddress?: TProgramAddress;
|
|
2443
|
-
}): TokenTransferIntentCompressedInstruction<TProgramAddress, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount,
|
|
2016
|
+
}): TokenTransferIntentCompressedInstruction<TProgramAddress, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountTokenProgram, TAccountMint, TAccountAssociatedTokenProgram, TAccountSystemProgram>;
|
|
2444
2017
|
type ParsedTokenTransferIntentCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
|
|
2445
2018
|
programAddress: Address<TProgram>;
|
|
2446
2019
|
accounts: {
|
|
@@ -2449,18 +2022,12 @@ type ParsedTokenTransferIntentCompressedInstruction<TProgram extends string = ty
|
|
|
2449
2022
|
instructionsSysvar: TAccountMetas[2];
|
|
2450
2023
|
source: TAccountMetas[3];
|
|
2451
2024
|
sourceSplTokenAccount: TAccountMetas[4];
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
systemProgram: TAccountMetas[11];
|
|
2459
|
-
compressedTokenProgramAuthority: TAccountMetas[12];
|
|
2460
|
-
splInterfacePda?: TAccountMetas[13] | undefined;
|
|
2461
|
-
compressibleConfig: TAccountMetas[14];
|
|
2462
|
-
rentSponsor?: TAccountMetas[15] | undefined;
|
|
2463
|
-
compressedTokenProgram: TAccountMetas[16];
|
|
2025
|
+
destination: TAccountMetas[5];
|
|
2026
|
+
destinationSplTokenAccount: TAccountMetas[6];
|
|
2027
|
+
tokenProgram: TAccountMetas[7];
|
|
2028
|
+
mint: TAccountMetas[8];
|
|
2029
|
+
associatedTokenProgram: TAccountMetas[9];
|
|
2030
|
+
systemProgram: TAccountMetas[10];
|
|
2464
2031
|
};
|
|
2465
2032
|
data: TokenTransferIntentCompressedInstructionData;
|
|
2466
2033
|
};
|
|
@@ -3877,12 +3444,10 @@ type TokenTransferIntentParams = {
|
|
|
3877
3444
|
signers: (TransactionSigner | SignedSecp256r1Key)[];
|
|
3878
3445
|
tokenProgram: Address;
|
|
3879
3446
|
payer: TransactionSigner;
|
|
3880
|
-
useDestinationSplAccount?: boolean;
|
|
3881
|
-
splInterfacePdaArgs?: SplInterfacePdaArgsArgs;
|
|
3882
3447
|
compressed?: boolean;
|
|
3883
3448
|
cachedAccounts?: AccountCache;
|
|
3884
3449
|
};
|
|
3885
|
-
declare function tokenTransferIntent({ settings, settingsAddressTreeIndex, destination, mint, signers, cachedAccounts, amount, payer, tokenProgram,
|
|
3450
|
+
declare function tokenTransferIntent({ settings, settingsAddressTreeIndex, destination, mint, signers, cachedAccounts, amount, payer, tokenProgram, compressed, }: TokenTransferIntentParams): Promise<Instruction[]>;
|
|
3886
3451
|
|
|
3887
3452
|
interface MapData {
|
|
3888
3453
|
index: number;
|
|
@@ -4207,4 +3772,4 @@ declare function convertMemberKeyToString(memberKey: MemberKey): string;
|
|
|
4207
3772
|
declare function serializeConfigActions(configActions: ConfigAction[]): Uint8Array<ArrayBuffer>;
|
|
4208
3773
|
declare function deserializeConfigActions(bytes: Uint8Array<ArrayBuffer>): ConfigAction[];
|
|
4209
3774
|
|
|
4210
|
-
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 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, fetchCompressedAccount, fetchDomainConfig, fetchGlobalCounter, fetchMaybeDomainConfig, fetchMaybeGlobalCounter, fetchMaybeSettings, fetchMaybeSettingsAccountData, fetchMaybeTransactionBuffer, fetchMaybeUserAccountData, fetchMaybeWhitelistedAddressTree, fetchSettings, fetchSettingsAccountData, fetchTransactionBuffer, fetchUserAccountByFilters, fetchUserAccountData, fetchWhitelistedAddressTree, 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 };
|
|
3775
|
+
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, fetchCompressedAccount, 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 };
|