@revibase/core 0.0.50 → 0.0.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as gill from 'gill';
2
- import { ReadonlyUint8Array, Address, FixedSizeEncoder, FixedSizeDecoder, FixedSizeCodec, EncodedAccount, Account, MaybeEncodedAccount, MaybeAccount, fetchEncodedAccount, FetchAccountConfig, fetchEncodedAccounts, FetchAccountsConfig, Encoder, Decoder, Codec, Option, OptionOrNullable, GetDiscriminatedUnionVariantContent, GetDiscriminatedUnionVariant, SolanaError, SOLANA_ERROR__INSTRUCTION_ERROR__CUSTOM, AccountMeta, Instruction, InstructionWithData, InstructionWithAccounts, WritableAccount, WritableSignerAccount, AccountSignerMeta, ReadonlyAccount, TransactionSigner, ReadonlySignerAccount, Slot, AccountInfoBase, Base64EncodedDataResponse, AddressesByLookupTableAddress, CompiledTransactionMessage, CompiledTransactionMessageWithLifetime, AccountRole, Rpc as Rpc$1, SendAndConfirmTransactionWithSignersFunction, BaseTransactionMessage, TransactionMessageWithFeePayer } from 'gill';
2
+ import { ReadonlyUint8Array, Address, FixedSizeEncoder, FixedSizeDecoder, FixedSizeCodec, EncodedAccount, Account, MaybeEncodedAccount, MaybeAccount, fetchEncodedAccount, FetchAccountConfig, fetchEncodedAccounts, FetchAccountsConfig, Encoder, Decoder, Codec, Option, OptionOrNullable, GetDiscriminatedUnionVariantContent, GetDiscriminatedUnionVariant, SolanaError, SOLANA_ERROR__INSTRUCTION_ERROR__CUSTOM, AccountMeta, Instruction, InstructionWithData, InstructionWithAccounts, WritableAccount, WritableSignerAccount, AccountSignerMeta, ReadonlyAccount, TransactionSigner, ReadonlySignerAccount, Slot, AccountInfoBase, Base64EncodedDataResponse, AddressesByLookupTableAddress, CompiledTransactionMessage, CompiledTransactionMessageWithLifetime, AccountRole, Rpc as Rpc$1, SendAndConfirmTransactionWithSignersFunction } from 'gill';
3
3
  import { AuthenticationResponseJSON } from '@simplewebauthn/browser';
4
4
  import { CompressedAccount, WithCursor, ParsedTokenAccount, TreeInfo, AccountProofInput, NewAddressProofInput, PackedTreeInfos, ValidityProofWithContext, Rpc } from '@lightprotocol/stateless.js';
5
5
  import z from 'zod';
@@ -244,39 +244,39 @@ declare function getCompressionInfoDecoder(): FixedSizeDecoder<CompressionInfo>;
244
244
  declare function getCompressionInfoCodec(): FixedSizeCodec<CompressionInfoArgs, CompressionInfo>;
245
245
 
246
246
  type ConfigAction = {
247
- __kind: 'EditPermissions';
247
+ __kind: "EditPermissions";
248
248
  fields: readonly [Array<EditMemberArgs$1>];
249
249
  } | {
250
- __kind: 'AddMembers';
250
+ __kind: "AddMembers";
251
251
  fields: readonly [Array<AddMemberArgs$1>];
252
252
  } | {
253
- __kind: 'RemoveMembers';
253
+ __kind: "RemoveMembers";
254
254
  fields: readonly [Array<RemoveMemberArgs$1>];
255
255
  } | {
256
- __kind: 'SetThreshold';
256
+ __kind: "SetThreshold";
257
257
  fields: readonly [number];
258
258
  };
259
259
  type ConfigActionArgs = {
260
- __kind: 'EditPermissions';
260
+ __kind: "EditPermissions";
261
261
  fields: readonly [Array<EditMemberArgsArgs>];
262
262
  } | {
263
- __kind: 'AddMembers';
263
+ __kind: "AddMembers";
264
264
  fields: readonly [Array<AddMemberArgsArgs>];
265
265
  } | {
266
- __kind: 'RemoveMembers';
266
+ __kind: "RemoveMembers";
267
267
  fields: readonly [Array<RemoveMemberArgsArgs>];
268
268
  } | {
269
- __kind: 'SetThreshold';
269
+ __kind: "SetThreshold";
270
270
  fields: readonly [number];
271
271
  };
272
272
  declare function getConfigActionEncoder(): Encoder<ConfigActionArgs>;
273
273
  declare function getConfigActionDecoder(): Decoder<ConfigAction>;
274
274
  declare function getConfigActionCodec(): Codec<ConfigActionArgs, ConfigAction>;
275
- declare function configAction(kind: 'EditPermissions', data: GetDiscriminatedUnionVariantContent<ConfigActionArgs, '__kind', 'EditPermissions'>['fields']): GetDiscriminatedUnionVariant<ConfigActionArgs, '__kind', 'EditPermissions'>;
276
- declare function configAction(kind: 'AddMembers', data: GetDiscriminatedUnionVariantContent<ConfigActionArgs, '__kind', 'AddMembers'>['fields']): GetDiscriminatedUnionVariant<ConfigActionArgs, '__kind', 'AddMembers'>;
277
- declare function configAction(kind: 'RemoveMembers', data: GetDiscriminatedUnionVariantContent<ConfigActionArgs, '__kind', 'RemoveMembers'>['fields']): GetDiscriminatedUnionVariant<ConfigActionArgs, '__kind', 'RemoveMembers'>;
278
- declare function configAction(kind: 'SetThreshold', data: GetDiscriminatedUnionVariantContent<ConfigActionArgs, '__kind', 'SetThreshold'>['fields']): GetDiscriminatedUnionVariant<ConfigActionArgs, '__kind', 'SetThreshold'>;
279
- declare function isConfigAction<K extends ConfigAction['__kind']>(kind: K, value: ConfigAction): value is ConfigAction & {
275
+ declare function configAction(kind: "EditPermissions", data: GetDiscriminatedUnionVariantContent<ConfigActionArgs, "__kind", "EditPermissions">["fields"]): GetDiscriminatedUnionVariant<ConfigActionArgs, "__kind", "EditPermissions">;
276
+ declare function configAction(kind: "AddMembers", data: GetDiscriminatedUnionVariantContent<ConfigActionArgs, "__kind", "AddMembers">["fields"]): GetDiscriminatedUnionVariant<ConfigActionArgs, "__kind", "AddMembers">;
277
+ declare function configAction(kind: "RemoveMembers", data: GetDiscriminatedUnionVariantContent<ConfigActionArgs, "__kind", "RemoveMembers">["fields"]): GetDiscriminatedUnionVariant<ConfigActionArgs, "__kind", "RemoveMembers">;
278
+ declare function configAction(kind: "SetThreshold", data: GetDiscriminatedUnionVariantContent<ConfigActionArgs, "__kind", "SetThreshold">["fields"]): GetDiscriminatedUnionVariant<ConfigActionArgs, "__kind", "SetThreshold">;
279
+ declare function isConfigAction<K extends ConfigAction["__kind"]>(kind: K, value: ConfigAction): value is ConfigAction & {
280
280
  __kind: K;
281
281
  };
282
282
 
@@ -321,190 +321,190 @@ declare function getExpectedSecp256r1SignersDecoder(): FixedSizeDecoder<Expected
321
321
  declare function getExpectedSecp256r1SignersCodec(): FixedSizeCodec<ExpectedSecp256r1SignersArgs, ExpectedSecp256r1Signers>;
322
322
 
323
323
  type ExtensionStruct = {
324
- __kind: 'Placeholder0';
324
+ __kind: "Placeholder0";
325
325
  } | {
326
- __kind: 'Placeholder1';
326
+ __kind: "Placeholder1";
327
327
  } | {
328
- __kind: 'Placeholder2';
328
+ __kind: "Placeholder2";
329
329
  } | {
330
- __kind: 'Placeholder3';
330
+ __kind: "Placeholder3";
331
331
  } | {
332
- __kind: 'Placeholder4';
332
+ __kind: "Placeholder4";
333
333
  } | {
334
- __kind: 'Placeholder5';
334
+ __kind: "Placeholder5";
335
335
  } | {
336
- __kind: 'Placeholder6';
336
+ __kind: "Placeholder6";
337
337
  } | {
338
- __kind: 'Placeholder7';
338
+ __kind: "Placeholder7";
339
339
  } | {
340
- __kind: 'Placeholder8';
340
+ __kind: "Placeholder8";
341
341
  } | {
342
- __kind: 'Placeholder9';
342
+ __kind: "Placeholder9";
343
343
  } | {
344
- __kind: 'Placeholder10';
344
+ __kind: "Placeholder10";
345
345
  } | {
346
- __kind: 'Placeholder11';
346
+ __kind: "Placeholder11";
347
347
  } | {
348
- __kind: 'Placeholder12';
348
+ __kind: "Placeholder12";
349
349
  } | {
350
- __kind: 'Placeholder13';
350
+ __kind: "Placeholder13";
351
351
  } | {
352
- __kind: 'Placeholder14';
352
+ __kind: "Placeholder14";
353
353
  } | {
354
- __kind: 'Placeholder15';
354
+ __kind: "Placeholder15";
355
355
  } | {
356
- __kind: 'Placeholder16';
356
+ __kind: "Placeholder16";
357
357
  } | {
358
- __kind: 'Placeholder17';
358
+ __kind: "Placeholder17";
359
359
  } | {
360
- __kind: 'Placeholder18';
360
+ __kind: "Placeholder18";
361
361
  } | {
362
- __kind: 'TokenMetadata';
362
+ __kind: "TokenMetadata";
363
363
  fields: readonly [TokenMetadata];
364
364
  } | {
365
- __kind: 'Placeholder20';
365
+ __kind: "Placeholder20";
366
366
  } | {
367
- __kind: 'Placeholder21';
367
+ __kind: "Placeholder21";
368
368
  } | {
369
- __kind: 'Placeholder22';
369
+ __kind: "Placeholder22";
370
370
  } | {
371
- __kind: 'Placeholder23';
371
+ __kind: "Placeholder23";
372
372
  } | {
373
- __kind: 'Placeholder24';
373
+ __kind: "Placeholder24";
374
374
  } | {
375
- __kind: 'Placeholder25';
375
+ __kind: "Placeholder25";
376
376
  } | {
377
- __kind: 'Placeholder26';
377
+ __kind: "Placeholder26";
378
378
  } | {
379
- __kind: 'PausableAccount';
379
+ __kind: "PausableAccount";
380
380
  fields: readonly [PausableAccountExtension];
381
381
  } | {
382
- __kind: 'PermanentDelegateAccount';
382
+ __kind: "PermanentDelegateAccount";
383
383
  fields: readonly [PermanentDelegateAccountExtension];
384
384
  } | {
385
- __kind: 'TransferFeeAccount';
385
+ __kind: "TransferFeeAccount";
386
386
  fields: readonly [TransferFeeAccountExtension];
387
387
  } | {
388
- __kind: 'TransferHookAccount';
388
+ __kind: "TransferHookAccount";
389
389
  fields: readonly [TransferHookAccountExtension];
390
390
  } | {
391
- __kind: 'CompressedOnly';
391
+ __kind: "CompressedOnly";
392
392
  fields: readonly [CompressedOnlyExtension];
393
393
  } | {
394
- __kind: 'Compressible';
394
+ __kind: "Compressible";
395
395
  fields: readonly [CompressibleExtension];
396
396
  };
397
397
  type ExtensionStructArgs = {
398
- __kind: 'Placeholder0';
398
+ __kind: "Placeholder0";
399
399
  } | {
400
- __kind: 'Placeholder1';
400
+ __kind: "Placeholder1";
401
401
  } | {
402
- __kind: 'Placeholder2';
402
+ __kind: "Placeholder2";
403
403
  } | {
404
- __kind: 'Placeholder3';
404
+ __kind: "Placeholder3";
405
405
  } | {
406
- __kind: 'Placeholder4';
406
+ __kind: "Placeholder4";
407
407
  } | {
408
- __kind: 'Placeholder5';
408
+ __kind: "Placeholder5";
409
409
  } | {
410
- __kind: 'Placeholder6';
410
+ __kind: "Placeholder6";
411
411
  } | {
412
- __kind: 'Placeholder7';
412
+ __kind: "Placeholder7";
413
413
  } | {
414
- __kind: 'Placeholder8';
414
+ __kind: "Placeholder8";
415
415
  } | {
416
- __kind: 'Placeholder9';
416
+ __kind: "Placeholder9";
417
417
  } | {
418
- __kind: 'Placeholder10';
418
+ __kind: "Placeholder10";
419
419
  } | {
420
- __kind: 'Placeholder11';
420
+ __kind: "Placeholder11";
421
421
  } | {
422
- __kind: 'Placeholder12';
422
+ __kind: "Placeholder12";
423
423
  } | {
424
- __kind: 'Placeholder13';
424
+ __kind: "Placeholder13";
425
425
  } | {
426
- __kind: 'Placeholder14';
426
+ __kind: "Placeholder14";
427
427
  } | {
428
- __kind: 'Placeholder15';
428
+ __kind: "Placeholder15";
429
429
  } | {
430
- __kind: 'Placeholder16';
430
+ __kind: "Placeholder16";
431
431
  } | {
432
- __kind: 'Placeholder17';
432
+ __kind: "Placeholder17";
433
433
  } | {
434
- __kind: 'Placeholder18';
434
+ __kind: "Placeholder18";
435
435
  } | {
436
- __kind: 'TokenMetadata';
436
+ __kind: "TokenMetadata";
437
437
  fields: readonly [TokenMetadataArgs];
438
438
  } | {
439
- __kind: 'Placeholder20';
439
+ __kind: "Placeholder20";
440
440
  } | {
441
- __kind: 'Placeholder21';
441
+ __kind: "Placeholder21";
442
442
  } | {
443
- __kind: 'Placeholder22';
443
+ __kind: "Placeholder22";
444
444
  } | {
445
- __kind: 'Placeholder23';
445
+ __kind: "Placeholder23";
446
446
  } | {
447
- __kind: 'Placeholder24';
447
+ __kind: "Placeholder24";
448
448
  } | {
449
- __kind: 'Placeholder25';
449
+ __kind: "Placeholder25";
450
450
  } | {
451
- __kind: 'Placeholder26';
451
+ __kind: "Placeholder26";
452
452
  } | {
453
- __kind: 'PausableAccount';
453
+ __kind: "PausableAccount";
454
454
  fields: readonly [PausableAccountExtensionArgs];
455
455
  } | {
456
- __kind: 'PermanentDelegateAccount';
456
+ __kind: "PermanentDelegateAccount";
457
457
  fields: readonly [PermanentDelegateAccountExtensionArgs];
458
458
  } | {
459
- __kind: 'TransferFeeAccount';
459
+ __kind: "TransferFeeAccount";
460
460
  fields: readonly [TransferFeeAccountExtensionArgs];
461
461
  } | {
462
- __kind: 'TransferHookAccount';
462
+ __kind: "TransferHookAccount";
463
463
  fields: readonly [TransferHookAccountExtensionArgs];
464
464
  } | {
465
- __kind: 'CompressedOnly';
465
+ __kind: "CompressedOnly";
466
466
  fields: readonly [CompressedOnlyExtensionArgs];
467
467
  } | {
468
- __kind: 'Compressible';
468
+ __kind: "Compressible";
469
469
  fields: readonly [CompressibleExtensionArgs];
470
470
  };
471
471
  declare function getExtensionStructEncoder(): Encoder<ExtensionStructArgs>;
472
472
  declare function getExtensionStructDecoder(): Decoder<ExtensionStruct>;
473
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 & {
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
508
  __kind: K;
509
509
  };
510
510
 
@@ -686,18 +686,6 @@ declare function getSecp256r1VerifyArgsWithDomainAddressEncoder(): Encoder<Secp2
686
686
  declare function getSecp256r1VerifyArgsWithDomainAddressDecoder(): Decoder<Secp256r1VerifyArgsWithDomainAddress>;
687
687
  declare function getSecp256r1VerifyArgsWithDomainAddressCodec(): Codec<Secp256r1VerifyArgsWithDomainAddressArgs, Secp256r1VerifyArgsWithDomainAddress>;
688
688
 
689
- type SettingsCreationArgs = {
690
- addressTreeInfo: PackedAddressTreeInfo;
691
- outputStateTreeIndex: number;
692
- };
693
- type SettingsCreationArgsArgs = {
694
- addressTreeInfo: PackedAddressTreeInfoArgs;
695
- outputStateTreeIndex: number;
696
- };
697
- declare function getSettingsCreationArgsEncoder(): FixedSizeEncoder<SettingsCreationArgsArgs>;
698
- declare function getSettingsCreationArgsDecoder(): FixedSizeDecoder<SettingsCreationArgs>;
699
- declare function getSettingsCreationArgsCodec(): FixedSizeCodec<SettingsCreationArgsArgs, SettingsCreationArgs>;
700
-
701
689
  type SettingsIndexWithAddress = {
702
690
  index: bigint;
703
691
  settingsAddressTreeIndex: number;
@@ -920,25 +908,25 @@ declare function getUserReadOnlyArgsDecoder(): Decoder<UserReadOnlyArgs>;
920
908
  declare function getUserReadOnlyArgsCodec(): Codec<UserReadOnlyArgsArgs, UserReadOnlyArgs>;
921
909
 
922
910
  type UserReadOnlyOrMutateArgs = {
923
- __kind: 'Read';
911
+ __kind: "Read";
924
912
  fields: readonly [UserReadOnlyArgs];
925
913
  } | {
926
- __kind: 'Mutate';
914
+ __kind: "Mutate";
927
915
  fields: readonly [UserMutArgs];
928
916
  };
929
917
  type UserReadOnlyOrMutateArgsArgs = {
930
- __kind: 'Read';
918
+ __kind: "Read";
931
919
  fields: readonly [UserReadOnlyArgsArgs];
932
920
  } | {
933
- __kind: 'Mutate';
921
+ __kind: "Mutate";
934
922
  fields: readonly [UserMutArgsArgs];
935
923
  };
936
924
  declare function getUserReadOnlyOrMutateArgsEncoder(): Encoder<UserReadOnlyOrMutateArgsArgs>;
937
925
  declare function getUserReadOnlyOrMutateArgsDecoder(): Decoder<UserReadOnlyOrMutateArgs>;
938
926
  declare function getUserReadOnlyOrMutateArgsCodec(): Codec<UserReadOnlyOrMutateArgsArgs, UserReadOnlyOrMutateArgs>;
939
- declare function userReadOnlyOrMutateArgs(kind: 'Read', data: GetDiscriminatedUnionVariantContent<UserReadOnlyOrMutateArgsArgs, '__kind', 'Read'>['fields']): GetDiscriminatedUnionVariant<UserReadOnlyOrMutateArgsArgs, '__kind', 'Read'>;
940
- declare function userReadOnlyOrMutateArgs(kind: 'Mutate', data: GetDiscriminatedUnionVariantContent<UserReadOnlyOrMutateArgsArgs, '__kind', 'Mutate'>['fields']): GetDiscriminatedUnionVariant<UserReadOnlyOrMutateArgsArgs, '__kind', 'Mutate'>;
941
- declare function isUserReadOnlyOrMutateArgs<K extends UserReadOnlyOrMutateArgs['__kind']>(kind: K, value: UserReadOnlyOrMutateArgs): value is UserReadOnlyOrMutateArgs & {
927
+ declare function userReadOnlyOrMutateArgs(kind: "Read", data: GetDiscriminatedUnionVariantContent<UserReadOnlyOrMutateArgsArgs, "__kind", "Read">["fields"]): GetDiscriminatedUnionVariant<UserReadOnlyOrMutateArgsArgs, "__kind", "Read">;
928
+ declare function userReadOnlyOrMutateArgs(kind: "Mutate", data: GetDiscriminatedUnionVariantContent<UserReadOnlyOrMutateArgsArgs, "__kind", "Mutate">["fields"]): GetDiscriminatedUnionVariant<UserReadOnlyOrMutateArgsArgs, "__kind", "Mutate">;
929
+ declare function isUserReadOnlyOrMutateArgs<K extends UserReadOnlyOrMutateArgs["__kind"]>(kind: K, value: UserReadOnlyOrMutateArgs): value is UserReadOnlyOrMutateArgs & {
942
930
  __kind: K;
943
931
  };
944
932
 
@@ -1178,31 +1166,29 @@ declare enum MultiWalletInstruction {
1178
1166
  EditDomainConfig = 10,
1179
1167
  EditTransactionManagerUrl = 11,
1180
1168
  EditUserDelegate = 12,
1181
- MigrateCompressedSettings = 13,
1182
- MigrateCompressedUsers = 14,
1183
- NativeTransferIntent = 15,
1184
- NativeTransferIntentCompressed = 16,
1185
- TokenTransferIntent = 17,
1186
- TokenTransferIntentCompressed = 18,
1187
- TransactionBufferClose = 19,
1188
- TransactionBufferCloseCompressed = 20,
1189
- TransactionBufferCreate = 21,
1190
- TransactionBufferCreateCompressed = 22,
1191
- TransactionBufferExecute = 23,
1192
- TransactionBufferExecuteCompressed = 24,
1193
- TransactionBufferExtend = 25,
1194
- TransactionBufferExtendCompressed = 26,
1195
- TransactionBufferVote = 27,
1196
- TransactionBufferVoteCompressed = 28,
1197
- TransactionExecute = 29,
1198
- TransactionExecuteCompressed = 30,
1199
- TransactionExecuteSync = 31,
1200
- TransactionExecuteSyncCompressed = 32
1169
+ NativeTransferIntent = 13,
1170
+ NativeTransferIntentCompressed = 14,
1171
+ TokenTransferIntent = 15,
1172
+ TokenTransferIntentCompressed = 16,
1173
+ TransactionBufferClose = 17,
1174
+ TransactionBufferCloseCompressed = 18,
1175
+ TransactionBufferCreate = 19,
1176
+ TransactionBufferCreateCompressed = 20,
1177
+ TransactionBufferExecute = 21,
1178
+ TransactionBufferExecuteCompressed = 22,
1179
+ TransactionBufferExtend = 23,
1180
+ TransactionBufferExtendCompressed = 24,
1181
+ TransactionBufferVote = 25,
1182
+ TransactionBufferVoteCompressed = 26,
1183
+ TransactionExecute = 27,
1184
+ TransactionExecuteCompressed = 28,
1185
+ TransactionExecuteSync = 29,
1186
+ TransactionExecuteSyncCompressed = 30
1201
1187
  }
1202
1188
  declare function identifyMultiWalletInstruction(instruction: {
1203
1189
  data: ReadonlyUint8Array;
1204
1190
  } | ReadonlyUint8Array): MultiWalletInstruction;
1205
- type ParsedMultiWalletInstruction<TProgram extends string = 'reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT'> = ({
1191
+ type ParsedMultiWalletInstruction<TProgram extends string = "reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT"> = ({
1206
1192
  instructionType: MultiWalletInstruction.AddWhitelistedAddressTrees;
1207
1193
  } & ParsedAddWhitelistedAddressTreesInstruction<TProgram>) | ({
1208
1194
  instructionType: MultiWalletInstruction.ChangeConfig;
@@ -1229,10 +1215,6 @@ type ParsedMultiWalletInstruction<TProgram extends string = 'reviR1xysEChySVSWGa
1229
1215
  } & ParsedEditTransactionManagerUrlInstruction<TProgram>) | ({
1230
1216
  instructionType: MultiWalletInstruction.EditUserDelegate;
1231
1217
  } & ParsedEditUserDelegateInstruction<TProgram>) | ({
1232
- instructionType: MultiWalletInstruction.MigrateCompressedSettings;
1233
- } & ParsedMigrateCompressedSettingsInstruction<TProgram>) | ({
1234
- instructionType: MultiWalletInstruction.MigrateCompressedUsers;
1235
- } & ParsedMigrateCompressedUsersInstruction<TProgram>) | ({
1236
1218
  instructionType: MultiWalletInstruction.NativeTransferIntent;
1237
1219
  } & ParsedNativeTransferIntentInstruction<TProgram>) | ({
1238
1220
  instructionType: MultiWalletInstruction.NativeTransferIntentCompressed;
@@ -1272,7 +1254,7 @@ type ParsedMultiWalletInstruction<TProgram extends string = 'reviR1xysEChySVSWGa
1272
1254
 
1273
1255
  declare const ADD_WHITELISTED_ADDRESS_TREES_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1274
1256
  declare function getAddWhitelistedAddressTreesDiscriminatorBytes(): ReadonlyUint8Array;
1275
- type AddWhitelistedAddressTreesInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1257
+ type AddWhitelistedAddressTreesInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1276
1258
  TAccountWhitelistedAddressTrees extends string ? WritableAccount<TAccountWhitelistedAddressTrees> : TAccountWhitelistedAddressTrees,
1277
1259
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1278
1260
  TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
@@ -1298,8 +1280,8 @@ type AddWhitelistedAddressTreesAsyncInput<TAccountWhitelistedAddressTrees extend
1298
1280
  whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1299
1281
  payer: TransactionSigner<TAccountPayer>;
1300
1282
  systemProgram?: Address<TAccountSystemProgram>;
1301
- addressTree: AddWhitelistedAddressTreesInstructionDataArgs['addressTree'];
1302
- remainingAccounts: AddWhitelistedAddressTreesInstructionExtraArgs['remainingAccounts'];
1283
+ addressTree: AddWhitelistedAddressTreesInstructionDataArgs["addressTree"];
1284
+ remainingAccounts: AddWhitelistedAddressTreesInstructionExtraArgs["remainingAccounts"];
1303
1285
  };
1304
1286
  declare function getAddWhitelistedAddressTreesInstructionAsync<TAccountWhitelistedAddressTrees extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: AddWhitelistedAddressTreesAsyncInput<TAccountWhitelistedAddressTrees, TAccountPayer, TAccountSystemProgram>, config?: {
1305
1287
  programAddress?: TProgramAddress;
@@ -1308,8 +1290,8 @@ type AddWhitelistedAddressTreesInput<TAccountWhitelistedAddressTrees extends str
1308
1290
  whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
1309
1291
  payer: TransactionSigner<TAccountPayer>;
1310
1292
  systemProgram?: Address<TAccountSystemProgram>;
1311
- addressTree: AddWhitelistedAddressTreesInstructionDataArgs['addressTree'];
1312
- remainingAccounts: AddWhitelistedAddressTreesInstructionExtraArgs['remainingAccounts'];
1293
+ addressTree: AddWhitelistedAddressTreesInstructionDataArgs["addressTree"];
1294
+ remainingAccounts: AddWhitelistedAddressTreesInstructionExtraArgs["remainingAccounts"];
1313
1295
  };
1314
1296
  declare function getAddWhitelistedAddressTreesInstruction<TAccountWhitelistedAddressTrees extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: AddWhitelistedAddressTreesInput<TAccountWhitelistedAddressTrees, TAccountPayer, TAccountSystemProgram>, config?: {
1315
1297
  programAddress?: TProgramAddress;
@@ -1327,7 +1309,7 @@ declare function parseAddWhitelistedAddressTreesInstruction<TProgram extends str
1327
1309
 
1328
1310
  declare const CHANGE_CONFIG_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1329
1311
  declare function getChangeConfigDiscriminatorBytes(): ReadonlyUint8Array;
1330
- type ChangeConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1312
+ type ChangeConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1331
1313
  TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
1332
1314
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1333
1315
  TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
@@ -1337,13 +1319,11 @@ type ChangeConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGR
1337
1319
  ]>;
1338
1320
  type ChangeConfigInstructionData = {
1339
1321
  discriminator: ReadonlyUint8Array;
1340
- settingsIndex: bigint;
1341
1322
  configActions: Array<ConfigAction>;
1342
1323
  secp256r1VerifyArgs: Array<Secp256r1VerifyArgsWithDomainAddress>;
1343
1324
  compressedProofArgs: Option<ProofArgs>;
1344
1325
  };
1345
1326
  type ChangeConfigInstructionDataArgs = {
1346
- settingsIndex: number | bigint;
1347
1327
  configActions: Array<ConfigActionArgs>;
1348
1328
  secp256r1VerifyArgs: Array<Secp256r1VerifyArgsWithDomainAddressArgs>;
1349
1329
  compressedProofArgs: OptionOrNullable<ProofArgsArgs>;
@@ -1357,32 +1337,16 @@ type ChangeConfigInstructionExtraArgs = {
1357
1337
  role: number;
1358
1338
  }>;
1359
1339
  };
1360
- type ChangeConfigAsyncInput<TAccountSettings extends string = string, TAccountPayer extends string = string, TAccountSystemProgram extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string> = {
1361
- settings?: Address<TAccountSettings>;
1362
- payer: TransactionSigner<TAccountPayer>;
1363
- systemProgram?: Address<TAccountSystemProgram>;
1364
- slotHashSysvar?: Address<TAccountSlotHashSysvar>;
1365
- instructionsSysvar?: Address<TAccountInstructionsSysvar>;
1366
- settingsIndex: ChangeConfigInstructionDataArgs['settingsIndex'];
1367
- configActions: ChangeConfigInstructionDataArgs['configActions'];
1368
- secp256r1VerifyArgs: ChangeConfigInstructionDataArgs['secp256r1VerifyArgs'];
1369
- compressedProofArgs: ChangeConfigInstructionDataArgs['compressedProofArgs'];
1370
- remainingAccounts: ChangeConfigInstructionExtraArgs['remainingAccounts'];
1371
- };
1372
- declare function getChangeConfigInstructionAsync<TAccountSettings extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: ChangeConfigAsyncInput<TAccountSettings, TAccountPayer, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
1373
- programAddress?: TProgramAddress;
1374
- }): Promise<ChangeConfigInstruction<TProgramAddress, TAccountSettings, TAccountPayer, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar>>;
1375
1340
  type ChangeConfigInput<TAccountSettings extends string = string, TAccountPayer extends string = string, TAccountSystemProgram extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string> = {
1376
1341
  settings: Address<TAccountSettings>;
1377
1342
  payer: TransactionSigner<TAccountPayer>;
1378
1343
  systemProgram?: Address<TAccountSystemProgram>;
1379
1344
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
1380
1345
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
1381
- settingsIndex: ChangeConfigInstructionDataArgs['settingsIndex'];
1382
- configActions: ChangeConfigInstructionDataArgs['configActions'];
1383
- secp256r1VerifyArgs: ChangeConfigInstructionDataArgs['secp256r1VerifyArgs'];
1384
- compressedProofArgs: ChangeConfigInstructionDataArgs['compressedProofArgs'];
1385
- remainingAccounts: ChangeConfigInstructionExtraArgs['remainingAccounts'];
1346
+ configActions: ChangeConfigInstructionDataArgs["configActions"];
1347
+ secp256r1VerifyArgs: ChangeConfigInstructionDataArgs["secp256r1VerifyArgs"];
1348
+ compressedProofArgs: ChangeConfigInstructionDataArgs["compressedProofArgs"];
1349
+ remainingAccounts: ChangeConfigInstructionExtraArgs["remainingAccounts"];
1386
1350
  };
1387
1351
  declare function getChangeConfigInstruction<TAccountSettings extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: ChangeConfigInput<TAccountSettings, TAccountPayer, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
1388
1352
  programAddress?: TProgramAddress;
@@ -1402,7 +1366,7 @@ declare function parseChangeConfigInstruction<TProgram extends string, TAccountM
1402
1366
 
1403
1367
  declare const CHANGE_CONFIG_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1404
1368
  declare function getChangeConfigCompressedDiscriminatorBytes(): ReadonlyUint8Array;
1405
- type ChangeConfigCompressedInstruction<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', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1369
+ type ChangeConfigCompressedInstruction<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", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1406
1370
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1407
1371
  TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
1408
1372
  TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
@@ -1434,11 +1398,11 @@ type ChangeConfigCompressedInput<TAccountPayer extends string = string, TAccount
1434
1398
  payer: TransactionSigner<TAccountPayer>;
1435
1399
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
1436
1400
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
1437
- configActions: ChangeConfigCompressedInstructionDataArgs['configActions'];
1438
- secp256r1VerifyArgs: ChangeConfigCompressedInstructionDataArgs['secp256r1VerifyArgs'];
1439
- settingsMutArgs: ChangeConfigCompressedInstructionDataArgs['settingsMutArgs'];
1440
- compressedProofArgs: ChangeConfigCompressedInstructionDataArgs['compressedProofArgs'];
1441
- remainingAccounts: ChangeConfigCompressedInstructionExtraArgs['remainingAccounts'];
1401
+ configActions: ChangeConfigCompressedInstructionDataArgs["configActions"];
1402
+ secp256r1VerifyArgs: ChangeConfigCompressedInstructionDataArgs["secp256r1VerifyArgs"];
1403
+ settingsMutArgs: ChangeConfigCompressedInstructionDataArgs["settingsMutArgs"];
1404
+ compressedProofArgs: ChangeConfigCompressedInstructionDataArgs["compressedProofArgs"];
1405
+ remainingAccounts: ChangeConfigCompressedInstructionExtraArgs["remainingAccounts"];
1442
1406
  };
1443
1407
  declare function getChangeConfigCompressedInstruction<TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: ChangeConfigCompressedInput<TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
1444
1408
  programAddress?: TProgramAddress;
@@ -1456,7 +1420,7 @@ declare function parseChangeConfigCompressedInstruction<TProgram extends string,
1456
1420
 
1457
1421
  declare const CREATE_COMPRESSED_WALLET_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1458
1422
  declare function getCreateCompressedWalletDiscriminatorBytes(): ReadonlyUint8Array;
1459
- type CreateCompressedWalletInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountInitialMember extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountGlobalCounter extends string | AccountMeta<string> = string, TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1423
+ type CreateCompressedWalletInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountInitialMember extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountGlobalCounter extends string | AccountMeta<string> = string, TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1460
1424
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1461
1425
  TAccountInitialMember extends string ? ReadonlySignerAccount<TAccountInitialMember> & AccountSignerMeta<TAccountInitialMember> : TAccountInitialMember,
1462
1426
  TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
@@ -1467,13 +1431,15 @@ type CreateCompressedWalletInstruction<TProgram extends string = typeof MULTI_WA
1467
1431
  type CreateCompressedWalletInstructionData = {
1468
1432
  discriminator: ReadonlyUint8Array;
1469
1433
  compressedProofArgs: ProofArgs;
1470
- settingsCreation: SettingsCreationArgs;
1434
+ addressTreeInfo: PackedAddressTreeInfo;
1435
+ outputStateTreeIndex: number;
1471
1436
  userArgs: UserReadOnlyOrMutateArgs;
1472
1437
  settingsIndex: bigint;
1473
1438
  };
1474
1439
  type CreateCompressedWalletInstructionDataArgs = {
1475
1440
  compressedProofArgs: ProofArgsArgs;
1476
- settingsCreation: SettingsCreationArgsArgs;
1441
+ addressTreeInfo: PackedAddressTreeInfoArgs;
1442
+ outputStateTreeIndex: number;
1477
1443
  userArgs: UserReadOnlyOrMutateArgsArgs;
1478
1444
  settingsIndex: number | bigint;
1479
1445
  };
@@ -1492,11 +1458,12 @@ type CreateCompressedWalletAsyncInput<TAccountPayer extends string = string, TAc
1492
1458
  systemProgram?: Address<TAccountSystemProgram>;
1493
1459
  globalCounter?: Address<TAccountGlobalCounter>;
1494
1460
  whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1495
- compressedProofArgs: CreateCompressedWalletInstructionDataArgs['compressedProofArgs'];
1496
- settingsCreation: CreateCompressedWalletInstructionDataArgs['settingsCreation'];
1497
- userArgs: CreateCompressedWalletInstructionDataArgs['userArgs'];
1498
- settingsIndex: CreateCompressedWalletInstructionDataArgs['settingsIndex'];
1499
- remainingAccounts: CreateCompressedWalletInstructionExtraArgs['remainingAccounts'];
1461
+ compressedProofArgs: CreateCompressedWalletInstructionDataArgs["compressedProofArgs"];
1462
+ addressTreeInfo: CreateCompressedWalletInstructionDataArgs["addressTreeInfo"];
1463
+ outputStateTreeIndex: CreateCompressedWalletInstructionDataArgs["outputStateTreeIndex"];
1464
+ userArgs: CreateCompressedWalletInstructionDataArgs["userArgs"];
1465
+ settingsIndex: CreateCompressedWalletInstructionDataArgs["settingsIndex"];
1466
+ remainingAccounts: CreateCompressedWalletInstructionExtraArgs["remainingAccounts"];
1500
1467
  };
1501
1468
  declare function getCreateCompressedWalletInstructionAsync<TAccountPayer extends string, TAccountInitialMember extends string, TAccountSystemProgram extends string, TAccountGlobalCounter extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateCompressedWalletAsyncInput<TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountGlobalCounter, TAccountWhitelistedAddressTrees>, config?: {
1502
1469
  programAddress?: TProgramAddress;
@@ -1507,11 +1474,12 @@ type CreateCompressedWalletInput<TAccountPayer extends string = string, TAccount
1507
1474
  systemProgram?: Address<TAccountSystemProgram>;
1508
1475
  globalCounter: Address<TAccountGlobalCounter>;
1509
1476
  whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
1510
- compressedProofArgs: CreateCompressedWalletInstructionDataArgs['compressedProofArgs'];
1511
- settingsCreation: CreateCompressedWalletInstructionDataArgs['settingsCreation'];
1512
- userArgs: CreateCompressedWalletInstructionDataArgs['userArgs'];
1513
- settingsIndex: CreateCompressedWalletInstructionDataArgs['settingsIndex'];
1514
- remainingAccounts: CreateCompressedWalletInstructionExtraArgs['remainingAccounts'];
1477
+ compressedProofArgs: CreateCompressedWalletInstructionDataArgs["compressedProofArgs"];
1478
+ addressTreeInfo: CreateCompressedWalletInstructionDataArgs["addressTreeInfo"];
1479
+ outputStateTreeIndex: CreateCompressedWalletInstructionDataArgs["outputStateTreeIndex"];
1480
+ userArgs: CreateCompressedWalletInstructionDataArgs["userArgs"];
1481
+ settingsIndex: CreateCompressedWalletInstructionDataArgs["settingsIndex"];
1482
+ remainingAccounts: CreateCompressedWalletInstructionExtraArgs["remainingAccounts"];
1515
1483
  };
1516
1484
  declare function getCreateCompressedWalletInstruction<TAccountPayer extends string, TAccountInitialMember extends string, TAccountSystemProgram extends string, TAccountGlobalCounter extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateCompressedWalletInput<TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountGlobalCounter, TAccountWhitelistedAddressTrees>, config?: {
1517
1485
  programAddress?: TProgramAddress;
@@ -1531,7 +1499,7 @@ declare function parseCreateCompressedWalletInstruction<TProgram extends string,
1531
1499
 
1532
1500
  declare const CREATE_DOMAIN_CONFIG_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1533
1501
  declare function getCreateDomainConfigDiscriminatorBytes(): ReadonlyUint8Array;
1534
- type CreateDomainConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountAuthority extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1502
+ type CreateDomainConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountAuthority extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1535
1503
  TAccountDomainConfig extends string ? WritableAccount<TAccountDomainConfig> : TAccountDomainConfig,
1536
1504
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1537
1505
  TAccountAuthority extends string ? ReadonlySignerAccount<TAccountAuthority> & AccountSignerMeta<TAccountAuthority> : TAccountAuthority,
@@ -1567,11 +1535,11 @@ type CreateDomainConfigAsyncInput<TAccountDomainConfig extends string = string,
1567
1535
  authority: TransactionSigner<TAccountAuthority>;
1568
1536
  systemProgram?: Address<TAccountSystemProgram>;
1569
1537
  whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1570
- rpId: CreateDomainConfigInstructionDataArgs['rpId'];
1571
- origins: CreateDomainConfigInstructionDataArgs['origins'];
1572
- authorityCreationArgs: CreateDomainConfigInstructionDataArgs['authorityCreationArgs'];
1573
- compressedProofArgs: CreateDomainConfigInstructionDataArgs['compressedProofArgs'];
1574
- remainingAccounts: CreateDomainConfigInstructionExtraArgs['remainingAccounts'];
1538
+ rpId: CreateDomainConfigInstructionDataArgs["rpId"];
1539
+ origins: CreateDomainConfigInstructionDataArgs["origins"];
1540
+ authorityCreationArgs: CreateDomainConfigInstructionDataArgs["authorityCreationArgs"];
1541
+ compressedProofArgs: CreateDomainConfigInstructionDataArgs["compressedProofArgs"];
1542
+ remainingAccounts: CreateDomainConfigInstructionExtraArgs["remainingAccounts"];
1575
1543
  };
1576
1544
  declare function getCreateDomainConfigInstructionAsync<TAccountDomainConfig extends string, TAccountPayer extends string, TAccountAuthority extends string, TAccountSystemProgram extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateDomainConfigAsyncInput<TAccountDomainConfig, TAccountPayer, TAccountAuthority, TAccountSystemProgram, TAccountWhitelistedAddressTrees>, config?: {
1577
1545
  programAddress?: TProgramAddress;
@@ -1582,11 +1550,11 @@ type CreateDomainConfigInput<TAccountDomainConfig extends string = string, TAcco
1582
1550
  authority: TransactionSigner<TAccountAuthority>;
1583
1551
  systemProgram?: Address<TAccountSystemProgram>;
1584
1552
  whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
1585
- rpId: CreateDomainConfigInstructionDataArgs['rpId'];
1586
- origins: CreateDomainConfigInstructionDataArgs['origins'];
1587
- authorityCreationArgs: CreateDomainConfigInstructionDataArgs['authorityCreationArgs'];
1588
- compressedProofArgs: CreateDomainConfigInstructionDataArgs['compressedProofArgs'];
1589
- remainingAccounts: CreateDomainConfigInstructionExtraArgs['remainingAccounts'];
1553
+ rpId: CreateDomainConfigInstructionDataArgs["rpId"];
1554
+ origins: CreateDomainConfigInstructionDataArgs["origins"];
1555
+ authorityCreationArgs: CreateDomainConfigInstructionDataArgs["authorityCreationArgs"];
1556
+ compressedProofArgs: CreateDomainConfigInstructionDataArgs["compressedProofArgs"];
1557
+ remainingAccounts: CreateDomainConfigInstructionExtraArgs["remainingAccounts"];
1590
1558
  };
1591
1559
  declare function getCreateDomainConfigInstruction<TAccountDomainConfig extends string, TAccountPayer extends string, TAccountAuthority extends string, TAccountSystemProgram extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateDomainConfigInput<TAccountDomainConfig, TAccountPayer, TAccountAuthority, TAccountSystemProgram, TAccountWhitelistedAddressTrees>, config?: {
1592
1560
  programAddress?: TProgramAddress;
@@ -1646,14 +1614,14 @@ type CreateDomainUserAccountAsyncInput<TAccountPayer extends string = string, TA
1646
1614
  domainConfig: Address<TAccountDomainConfig>;
1647
1615
  authority: TransactionSigner<TAccountAuthority>;
1648
1616
  whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1649
- compressedProofArgs: CreateDomainUserAccountInstructionDataArgs['compressedProofArgs'];
1650
- member: CreateDomainUserAccountInstructionDataArgs['member'];
1651
- role: CreateDomainUserAccountInstructionDataArgs['role'];
1652
- credentialId: CreateDomainUserAccountInstructionDataArgs['credentialId'];
1653
- transports: CreateDomainUserAccountInstructionDataArgs['transports'];
1654
- userAccountCreationArgs: CreateDomainUserAccountInstructionDataArgs['userAccountCreationArgs'];
1655
- linkWalletArgs: CreateDomainUserAccountInstructionDataArgs['linkWalletArgs'];
1656
- remainingAccounts: CreateDomainUserAccountInstructionExtraArgs['remainingAccounts'];
1617
+ compressedProofArgs: CreateDomainUserAccountInstructionDataArgs["compressedProofArgs"];
1618
+ member: CreateDomainUserAccountInstructionDataArgs["member"];
1619
+ role: CreateDomainUserAccountInstructionDataArgs["role"];
1620
+ credentialId: CreateDomainUserAccountInstructionDataArgs["credentialId"];
1621
+ transports: CreateDomainUserAccountInstructionDataArgs["transports"];
1622
+ userAccountCreationArgs: CreateDomainUserAccountInstructionDataArgs["userAccountCreationArgs"];
1623
+ linkWalletArgs: CreateDomainUserAccountInstructionDataArgs["linkWalletArgs"];
1624
+ remainingAccounts: CreateDomainUserAccountInstructionExtraArgs["remainingAccounts"];
1657
1625
  };
1658
1626
  declare function getCreateDomainUserAccountInstructionAsync<TAccountPayer extends string, TAccountDomainConfig extends string, TAccountAuthority extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateDomainUserAccountAsyncInput<TAccountPayer, TAccountDomainConfig, TAccountAuthority, TAccountWhitelistedAddressTrees>, config?: {
1659
1627
  programAddress?: TProgramAddress;
@@ -1663,14 +1631,14 @@ type CreateDomainUserAccountInput<TAccountPayer extends string = string, TAccoun
1663
1631
  domainConfig: Address<TAccountDomainConfig>;
1664
1632
  authority: TransactionSigner<TAccountAuthority>;
1665
1633
  whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
1666
- compressedProofArgs: CreateDomainUserAccountInstructionDataArgs['compressedProofArgs'];
1667
- member: CreateDomainUserAccountInstructionDataArgs['member'];
1668
- role: CreateDomainUserAccountInstructionDataArgs['role'];
1669
- credentialId: CreateDomainUserAccountInstructionDataArgs['credentialId'];
1670
- transports: CreateDomainUserAccountInstructionDataArgs['transports'];
1671
- userAccountCreationArgs: CreateDomainUserAccountInstructionDataArgs['userAccountCreationArgs'];
1672
- linkWalletArgs: CreateDomainUserAccountInstructionDataArgs['linkWalletArgs'];
1673
- remainingAccounts: CreateDomainUserAccountInstructionExtraArgs['remainingAccounts'];
1634
+ compressedProofArgs: CreateDomainUserAccountInstructionDataArgs["compressedProofArgs"];
1635
+ member: CreateDomainUserAccountInstructionDataArgs["member"];
1636
+ role: CreateDomainUserAccountInstructionDataArgs["role"];
1637
+ credentialId: CreateDomainUserAccountInstructionDataArgs["credentialId"];
1638
+ transports: CreateDomainUserAccountInstructionDataArgs["transports"];
1639
+ userAccountCreationArgs: CreateDomainUserAccountInstructionDataArgs["userAccountCreationArgs"];
1640
+ linkWalletArgs: CreateDomainUserAccountInstructionDataArgs["linkWalletArgs"];
1641
+ remainingAccounts: CreateDomainUserAccountInstructionExtraArgs["remainingAccounts"];
1674
1642
  };
1675
1643
  declare function getCreateDomainUserAccountInstruction<TAccountPayer extends string, TAccountDomainConfig extends string, TAccountAuthority extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateDomainUserAccountInput<TAccountPayer, TAccountDomainConfig, TAccountAuthority, TAccountWhitelistedAddressTrees>, config?: {
1676
1644
  programAddress?: TProgramAddress;
@@ -1689,7 +1657,7 @@ declare function parseCreateDomainUserAccountInstruction<TProgram extends string
1689
1657
 
1690
1658
  declare const CREATE_GLOBAL_COUNTER_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1691
1659
  declare function getCreateGlobalCounterDiscriminatorBytes(): ReadonlyUint8Array;
1692
- type CreateGlobalCounterInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountGlobalCounter extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1660
+ type CreateGlobalCounterInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountGlobalCounter extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1693
1661
  TAccountGlobalCounter extends string ? WritableAccount<TAccountGlobalCounter> : TAccountGlobalCounter,
1694
1662
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1695
1663
  TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
@@ -1712,7 +1680,7 @@ type CreateGlobalCounterAsyncInput<TAccountGlobalCounter extends string = string
1712
1680
  globalCounter?: Address<TAccountGlobalCounter>;
1713
1681
  payer: TransactionSigner<TAccountPayer>;
1714
1682
  systemProgram?: Address<TAccountSystemProgram>;
1715
- remainingAccounts: CreateGlobalCounterInstructionExtraArgs['remainingAccounts'];
1683
+ remainingAccounts: CreateGlobalCounterInstructionExtraArgs["remainingAccounts"];
1716
1684
  };
1717
1685
  declare function getCreateGlobalCounterInstructionAsync<TAccountGlobalCounter extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateGlobalCounterAsyncInput<TAccountGlobalCounter, TAccountPayer, TAccountSystemProgram>, config?: {
1718
1686
  programAddress?: TProgramAddress;
@@ -1721,7 +1689,7 @@ type CreateGlobalCounterInput<TAccountGlobalCounter extends string = string, TAc
1721
1689
  globalCounter: Address<TAccountGlobalCounter>;
1722
1690
  payer: TransactionSigner<TAccountPayer>;
1723
1691
  systemProgram?: Address<TAccountSystemProgram>;
1724
- remainingAccounts: CreateGlobalCounterInstructionExtraArgs['remainingAccounts'];
1692
+ remainingAccounts: CreateGlobalCounterInstructionExtraArgs["remainingAccounts"];
1725
1693
  };
1726
1694
  declare function getCreateGlobalCounterInstruction<TAccountGlobalCounter extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateGlobalCounterInput<TAccountGlobalCounter, TAccountPayer, TAccountSystemProgram>, config?: {
1727
1695
  programAddress?: TProgramAddress;
@@ -1739,7 +1707,7 @@ declare function parseCreateGlobalCounterInstruction<TProgram extends string, TA
1739
1707
 
1740
1708
  declare const CREATE_USER_ACCOUNTS_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1741
1709
  declare function getCreateUserAccountsDiscriminatorBytes(): ReadonlyUint8Array;
1742
- type CreateUserAccountsInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1710
+ type CreateUserAccountsInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1743
1711
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1744
1712
  TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
1745
1713
  TAccountWhitelistedAddressTrees extends string ? ReadonlyAccount<TAccountWhitelistedAddressTrees> : TAccountWhitelistedAddressTrees,
@@ -1767,9 +1735,9 @@ type CreateUserAccountsAsyncInput<TAccountPayer extends string = string, TAccoun
1767
1735
  payer: TransactionSigner<TAccountPayer>;
1768
1736
  systemProgram?: Address<TAccountSystemProgram>;
1769
1737
  whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1770
- compressedProofArgs: CreateUserAccountsInstructionDataArgs['compressedProofArgs'];
1771
- createUserArgs: CreateUserAccountsInstructionDataArgs['createUserArgs'];
1772
- remainingAccounts: CreateUserAccountsInstructionExtraArgs['remainingAccounts'];
1738
+ compressedProofArgs: CreateUserAccountsInstructionDataArgs["compressedProofArgs"];
1739
+ createUserArgs: CreateUserAccountsInstructionDataArgs["createUserArgs"];
1740
+ remainingAccounts: CreateUserAccountsInstructionExtraArgs["remainingAccounts"];
1773
1741
  };
1774
1742
  declare function getCreateUserAccountsInstructionAsync<TAccountPayer extends string, TAccountSystemProgram extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateUserAccountsAsyncInput<TAccountPayer, TAccountSystemProgram, TAccountWhitelistedAddressTrees>, config?: {
1775
1743
  programAddress?: TProgramAddress;
@@ -1778,9 +1746,9 @@ type CreateUserAccountsInput<TAccountPayer extends string = string, TAccountSyst
1778
1746
  payer: TransactionSigner<TAccountPayer>;
1779
1747
  systemProgram?: Address<TAccountSystemProgram>;
1780
1748
  whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
1781
- compressedProofArgs: CreateUserAccountsInstructionDataArgs['compressedProofArgs'];
1782
- createUserArgs: CreateUserAccountsInstructionDataArgs['createUserArgs'];
1783
- remainingAccounts: CreateUserAccountsInstructionExtraArgs['remainingAccounts'];
1749
+ compressedProofArgs: CreateUserAccountsInstructionDataArgs["compressedProofArgs"];
1750
+ createUserArgs: CreateUserAccountsInstructionDataArgs["createUserArgs"];
1751
+ remainingAccounts: CreateUserAccountsInstructionExtraArgs["remainingAccounts"];
1784
1752
  };
1785
1753
  declare function getCreateUserAccountsInstruction<TAccountPayer extends string, TAccountSystemProgram extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateUserAccountsInput<TAccountPayer, TAccountSystemProgram, TAccountWhitelistedAddressTrees>, config?: {
1786
1754
  programAddress?: TProgramAddress;
@@ -1798,7 +1766,7 @@ declare function parseCreateUserAccountsInstruction<TProgram extends string, TAc
1798
1766
 
1799
1767
  declare const DECOMPRESS_SETTINGS_ACCOUNT_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1800
1768
  declare function getDecompressSettingsAccountDiscriminatorBytes(): ReadonlyUint8Array;
1801
- type DecompressSettingsAccountInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1769
+ type DecompressSettingsAccountInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1802
1770
  TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
1803
1771
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1804
1772
  TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
@@ -1832,10 +1800,10 @@ type DecompressSettingsAccountInput<TAccountSettings extends string = string, TA
1832
1800
  systemProgram?: Address<TAccountSystemProgram>;
1833
1801
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
1834
1802
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
1835
- settingsMutArgs: DecompressSettingsAccountInstructionDataArgs['settingsMutArgs'];
1836
- compressedProofArgs: DecompressSettingsAccountInstructionDataArgs['compressedProofArgs'];
1837
- secp256r1VerifyArgs: DecompressSettingsAccountInstructionDataArgs['secp256r1VerifyArgs'];
1838
- remainingAccounts: DecompressSettingsAccountInstructionExtraArgs['remainingAccounts'];
1803
+ settingsMutArgs: DecompressSettingsAccountInstructionDataArgs["settingsMutArgs"];
1804
+ compressedProofArgs: DecompressSettingsAccountInstructionDataArgs["compressedProofArgs"];
1805
+ secp256r1VerifyArgs: DecompressSettingsAccountInstructionDataArgs["secp256r1VerifyArgs"];
1806
+ remainingAccounts: DecompressSettingsAccountInstructionExtraArgs["remainingAccounts"];
1839
1807
  };
1840
1808
  declare function getDecompressSettingsAccountInstruction<TAccountSettings extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: DecompressSettingsAccountInput<TAccountSettings, TAccountPayer, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
1841
1809
  programAddress?: TProgramAddress;
@@ -1879,8 +1847,8 @@ type DisableDomainConfigInstructionExtraArgs = {
1879
1847
  type DisableDomainConfigInput<TAccountDomainConfig extends string = string, TAccountAdmin extends string = string> = {
1880
1848
  domainConfig: Address<TAccountDomainConfig>;
1881
1849
  admin: TransactionSigner<TAccountAdmin>;
1882
- disable: DisableDomainConfigInstructionDataArgs['disable'];
1883
- remainingAccounts: DisableDomainConfigInstructionExtraArgs['remainingAccounts'];
1850
+ disable: DisableDomainConfigInstructionDataArgs["disable"];
1851
+ remainingAccounts: DisableDomainConfigInstructionExtraArgs["remainingAccounts"];
1884
1852
  };
1885
1853
  declare function getDisableDomainConfigInstruction<TAccountDomainConfig extends string, TAccountAdmin extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: DisableDomainConfigInput<TAccountDomainConfig, TAccountAdmin>, config?: {
1886
1854
  programAddress?: TProgramAddress;
@@ -1897,7 +1865,7 @@ declare function parseDisableDomainConfigInstruction<TProgram extends string, TA
1897
1865
 
1898
1866
  declare const EDIT_DOMAIN_CONFIG_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1899
1867
  declare function getEditDomainConfigDiscriminatorBytes(): ReadonlyUint8Array;
1900
- type EditDomainConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountAuthority extends string | AccountMeta<string> = string, TAccountNewAuthority extends string | AccountMeta<string> = string, TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1868
+ type EditDomainConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountAuthority extends string | AccountMeta<string> = string, TAccountNewAuthority extends string | AccountMeta<string> = string, TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1901
1869
  TAccountDomainConfig extends string ? WritableAccount<TAccountDomainConfig> : TAccountDomainConfig,
1902
1870
  TAccountAuthority extends string ? WritableSignerAccount<TAccountAuthority> & AccountSignerMeta<TAccountAuthority> : TAccountAuthority,
1903
1871
  TAccountNewAuthority extends string ? ReadonlySignerAccount<TAccountNewAuthority> & AccountSignerMeta<TAccountNewAuthority> : TAccountNewAuthority,
@@ -1929,9 +1897,9 @@ type EditDomainConfigAsyncInput<TAccountDomainConfig extends string = string, TA
1929
1897
  newAuthority?: TransactionSigner<TAccountNewAuthority>;
1930
1898
  whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1931
1899
  systemProgram?: Address<TAccountSystemProgram>;
1932
- newOrigins: EditDomainConfigInstructionDataArgs['newOrigins'];
1933
- newAuthorityArgs: EditDomainConfigInstructionDataArgs['newAuthorityArgs'];
1934
- remainingAccounts: EditDomainConfigInstructionExtraArgs['remainingAccounts'];
1900
+ newOrigins: EditDomainConfigInstructionDataArgs["newOrigins"];
1901
+ newAuthorityArgs: EditDomainConfigInstructionDataArgs["newAuthorityArgs"];
1902
+ remainingAccounts: EditDomainConfigInstructionExtraArgs["remainingAccounts"];
1935
1903
  };
1936
1904
  declare function getEditDomainConfigInstructionAsync<TAccountDomainConfig extends string, TAccountAuthority extends string, TAccountNewAuthority extends string, TAccountWhitelistedAddressTrees extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: EditDomainConfigAsyncInput<TAccountDomainConfig, TAccountAuthority, TAccountNewAuthority, TAccountWhitelistedAddressTrees, TAccountSystemProgram>, config?: {
1937
1905
  programAddress?: TProgramAddress;
@@ -1942,9 +1910,9 @@ type EditDomainConfigInput<TAccountDomainConfig extends string = string, TAccoun
1942
1910
  newAuthority?: TransactionSigner<TAccountNewAuthority>;
1943
1911
  whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1944
1912
  systemProgram?: Address<TAccountSystemProgram>;
1945
- newOrigins: EditDomainConfigInstructionDataArgs['newOrigins'];
1946
- newAuthorityArgs: EditDomainConfigInstructionDataArgs['newAuthorityArgs'];
1947
- remainingAccounts: EditDomainConfigInstructionExtraArgs['remainingAccounts'];
1913
+ newOrigins: EditDomainConfigInstructionDataArgs["newOrigins"];
1914
+ newAuthorityArgs: EditDomainConfigInstructionDataArgs["newAuthorityArgs"];
1915
+ remainingAccounts: EditDomainConfigInstructionExtraArgs["remainingAccounts"];
1948
1916
  };
1949
1917
  declare function getEditDomainConfigInstruction<TAccountDomainConfig extends string, TAccountAuthority extends string, TAccountNewAuthority extends string, TAccountWhitelistedAddressTrees extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: EditDomainConfigInput<TAccountDomainConfig, TAccountAuthority, TAccountNewAuthority, TAccountWhitelistedAddressTrees, TAccountSystemProgram>, config?: {
1950
1918
  programAddress?: TProgramAddress;
@@ -1990,10 +1958,10 @@ type EditTransactionManagerUrlInstructionExtraArgs = {
1990
1958
  };
1991
1959
  type EditTransactionManagerUrlInput<TAccountAuthority extends string = string> = {
1992
1960
  authority: TransactionSigner<TAccountAuthority>;
1993
- userMutArgs: EditTransactionManagerUrlInstructionDataArgs['userMutArgs'];
1994
- transactionManagerUrl: EditTransactionManagerUrlInstructionDataArgs['transactionManagerUrl'];
1995
- compressedProofArgs: EditTransactionManagerUrlInstructionDataArgs['compressedProofArgs'];
1996
- remainingAccounts: EditTransactionManagerUrlInstructionExtraArgs['remainingAccounts'];
1961
+ userMutArgs: EditTransactionManagerUrlInstructionDataArgs["userMutArgs"];
1962
+ transactionManagerUrl: EditTransactionManagerUrlInstructionDataArgs["transactionManagerUrl"];
1963
+ compressedProofArgs: EditTransactionManagerUrlInstructionDataArgs["compressedProofArgs"];
1964
+ remainingAccounts: EditTransactionManagerUrlInstructionExtraArgs["remainingAccounts"];
1997
1965
  };
1998
1966
  declare function getEditTransactionManagerUrlInstruction<TAccountAuthority extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: EditTransactionManagerUrlInput<TAccountAuthority>, config?: {
1999
1967
  programAddress?: TProgramAddress;
@@ -2009,7 +1977,7 @@ declare function parseEditTransactionManagerUrlInstruction<TProgram extends stri
2009
1977
 
2010
1978
  declare const EDIT_USER_DELEGATE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2011
1979
  declare function getEditUserDelegateDiscriminatorBytes(): ReadonlyUint8Array;
2012
- type EditUserDelegateInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountFeePayer extends string | AccountMeta<string> = string, TAccountSigner extends string | AccountMeta<string> = string, TAccountOldSettings extends string | AccountMeta<string> = string, TAccountNewSettings extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TAccountDomainConfig extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1980
+ type EditUserDelegateInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountFeePayer extends string | AccountMeta<string> = string, TAccountSigner extends string | AccountMeta<string> = string, TAccountOldSettings extends string | AccountMeta<string> = string, TAccountNewSettings extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountDomainConfig extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2013
1981
  TAccountFeePayer extends string ? WritableSignerAccount<TAccountFeePayer> & AccountSignerMeta<TAccountFeePayer> : TAccountFeePayer,
2014
1982
  TAccountSigner extends string ? ReadonlySignerAccount<TAccountSigner> & AccountSignerMeta<TAccountSigner> : TAccountSigner,
2015
1983
  TAccountOldSettings extends string ? WritableAccount<TAccountOldSettings> : TAccountOldSettings,
@@ -2053,13 +2021,13 @@ type EditUserDelegateInput<TAccountFeePayer extends string = string, TAccountSig
2053
2021
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
2054
2022
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
2055
2023
  domainConfig?: Address<TAccountDomainConfig>;
2056
- userMutArgs: EditUserDelegateInstructionDataArgs['userMutArgs'];
2057
- secp256r1VerifyArgs: EditUserDelegateInstructionDataArgs['secp256r1VerifyArgs'];
2058
- delegateTo: EditUserDelegateInstructionDataArgs['delegateTo'];
2059
- oldSettingsMutArgs: EditUserDelegateInstructionDataArgs['oldSettingsMutArgs'];
2060
- newSettingsMutArgs: EditUserDelegateInstructionDataArgs['newSettingsMutArgs'];
2061
- compressedProofArgs: EditUserDelegateInstructionDataArgs['compressedProofArgs'];
2062
- remainingAccounts: EditUserDelegateInstructionExtraArgs['remainingAccounts'];
2024
+ userMutArgs: EditUserDelegateInstructionDataArgs["userMutArgs"];
2025
+ secp256r1VerifyArgs: EditUserDelegateInstructionDataArgs["secp256r1VerifyArgs"];
2026
+ delegateTo: EditUserDelegateInstructionDataArgs["delegateTo"];
2027
+ oldSettingsMutArgs: EditUserDelegateInstructionDataArgs["oldSettingsMutArgs"];
2028
+ newSettingsMutArgs: EditUserDelegateInstructionDataArgs["newSettingsMutArgs"];
2029
+ compressedProofArgs: EditUserDelegateInstructionDataArgs["compressedProofArgs"];
2030
+ remainingAccounts: EditUserDelegateInstructionExtraArgs["remainingAccounts"];
2063
2031
  };
2064
2032
  declare function getEditUserDelegateInstruction<TAccountFeePayer extends string, TAccountSigner extends string, TAccountOldSettings extends string, TAccountNewSettings extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountDomainConfig extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: EditUserDelegateInput<TAccountFeePayer, TAccountSigner, TAccountOldSettings, TAccountNewSettings, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountDomainConfig>, config?: {
2065
2033
  programAddress?: TProgramAddress;
@@ -2079,99 +2047,9 @@ type ParsedEditUserDelegateInstruction<TProgram extends string = typeof MULTI_WA
2079
2047
  };
2080
2048
  declare function parseEditUserDelegateInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedEditUserDelegateInstruction<TProgram, TAccountMetas>;
2081
2049
 
2082
- declare const MIGRATE_COMPRESSED_SETTINGS_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2083
- declare function getMigrateCompressedSettingsDiscriminatorBytes(): ReadonlyUint8Array;
2084
- type MigrateCompressedSettingsInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountAuthority extends string | AccountMeta<string> = 'AMn21jT5RMZrv5hSvtkrWCMJFp3cUyeAx4AxKvF59xJZ', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2085
- TAccountAuthority extends string ? WritableSignerAccount<TAccountAuthority> & AccountSignerMeta<TAccountAuthority> : TAccountAuthority,
2086
- ...TRemainingAccounts
2087
- ]>;
2088
- type MigrateCompressedSettingsInstructionData = {
2089
- discriminator: ReadonlyUint8Array;
2090
- args: CompressedSettingsData;
2091
- compressedProofArgs: ProofArgs;
2092
- settingsCreationArgs: SettingsCreationArgs;
2093
- };
2094
- type MigrateCompressedSettingsInstructionDataArgs = {
2095
- args: CompressedSettingsDataArgs;
2096
- compressedProofArgs: ProofArgsArgs;
2097
- settingsCreationArgs: SettingsCreationArgsArgs;
2098
- };
2099
- declare function getMigrateCompressedSettingsInstructionDataEncoder(): Encoder<MigrateCompressedSettingsInstructionDataArgs>;
2100
- declare function getMigrateCompressedSettingsInstructionDataDecoder(): Decoder<MigrateCompressedSettingsInstructionData>;
2101
- declare function getMigrateCompressedSettingsInstructionDataCodec(): Codec<MigrateCompressedSettingsInstructionDataArgs, MigrateCompressedSettingsInstructionData>;
2102
- type MigrateCompressedSettingsInstructionExtraArgs = {
2103
- remainingAccounts: Array<{
2104
- address: Address;
2105
- role: number;
2106
- }>;
2107
- };
2108
- type MigrateCompressedSettingsInput<TAccountAuthority extends string = string> = {
2109
- authority?: TransactionSigner<TAccountAuthority>;
2110
- args: MigrateCompressedSettingsInstructionDataArgs['args'];
2111
- compressedProofArgs: MigrateCompressedSettingsInstructionDataArgs['compressedProofArgs'];
2112
- settingsCreationArgs: MigrateCompressedSettingsInstructionDataArgs['settingsCreationArgs'];
2113
- remainingAccounts: MigrateCompressedSettingsInstructionExtraArgs['remainingAccounts'];
2114
- };
2115
- declare function getMigrateCompressedSettingsInstruction<TAccountAuthority extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: MigrateCompressedSettingsInput<TAccountAuthority>, config?: {
2116
- programAddress?: TProgramAddress;
2117
- }): MigrateCompressedSettingsInstruction<TProgramAddress, TAccountAuthority>;
2118
- type ParsedMigrateCompressedSettingsInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
2119
- programAddress: Address<TProgram>;
2120
- accounts: {
2121
- authority: TAccountMetas[0];
2122
- };
2123
- data: MigrateCompressedSettingsInstructionData;
2124
- };
2125
- declare function parseMigrateCompressedSettingsInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedMigrateCompressedSettingsInstruction<TProgram, TAccountMetas>;
2126
-
2127
- declare const MIGRATE_COMPRESSED_USERS_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2128
- declare function getMigrateCompressedUsersDiscriminatorBytes(): ReadonlyUint8Array;
2129
- type MigrateCompressedUsersInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountAuthority extends string | AccountMeta<string> = 'AMn21jT5RMZrv5hSvtkrWCMJFp3cUyeAx4AxKvF59xJZ', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2130
- TAccountAuthority extends string ? WritableSignerAccount<TAccountAuthority> & AccountSignerMeta<TAccountAuthority> : TAccountAuthority,
2131
- ...TRemainingAccounts
2132
- ]>;
2133
- type MigrateCompressedUsersInstructionData = {
2134
- discriminator: ReadonlyUint8Array;
2135
- args: User;
2136
- compressedProofArgs: ProofArgs;
2137
- userCreationArgs: UserCreationArgs$2;
2138
- };
2139
- type MigrateCompressedUsersInstructionDataArgs = {
2140
- args: UserArgs;
2141
- compressedProofArgs: ProofArgsArgs;
2142
- userCreationArgs: UserCreationArgsArgs;
2143
- };
2144
- declare function getMigrateCompressedUsersInstructionDataEncoder(): Encoder<MigrateCompressedUsersInstructionDataArgs>;
2145
- declare function getMigrateCompressedUsersInstructionDataDecoder(): Decoder<MigrateCompressedUsersInstructionData>;
2146
- declare function getMigrateCompressedUsersInstructionDataCodec(): Codec<MigrateCompressedUsersInstructionDataArgs, MigrateCompressedUsersInstructionData>;
2147
- type MigrateCompressedUsersInstructionExtraArgs = {
2148
- remainingAccounts: Array<{
2149
- address: Address;
2150
- role: number;
2151
- }>;
2152
- };
2153
- type MigrateCompressedUsersInput<TAccountAuthority extends string = string> = {
2154
- authority?: TransactionSigner<TAccountAuthority>;
2155
- args: MigrateCompressedUsersInstructionDataArgs['args'];
2156
- compressedProofArgs: MigrateCompressedUsersInstructionDataArgs['compressedProofArgs'];
2157
- userCreationArgs: MigrateCompressedUsersInstructionDataArgs['userCreationArgs'];
2158
- remainingAccounts: MigrateCompressedUsersInstructionExtraArgs['remainingAccounts'];
2159
- };
2160
- declare function getMigrateCompressedUsersInstruction<TAccountAuthority extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: MigrateCompressedUsersInput<TAccountAuthority>, config?: {
2161
- programAddress?: TProgramAddress;
2162
- }): MigrateCompressedUsersInstruction<TProgramAddress, TAccountAuthority>;
2163
- type ParsedMigrateCompressedUsersInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
2164
- programAddress: Address<TProgram>;
2165
- accounts: {
2166
- authority: TAccountMetas[0];
2167
- };
2168
- data: MigrateCompressedUsersInstructionData;
2169
- };
2170
- declare function parseMigrateCompressedUsersInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedMigrateCompressedUsersInstruction<TProgram, TAccountMetas>;
2171
-
2172
2050
  declare const NATIVE_TRANSFER_INTENT_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2173
2051
  declare function getNativeTransferIntentDiscriminatorBytes(): ReadonlyUint8Array;
2174
- type NativeTransferIntentInstruction<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, TAccountDestination extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2052
+ type NativeTransferIntentInstruction<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, TAccountDestination extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2175
2053
  TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
2176
2054
  TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
2177
2055
  TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
@@ -2205,9 +2083,9 @@ type NativeTransferIntentAsyncInput<TAccountSettings extends string = string, TA
2205
2083
  source?: Address<TAccountSource>;
2206
2084
  destination: Address<TAccountDestination>;
2207
2085
  systemProgram?: Address<TAccountSystemProgram>;
2208
- amount: NativeTransferIntentInstructionDataArgs['amount'];
2209
- secp256r1VerifyArgs: NativeTransferIntentInstructionDataArgs['secp256r1VerifyArgs'];
2210
- remainingAccounts: NativeTransferIntentInstructionExtraArgs['remainingAccounts'];
2086
+ amount: NativeTransferIntentInstructionDataArgs["amount"];
2087
+ secp256r1VerifyArgs: NativeTransferIntentInstructionDataArgs["secp256r1VerifyArgs"];
2088
+ remainingAccounts: NativeTransferIntentInstructionExtraArgs["remainingAccounts"];
2211
2089
  };
2212
2090
  declare function getNativeTransferIntentInstructionAsync<TAccountSettings extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountDestination extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: NativeTransferIntentAsyncInput<TAccountSettings, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountDestination, TAccountSystemProgram>, config?: {
2213
2091
  programAddress?: TProgramAddress;
@@ -2219,9 +2097,9 @@ type NativeTransferIntentInput<TAccountSettings extends string = string, TAccoun
2219
2097
  source: Address<TAccountSource>;
2220
2098
  destination: Address<TAccountDestination>;
2221
2099
  systemProgram?: Address<TAccountSystemProgram>;
2222
- amount: NativeTransferIntentInstructionDataArgs['amount'];
2223
- secp256r1VerifyArgs: NativeTransferIntentInstructionDataArgs['secp256r1VerifyArgs'];
2224
- remainingAccounts: NativeTransferIntentInstructionExtraArgs['remainingAccounts'];
2100
+ amount: NativeTransferIntentInstructionDataArgs["amount"];
2101
+ secp256r1VerifyArgs: NativeTransferIntentInstructionDataArgs["secp256r1VerifyArgs"];
2102
+ remainingAccounts: NativeTransferIntentInstructionExtraArgs["remainingAccounts"];
2225
2103
  };
2226
2104
  declare function getNativeTransferIntentInstruction<TAccountSettings extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountDestination extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: NativeTransferIntentInput<TAccountSettings, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountDestination, TAccountSystemProgram>, config?: {
2227
2105
  programAddress?: TProgramAddress;
@@ -2242,7 +2120,7 @@ declare function parseNativeTransferIntentInstruction<TProgram extends string, T
2242
2120
 
2243
2121
  declare const NATIVE_TRANSFER_INTENT_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2244
2122
  declare function getNativeTransferIntentCompressedDiscriminatorBytes(): ReadonlyUint8Array;
2245
- type NativeTransferIntentCompressedInstruction<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, TAccountDestination extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2123
+ type NativeTransferIntentCompressedInstruction<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, TAccountDestination extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2246
2124
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
2247
2125
  TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
2248
2126
  TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
@@ -2280,11 +2158,11 @@ type NativeTransferIntentCompressedInput<TAccountPayer extends string = string,
2280
2158
  source: Address<TAccountSource>;
2281
2159
  destination: Address<TAccountDestination>;
2282
2160
  systemProgram?: Address<TAccountSystemProgram>;
2283
- amount: NativeTransferIntentCompressedInstructionDataArgs['amount'];
2284
- secp256r1VerifyArgs: NativeTransferIntentCompressedInstructionDataArgs['secp256r1VerifyArgs'];
2285
- settingsMutArgs: NativeTransferIntentCompressedInstructionDataArgs['settingsMutArgs'];
2286
- compressedProofArgs: NativeTransferIntentCompressedInstructionDataArgs['compressedProofArgs'];
2287
- remainingAccounts: NativeTransferIntentCompressedInstructionExtraArgs['remainingAccounts'];
2161
+ amount: NativeTransferIntentCompressedInstructionDataArgs["amount"];
2162
+ secp256r1VerifyArgs: NativeTransferIntentCompressedInstructionDataArgs["secp256r1VerifyArgs"];
2163
+ settingsMutArgs: NativeTransferIntentCompressedInstructionDataArgs["settingsMutArgs"];
2164
+ compressedProofArgs: NativeTransferIntentCompressedInstructionDataArgs["compressedProofArgs"];
2165
+ remainingAccounts: NativeTransferIntentCompressedInstructionExtraArgs["remainingAccounts"];
2288
2166
  };
2289
2167
  declare function getNativeTransferIntentCompressedInstruction<TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountDestination extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: NativeTransferIntentCompressedInput<TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountDestination, TAccountSystemProgram>, config?: {
2290
2168
  programAddress?: TProgramAddress;
@@ -2305,7 +2183,7 @@ declare function parseNativeTransferIntentCompressedInstruction<TProgram extends
2305
2183
 
2306
2184
  declare const TOKEN_TRANSFER_INTENT_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2307
2185
  declare function getTokenTransferIntentDiscriminatorBytes(): ReadonlyUint8Array;
2308
- type TokenTransferIntentInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TAccountSource extends string | AccountMeta<string> = string, TAccountSourceSplTokenAccount extends string | AccountMeta<string> = string, TAccountSourceCtokenTokenAccount extends string | AccountMeta<string> = string, TAccountDestination extends string | AccountMeta<string> = string, TAccountDestinationSplTokenAccount extends string | AccountMeta<string> = string, TAccountDestinationCtokenTokenAccount extends string | AccountMeta<string> = string, TAccountTokenProgram extends string | AccountMeta<string> = 'TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA', TAccountMint extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountCompressedTokenProgramAuthority extends string | AccountMeta<string> = 'GXtd2izAiMJPwMEjfgTRH3d7k9mjn4Jq3JrWFv9gySYy', TAccountSplInterfacePda extends string | AccountMeta<string> = string, TAccountCompressibleConfig extends string | AccountMeta<string> = string, TAccountRentSponsor extends string | AccountMeta<string> = string, TAccountCompressedTokenProgram extends string | AccountMeta<string> = 'cTokenmWW8bLPjZEBAUgYy3zKxQZW6VKi7bqNFEVv3m', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2186
+ type TokenTransferIntentInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountSource extends string | AccountMeta<string> = string, TAccountSourceSplTokenAccount extends string | AccountMeta<string> = string, TAccountSourceCtokenTokenAccount extends string | AccountMeta<string> = string, TAccountDestination extends string | AccountMeta<string> = string, TAccountDestinationSplTokenAccount extends string | AccountMeta<string> = string, TAccountDestinationCtokenTokenAccount extends string | AccountMeta<string> = string, TAccountTokenProgram extends string | AccountMeta<string> = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA", TAccountMint extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountCompressedTokenProgramAuthority extends string | AccountMeta<string> = "GXtd2izAiMJPwMEjfgTRH3d7k9mjn4Jq3JrWFv9gySYy", TAccountSplInterfacePda extends string | AccountMeta<string> = string, TAccountCompressibleConfig extends string | AccountMeta<string> = string, TAccountRentSponsor extends string | AccountMeta<string> = string, TAccountCompressedTokenProgram extends string | AccountMeta<string> = "cTokenmWW8bLPjZEBAUgYy3zKxQZW6VKi7bqNFEVv3m", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2309
2187
  TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
2310
2188
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
2311
2189
  TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
@@ -2369,12 +2247,12 @@ type TokenTransferIntentAsyncInput<TAccountSettings extends string = string, TAc
2369
2247
  compressibleConfig: Address<TAccountCompressibleConfig>;
2370
2248
  rentSponsor?: Address<TAccountRentSponsor>;
2371
2249
  compressedTokenProgram?: Address<TAccountCompressedTokenProgram>;
2372
- splInterfacePdaArgs: TokenTransferIntentInstructionDataArgs['splInterfacePdaArgs'];
2373
- amount: TokenTransferIntentInstructionDataArgs['amount'];
2374
- sourceCompressedTokenAccounts: TokenTransferIntentInstructionDataArgs['sourceCompressedTokenAccounts'];
2375
- compressedProofArgs: TokenTransferIntentInstructionDataArgs['compressedProofArgs'];
2376
- secp256r1VerifyArgs: TokenTransferIntentInstructionDataArgs['secp256r1VerifyArgs'];
2377
- remainingAccounts: TokenTransferIntentInstructionExtraArgs['remainingAccounts'];
2250
+ splInterfacePdaArgs: TokenTransferIntentInstructionDataArgs["splInterfacePdaArgs"];
2251
+ amount: TokenTransferIntentInstructionDataArgs["amount"];
2252
+ sourceCompressedTokenAccounts: TokenTransferIntentInstructionDataArgs["sourceCompressedTokenAccounts"];
2253
+ compressedProofArgs: TokenTransferIntentInstructionDataArgs["compressedProofArgs"];
2254
+ secp256r1VerifyArgs: TokenTransferIntentInstructionDataArgs["secp256r1VerifyArgs"];
2255
+ remainingAccounts: TokenTransferIntentInstructionExtraArgs["remainingAccounts"];
2378
2256
  };
2379
2257
  declare function getTokenTransferIntentInstructionAsync<TAccountSettings extends string, TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceSplTokenAccount extends string, TAccountSourceCtokenTokenAccount extends string, TAccountDestination extends string, TAccountDestinationSplTokenAccount extends string, TAccountDestinationCtokenTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string, TAccountSystemProgram extends string, TAccountCompressedTokenProgramAuthority extends string, TAccountSplInterfacePda extends string, TAccountCompressibleConfig extends string, TAccountRentSponsor extends string, TAccountCompressedTokenProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentAsyncInput<TAccountSettings, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>, config?: {
2380
2258
  programAddress?: TProgramAddress;
@@ -2398,12 +2276,12 @@ type TokenTransferIntentInput<TAccountSettings extends string = string, TAccount
2398
2276
  compressibleConfig: Address<TAccountCompressibleConfig>;
2399
2277
  rentSponsor?: Address<TAccountRentSponsor>;
2400
2278
  compressedTokenProgram?: Address<TAccountCompressedTokenProgram>;
2401
- splInterfacePdaArgs: TokenTransferIntentInstructionDataArgs['splInterfacePdaArgs'];
2402
- amount: TokenTransferIntentInstructionDataArgs['amount'];
2403
- sourceCompressedTokenAccounts: TokenTransferIntentInstructionDataArgs['sourceCompressedTokenAccounts'];
2404
- compressedProofArgs: TokenTransferIntentInstructionDataArgs['compressedProofArgs'];
2405
- secp256r1VerifyArgs: TokenTransferIntentInstructionDataArgs['secp256r1VerifyArgs'];
2406
- remainingAccounts: TokenTransferIntentInstructionExtraArgs['remainingAccounts'];
2279
+ splInterfacePdaArgs: TokenTransferIntentInstructionDataArgs["splInterfacePdaArgs"];
2280
+ amount: TokenTransferIntentInstructionDataArgs["amount"];
2281
+ sourceCompressedTokenAccounts: TokenTransferIntentInstructionDataArgs["sourceCompressedTokenAccounts"];
2282
+ compressedProofArgs: TokenTransferIntentInstructionDataArgs["compressedProofArgs"];
2283
+ secp256r1VerifyArgs: TokenTransferIntentInstructionDataArgs["secp256r1VerifyArgs"];
2284
+ remainingAccounts: TokenTransferIntentInstructionExtraArgs["remainingAccounts"];
2407
2285
  };
2408
2286
  declare function getTokenTransferIntentInstruction<TAccountSettings extends string, TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceSplTokenAccount extends string, TAccountSourceCtokenTokenAccount extends string, TAccountDestination extends string, TAccountDestinationSplTokenAccount extends string, TAccountDestinationCtokenTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string, TAccountSystemProgram extends string, TAccountCompressedTokenProgramAuthority extends string, TAccountSplInterfacePda extends string, TAccountCompressibleConfig extends string, TAccountRentSponsor extends string, TAccountCompressedTokenProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentInput<TAccountSettings, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>, config?: {
2409
2287
  programAddress?: TProgramAddress;
@@ -2436,7 +2314,7 @@ declare function parseTokenTransferIntentInstruction<TProgram extends string, TA
2436
2314
 
2437
2315
  declare const TOKEN_TRANSFER_INTENT_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2438
2316
  declare function getTokenTransferIntentCompressedDiscriminatorBytes(): ReadonlyUint8Array;
2439
- type TokenTransferIntentCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TAccountSource extends string | AccountMeta<string> = string, TAccountSourceSplTokenAccount extends string | AccountMeta<string> = string, TAccountSourceCtokenTokenAccount extends string | AccountMeta<string> = string, TAccountDestination extends string | AccountMeta<string> = string, TAccountDestinationSplTokenAccount extends string | AccountMeta<string> = string, TAccountDestinationCtokenTokenAccount extends string | AccountMeta<string> = string, TAccountTokenProgram extends string | AccountMeta<string> = 'TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA', TAccountMint extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountCompressedTokenProgramAuthority extends string | AccountMeta<string> = 'GXtd2izAiMJPwMEjfgTRH3d7k9mjn4Jq3JrWFv9gySYy', TAccountSplInterfacePda extends string | AccountMeta<string> = string, TAccountCompressibleConfig extends string | AccountMeta<string> = string, TAccountRentSponsor extends string | AccountMeta<string> = string, TAccountCompressedTokenProgram extends string | AccountMeta<string> = 'cTokenmWW8bLPjZEBAUgYy3zKxQZW6VKi7bqNFEVv3m', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2317
+ type TokenTransferIntentCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountSource extends string | AccountMeta<string> = string, TAccountSourceSplTokenAccount extends string | AccountMeta<string> = string, TAccountSourceCtokenTokenAccount extends string | AccountMeta<string> = string, TAccountDestination extends string | AccountMeta<string> = string, TAccountDestinationSplTokenAccount extends string | AccountMeta<string> = string, TAccountDestinationCtokenTokenAccount extends string | AccountMeta<string> = string, TAccountTokenProgram extends string | AccountMeta<string> = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA", TAccountMint extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountCompressedTokenProgramAuthority extends string | AccountMeta<string> = "GXtd2izAiMJPwMEjfgTRH3d7k9mjn4Jq3JrWFv9gySYy", TAccountSplInterfacePda extends string | AccountMeta<string> = string, TAccountCompressibleConfig extends string | AccountMeta<string> = string, TAccountRentSponsor extends string | AccountMeta<string> = string, TAccountCompressedTokenProgram extends string | AccountMeta<string> = "cTokenmWW8bLPjZEBAUgYy3zKxQZW6VKi7bqNFEVv3m", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2440
2318
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
2441
2319
  TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
2442
2320
  TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
@@ -2500,13 +2378,13 @@ type TokenTransferIntentCompressedAsyncInput<TAccountPayer extends string = stri
2500
2378
  compressibleConfig: Address<TAccountCompressibleConfig>;
2501
2379
  rentSponsor?: Address<TAccountRentSponsor>;
2502
2380
  compressedTokenProgram?: Address<TAccountCompressedTokenProgram>;
2503
- splInterfacePdaArgs: TokenTransferIntentCompressedInstructionDataArgs['splInterfacePdaArgs'];
2504
- amount: TokenTransferIntentCompressedInstructionDataArgs['amount'];
2505
- sourceCompressedTokenAccounts: TokenTransferIntentCompressedInstructionDataArgs['sourceCompressedTokenAccounts'];
2506
- secp256r1VerifyArgs: TokenTransferIntentCompressedInstructionDataArgs['secp256r1VerifyArgs'];
2507
- settingsMutArgs: TokenTransferIntentCompressedInstructionDataArgs['settingsMutArgs'];
2508
- compressedProofArgs: TokenTransferIntentCompressedInstructionDataArgs['compressedProofArgs'];
2509
- remainingAccounts: TokenTransferIntentCompressedInstructionExtraArgs['remainingAccounts'];
2381
+ splInterfacePdaArgs: TokenTransferIntentCompressedInstructionDataArgs["splInterfacePdaArgs"];
2382
+ amount: TokenTransferIntentCompressedInstructionDataArgs["amount"];
2383
+ sourceCompressedTokenAccounts: TokenTransferIntentCompressedInstructionDataArgs["sourceCompressedTokenAccounts"];
2384
+ secp256r1VerifyArgs: TokenTransferIntentCompressedInstructionDataArgs["secp256r1VerifyArgs"];
2385
+ settingsMutArgs: TokenTransferIntentCompressedInstructionDataArgs["settingsMutArgs"];
2386
+ compressedProofArgs: TokenTransferIntentCompressedInstructionDataArgs["compressedProofArgs"];
2387
+ remainingAccounts: TokenTransferIntentCompressedInstructionExtraArgs["remainingAccounts"];
2510
2388
  };
2511
2389
  declare function getTokenTransferIntentCompressedInstructionAsync<TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceSplTokenAccount extends string, TAccountSourceCtokenTokenAccount extends string, TAccountDestination extends string, TAccountDestinationSplTokenAccount extends string, TAccountDestinationCtokenTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string, TAccountSystemProgram extends string, TAccountCompressedTokenProgramAuthority extends string, TAccountSplInterfacePda extends string, TAccountCompressibleConfig extends string, TAccountRentSponsor extends string, TAccountCompressedTokenProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentCompressedAsyncInput<TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>, config?: {
2512
2390
  programAddress?: TProgramAddress;
@@ -2529,13 +2407,13 @@ type TokenTransferIntentCompressedInput<TAccountPayer extends string = string, T
2529
2407
  compressibleConfig: Address<TAccountCompressibleConfig>;
2530
2408
  rentSponsor?: Address<TAccountRentSponsor>;
2531
2409
  compressedTokenProgram?: Address<TAccountCompressedTokenProgram>;
2532
- splInterfacePdaArgs: TokenTransferIntentCompressedInstructionDataArgs['splInterfacePdaArgs'];
2533
- amount: TokenTransferIntentCompressedInstructionDataArgs['amount'];
2534
- sourceCompressedTokenAccounts: TokenTransferIntentCompressedInstructionDataArgs['sourceCompressedTokenAccounts'];
2535
- secp256r1VerifyArgs: TokenTransferIntentCompressedInstructionDataArgs['secp256r1VerifyArgs'];
2536
- settingsMutArgs: TokenTransferIntentCompressedInstructionDataArgs['settingsMutArgs'];
2537
- compressedProofArgs: TokenTransferIntentCompressedInstructionDataArgs['compressedProofArgs'];
2538
- remainingAccounts: TokenTransferIntentCompressedInstructionExtraArgs['remainingAccounts'];
2410
+ splInterfacePdaArgs: TokenTransferIntentCompressedInstructionDataArgs["splInterfacePdaArgs"];
2411
+ amount: TokenTransferIntentCompressedInstructionDataArgs["amount"];
2412
+ sourceCompressedTokenAccounts: TokenTransferIntentCompressedInstructionDataArgs["sourceCompressedTokenAccounts"];
2413
+ secp256r1VerifyArgs: TokenTransferIntentCompressedInstructionDataArgs["secp256r1VerifyArgs"];
2414
+ settingsMutArgs: TokenTransferIntentCompressedInstructionDataArgs["settingsMutArgs"];
2415
+ compressedProofArgs: TokenTransferIntentCompressedInstructionDataArgs["compressedProofArgs"];
2416
+ remainingAccounts: TokenTransferIntentCompressedInstructionExtraArgs["remainingAccounts"];
2539
2417
  };
2540
2418
  declare function getTokenTransferIntentCompressedInstruction<TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceSplTokenAccount extends string, TAccountSourceCtokenTokenAccount extends string, TAccountDestination extends string, TAccountDestinationSplTokenAccount extends string, TAccountDestinationCtokenTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string, TAccountSystemProgram extends string, TAccountCompressedTokenProgramAuthority extends string, TAccountSplInterfacePda extends string, TAccountCompressibleConfig extends string, TAccountRentSponsor extends string, TAccountCompressedTokenProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentCompressedInput<TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>, config?: {
2541
2419
  programAddress?: TProgramAddress;
@@ -2567,7 +2445,7 @@ declare function parseTokenTransferIntentCompressedInstruction<TProgram extends
2567
2445
 
2568
2446
  declare const TRANSACTION_BUFFER_CLOSE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2569
2447
  declare function getTransactionBufferCloseDiscriminatorBytes(): ReadonlyUint8Array;
2570
- type TransactionBufferCloseInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCloser extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2448
+ type TransactionBufferCloseInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCloser extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2571
2449
  TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
2572
2450
  TAccountPayer extends string ? WritableAccount<TAccountPayer> : TAccountPayer,
2573
2451
  TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
@@ -2601,8 +2479,8 @@ type TransactionBufferCloseInput<TAccountSettings extends string = string, TAcco
2601
2479
  closer?: TransactionSigner<TAccountCloser>;
2602
2480
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
2603
2481
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
2604
- secp256r1VerifyArgs: TransactionBufferCloseInstructionDataArgs['secp256r1VerifyArgs'];
2605
- remainingAccounts: TransactionBufferCloseInstructionExtraArgs['remainingAccounts'];
2482
+ secp256r1VerifyArgs: TransactionBufferCloseInstructionDataArgs["secp256r1VerifyArgs"];
2483
+ remainingAccounts: TransactionBufferCloseInstructionExtraArgs["remainingAccounts"];
2606
2484
  };
2607
2485
  declare function getTransactionBufferCloseInstruction<TAccountSettings extends string, TAccountPayer extends string, TAccountDomainConfig extends string, TAccountTransactionBuffer extends string, TAccountCloser extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferCloseInput<TAccountSettings, TAccountPayer, TAccountDomainConfig, TAccountTransactionBuffer, TAccountCloser, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
2608
2486
  programAddress?: TProgramAddress;
@@ -2624,7 +2502,7 @@ declare function parseTransactionBufferCloseInstruction<TProgram extends string,
2624
2502
 
2625
2503
  declare const TRANSACTION_BUFFER_CLOSE_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2626
2504
  declare function getTransactionBufferCloseCompressedDiscriminatorBytes(): ReadonlyUint8Array;
2627
- type TransactionBufferCloseCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountRentCollector extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCloser extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2505
+ type TransactionBufferCloseCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountRentCollector extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCloser extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2628
2506
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
2629
2507
  TAccountRentCollector extends string ? WritableAccount<TAccountRentCollector> : TAccountRentCollector,
2630
2508
  TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
@@ -2662,10 +2540,10 @@ type TransactionBufferCloseCompressedInput<TAccountPayer extends string = string
2662
2540
  closer?: TransactionSigner<TAccountCloser>;
2663
2541
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
2664
2542
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
2665
- secp256r1VerifyArgs: TransactionBufferCloseCompressedInstructionDataArgs['secp256r1VerifyArgs'];
2666
- settingsMutArgs: TransactionBufferCloseCompressedInstructionDataArgs['settingsMutArgs'];
2667
- compressedProofArgs: TransactionBufferCloseCompressedInstructionDataArgs['compressedProofArgs'];
2668
- remainingAccounts: TransactionBufferCloseCompressedInstructionExtraArgs['remainingAccounts'];
2543
+ secp256r1VerifyArgs: TransactionBufferCloseCompressedInstructionDataArgs["secp256r1VerifyArgs"];
2544
+ settingsMutArgs: TransactionBufferCloseCompressedInstructionDataArgs["settingsMutArgs"];
2545
+ compressedProofArgs: TransactionBufferCloseCompressedInstructionDataArgs["compressedProofArgs"];
2546
+ remainingAccounts: TransactionBufferCloseCompressedInstructionExtraArgs["remainingAccounts"];
2669
2547
  };
2670
2548
  declare function getTransactionBufferCloseCompressedInstruction<TAccountPayer extends string, TAccountRentCollector extends string, TAccountDomainConfig extends string, TAccountTransactionBuffer extends string, TAccountCloser extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferCloseCompressedInput<TAccountPayer, TAccountRentCollector, TAccountDomainConfig, TAccountTransactionBuffer, TAccountCloser, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
2671
2549
  programAddress?: TProgramAddress;
@@ -2687,7 +2565,7 @@ declare function parseTransactionBufferCloseCompressedInstruction<TProgram exten
2687
2565
 
2688
2566
  declare const TRANSACTION_BUFFER_CREATE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2689
2567
  declare function getTransactionBufferCreateDiscriminatorBytes(): ReadonlyUint8Array;
2690
- type TransactionBufferCreateInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCreator extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2568
+ type TransactionBufferCreateInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCreator extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2691
2569
  TAccountSettings extends string ? ReadonlyAccount<TAccountSettings> : TAccountSettings,
2692
2570
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
2693
2571
  TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
@@ -2725,9 +2603,9 @@ type TransactionBufferCreateInput<TAccountSettings extends string = string, TAcc
2725
2603
  systemProgram?: Address<TAccountSystemProgram>;
2726
2604
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
2727
2605
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
2728
- args: TransactionBufferCreateInstructionDataArgs['args'];
2729
- secp256r1VerifyArgs: TransactionBufferCreateInstructionDataArgs['secp256r1VerifyArgs'];
2730
- remainingAccounts: TransactionBufferCreateInstructionExtraArgs['remainingAccounts'];
2606
+ args: TransactionBufferCreateInstructionDataArgs["args"];
2607
+ secp256r1VerifyArgs: TransactionBufferCreateInstructionDataArgs["secp256r1VerifyArgs"];
2608
+ remainingAccounts: TransactionBufferCreateInstructionExtraArgs["remainingAccounts"];
2731
2609
  };
2732
2610
  declare function getTransactionBufferCreateInstruction<TAccountSettings extends string, TAccountPayer extends string, TAccountDomainConfig extends string, TAccountTransactionBuffer extends string, TAccountCreator extends string, TAccountSystemProgram extends string, TAccountInstructionsSysvar extends string, TAccountSlotHashSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferCreateInput<TAccountSettings, TAccountPayer, TAccountDomainConfig, TAccountTransactionBuffer, TAccountCreator, TAccountSystemProgram, TAccountInstructionsSysvar, TAccountSlotHashSysvar>, config?: {
2733
2611
  programAddress?: TProgramAddress;
@@ -2750,7 +2628,7 @@ declare function parseTransactionBufferCreateInstruction<TProgram extends string
2750
2628
 
2751
2629
  declare const TRANSACTION_BUFFER_CREATE_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2752
2630
  declare function getTransactionBufferCreateCompressedDiscriminatorBytes(): ReadonlyUint8Array;
2753
- type TransactionBufferCreateCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCreator extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2631
+ type TransactionBufferCreateCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCreator extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2754
2632
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
2755
2633
  TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
2756
2634
  TAccountTransactionBuffer extends string ? WritableAccount<TAccountTransactionBuffer> : TAccountTransactionBuffer,
@@ -2790,11 +2668,11 @@ type TransactionBufferCreateCompressedInput<TAccountPayer extends string = strin
2790
2668
  systemProgram?: Address<TAccountSystemProgram>;
2791
2669
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
2792
2670
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
2793
- args: TransactionBufferCreateCompressedInstructionDataArgs['args'];
2794
- secp256r1VerifyArgs: TransactionBufferCreateCompressedInstructionDataArgs['secp256r1VerifyArgs'];
2795
- settingsReadonlyArgs: TransactionBufferCreateCompressedInstructionDataArgs['settingsReadonlyArgs'];
2796
- compressedProofArgs: TransactionBufferCreateCompressedInstructionDataArgs['compressedProofArgs'];
2797
- remainingAccounts: TransactionBufferCreateCompressedInstructionExtraArgs['remainingAccounts'];
2671
+ args: TransactionBufferCreateCompressedInstructionDataArgs["args"];
2672
+ secp256r1VerifyArgs: TransactionBufferCreateCompressedInstructionDataArgs["secp256r1VerifyArgs"];
2673
+ settingsReadonlyArgs: TransactionBufferCreateCompressedInstructionDataArgs["settingsReadonlyArgs"];
2674
+ compressedProofArgs: TransactionBufferCreateCompressedInstructionDataArgs["compressedProofArgs"];
2675
+ remainingAccounts: TransactionBufferCreateCompressedInstructionExtraArgs["remainingAccounts"];
2798
2676
  };
2799
2677
  declare function getTransactionBufferCreateCompressedInstruction<TAccountPayer extends string, TAccountDomainConfig extends string, TAccountTransactionBuffer extends string, TAccountCreator extends string, TAccountSystemProgram extends string, TAccountInstructionsSysvar extends string, TAccountSlotHashSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferCreateCompressedInput<TAccountPayer, TAccountDomainConfig, TAccountTransactionBuffer, TAccountCreator, TAccountSystemProgram, TAccountInstructionsSysvar, TAccountSlotHashSysvar>, config?: {
2800
2678
  programAddress?: TProgramAddress;
@@ -2816,7 +2694,7 @@ declare function parseTransactionBufferCreateCompressedInstruction<TProgram exte
2816
2694
 
2817
2695
  declare const TRANSACTION_BUFFER_EXECUTE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2818
2696
  declare function getTransactionBufferExecuteDiscriminatorBytes(): ReadonlyUint8Array;
2819
- type TransactionBufferExecuteInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountExecutor extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2697
+ type TransactionBufferExecuteInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountExecutor extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2820
2698
  TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
2821
2699
  TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
2822
2700
  TAccountExecutor extends string ? ReadonlySignerAccount<TAccountExecutor> & AccountSignerMeta<TAccountExecutor> : TAccountExecutor,
@@ -2848,8 +2726,8 @@ type TransactionBufferExecuteInput<TAccountSettings extends string = string, TAc
2848
2726
  transactionBuffer: Address<TAccountTransactionBuffer>;
2849
2727
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
2850
2728
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
2851
- secp256r1VerifyArgs: TransactionBufferExecuteInstructionDataArgs['secp256r1VerifyArgs'];
2852
- remainingAccounts: TransactionBufferExecuteInstructionExtraArgs['remainingAccounts'];
2729
+ secp256r1VerifyArgs: TransactionBufferExecuteInstructionDataArgs["secp256r1VerifyArgs"];
2730
+ remainingAccounts: TransactionBufferExecuteInstructionExtraArgs["remainingAccounts"];
2853
2731
  };
2854
2732
  declare function getTransactionBufferExecuteInstruction<TAccountSettings extends string, TAccountDomainConfig extends string, TAccountExecutor extends string, TAccountTransactionBuffer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferExecuteInput<TAccountSettings, TAccountDomainConfig, TAccountExecutor, TAccountTransactionBuffer, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
2855
2733
  programAddress?: TProgramAddress;
@@ -2870,7 +2748,7 @@ declare function parseTransactionBufferExecuteInstruction<TProgram extends strin
2870
2748
 
2871
2749
  declare const TRANSACTION_BUFFER_EXECUTE_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2872
2750
  declare function getTransactionBufferExecuteCompressedDiscriminatorBytes(): ReadonlyUint8Array;
2873
- type TransactionBufferExecuteCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountExecutor extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2751
+ type TransactionBufferExecuteCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountExecutor extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2874
2752
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
2875
2753
  TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
2876
2754
  TAccountExecutor extends string ? ReadonlySignerAccount<TAccountExecutor> & AccountSignerMeta<TAccountExecutor> : TAccountExecutor,
@@ -2906,10 +2784,10 @@ type TransactionBufferExecuteCompressedInput<TAccountPayer extends string = stri
2906
2784
  transactionBuffer: Address<TAccountTransactionBuffer>;
2907
2785
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
2908
2786
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
2909
- secp256r1VerifyArgs: TransactionBufferExecuteCompressedInstructionDataArgs['secp256r1VerifyArgs'];
2910
- settingsMutArgs: TransactionBufferExecuteCompressedInstructionDataArgs['settingsMutArgs'];
2911
- compressedProofArgs: TransactionBufferExecuteCompressedInstructionDataArgs['compressedProofArgs'];
2912
- remainingAccounts: TransactionBufferExecuteCompressedInstructionExtraArgs['remainingAccounts'];
2787
+ secp256r1VerifyArgs: TransactionBufferExecuteCompressedInstructionDataArgs["secp256r1VerifyArgs"];
2788
+ settingsMutArgs: TransactionBufferExecuteCompressedInstructionDataArgs["settingsMutArgs"];
2789
+ compressedProofArgs: TransactionBufferExecuteCompressedInstructionDataArgs["compressedProofArgs"];
2790
+ remainingAccounts: TransactionBufferExecuteCompressedInstructionExtraArgs["remainingAccounts"];
2913
2791
  };
2914
2792
  declare function getTransactionBufferExecuteCompressedInstruction<TAccountPayer extends string, TAccountDomainConfig extends string, TAccountExecutor extends string, TAccountTransactionBuffer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferExecuteCompressedInput<TAccountPayer, TAccountDomainConfig, TAccountExecutor, TAccountTransactionBuffer, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
2915
2793
  programAddress?: TProgramAddress;
@@ -2954,8 +2832,8 @@ type TransactionBufferExtendInstructionExtraArgs = {
2954
2832
  type TransactionBufferExtendInput<TAccountSettings extends string = string, TAccountTransactionBuffer extends string = string> = {
2955
2833
  settings: Address<TAccountSettings>;
2956
2834
  transactionBuffer: Address<TAccountTransactionBuffer>;
2957
- buffer: TransactionBufferExtendInstructionDataArgs['buffer'];
2958
- remainingAccounts: TransactionBufferExtendInstructionExtraArgs['remainingAccounts'];
2835
+ buffer: TransactionBufferExtendInstructionDataArgs["buffer"];
2836
+ remainingAccounts: TransactionBufferExtendInstructionExtraArgs["remainingAccounts"];
2959
2837
  };
2960
2838
  declare function getTransactionBufferExtendInstruction<TAccountSettings extends string, TAccountTransactionBuffer extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferExtendInput<TAccountSettings, TAccountTransactionBuffer>, config?: {
2961
2839
  programAddress?: TProgramAddress;
@@ -2996,9 +2874,9 @@ type TransactionBufferExtendCompressedInstructionExtraArgs = {
2996
2874
  };
2997
2875
  type TransactionBufferExtendCompressedInput<TAccountTransactionBuffer extends string = string> = {
2998
2876
  transactionBuffer: Address<TAccountTransactionBuffer>;
2999
- buffer: TransactionBufferExtendCompressedInstructionDataArgs['buffer'];
3000
- settingsKey: TransactionBufferExtendCompressedInstructionDataArgs['settingsKey'];
3001
- remainingAccounts: TransactionBufferExtendCompressedInstructionExtraArgs['remainingAccounts'];
2877
+ buffer: TransactionBufferExtendCompressedInstructionDataArgs["buffer"];
2878
+ settingsKey: TransactionBufferExtendCompressedInstructionDataArgs["settingsKey"];
2879
+ remainingAccounts: TransactionBufferExtendCompressedInstructionExtraArgs["remainingAccounts"];
3002
2880
  };
3003
2881
  declare function getTransactionBufferExtendCompressedInstruction<TAccountTransactionBuffer extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferExtendCompressedInput<TAccountTransactionBuffer>, config?: {
3004
2882
  programAddress?: TProgramAddress;
@@ -3014,7 +2892,7 @@ declare function parseTransactionBufferExtendCompressedInstruction<TProgram exte
3014
2892
 
3015
2893
  declare const TRANSACTION_BUFFER_VOTE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
3016
2894
  declare function getTransactionBufferVoteDiscriminatorBytes(): ReadonlyUint8Array;
3017
- type TransactionBufferVoteInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountVoter extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2895
+ type TransactionBufferVoteInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountVoter extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
3018
2896
  TAccountSettings extends string ? ReadonlyAccount<TAccountSettings> : TAccountSettings,
3019
2897
  TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
3020
2898
  TAccountTransactionBuffer extends string ? WritableAccount<TAccountTransactionBuffer> : TAccountTransactionBuffer,
@@ -3048,8 +2926,8 @@ type TransactionBufferVoteInput<TAccountSettings extends string = string, TAccou
3048
2926
  systemProgram?: Address<TAccountSystemProgram>;
3049
2927
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
3050
2928
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
3051
- secp256r1VerifyArgs: TransactionBufferVoteInstructionDataArgs['secp256r1VerifyArgs'];
3052
- remainingAccounts: TransactionBufferVoteInstructionExtraArgs['remainingAccounts'];
2929
+ secp256r1VerifyArgs: TransactionBufferVoteInstructionDataArgs["secp256r1VerifyArgs"];
2930
+ remainingAccounts: TransactionBufferVoteInstructionExtraArgs["remainingAccounts"];
3053
2931
  };
3054
2932
  declare function getTransactionBufferVoteInstruction<TAccountSettings extends string, TAccountDomainConfig extends string, TAccountTransactionBuffer extends string, TAccountVoter extends string, TAccountSystemProgram extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferVoteInput<TAccountSettings, TAccountDomainConfig, TAccountTransactionBuffer, TAccountVoter, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
3055
2933
  programAddress?: TProgramAddress;
@@ -3071,7 +2949,7 @@ declare function parseTransactionBufferVoteInstruction<TProgram extends string,
3071
2949
 
3072
2950
  declare const TRANSACTION_BUFFER_VOTE_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
3073
2951
  declare function getTransactionBufferVoteCompressedDiscriminatorBytes(): ReadonlyUint8Array;
3074
- type TransactionBufferVoteCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountVoter extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2952
+ type TransactionBufferVoteCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountVoter extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
3075
2953
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
3076
2954
  TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
3077
2955
  TAccountTransactionBuffer extends string ? WritableAccount<TAccountTransactionBuffer> : TAccountTransactionBuffer,
@@ -3109,10 +2987,10 @@ type TransactionBufferVoteCompressedInput<TAccountPayer extends string = string,
3109
2987
  systemProgram?: Address<TAccountSystemProgram>;
3110
2988
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
3111
2989
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
3112
- secp256r1VerifyArgs: TransactionBufferVoteCompressedInstructionDataArgs['secp256r1VerifyArgs'];
3113
- settingsReadonlyArgs: TransactionBufferVoteCompressedInstructionDataArgs['settingsReadonlyArgs'];
3114
- compressedProofArgs: TransactionBufferVoteCompressedInstructionDataArgs['compressedProofArgs'];
3115
- remainingAccounts: TransactionBufferVoteCompressedInstructionExtraArgs['remainingAccounts'];
2990
+ secp256r1VerifyArgs: TransactionBufferVoteCompressedInstructionDataArgs["secp256r1VerifyArgs"];
2991
+ settingsReadonlyArgs: TransactionBufferVoteCompressedInstructionDataArgs["settingsReadonlyArgs"];
2992
+ compressedProofArgs: TransactionBufferVoteCompressedInstructionDataArgs["compressedProofArgs"];
2993
+ remainingAccounts: TransactionBufferVoteCompressedInstructionExtraArgs["remainingAccounts"];
3116
2994
  };
3117
2995
  declare function getTransactionBufferVoteCompressedInstruction<TAccountPayer extends string, TAccountDomainConfig extends string, TAccountTransactionBuffer extends string, TAccountVoter extends string, TAccountSystemProgram extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferVoteCompressedInput<TAccountPayer, TAccountDomainConfig, TAccountTransactionBuffer, TAccountVoter, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
3118
2996
  programAddress?: TProgramAddress;
@@ -3157,7 +3035,7 @@ type TransactionExecuteInput<TAccountSettings extends string = string, TAccountP
3157
3035
  settings: Address<TAccountSettings>;
3158
3036
  payer: Address<TAccountPayer>;
3159
3037
  transactionBuffer: Address<TAccountTransactionBuffer>;
3160
- remainingAccounts: TransactionExecuteInstructionExtraArgs['remainingAccounts'];
3038
+ remainingAccounts: TransactionExecuteInstructionExtraArgs["remainingAccounts"];
3161
3039
  };
3162
3040
  declare function getTransactionExecuteInstruction<TAccountSettings extends string, TAccountPayer extends string, TAccountTransactionBuffer extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionExecuteInput<TAccountSettings, TAccountPayer, TAccountTransactionBuffer>, config?: {
3163
3041
  programAddress?: TProgramAddress;
@@ -3199,8 +3077,8 @@ type TransactionExecuteCompressedInstructionExtraArgs = {
3199
3077
  type TransactionExecuteCompressedInput<TAccountPayer extends string = string, TAccountTransactionBuffer extends string = string> = {
3200
3078
  payer: Address<TAccountPayer>;
3201
3079
  transactionBuffer: Address<TAccountTransactionBuffer>;
3202
- settingsKey: TransactionExecuteCompressedInstructionDataArgs['settingsKey'];
3203
- remainingAccounts: TransactionExecuteCompressedInstructionExtraArgs['remainingAccounts'];
3080
+ settingsKey: TransactionExecuteCompressedInstructionDataArgs["settingsKey"];
3081
+ remainingAccounts: TransactionExecuteCompressedInstructionExtraArgs["remainingAccounts"];
3204
3082
  };
3205
3083
  declare function getTransactionExecuteCompressedInstruction<TAccountPayer extends string, TAccountTransactionBuffer extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionExecuteCompressedInput<TAccountPayer, TAccountTransactionBuffer>, config?: {
3206
3084
  programAddress?: TProgramAddress;
@@ -3217,7 +3095,7 @@ declare function parseTransactionExecuteCompressedInstruction<TProgram extends s
3217
3095
 
3218
3096
  declare const TRANSACTION_EXECUTE_SYNC_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
3219
3097
  declare function getTransactionExecuteSyncDiscriminatorBytes(): ReadonlyUint8Array;
3220
- type TransactionExecuteSyncInstruction<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', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
3098
+ type TransactionExecuteSyncInstruction<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", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
3221
3099
  TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
3222
3100
  TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
3223
3101
  TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
@@ -3245,9 +3123,9 @@ type TransactionExecuteSyncInput<TAccountSettings extends string = string, TAcco
3245
3123
  settings: Address<TAccountSettings>;
3246
3124
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
3247
3125
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
3248
- transactionMessage: TransactionExecuteSyncInstructionDataArgs['transactionMessage'];
3249
- secp256r1VerifyArgs: TransactionExecuteSyncInstructionDataArgs['secp256r1VerifyArgs'];
3250
- remainingAccounts: TransactionExecuteSyncInstructionExtraArgs['remainingAccounts'];
3126
+ transactionMessage: TransactionExecuteSyncInstructionDataArgs["transactionMessage"];
3127
+ secp256r1VerifyArgs: TransactionExecuteSyncInstructionDataArgs["secp256r1VerifyArgs"];
3128
+ remainingAccounts: TransactionExecuteSyncInstructionExtraArgs["remainingAccounts"];
3251
3129
  };
3252
3130
  declare function getTransactionExecuteSyncInstruction<TAccountSettings extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionExecuteSyncInput<TAccountSettings, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
3253
3131
  programAddress?: TProgramAddress;
@@ -3265,7 +3143,7 @@ declare function parseTransactionExecuteSyncInstruction<TProgram extends string,
3265
3143
 
3266
3144
  declare const TRANSACTION_EXECUTE_SYNC_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
3267
3145
  declare function getTransactionExecuteSyncCompressedDiscriminatorBytes(): ReadonlyUint8Array;
3268
- type TransactionExecuteSyncCompressedInstruction<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', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
3146
+ type TransactionExecuteSyncCompressedInstruction<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", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
3269
3147
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
3270
3148
  TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
3271
3149
  TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
@@ -3297,11 +3175,11 @@ type TransactionExecuteSyncCompressedInput<TAccountPayer extends string = string
3297
3175
  payer: TransactionSigner<TAccountPayer>;
3298
3176
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
3299
3177
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
3300
- transactionMessage: TransactionExecuteSyncCompressedInstructionDataArgs['transactionMessage'];
3301
- secp256r1VerifyArgs: TransactionExecuteSyncCompressedInstructionDataArgs['secp256r1VerifyArgs'];
3302
- settingsMutArgs: TransactionExecuteSyncCompressedInstructionDataArgs['settingsMutArgs'];
3303
- compressedProofArgs: TransactionExecuteSyncCompressedInstructionDataArgs['compressedProofArgs'];
3304
- remainingAccounts: TransactionExecuteSyncCompressedInstructionExtraArgs['remainingAccounts'];
3178
+ transactionMessage: TransactionExecuteSyncCompressedInstructionDataArgs["transactionMessage"];
3179
+ secp256r1VerifyArgs: TransactionExecuteSyncCompressedInstructionDataArgs["secp256r1VerifyArgs"];
3180
+ settingsMutArgs: TransactionExecuteSyncCompressedInstructionDataArgs["settingsMutArgs"];
3181
+ compressedProofArgs: TransactionExecuteSyncCompressedInstructionDataArgs["compressedProofArgs"];
3182
+ remainingAccounts: TransactionExecuteSyncCompressedInstructionExtraArgs["remainingAccounts"];
3305
3183
  };
3306
3184
  declare function getTransactionExecuteSyncCompressedInstruction<TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionExecuteSyncCompressedInput<TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
3307
3185
  programAddress?: TProgramAddress;
@@ -3431,62 +3309,23 @@ declare const TransactionPayloadWithBase64MessageBytesSchema: z.ZodObject<{
3431
3309
  transactionAddress: z.ZodString;
3432
3310
  transactionMessageBytes: z.ZodBase64;
3433
3311
  }, z.core.$strict>;
3434
- declare const AuthenticationContextSchema: z.ZodObject<{
3435
- authResponse: z.ZodCustom<AuthenticationResponseJSON, AuthenticationResponseJSON>;
3436
- nonce: z.ZodBase64;
3437
- client: z.ZodObject<{
3438
- clientOrigin: z.ZodURL;
3439
- jws: z.ZodString;
3440
- }, z.core.$strict>;
3441
- device: z.ZodObject<{
3442
- jwk: z.ZodBase64;
3443
- jws: z.ZodString;
3444
- }, z.core.$strict>;
3445
- authProvider: z.ZodOptional<z.ZodObject<{
3446
- jwk: z.ZodBase64;
3447
- jws: z.ZodString;
3448
- }, z.core.$strict>>;
3449
- }, z.core.$strict>;
3450
- declare const BaseResponseSchema: z.ZodObject<{
3451
- signer: z.ZodString;
3452
- userAddressTreeIndex: z.ZodOptional<z.ZodNumber>;
3453
- additionalInfo: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
3454
- }, z.core.$strict>;
3455
- declare const TransactionDetailsSchema: z.ZodObject<{
3456
- transactionPayload: z.ZodObject<{
3457
- transactionActionType: z.ZodEnum<{
3458
- create: "create";
3459
- create_with_preauthorized_execution: "create_with_preauthorized_execution";
3460
- execute: "execute";
3461
- vote: "vote";
3462
- sync: "sync";
3463
- close: "close";
3464
- decompress: "decompress";
3465
- transfer_intent: "transfer_intent";
3466
- change_delegate: "change_delegate";
3467
- change_config: "change_config";
3468
- }>;
3469
- transactionAddress: z.ZodString;
3470
- transactionMessageBytes: z.ZodBase64;
3471
- }, z.core.$strict>;
3472
- slotHash: z.ZodString;
3473
- slotNumber: z.ZodString;
3474
- originIndex: z.ZodNumber;
3475
- crossOrigin: z.ZodBoolean;
3476
- }, z.core.$strict>;
3477
3312
  declare const StartMessageRequestSchema: z.ZodObject<{
3478
3313
  phase: z.ZodLiteral<"start">;
3479
3314
  redirectOrigin: z.ZodURL;
3480
3315
  signer: z.ZodOptional<z.ZodString>;
3316
+ rid: z.ZodString;
3317
+ validTill: z.ZodNumber;
3481
3318
  data: z.ZodObject<{
3482
3319
  type: z.ZodLiteral<"message">;
3483
- payload: z.ZodOptional<z.ZodString>;
3320
+ payload: z.ZodString;
3484
3321
  }, z.core.$strict>;
3485
3322
  }, z.core.$strict>;
3486
3323
  declare const StartTransactionRequestSchema: z.ZodObject<{
3487
3324
  phase: z.ZodLiteral<"start">;
3488
3325
  redirectOrigin: z.ZodURL;
3489
3326
  signer: z.ZodOptional<z.ZodString>;
3327
+ rid: z.ZodString;
3328
+ validTill: z.ZodNumber;
3490
3329
  data: z.ZodObject<{
3491
3330
  type: z.ZodLiteral<"transaction">;
3492
3331
  payload: z.ZodObject<{
@@ -3505,8 +3344,72 @@ declare const StartTransactionRequestSchema: z.ZodObject<{
3505
3344
  transactionAddress: z.ZodString;
3506
3345
  transactionMessageBytes: z.ZodBase64;
3507
3346
  }, z.core.$strict>;
3347
+ sendTx: z.ZodBoolean;
3508
3348
  }, z.core.$strict>;
3509
3349
  }, z.core.$strict>;
3350
+ declare const AuthenticationContextSchema: z.ZodObject<{
3351
+ startRequest: z.ZodUnion<readonly [z.ZodObject<{
3352
+ phase: z.ZodLiteral<"start">;
3353
+ redirectOrigin: z.ZodURL;
3354
+ signer: z.ZodOptional<z.ZodString>;
3355
+ rid: z.ZodString;
3356
+ validTill: z.ZodNumber;
3357
+ data: z.ZodObject<{
3358
+ type: z.ZodLiteral<"message">;
3359
+ payload: z.ZodString;
3360
+ }, z.core.$strict>;
3361
+ }, z.core.$strict>, z.ZodObject<{
3362
+ phase: z.ZodLiteral<"start">;
3363
+ redirectOrigin: z.ZodURL;
3364
+ signer: z.ZodOptional<z.ZodString>;
3365
+ rid: z.ZodString;
3366
+ validTill: z.ZodNumber;
3367
+ data: z.ZodObject<{
3368
+ type: z.ZodLiteral<"transaction">;
3369
+ payload: z.ZodObject<{
3370
+ transactionActionType: z.ZodEnum<{
3371
+ create: "create";
3372
+ create_with_preauthorized_execution: "create_with_preauthorized_execution";
3373
+ execute: "execute";
3374
+ vote: "vote";
3375
+ sync: "sync";
3376
+ close: "close";
3377
+ decompress: "decompress";
3378
+ transfer_intent: "transfer_intent";
3379
+ change_delegate: "change_delegate";
3380
+ change_config: "change_config";
3381
+ }>;
3382
+ transactionAddress: z.ZodString;
3383
+ transactionMessageBytes: z.ZodBase64;
3384
+ }, z.core.$strict>;
3385
+ sendTx: z.ZodBoolean;
3386
+ }, z.core.$strict>;
3387
+ }, z.core.$strict>]>;
3388
+ authResponse: z.ZodCustom<AuthenticationResponseJSON, AuthenticationResponseJSON>;
3389
+ client: z.ZodObject<{
3390
+ clientOrigin: z.ZodURL;
3391
+ jws: z.ZodString;
3392
+ }, z.core.$strict>;
3393
+ device: z.ZodObject<{
3394
+ jwk: z.ZodBase64;
3395
+ jws: z.ZodString;
3396
+ }, z.core.$strict>;
3397
+ authProvider: z.ZodOptional<z.ZodObject<{
3398
+ jwk: z.ZodBase64;
3399
+ jws: z.ZodString;
3400
+ }, z.core.$strict>>;
3401
+ }, z.core.$strict>;
3402
+ declare const BaseResponseSchema: z.ZodObject<{
3403
+ signer: z.ZodString;
3404
+ userAddressTreeIndex: z.ZodOptional<z.ZodNumber>;
3405
+ additionalInfo: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
3406
+ }, z.core.$strict>;
3407
+ declare const TransactionDetailsSchema: z.ZodObject<{
3408
+ slotHash: z.ZodString;
3409
+ slotNumber: z.ZodString;
3410
+ originIndex: z.ZodNumber;
3411
+ crossOrigin: z.ZodBoolean;
3412
+ }, z.core.$strict>;
3510
3413
  declare const CompleteMessageRequestSchema: z.ZodObject<{
3511
3414
  phase: z.ZodLiteral<"complete">;
3512
3415
  data: z.ZodObject<{
@@ -3515,8 +3418,44 @@ declare const CompleteMessageRequestSchema: z.ZodObject<{
3515
3418
  signer: z.ZodString;
3516
3419
  userAddressTreeIndex: z.ZodOptional<z.ZodNumber>;
3517
3420
  additionalInfo: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
3421
+ startRequest: z.ZodUnion<readonly [z.ZodObject<{
3422
+ phase: z.ZodLiteral<"start">;
3423
+ redirectOrigin: z.ZodURL;
3424
+ signer: z.ZodOptional<z.ZodString>;
3425
+ rid: z.ZodString;
3426
+ validTill: z.ZodNumber;
3427
+ data: z.ZodObject<{
3428
+ type: z.ZodLiteral<"message">;
3429
+ payload: z.ZodString;
3430
+ }, z.core.$strict>;
3431
+ }, z.core.$strict>, z.ZodObject<{
3432
+ phase: z.ZodLiteral<"start">;
3433
+ redirectOrigin: z.ZodURL;
3434
+ signer: z.ZodOptional<z.ZodString>;
3435
+ rid: z.ZodString;
3436
+ validTill: z.ZodNumber;
3437
+ data: z.ZodObject<{
3438
+ type: z.ZodLiteral<"transaction">;
3439
+ payload: z.ZodObject<{
3440
+ transactionActionType: z.ZodEnum<{
3441
+ create: "create";
3442
+ create_with_preauthorized_execution: "create_with_preauthorized_execution";
3443
+ execute: "execute";
3444
+ vote: "vote";
3445
+ sync: "sync";
3446
+ close: "close";
3447
+ decompress: "decompress";
3448
+ transfer_intent: "transfer_intent";
3449
+ change_delegate: "change_delegate";
3450
+ change_config: "change_config";
3451
+ }>;
3452
+ transactionAddress: z.ZodString;
3453
+ transactionMessageBytes: z.ZodBase64;
3454
+ }, z.core.$strict>;
3455
+ sendTx: z.ZodBoolean;
3456
+ }, z.core.$strict>;
3457
+ }, z.core.$strict>]>;
3518
3458
  authResponse: z.ZodCustom<AuthenticationResponseJSON, AuthenticationResponseJSON>;
3519
- nonce: z.ZodBase64;
3520
3459
  device: z.ZodObject<{
3521
3460
  jwk: z.ZodBase64;
3522
3461
  jws: z.ZodString;
@@ -3526,7 +3465,6 @@ declare const CompleteMessageRequestSchema: z.ZodObject<{
3526
3465
  jws: z.ZodString;
3527
3466
  }, z.core.$strict>>;
3528
3467
  id: z.ZodOptional<z.ZodString>;
3529
- message: z.ZodString;
3530
3468
  client: z.ZodObject<{
3531
3469
  clientOrigin: z.ZodURL;
3532
3470
  }, z.core.$strict>;
@@ -3541,8 +3479,44 @@ declare const CompleteTransactionRequestSchema: z.ZodObject<{
3541
3479
  signer: z.ZodString;
3542
3480
  userAddressTreeIndex: z.ZodOptional<z.ZodNumber>;
3543
3481
  additionalInfo: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
3482
+ startRequest: z.ZodUnion<readonly [z.ZodObject<{
3483
+ phase: z.ZodLiteral<"start">;
3484
+ redirectOrigin: z.ZodURL;
3485
+ signer: z.ZodOptional<z.ZodString>;
3486
+ rid: z.ZodString;
3487
+ validTill: z.ZodNumber;
3488
+ data: z.ZodObject<{
3489
+ type: z.ZodLiteral<"message">;
3490
+ payload: z.ZodString;
3491
+ }, z.core.$strict>;
3492
+ }, z.core.$strict>, z.ZodObject<{
3493
+ phase: z.ZodLiteral<"start">;
3494
+ redirectOrigin: z.ZodURL;
3495
+ signer: z.ZodOptional<z.ZodString>;
3496
+ rid: z.ZodString;
3497
+ validTill: z.ZodNumber;
3498
+ data: z.ZodObject<{
3499
+ type: z.ZodLiteral<"transaction">;
3500
+ payload: z.ZodObject<{
3501
+ transactionActionType: z.ZodEnum<{
3502
+ create: "create";
3503
+ create_with_preauthorized_execution: "create_with_preauthorized_execution";
3504
+ execute: "execute";
3505
+ vote: "vote";
3506
+ sync: "sync";
3507
+ close: "close";
3508
+ decompress: "decompress";
3509
+ transfer_intent: "transfer_intent";
3510
+ change_delegate: "change_delegate";
3511
+ change_config: "change_config";
3512
+ }>;
3513
+ transactionAddress: z.ZodString;
3514
+ transactionMessageBytes: z.ZodBase64;
3515
+ }, z.core.$strict>;
3516
+ sendTx: z.ZodBoolean;
3517
+ }, z.core.$strict>;
3518
+ }, z.core.$strict>]>;
3544
3519
  authResponse: z.ZodCustom<AuthenticationResponseJSON, AuthenticationResponseJSON>;
3545
- nonce: z.ZodBase64;
3546
3520
  device: z.ZodObject<{
3547
3521
  jwk: z.ZodBase64;
3548
3522
  jws: z.ZodString;
@@ -3551,22 +3525,6 @@ declare const CompleteTransactionRequestSchema: z.ZodObject<{
3551
3525
  jwk: z.ZodBase64;
3552
3526
  jws: z.ZodString;
3553
3527
  }, z.core.$strict>>;
3554
- transactionPayload: z.ZodObject<{
3555
- transactionActionType: z.ZodEnum<{
3556
- create: "create";
3557
- create_with_preauthorized_execution: "create_with_preauthorized_execution";
3558
- execute: "execute";
3559
- vote: "vote";
3560
- sync: "sync";
3561
- close: "close";
3562
- decompress: "decompress";
3563
- transfer_intent: "transfer_intent";
3564
- change_delegate: "change_delegate";
3565
- change_config: "change_config";
3566
- }>;
3567
- transactionAddress: z.ZodString;
3568
- transactionMessageBytes: z.ZodBase64;
3569
- }, z.core.$strict>;
3570
3528
  slotHash: z.ZodString;
3571
3529
  slotNumber: z.ZodString;
3572
3530
  originIndex: z.ZodNumber;
@@ -3577,12 +3535,59 @@ declare const CompleteTransactionRequestSchema: z.ZodObject<{
3577
3535
  }, z.core.$strict>;
3578
3536
  }, z.core.$strict>;
3579
3537
  }, z.core.$strict>;
3538
+ declare const CompleteSendTransactionRequestSchema: z.ZodObject<{
3539
+ phase: z.ZodLiteral<"complete">;
3540
+ data: z.ZodObject<{
3541
+ type: z.ZodLiteral<"transaction">;
3542
+ payload: z.ZodObject<{
3543
+ startRequest: z.ZodUnion<readonly [z.ZodObject<{
3544
+ phase: z.ZodLiteral<"start">;
3545
+ redirectOrigin: z.ZodURL;
3546
+ signer: z.ZodOptional<z.ZodString>;
3547
+ rid: z.ZodString;
3548
+ validTill: z.ZodNumber;
3549
+ data: z.ZodObject<{
3550
+ type: z.ZodLiteral<"transaction">;
3551
+ payload: z.ZodObject<{
3552
+ transactionActionType: z.ZodEnum<{
3553
+ create: "create";
3554
+ create_with_preauthorized_execution: "create_with_preauthorized_execution";
3555
+ execute: "execute";
3556
+ vote: "vote";
3557
+ sync: "sync";
3558
+ close: "close";
3559
+ decompress: "decompress";
3560
+ transfer_intent: "transfer_intent";
3561
+ change_delegate: "change_delegate";
3562
+ change_config: "change_config";
3563
+ }>;
3564
+ transactionAddress: z.ZodString;
3565
+ transactionMessageBytes: z.ZodBase64;
3566
+ }, z.core.$strict>;
3567
+ sendTx: z.ZodBoolean;
3568
+ }, z.core.$strict>;
3569
+ }, z.core.$strict>, z.ZodObject<{
3570
+ phase: z.ZodLiteral<"start">;
3571
+ redirectOrigin: z.ZodURL;
3572
+ signer: z.ZodOptional<z.ZodString>;
3573
+ rid: z.ZodString;
3574
+ validTill: z.ZodNumber;
3575
+ data: z.ZodObject<{
3576
+ type: z.ZodLiteral<"message">;
3577
+ payload: z.ZodString;
3578
+ }, z.core.$strict>;
3579
+ }, z.core.$strict>]>;
3580
+ txSig: z.ZodString;
3581
+ }, z.core.$strip>;
3582
+ }, z.core.$strict>;
3583
+ }, z.core.$strict>;
3580
3584
  type TransactionActionType = z.infer<typeof TransactionActionTypeSchema>;
3581
3585
  type TransactionPayload = z.infer<typeof TransactionPayloadSchema>;
3582
3586
  type TransactionPayloadWithBase64MessageBytes = z.infer<typeof TransactionPayloadWithBase64MessageBytesSchema>;
3583
3587
  type StartMessageRequest = z.infer<typeof StartMessageRequestSchema>;
3584
3588
  type StartTransactionRequest = z.infer<typeof StartTransactionRequestSchema>;
3585
3589
  type CompleteTransactionRequest = z.infer<typeof CompleteTransactionRequestSchema>;
3590
+ type CompleteSendTransactionRequest = z.infer<typeof CompleteSendTransactionRequestSchema>;
3586
3591
  type CompleteMessageRequest = z.infer<typeof CompleteMessageRequestSchema>;
3587
3592
  type AuthenticationContext = z.infer<typeof AuthenticationContextSchema>;
3588
3593
  type BaseResponse = z.infer<typeof BaseResponseSchema>;
@@ -3605,7 +3610,7 @@ declare class Permissions implements IPermissions {
3605
3610
  static has(permissions: IPermissions, permission: IPermission): boolean;
3606
3611
  }
3607
3612
 
3608
- type Secp256r1KeyInitData = string | Uint8Array | Array<number>;
3613
+ type Secp256r1KeyInitData = string | Uint8Array | Array<number> | ReadonlyUint8Array;
3609
3614
  type SignedMessageDetails = {
3610
3615
  verifyArgs: {
3611
3616
  clientDataJson: Uint8Array<ArrayBuffer>;
@@ -3658,7 +3663,7 @@ interface UserCreationArgs$1 {
3658
3663
  role: UserRole.Member | UserRole.PermanentMember;
3659
3664
  credentialId: string;
3660
3665
  transports: Transports[];
3661
- index?: number | bigint;
3666
+ settings?: Address;
3662
3667
  settingsAddressTreeIndex?: number;
3663
3668
  transactionManager?: {
3664
3669
  member: Address;
@@ -3683,20 +3688,6 @@ declare function disableDomainConfig({ admin, rpId, disable, }: {
3683
3688
  rpId: string;
3684
3689
  }): Promise<DisableDomainConfigInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, []>>;
3685
3690
 
3686
- declare function migrateSettings({ args, authority, index, settingsAddressTreeIndex, }: {
3687
- authority: TransactionSigner;
3688
- args: CompressedSettingsData;
3689
- index: number | bigint;
3690
- settingsAddressTreeIndex?: number;
3691
- }): Promise<MigrateCompressedSettingsInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, []>>;
3692
-
3693
- declare function migrateUsers({ args, authority, member, userAddressTreeIndex, }: {
3694
- authority: TransactionSigner;
3695
- args: UserArgs;
3696
- member: Address | Secp256r1Key;
3697
- userAddressTreeIndex?: number;
3698
- }): Promise<MigrateCompressedUsersInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, []>>;
3699
-
3700
3691
  declare const SECP256R1_PROGRAM_ADDRESS: Address<"Secp256r1SigVerify1111111111111111111111111">;
3701
3692
  type Secp256r1VerifyInput = {
3702
3693
  publicKey: ReadonlyUint8Array;
@@ -3755,8 +3746,8 @@ declare function executeTransaction({ settings, transactionBufferAddress, transa
3755
3746
  addressLookupTableAccounts: AddressesByLookupTableAddress;
3756
3747
  }>;
3757
3748
 
3758
- declare function executeTransactionSync({ index, settingsAddressTreeIndex, transactionMessageBytes, signers, payer, addressesByLookupTableAddress, secp256r1VerifyInput, compressed, simulateProof, cachedAccounts, }: {
3759
- index: number | bigint;
3749
+ declare function executeTransactionSync({ settings, settingsAddressTreeIndex, transactionMessageBytes, signers, payer, addressesByLookupTableAddress, secp256r1VerifyInput, compressed, simulateProof, cachedAccounts, }: {
3750
+ settings: Address;
3760
3751
  settingsAddressTreeIndex?: number;
3761
3752
  signers: (TransactionSigner | SignedSecp256r1Key)[];
3762
3753
  transactionMessageBytes: ReadonlyUint8Array;
@@ -3771,8 +3762,8 @@ declare function executeTransactionSync({ index, settingsAddressTreeIndex, trans
3771
3762
  addressLookupTableAccounts: AddressesByLookupTableAddress;
3772
3763
  }>;
3773
3764
 
3774
- declare function nativeTransferIntent({ index, settingsAddressTreeIndex, destination, signers, cachedAccounts, amount, payer, compressed, }: {
3775
- index: number | bigint;
3765
+ declare function nativeTransferIntent({ settings, settingsAddressTreeIndex, destination, signers, cachedAccounts, amount, payer, compressed, }: {
3766
+ settings: Address;
3776
3767
  settingsAddressTreeIndex?: number;
3777
3768
  destination: Address;
3778
3769
  amount: number | bigint;
@@ -3782,8 +3773,8 @@ declare function nativeTransferIntent({ index, settingsAddressTreeIndex, destina
3782
3773
  cachedAccounts?: Map<string, any>;
3783
3774
  }): Promise<Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[]>;
3784
3775
 
3785
- declare function tokenTransferIntent({ index, settingsAddressTreeIndex, destination, mint, signers, cachedAccounts, amount, payer, tokenProgram, splInterfacePdaArgs, compressed, }: {
3786
- index: number | bigint;
3776
+ declare function tokenTransferIntent({ settings, settingsAddressTreeIndex, destination, mint, signers, cachedAccounts, amount, payer, tokenProgram, splInterfacePdaArgs, compressed, }: {
3777
+ settings: Address;
3787
3778
  settingsAddressTreeIndex?: number;
3788
3779
  destination: Address;
3789
3780
  mint: Address;
@@ -3827,7 +3818,7 @@ declare class PackedAccounts {
3827
3818
  declare function changeConfig({ signers, payer, changeConfigArgs, }: {
3828
3819
  changeConfigArgs: {
3829
3820
  configActions: ConfigAction[];
3830
- index: number | bigint;
3821
+ settings: Address;
3831
3822
  compressed: boolean;
3832
3823
  packedAccounts: PackedAccounts;
3833
3824
  proof: ValidityProofWithContext | null;
@@ -3835,7 +3826,7 @@ declare function changeConfig({ signers, payer, changeConfigArgs, }: {
3835
3826
  };
3836
3827
  signers: (TransactionSigner | SignedSecp256r1Key)[];
3837
3828
  payer: TransactionSigner;
3838
- }): Promise<(Secp256r1VerifyInstruction<gill.Address<"Secp256r1SigVerify1111111111111111111111111">> | ChangeConfigCompressedInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, []> | ChangeConfigInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, string, []>)[]>;
3829
+ }): Promise<(Secp256r1VerifyInstruction<Address<"Secp256r1SigVerify1111111111111111111111111">> | ChangeConfigCompressedInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, []> | ChangeConfigInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, string, []>)[]>;
3839
3830
 
3840
3831
  type UserCreationArgs = {
3841
3832
  member: TransactionSigner;
@@ -3859,13 +3850,13 @@ type CreateWalletArgs = {
3859
3850
  };
3860
3851
  declare function createWallet({ index, payer, initialMember, userAddressTreeIndex, cachedAccounts, }: CreateWalletArgs): Promise<CreateCompressedWalletInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, string, []>>;
3861
3852
 
3862
- declare function decompressSettingsAccount({ index, settingsAddressTreeIndex, payer, signers, cachedAccounts, }: {
3863
- index: number | bigint;
3853
+ declare function decompressSettingsAccount({ settings, settingsAddressTreeIndex, payer, signers, cachedAccounts, }: {
3854
+ settings: Address;
3864
3855
  settingsAddressTreeIndex?: number;
3865
3856
  payer: TransactionSigner;
3866
3857
  signers: (SignedSecp256r1Key | TransactionSigner)[];
3867
3858
  cachedAccounts?: Map<string, any>;
3868
- }): Promise<(Secp256r1VerifyInstruction<gill.Address<"Secp256r1SigVerify1111111111111111111111111">> | DecompressSettingsAccountInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, string, []>)[]>;
3859
+ }): Promise<(Secp256r1VerifyInstruction<Address<"Secp256r1SigVerify1111111111111111111111111">> | DecompressSettingsAccountInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, string, []>)[]>;
3869
3860
 
3870
3861
  declare function editDomainConfig({ authority, domainConfig, newAuthority, newOrigins, }: {
3871
3862
  domainConfig: Address;
@@ -3888,8 +3879,7 @@ declare function editUserDelegate({ payer, user, userAddressTreeIndex, newDelega
3888
3879
  newDelegate?: SettingsIndexWithAddress;
3889
3880
  }): Promise<Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[]>;
3890
3881
 
3891
- declare function closeTransactionBuffer({ index, settingsAddressTreeIndex, closer, transactionBufferAddress, payer, compressed, cachedAccounts, }: {
3892
- index: number | bigint;
3882
+ declare function closeTransactionBuffer({ settingsAddressTreeIndex, closer, transactionBufferAddress, payer, compressed, cachedAccounts, }: {
3893
3883
  settingsAddressTreeIndex?: number;
3894
3884
  closer: TransactionSigner | SignedSecp256r1Key;
3895
3885
  transactionBufferAddress: Address;
@@ -3947,15 +3937,15 @@ declare function voteTransactionBuffer({ settings, voter, transactionBufferAddre
3947
3937
  } | null;
3948
3938
  }): Instruction<string, readonly (AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[];
3949
3939
 
3950
- declare function prepareChangeConfigArgs({ index, settingsAddressTreeIndex, configActionsArgs, cachedAccounts, compressed, }: {
3951
- index: number | bigint;
3940
+ declare function prepareChangeConfigArgs({ settings, settingsAddressTreeIndex, configActionsArgs, cachedAccounts, compressed, }: {
3941
+ settings: Address;
3952
3942
  compressed?: boolean;
3953
3943
  settingsAddressTreeIndex?: number;
3954
3944
  configActionsArgs: ConfigurationArgs[];
3955
3945
  cachedAccounts?: Map<string, any>;
3956
3946
  }): Promise<{
3957
3947
  configActions: ConfigAction[];
3958
- index: number | bigint;
3948
+ settings: Address;
3959
3949
  compressed: boolean;
3960
3950
  packedAccounts: PackedAccounts;
3961
3951
  proof: ValidityProofWithContext | null;
@@ -3964,9 +3954,9 @@ declare function prepareChangeConfigArgs({ index, settingsAddressTreeIndex, conf
3964
3954
 
3965
3955
  interface CreateTransactionBundleArgs {
3966
3956
  payer: TransactionSigner;
3967
- index: number | bigint;
3957
+ settings: Address;
3968
3958
  settingsAddressTreeIndex?: number;
3969
- transactionMessageBytes: ReadonlyUint8Array;
3959
+ transactionMessageBytes: Uint8Array<ArrayBuffer>;
3970
3960
  creator: TransactionSigner | SignedSecp256r1Key;
3971
3961
  additionalVoters?: (TransactionSigner | SignedSecp256r1Key)[];
3972
3962
  executor?: TransactionSigner | SignedSecp256r1Key;
@@ -3978,18 +3968,18 @@ interface CreateTransactionBundleArgs {
3978
3968
  addressesByLookupTableAddress?: AddressesByLookupTableAddress;
3979
3969
  cachedAccounts?: Map<string, any>;
3980
3970
  }
3981
- declare function prepareTransactionBundle({ payer, index, settingsAddressTreeIndex, transactionMessageBytes, creator, executor, secp256r1VerifyInput, jitoBundlesTipAmount, addressesByLookupTableAddress, compressed, additionalVoters, additionalSigners, chunkSize, cachedAccounts, }: CreateTransactionBundleArgs): Promise<TransactionDetails[]>;
3971
+ declare function prepareTransactionBundle({ payer, settings, settingsAddressTreeIndex, transactionMessageBytes, creator, executor, secp256r1VerifyInput, jitoBundlesTipAmount, addressesByLookupTableAddress, compressed, additionalVoters, additionalSigners, chunkSize, cachedAccounts, }: CreateTransactionBundleArgs): Promise<TransactionDetails[]>;
3982
3972
 
3983
3973
  interface PrepareTransactionMessageArgs {
3984
3974
  instructions: Instruction[];
3985
3975
  payer: Address;
3986
3976
  addressesByLookupTableAddress?: AddressesByLookupTableAddress;
3987
3977
  }
3988
- declare function prepareTransactionMessage({ instructions, payer, addressesByLookupTableAddress, }: PrepareTransactionMessageArgs): gill.ReadonlyUint8Array;
3978
+ declare function prepareTransactionMessage({ instructions, payer, addressesByLookupTableAddress, }: PrepareTransactionMessageArgs): Uint8Array<ArrayBuffer>;
3989
3979
 
3990
3980
  interface CreateTransactionSyncArgs {
3991
3981
  payer: TransactionSigner;
3992
- index: number | bigint;
3982
+ settings: Address;
3993
3983
  settingsAddressTreeIndex?: number;
3994
3984
  transactionMessageBytes: ReadonlyUint8Array;
3995
3985
  signers: (TransactionSigner | SignedSecp256r1Key)[];
@@ -3999,9 +3989,9 @@ interface CreateTransactionSyncArgs {
3999
3989
  simulateProof?: boolean;
4000
3990
  cachedAccounts?: AccountCache;
4001
3991
  }
4002
- declare function prepareTransactionSync({ payer, index, settingsAddressTreeIndex, transactionMessageBytes, signers, secp256r1VerifyInput, addressesByLookupTableAddress, cachedAccounts, compressed, simulateProof, }: CreateTransactionSyncArgs): Promise<TransactionDetails>;
3992
+ declare function prepareTransactionSync({ payer, settings, settingsAddressTreeIndex, transactionMessageBytes, signers, secp256r1VerifyInput, addressesByLookupTableAddress, cachedAccounts, compressed, simulateProof, }: CreateTransactionSyncArgs): Promise<TransactionDetails>;
4003
3993
 
4004
- declare function getCompressedSettingsAddressFromIndex(index: number | bigint, settingsAddressTreeIndex?: number): Promise<{
3994
+ declare function getCompressedSettingsAddress(settings: Address, settingsAddressTreeIndex?: number): Promise<{
4005
3995
  address: bn_js;
4006
3996
  addressTree: PublicKey;
4007
3997
  }>;
@@ -4050,10 +4040,10 @@ declare function fetchUserAccountByFilters(domainConfigAddress: Address, { membe
4050
4040
  member?: Address | Secp256r1Key | null;
4051
4041
  credentialId?: string | null;
4052
4042
  }): Promise<User | null>;
4053
- declare function fetchSettingsAccountData(index: number | bigint, settingsAddressTreeIndex?: number, cachedAccounts?: AccountCache): Promise<CompressedSettingsData & {
4043
+ declare function fetchSettingsAccountData(settings: Address, settingsAddressTreeIndex?: number, cachedAccounts?: AccountCache): Promise<CompressedSettingsData & {
4054
4044
  isCompressed: boolean;
4055
4045
  }>;
4056
- declare function fetchMaybeSettingsAccountData(index: number | bigint, settingsAddressTreeIndex?: number, cachedAccounts?: AccountCache): Promise<(CompressedSettingsData & {
4046
+ declare function fetchMaybeSettingsAccountData(settings: Address, settingsAddressTreeIndex?: number, cachedAccounts?: AccountCache): Promise<(CompressedSettingsData & {
4057
4047
  isCompressed: boolean;
4058
4048
  }) | null>;
4059
4049
  declare function fetchAllSettingsAccountByMember(member: Address | Secp256r1Key, userAddressTreeIndex?: number, cachedAccounts?: AccountCache): Promise<(CompressedSettingsData & {
@@ -4066,9 +4056,6 @@ declare function getSolanaRpcEndpoint(): string;
4066
4056
  declare function getLightProtocolRpc(): Rpc;
4067
4057
  declare function getSolanaRpc(): Rpc$1<gill.RequestAirdropApi & gill.GetAccountInfoApi & gill.GetBalanceApi & gill.GetBlockApi & gill.GetBlockCommitmentApi & gill.GetBlockHeightApi & gill.GetBlockProductionApi & gill.GetBlocksApi & gill.GetBlocksWithLimitApi & gill.GetBlockTimeApi & gill.GetClusterNodesApi & gill.GetEpochInfoApi & gill.GetEpochScheduleApi & gill.GetFeeForMessageApi & gill.GetFirstAvailableBlockApi & gill.GetGenesisHashApi & gill.GetHealthApi & gill.GetHighestSnapshotSlotApi & gill.GetIdentityApi & gill.GetInflationGovernorApi & gill.GetInflationRateApi & gill.GetInflationRewardApi & gill.GetLargestAccountsApi & gill.GetLatestBlockhashApi & gill.GetLeaderScheduleApi & gill.GetMaxRetransmitSlotApi & gill.GetMaxShredInsertSlotApi & gill.GetMinimumBalanceForRentExemptionApi & gill.GetMultipleAccountsApi & gill.GetProgramAccountsApi & gill.GetRecentPerformanceSamplesApi & gill.GetRecentPrioritizationFeesApi & gill.GetSignaturesForAddressApi & gill.GetSignatureStatusesApi & gill.GetSlotApi & gill.GetSlotLeaderApi & gill.GetSlotLeadersApi & gill.GetStakeMinimumDelegationApi & gill.GetSupplyApi & gill.GetTokenAccountBalanceApi & gill.GetTokenAccountsByDelegateApi & gill.GetTokenAccountsByOwnerApi & gill.GetTokenLargestAccountsApi & gill.GetTokenSupplyApi & gill.GetTransactionApi & gill.GetTransactionCountApi & gill.GetVersionApi & gill.GetVoteAccountsApi & gill.IsBlockhashValidApi & gill.MinimumLedgerSlotApi & gill.SendTransactionApi & gill.SimulateTransactionApi>;
4068
4058
  declare function getSendAndConfirmTransaction(): SendAndConfirmTransactionWithSignersFunction;
4069
- declare function getComputeBudgetEstimate(): (tx: BaseTransactionMessage & TransactionMessageWithFeePayer, cfg?: {
4070
- commitment?: "processed" | "confirmed" | "finalized";
4071
- }) => Promise<number>;
4072
4059
  declare function getJitoTipsConfig(): {
4073
4060
  blockEngineUrl: string;
4074
4061
  getJitoTipsUrl: string;
@@ -4121,4 +4108,4 @@ declare function convertMemberKeyToString(memberKey: MemberKey): string;
4121
4108
  declare function serializeConfigActions(configActions: ConfigAction[]): Uint8Array<ArrayBuffer>;
4122
4109
  declare function deserializeConfigActions(bytes: Uint8Array<ArrayBuffer>): ConfigAction[];
4123
4110
 
4124
- 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, 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 ChangeConfigAsyncInput, 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 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 ExpectedSecp256r1Signers, type ExpectedSecp256r1SignersArgs, type ExtensionStruct, type ExtensionStructArgs, GLOBAL_COUNTER_DISCRIMINATOR, type GlobalCounter, type GlobalCounterArgs, type IKeyType, type IPermission, type IPermissions, type JitoTipsConfig, KeyType, type LinkWalletArgs, type LinkWalletArgsArgs, MIGRATE_COMPRESSED_SETTINGS_DISCRIMINATOR, MIGRATE_COMPRESSED_USERS_DISCRIMINATOR, 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, type MigrateCompressedSettingsInput, type MigrateCompressedSettingsInstruction, type MigrateCompressedSettingsInstructionData, type MigrateCompressedSettingsInstructionDataArgs, type MigrateCompressedSettingsInstructionExtraArgs, type MigrateCompressedUsersInput, type MigrateCompressedUsersInstruction, type MigrateCompressedUsersInstructionData, type MigrateCompressedUsersInstructionDataArgs, type MigrateCompressedUsersInstructionExtraArgs, 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 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 ParsedMigrateCompressedSettingsInstruction, type ParsedMigrateCompressedUsersInstruction, 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 Secp256r1VerifyArgsWithDomainAddress, type Secp256r1VerifyArgsWithDomainAddressArgs, type Secp256r1VerifyInput, type Secp256r1VerifyInstruction, type Secp256r1VerifyInstructionData, type Secp256r1VerifyInstructionDataArgs, type Settings, type SettingsArgs, type SettingsCreationArgs, type SettingsCreationArgsArgs, 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 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 TransferFeeAccountExtension, type TransferFeeAccountExtensionArgs, type TransferHookAccountExtension, type TransferHookAccountExtensionArgs, Transports, type TransportsArgs, type User, type UserArgs, type UserCreationArgs$2 as UserCreationArgs, type UserCreationArgsArgs, type UserMutArgs, type UserMutArgsArgs, type UserReadOnlyArgs, type UserReadOnlyArgsArgs, type UserReadOnlyOrMutateArgs, type UserReadOnlyOrMutateArgsArgs, UserRole, type UserRoleArgs, WHITELISTED_ADDRESS_TREE_DISCRIMINATOR, type WhitelistedAddressTree, type WhitelistedAddressTreeArgs, addWhitelistedAddressTrees, base64URLStringToBuffer, bufferToBase64URLString, changeConfig, closeTransactionBuffer, configAction, convertBase64StringToJWK, convertJWKToBase64String, convertMemberKeyToString, convertPubkeyCompressedToCose, convertPubkeyCoseToCompressed, createClientAuthorizationCompleteRequestChallenge, createClientAuthorizationStartRequestChallenge, createDomainConfig, createDomainUserAccounts, createGlobalCounter, createMessageChallenge, createTransactionBuffer, createTransactionChallenge, createTransactionManagerSigner, createUserAccounts, createWallet, decodeDomainConfig, decodeGlobalCounter, decodeSettings, decodeTransactionBuffer, decodeWhitelistedAddressTree, decompressSettingsAccount, deserializeConfigActions, disableDomainConfig, editDomainConfig, editTransactionManagerUrl, editUserDelegate, executeTransaction, executeTransactionBuffer, executeTransactionSync, extendTransactionBuffer, extensionStruct, fetchAllDomainConfig, fetchAllGlobalCounter, fetchAllMaybeDomainConfig, fetchAllMaybeGlobalCounter, fetchAllMaybeSettings, fetchAllMaybeTransactionBuffer, fetchAllMaybeWhitelistedAddressTree, fetchAllSettings, fetchAllSettingsAccountByMember, fetchAllTransactionBuffer, fetchAllWhitelistedAddressTree, fetchDomainConfig, fetchGlobalCounter, fetchMaybeDomainConfig, fetchMaybeGlobalCounter, fetchMaybeSettings, fetchMaybeSettingsAccountData, fetchMaybeTransactionBuffer, fetchMaybeUserAccountData, fetchMaybeWhitelistedAddressTree, fetchSettings, fetchSettingsAccountData, fetchTransactionBuffer, fetchUserAccountByFilters, fetchUserAccountData, fetchWhitelistedAddressTree, getAddMemberArgsCodec, getAddMemberArgsDecoder, getAddMemberArgsEncoder, getAddWhitelistedAddressTreesDiscriminatorBytes, getAddWhitelistedAddressTreesInstruction, getAddWhitelistedAddressTreesInstructionAsync, getAddWhitelistedAddressTreesInstructionDataCodec, getAddWhitelistedAddressTreesInstructionDataDecoder, getAddWhitelistedAddressTreesInstructionDataEncoder, getAdditionalMetadataCodec, getAdditionalMetadataDecoder, getAdditionalMetadataEncoder, getChangeConfigCompressedDiscriminatorBytes, getChangeConfigCompressedInstruction, getChangeConfigCompressedInstructionDataCodec, getChangeConfigCompressedInstructionDataDecoder, getChangeConfigCompressedInstructionDataEncoder, getChangeConfigDiscriminatorBytes, getChangeConfigInstruction, getChangeConfigInstructionAsync, getChangeConfigInstructionDataCodec, getChangeConfigInstructionDataDecoder, getChangeConfigInstructionDataEncoder, getClientAndDeviceHash, getCompiledInstructionCodec, getCompiledInstructionDecoder, getCompiledInstructionEncoder, getCompressedAccountMetaCodec, getCompressedAccountMetaDecoder, getCompressedAccountMetaEncoder, getCompressedAccountMetaReadOnlyCodec, getCompressedAccountMetaReadOnlyDecoder, getCompressedAccountMetaReadOnlyEncoder, getCompressedOnlyExtensionCodec, getCompressedOnlyExtensionDecoder, getCompressedOnlyExtensionEncoder, getCompressedProofCodec, getCompressedProofDecoder, getCompressedProofEncoder, getCompressedSettingsAddressFromIndex, getCompressedSettingsCodec, getCompressedSettingsDataCodec, getCompressedSettingsDataDecoder, getCompressedSettingsDataEncoder, getCompressedSettingsDecoder, getCompressedSettingsEncoder, getCompressedTokenArgsCodec, getCompressedTokenArgsDecoder, getCompressedTokenArgsEncoder, getCompressibleExtensionCodec, getCompressibleExtensionDecoder, getCompressibleExtensionEncoder, getCompressionInfoCodec, getCompressionInfoDecoder, getCompressionInfoEncoder, getComputeBudgetEstimate, 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, getExpectedSecp256r1SignersCodec, getExpectedSecp256r1SignersDecoder, getExpectedSecp256r1SignersEncoder, getExtensionStructCodec, getExtensionStructDecoder, getExtensionStructEncoder, getGlobalCounterAddress, getGlobalCounterCodec, getGlobalCounterDecoder, getGlobalCounterDiscriminatorBytes, getGlobalCounterEncoder, getGlobalCounterSize, getJitoTipsConfig, getLightCpiSigner, getLightProtocolRpc, getLinkWalletArgsCodec, getLinkWalletArgsDecoder, getLinkWalletArgsEncoder, getMemberCodec, getMemberDecoder, getMemberEncoder, getMemberKeyCodec, getMemberKeyDecoder, getMemberKeyEncoder, getMigrateCompressedSettingsDiscriminatorBytes, getMigrateCompressedSettingsInstruction, getMigrateCompressedSettingsInstructionDataCodec, getMigrateCompressedSettingsInstructionDataDecoder, getMigrateCompressedSettingsInstructionDataEncoder, getMigrateCompressedUsersDiscriminatorBytes, getMigrateCompressedUsersInstruction, getMigrateCompressedUsersInstructionDataCodec, getMigrateCompressedUsersInstructionDataDecoder, getMigrateCompressedUsersInstructionDataEncoder, 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, getSecp256r1VerifyArgsWithDomainAddressCodec, getSecp256r1VerifyArgsWithDomainAddressDecoder, getSecp256r1VerifyArgsWithDomainAddressEncoder, getSecp256r1VerifyInstruction, getSecp256r1VerifyInstructionDataCodec, getSecp256r1VerifyInstructionDataDecoder, getSecp256r1VerifyInstructionDataEncoder, getSendAndConfirmTransaction, getSettingsCodec, getSettingsCreationArgsCodec, getSettingsCreationArgsDecoder, getSettingsCreationArgsEncoder, 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, 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, isUserReadOnlyOrMutateArgs, migrateSettings, migrateUsers, nativeTransferIntent, parseAddWhitelistedAddressTreesInstruction, parseChangeConfigCompressedInstruction, parseChangeConfigInstruction, parseCreateCompressedWalletInstruction, parseCreateDomainConfigInstruction, parseCreateDomainUserAccountInstruction, parseCreateGlobalCounterInstruction, parseCreateUserAccountsInstruction, parseDecompressSettingsAccountInstruction, parseDisableDomainConfigInstruction, parseEditDomainConfigInstruction, parseEditTransactionManagerUrlInstruction, parseEditUserDelegateInstruction, parseMigrateCompressedSettingsInstruction, parseMigrateCompressedUsersInstruction, 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, userReadOnlyOrMutateArgs, vaultTransactionMessageDeserialize, vaultTransactionMessageSerialize, voteTransactionBuffer };
4111
+ 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, 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 ExpectedSecp256r1Signers, type ExpectedSecp256r1SignersArgs, 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 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 Secp256r1VerifyArgsWithDomainAddress, type Secp256r1VerifyArgsWithDomainAddressArgs, 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 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 TransferFeeAccountExtension, type TransferFeeAccountExtensionArgs, type TransferHookAccountExtension, type TransferHookAccountExtensionArgs, Transports, type TransportsArgs, type User, type UserArgs, type UserCreationArgs$2 as UserCreationArgs, type UserCreationArgsArgs, type UserMutArgs, type UserMutArgsArgs, type UserReadOnlyArgs, type UserReadOnlyArgsArgs, type UserReadOnlyOrMutateArgs, type UserReadOnlyOrMutateArgsArgs, UserRole, type UserRoleArgs, WHITELISTED_ADDRESS_TREE_DISCRIMINATOR, type WhitelistedAddressTree, type WhitelistedAddressTreeArgs, addWhitelistedAddressTrees, base64URLStringToBuffer, bufferToBase64URLString, changeConfig, closeTransactionBuffer, configAction, convertBase64StringToJWK, convertJWKToBase64String, convertMemberKeyToString, convertPubkeyCompressedToCose, convertPubkeyCoseToCompressed, createClientAuthorizationCompleteRequestChallenge, createClientAuthorizationStartRequestChallenge, createDomainConfig, createDomainUserAccounts, createGlobalCounter, createMessageChallenge, createTransactionBuffer, createTransactionChallenge, createTransactionManagerSigner, createUserAccounts, createWallet, decodeDomainConfig, decodeGlobalCounter, decodeSettings, decodeTransactionBuffer, decodeWhitelistedAddressTree, decompressSettingsAccount, deserializeConfigActions, disableDomainConfig, editDomainConfig, editTransactionManagerUrl, editUserDelegate, executeTransaction, executeTransactionBuffer, executeTransactionSync, extendTransactionBuffer, extensionStruct, fetchAllDomainConfig, fetchAllGlobalCounter, fetchAllMaybeDomainConfig, fetchAllMaybeGlobalCounter, fetchAllMaybeSettings, fetchAllMaybeTransactionBuffer, fetchAllMaybeWhitelistedAddressTree, fetchAllSettings, fetchAllSettingsAccountByMember, fetchAllTransactionBuffer, fetchAllWhitelistedAddressTree, fetchDomainConfig, fetchGlobalCounter, fetchMaybeDomainConfig, fetchMaybeGlobalCounter, fetchMaybeSettings, fetchMaybeSettingsAccountData, fetchMaybeTransactionBuffer, fetchMaybeUserAccountData, fetchMaybeWhitelistedAddressTree, fetchSettings, fetchSettingsAccountData, fetchTransactionBuffer, fetchUserAccountByFilters, fetchUserAccountData, fetchWhitelistedAddressTree, 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, getExpectedSecp256r1SignersCodec, getExpectedSecp256r1SignersDecoder, getExpectedSecp256r1SignersEncoder, 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, getSecp256r1VerifyArgsWithDomainAddressCodec, getSecp256r1VerifyArgsWithDomainAddressDecoder, getSecp256r1VerifyArgsWithDomainAddressEncoder, 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, 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, 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, userReadOnlyOrMutateArgs, vaultTransactionMessageDeserialize, vaultTransactionMessageSerialize, voteTransactionBuffer };