@revibase/core 0.0.1 → 0.0.3

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, Option, OptionOrNullable, Encoder, Decoder, Codec, GetDiscriminatedUnionVariantContent, GetDiscriminatedUnionVariant, SolanaError, SOLANA_ERROR__INSTRUCTION_ERROR__CUSTOM, AccountMeta, Instruction, InstructionWithData, InstructionWithAccounts, WritableAccount, WritableSignerAccount, AccountSignerMeta, ReadonlySignerAccount, ReadonlyAccount, TransactionSigner, AddressesByLookupTableAddress, CompiledTransactionMessage, Rpc as Rpc$1, SendAndConfirmTransactionWithSignersFunction, CompilableTransactionMessage, TransactionMessage as TransactionMessage$1, TransactionMessageWithFeePayer } from 'gill';
2
+ import { ReadonlyUint8Array, Address, FixedSizeEncoder, FixedSizeDecoder, FixedSizeCodec, EncodedAccount, Account, MaybeEncodedAccount, MaybeAccount, fetchEncodedAccount, FetchAccountConfig, fetchEncodedAccounts, FetchAccountsConfig, Option, OptionOrNullable, Encoder, Decoder, Codec, GetDiscriminatedUnionVariantContent, GetDiscriminatedUnionVariant, SolanaError, SOLANA_ERROR__INSTRUCTION_ERROR__CUSTOM, AccountMeta, Instruction, InstructionWithData, InstructionWithAccounts, WritableAccount, WritableSignerAccount, AccountSignerMeta, ReadonlyAccount, TransactionSigner, ReadonlySignerAccount, AddressesByLookupTableAddress, CompiledTransactionMessage, Rpc as Rpc$1, SendAndConfirmTransactionWithSignersFunction, CompilableTransactionMessage, TransactionMessage as TransactionMessage$1, TransactionMessageWithFeePayer } from 'gill';
3
3
  import { AuthenticationResponseJSON } from '@simplewebauthn/server';
4
4
  import * as bn_js from 'bn.js';
5
5
  import { PublicKey } from '@solana/web3.js';
@@ -141,6 +141,7 @@ type CompressedSettingsData = {
141
141
  index: bigint;
142
142
  multiWalletBump: number;
143
143
  members: Array<Member>;
144
+ settingsAddressTreeIndex: number;
144
145
  };
145
146
  type CompressedSettingsDataArgs = {
146
147
  threshold: number;
@@ -148,6 +149,7 @@ type CompressedSettingsDataArgs = {
148
149
  index: number | bigint;
149
150
  multiWalletBump: number;
150
151
  members: Array<MemberArgs>;
152
+ settingsAddressTreeIndex: number;
151
153
  };
152
154
  declare function getCompressedSettingsDataEncoder(): Encoder<CompressedSettingsDataArgs>;
153
155
  declare function getCompressedSettingsDataDecoder(): Decoder<CompressedSettingsData>;
@@ -247,10 +249,12 @@ declare function getLinkWalletArgsCodec(): Codec<LinkWalletArgsArgs, LinkWalletA
247
249
  type Member = {
248
250
  pubkey: MemberKey;
249
251
  permissions: IPermissions;
252
+ userAddressTreeIndex: number;
250
253
  };
251
254
  type MemberArgs = {
252
255
  pubkey: MemberKeyArgs;
253
256
  permissions: PermissionsArgs;
257
+ userAddressTreeIndex: number;
254
258
  };
255
259
  declare function getMemberEncoder(): FixedSizeEncoder<MemberArgs>;
256
260
  declare function getMemberDecoder(): FixedSizeDecoder<Member>;
@@ -355,29 +359,6 @@ declare function getSecp256r1VerifyArgsWithDomainAddressEncoder(): Encoder<Secp2
355
359
  declare function getSecp256r1VerifyArgsWithDomainAddressDecoder(): Decoder<Secp256r1VerifyArgsWithDomainAddress>;
356
360
  declare function getSecp256r1VerifyArgsWithDomainAddressCodec(): Codec<Secp256r1VerifyArgsWithDomainAddressArgs, Secp256r1VerifyArgsWithDomainAddress>;
357
361
 
358
- type SettingsCreateOrMutateArgs = {
359
- __kind: "Create";
360
- fields: readonly [SettingsCreationArgs];
361
- } | {
362
- __kind: "Mutate";
363
- fields: readonly [SettingsMutArgs];
364
- };
365
- type SettingsCreateOrMutateArgsArgs = {
366
- __kind: "Create";
367
- fields: readonly [SettingsCreationArgsArgs];
368
- } | {
369
- __kind: "Mutate";
370
- fields: readonly [SettingsMutArgsArgs];
371
- };
372
- declare function getSettingsCreateOrMutateArgsEncoder(): Encoder<SettingsCreateOrMutateArgsArgs>;
373
- declare function getSettingsCreateOrMutateArgsDecoder(): Decoder<SettingsCreateOrMutateArgs>;
374
- declare function getSettingsCreateOrMutateArgsCodec(): Codec<SettingsCreateOrMutateArgsArgs, SettingsCreateOrMutateArgs>;
375
- declare function settingsCreateOrMutateArgs(kind: "Create", data: GetDiscriminatedUnionVariantContent<SettingsCreateOrMutateArgsArgs, "__kind", "Create">["fields"]): GetDiscriminatedUnionVariant<SettingsCreateOrMutateArgsArgs, "__kind", "Create">;
376
- declare function settingsCreateOrMutateArgs(kind: "Mutate", data: GetDiscriminatedUnionVariantContent<SettingsCreateOrMutateArgsArgs, "__kind", "Mutate">["fields"]): GetDiscriminatedUnionVariant<SettingsCreateOrMutateArgsArgs, "__kind", "Mutate">;
377
- declare function isSettingsCreateOrMutateArgs<K extends SettingsCreateOrMutateArgs["__kind"]>(kind: K, value: SettingsCreateOrMutateArgs): value is SettingsCreateOrMutateArgs & {
378
- __kind: K;
379
- };
380
-
381
362
  type SettingsCreationArgs = {
382
363
  addressTreeInfo: PackedAddressTreeInfo;
383
364
  outputStateTreeIndex: number;
@@ -390,6 +371,18 @@ declare function getSettingsCreationArgsEncoder(): FixedSizeEncoder<SettingsCrea
390
371
  declare function getSettingsCreationArgsDecoder(): FixedSizeDecoder<SettingsCreationArgs>;
391
372
  declare function getSettingsCreationArgsCodec(): FixedSizeCodec<SettingsCreationArgsArgs, SettingsCreationArgs>;
392
373
 
374
+ type SettingsIndexWithAddress = {
375
+ index: bigint;
376
+ settingsAddressTreeIndex: number;
377
+ };
378
+ type SettingsIndexWithAddressArgs = {
379
+ index: number | bigint;
380
+ settingsAddressTreeIndex: number;
381
+ };
382
+ declare function getSettingsIndexWithAddressEncoder(): FixedSizeEncoder<SettingsIndexWithAddressArgs>;
383
+ declare function getSettingsIndexWithAddressDecoder(): FixedSizeDecoder<SettingsIndexWithAddress>;
384
+ declare function getSettingsIndexWithAddressCodec(): FixedSizeCodec<SettingsIndexWithAddressArgs, SettingsIndexWithAddress>;
385
+
393
386
  type SettingsMutArgs = {
394
387
  accountMeta: CompressedAccountMeta;
395
388
  data: CompressedSettings;
@@ -420,8 +413,16 @@ type TransactionBufferCreateArgs = {
420
413
  bufferExtendHashes: Array<ReadonlyUint8Array>;
421
414
  finalBufferHash: ReadonlyUint8Array;
422
415
  finalBufferSize: number;
416
+ expectedSigners: Array<MemberKey>;
417
+ };
418
+ type TransactionBufferCreateArgsArgs = {
419
+ bufferIndex: number;
420
+ preauthorizeExecution: boolean;
421
+ bufferExtendHashes: Array<ReadonlyUint8Array>;
422
+ finalBufferHash: ReadonlyUint8Array;
423
+ finalBufferSize: number;
424
+ expectedSigners: Array<MemberKeyArgs>;
423
425
  };
424
- type TransactionBufferCreateArgsArgs = TransactionBufferCreateArgs;
425
426
  declare function getTransactionBufferCreateArgsEncoder(): Encoder<TransactionBufferCreateArgsArgs>;
426
427
  declare function getTransactionBufferCreateArgsDecoder(): Decoder<TransactionBufferCreateArgs>;
427
428
  declare function getTransactionBufferCreateArgsCodec(): Codec<TransactionBufferCreateArgsArgs, TransactionBufferCreateArgs>;
@@ -460,15 +461,17 @@ type User = {
460
461
  member: MemberKey;
461
462
  domainConfig: Option<Address>;
462
463
  isPermanentMember: boolean;
463
- settingsIndex: Option<bigint>;
464
+ delegatedTo: Option<SettingsIndexWithAddress>;
464
465
  transactionManagerUrl: Option<string>;
466
+ userAddressTreeIndex: number;
465
467
  };
466
468
  type UserArgs = {
467
469
  member: MemberKeyArgs;
468
470
  domainConfig: OptionOrNullable<Address>;
469
471
  isPermanentMember: boolean;
470
- settingsIndex: OptionOrNullable<number | bigint>;
472
+ delegatedTo: OptionOrNullable<SettingsIndexWithAddressArgs>;
471
473
  transactionManagerUrl: OptionOrNullable<string>;
474
+ userAddressTreeIndex: number;
472
475
  };
473
476
  declare function getUserEncoder(): Encoder<UserArgs>;
474
477
  declare function getUserDecoder(): Decoder<User>;
@@ -543,6 +546,8 @@ type Settings = {
543
546
  threshold: number;
544
547
  multiWalletBump: number;
545
548
  bump: number;
549
+ settingsAddressTreeIndex: number;
550
+ padding: ReadonlyUint8Array;
546
551
  };
547
552
  type SettingsArgs = {
548
553
  index: number | bigint;
@@ -551,6 +556,8 @@ type SettingsArgs = {
551
556
  threshold: number;
552
557
  multiWalletBump: number;
553
558
  bump: number;
559
+ settingsAddressTreeIndex: number;
560
+ padding: ReadonlyUint8Array;
554
561
  };
555
562
  declare function getSettingsEncoder(): FixedSizeEncoder<SettingsArgs>;
556
563
  declare function getSettingsDecoder(): FixedSizeDecoder<Settings>;
@@ -578,8 +585,10 @@ type TransactionBuffer = {
578
585
  finalBufferHash: ReadonlyUint8Array;
579
586
  finalBufferSize: number;
580
587
  creator: MemberKey;
588
+ executor: MemberKey;
581
589
  bufferExtendHashes: Array<ReadonlyUint8Array>;
582
590
  voters: Array<MemberKey>;
591
+ expectedSigners: Array<MemberKey>;
583
592
  buffer: ReadonlyUint8Array;
584
593
  };
585
594
  type TransactionBufferArgs = {
@@ -594,8 +603,10 @@ type TransactionBufferArgs = {
594
603
  finalBufferHash: ReadonlyUint8Array;
595
604
  finalBufferSize: number;
596
605
  creator: MemberKeyArgs;
606
+ executor: MemberKeyArgs;
597
607
  bufferExtendHashes: Array<ReadonlyUint8Array>;
598
608
  voters: Array<MemberKeyArgs>;
609
+ expectedSigners: Array<MemberKeyArgs>;
599
610
  buffer: ReadonlyUint8Array;
600
611
  };
601
612
  declare function getTransactionBufferEncoder(): Encoder<TransactionBufferArgs>;
@@ -608,6 +619,27 @@ declare function fetchMaybeTransactionBuffer<TAddress extends string = string>(r
608
619
  declare function fetchAllTransactionBuffer(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Array<Address>, config?: FetchAccountsConfig): Promise<Account<TransactionBuffer>[]>;
609
620
  declare function fetchAllMaybeTransactionBuffer(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Array<Address>, config?: FetchAccountsConfig): Promise<MaybeAccount<TransactionBuffer>[]>;
610
621
 
622
+ declare const WHITELISTED_ADDRESS_TREE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
623
+ declare function getWhitelistedAddressTreeDiscriminatorBytes(): ReadonlyUint8Array;
624
+ type WhitelistedAddressTree = {
625
+ discriminator: ReadonlyUint8Array;
626
+ whitelistedAddressTrees: Array<Address>;
627
+ bump: number;
628
+ };
629
+ type WhitelistedAddressTreeArgs = {
630
+ whitelistedAddressTrees: Array<Address>;
631
+ bump: number;
632
+ };
633
+ declare function getWhitelistedAddressTreeEncoder(): Encoder<WhitelistedAddressTreeArgs>;
634
+ declare function getWhitelistedAddressTreeDecoder(): Decoder<WhitelistedAddressTree>;
635
+ declare function getWhitelistedAddressTreeCodec(): Codec<WhitelistedAddressTreeArgs, WhitelistedAddressTree>;
636
+ declare function decodeWhitelistedAddressTree<TAddress extends string = string>(encodedAccount: EncodedAccount<TAddress>): Account<WhitelistedAddressTree, TAddress>;
637
+ declare function decodeWhitelistedAddressTree<TAddress extends string = string>(encodedAccount: MaybeEncodedAccount<TAddress>): MaybeAccount<WhitelistedAddressTree, TAddress>;
638
+ declare function fetchWhitelistedAddressTree<TAddress extends string = string>(rpc: Parameters<typeof fetchEncodedAccount>[0], address: Address<TAddress>, config?: FetchAccountConfig): Promise<Account<WhitelistedAddressTree, TAddress>>;
639
+ declare function fetchMaybeWhitelistedAddressTree<TAddress extends string = string>(rpc: Parameters<typeof fetchEncodedAccount>[0], address: Address<TAddress>, config?: FetchAccountConfig): Promise<MaybeAccount<WhitelistedAddressTree, TAddress>>;
640
+ declare function fetchAllWhitelistedAddressTree(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Array<Address>, config?: FetchAccountsConfig): Promise<Account<WhitelistedAddressTree>[]>;
641
+ declare function fetchAllMaybeWhitelistedAddressTree(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Array<Address>, config?: FetchAccountsConfig): Promise<MaybeAccount<WhitelistedAddressTree>[]>;
642
+
611
643
  declare const MULTI_WALLET_ERROR__INVALID_SIGNED_MESSAGE = 6000;
612
644
  declare const MULTI_WALLET_ERROR__INVALID_SECP256R1_VERIFY_ARG = 6001;
613
645
  declare const MULTI_WALLET_ERROR__DURABLE_NONCE_DETECTED = 6002;
@@ -630,25 +662,27 @@ declare const MULTI_WALLET_ERROR__ALREADY_DELEGATED = 6018;
630
662
  declare const MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_EXECUTE_PERMISSION = 6019;
631
663
  declare const MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_INITIATE_PERMISSION = 6020;
632
664
  declare const MULTI_WALLET_ERROR__INSUFFICIENT_SIGNERS_WITH_VOTE_PERMISSION = 6021;
633
- declare const MULTI_WALLET_ERROR__NO_SIGNER_FOUND = 6022;
634
- declare const MULTI_WALLET_ERROR__UNAUTHORISED_TO_CLOSE_TRANSACTION_BUFFER = 6023;
635
- declare const MULTI_WALLET_ERROR__INVALID_BUFFER = 6024;
636
- declare const MULTI_WALLET_ERROR__FINAL_BUFFER_HASH_MISMATCH = 6025;
637
- declare const MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_EXCEEDED = 6026;
638
- declare const MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_MISMATCH = 6027;
639
- declare const MULTI_WALLET_ERROR__TRANSACTION_HAS_EXPIRED = 6028;
640
- declare const MULTI_WALLET_ERROR__TRANSACTION_NOT_APPROVED = 6029;
641
- declare const MULTI_WALLET_ERROR__PROTECTED_ACCOUNT = 6030;
642
- declare const MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED = 6031;
643
- declare const MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY = 6032;
644
- declare const MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT = 6033;
645
- declare const MULTI_WALLET_ERROR__SLOT_NUMBER_NOT_FOUND = 6034;
646
- declare const MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_DISABLED = 6035;
647
- declare const MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_MISSING = 6036;
648
- declare const MULTI_WALLET_ERROR__MEMBER_DOES_NOT_BELONG_TO_DOMAIN_CONFIG = 6037;
649
- declare const MULTI_WALLET_ERROR__RP_ID_HASH_MISMATCH = 6038;
650
- declare const MULTI_WALLET_ERROR__ORIGIN_INDEX_OUT_OF_BOUNDS = 6039;
651
- type MultiWalletError = typeof MULTI_WALLET_ERROR__ALREADY_DELEGATED | typeof MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_DISABLED | typeof MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_MISSING | typeof MULTI_WALLET_ERROR__DUPLICATE_MEMBER | typeof MULTI_WALLET_ERROR__DURABLE_NONCE_DETECTED | typeof MULTI_WALLET_ERROR__EMPTY_MEMBERS | typeof MULTI_WALLET_ERROR__FINAL_BUFFER_HASH_MISMATCH | typeof MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_EXCEEDED | typeof MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_MISMATCH | typeof MULTI_WALLET_ERROR__INSUFFICIENT_SIGNERS_WITH_VOTE_PERMISSION | typeof MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_EXECUTE_PERMISSION | typeof MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_INITIATE_PERMISSION | typeof MULTI_WALLET_ERROR__INVALID_ACCOUNT | typeof MULTI_WALLET_ERROR__INVALID_ARGUMENTS | typeof MULTI_WALLET_ERROR__INVALID_BUFFER | typeof MULTI_WALLET_ERROR__INVALID_NUMBER_OF_ACCOUNTS | typeof MULTI_WALLET_ERROR__INVALID_SECP256R1_VERIFY_ARG | typeof MULTI_WALLET_ERROR__INVALID_SIGNED_MESSAGE | typeof MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT | typeof MULTI_WALLET_ERROR__INVALID_THRESHOLD | typeof MULTI_WALLET_ERROR__INVALID_TRANSACTION_MESSAGE | typeof MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED | typeof MULTI_WALLET_ERROR__MEMBER_DOES_NOT_BELONG_TO_DOMAIN_CONFIG | typeof MULTI_WALLET_ERROR__MISSING_ACCOUNT | typeof MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY | typeof MULTI_WALLET_ERROR__MISSING_USER_ARGS | typeof MULTI_WALLET_ERROR__NO_SIGNER_FOUND | typeof MULTI_WALLET_ERROR__ONLY_ONE_PERMANENT_MEMBER_ALLOWED | typeof MULTI_WALLET_ERROR__ONLY_ONE_TRANSACTION_MANAGER_ALLOWED | typeof MULTI_WALLET_ERROR__ORIGIN_INDEX_OUT_OF_BOUNDS | typeof MULTI_WALLET_ERROR__PERMANENT_MEMBER | typeof MULTI_WALLET_ERROR__PERMANENT_MEMBER_NOT_ALLOWED | typeof MULTI_WALLET_ERROR__PROTECTED_ACCOUNT | typeof MULTI_WALLET_ERROR__RP_ID_HASH_MISMATCH | typeof MULTI_WALLET_ERROR__SLOT_NUMBER_NOT_FOUND | typeof MULTI_WALLET_ERROR__TOO_MANY_MEMBERS | typeof MULTI_WALLET_ERROR__TRANSACTION_HAS_EXPIRED | typeof MULTI_WALLET_ERROR__TRANSACTION_MANAGER_NOT_ALLOWED | typeof MULTI_WALLET_ERROR__TRANSACTION_NOT_APPROVED | typeof MULTI_WALLET_ERROR__UNAUTHORISED_TO_CLOSE_TRANSACTION_BUFFER;
665
+ declare const MULTI_WALLET_ERROR__UNEXPECTED_SIGNER = 6022;
666
+ declare const MULTI_WALLET_ERROR__NO_SIGNER_FOUND = 6023;
667
+ declare const MULTI_WALLET_ERROR__UNAUTHORISED_TO_CLOSE_TRANSACTION_BUFFER = 6024;
668
+ declare const MULTI_WALLET_ERROR__INVALID_BUFFER = 6025;
669
+ declare const MULTI_WALLET_ERROR__FINAL_BUFFER_HASH_MISMATCH = 6026;
670
+ declare const MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_EXCEEDED = 6027;
671
+ declare const MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_MISMATCH = 6028;
672
+ declare const MULTI_WALLET_ERROR__TRANSACTION_HAS_EXPIRED = 6029;
673
+ declare const MULTI_WALLET_ERROR__TRANSACTION_NOT_APPROVED = 6030;
674
+ declare const MULTI_WALLET_ERROR__PROTECTED_ACCOUNT = 6031;
675
+ declare const MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED = 6032;
676
+ declare const MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY = 6033;
677
+ declare const MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT = 6034;
678
+ declare const MULTI_WALLET_ERROR__SLOT_NUMBER_NOT_FOUND = 6035;
679
+ declare const MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_DISABLED = 6036;
680
+ declare const MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_MISSING = 6037;
681
+ declare const MULTI_WALLET_ERROR__MEMBER_DOES_NOT_BELONG_TO_DOMAIN_CONFIG = 6038;
682
+ declare const MULTI_WALLET_ERROR__RP_ID_HASH_MISMATCH = 6039;
683
+ declare const MULTI_WALLET_ERROR__ORIGIN_INDEX_OUT_OF_BOUNDS = 6040;
684
+ declare const MULTI_WALLET_ERROR__INVALID_ADDRESS_TREE = 6041;
685
+ type MultiWalletError = typeof MULTI_WALLET_ERROR__ALREADY_DELEGATED | typeof MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_DISABLED | typeof MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_MISSING | typeof MULTI_WALLET_ERROR__DUPLICATE_MEMBER | typeof MULTI_WALLET_ERROR__DURABLE_NONCE_DETECTED | typeof MULTI_WALLET_ERROR__EMPTY_MEMBERS | typeof MULTI_WALLET_ERROR__FINAL_BUFFER_HASH_MISMATCH | typeof MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_EXCEEDED | typeof MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_MISMATCH | typeof MULTI_WALLET_ERROR__INSUFFICIENT_SIGNERS_WITH_VOTE_PERMISSION | typeof MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_EXECUTE_PERMISSION | typeof MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_INITIATE_PERMISSION | typeof MULTI_WALLET_ERROR__INVALID_ACCOUNT | typeof MULTI_WALLET_ERROR__INVALID_ADDRESS_TREE | typeof MULTI_WALLET_ERROR__INVALID_ARGUMENTS | typeof MULTI_WALLET_ERROR__INVALID_BUFFER | typeof MULTI_WALLET_ERROR__INVALID_NUMBER_OF_ACCOUNTS | typeof MULTI_WALLET_ERROR__INVALID_SECP256R1_VERIFY_ARG | typeof MULTI_WALLET_ERROR__INVALID_SIGNED_MESSAGE | typeof MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT | typeof MULTI_WALLET_ERROR__INVALID_THRESHOLD | typeof MULTI_WALLET_ERROR__INVALID_TRANSACTION_MESSAGE | typeof MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED | typeof MULTI_WALLET_ERROR__MEMBER_DOES_NOT_BELONG_TO_DOMAIN_CONFIG | typeof MULTI_WALLET_ERROR__MISSING_ACCOUNT | typeof MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY | typeof MULTI_WALLET_ERROR__MISSING_USER_ARGS | typeof MULTI_WALLET_ERROR__NO_SIGNER_FOUND | typeof MULTI_WALLET_ERROR__ONLY_ONE_PERMANENT_MEMBER_ALLOWED | typeof MULTI_WALLET_ERROR__ONLY_ONE_TRANSACTION_MANAGER_ALLOWED | typeof MULTI_WALLET_ERROR__ORIGIN_INDEX_OUT_OF_BOUNDS | typeof MULTI_WALLET_ERROR__PERMANENT_MEMBER | typeof MULTI_WALLET_ERROR__PERMANENT_MEMBER_NOT_ALLOWED | typeof MULTI_WALLET_ERROR__PROTECTED_ACCOUNT | typeof MULTI_WALLET_ERROR__RP_ID_HASH_MISMATCH | typeof MULTI_WALLET_ERROR__SLOT_NUMBER_NOT_FOUND | typeof MULTI_WALLET_ERROR__TOO_MANY_MEMBERS | typeof MULTI_WALLET_ERROR__TRANSACTION_HAS_EXPIRED | typeof MULTI_WALLET_ERROR__TRANSACTION_MANAGER_NOT_ALLOWED | typeof MULTI_WALLET_ERROR__TRANSACTION_NOT_APPROVED | typeof MULTI_WALLET_ERROR__UNAUTHORISED_TO_CLOSE_TRANSACTION_BUFFER | typeof MULTI_WALLET_ERROR__UNEXPECTED_SIGNER;
652
686
  declare function getMultiWalletErrorMessage(code: MultiWalletError): string;
653
687
  declare function isMultiWalletError<TProgramErrorCode extends MultiWalletError>(error: unknown, transactionMessage: {
654
688
  instructions: Record<number, {
@@ -665,19 +699,20 @@ declare enum MultiWalletAccount {
665
699
  DomainConfig = 0,
666
700
  GlobalCounter = 1,
667
701
  Settings = 2,
668
- TransactionBuffer = 3
702
+ TransactionBuffer = 3,
703
+ WhitelistedAddressTree = 4
669
704
  }
670
705
  declare function identifyMultiWalletAccount(account: {
671
706
  data: ReadonlyUint8Array;
672
707
  } | ReadonlyUint8Array): MultiWalletAccount;
673
708
  declare enum MultiWalletInstruction {
674
- ChangeConfig = 0,
675
- ChangeConfigCompressed = 1,
676
- CompressSettingsAccount = 2,
677
- CreateDomainConfig = 3,
678
- CreateDomainUserAccount = 4,
679
- CreateGlobalCounter = 5,
680
- CreateMultiWallet = 6,
709
+ AddWhitelistedAddressTrees = 0,
710
+ ChangeConfig = 1,
711
+ ChangeConfigCompressed = 2,
712
+ CompressSettingsAccount = 3,
713
+ CreateDomainConfig = 4,
714
+ CreateDomainUserAccount = 5,
715
+ CreateGlobalCounter = 6,
681
716
  CreateMultiWalletCompressed = 7,
682
717
  CreateUserAccounts = 8,
683
718
  DecompressSettingsAccount = 9,
@@ -709,6 +744,8 @@ declare function identifyMultiWalletInstruction(instruction: {
709
744
  data: ReadonlyUint8Array;
710
745
  } | ReadonlyUint8Array): MultiWalletInstruction;
711
746
  type ParsedMultiWalletInstruction<TProgram extends string = "reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT"> = ({
747
+ instructionType: MultiWalletInstruction.AddWhitelistedAddressTrees;
748
+ } & ParsedAddWhitelistedAddressTreesInstruction<TProgram>) | ({
712
749
  instructionType: MultiWalletInstruction.ChangeConfig;
713
750
  } & ParsedChangeConfigInstruction<TProgram>) | ({
714
751
  instructionType: MultiWalletInstruction.ChangeConfigCompressed;
@@ -721,8 +758,6 @@ type ParsedMultiWalletInstruction<TProgram extends string = "reviR1xysEChySVSWGa
721
758
  } & ParsedCreateDomainUserAccountInstruction<TProgram>) | ({
722
759
  instructionType: MultiWalletInstruction.CreateGlobalCounter;
723
760
  } & ParsedCreateGlobalCounterInstruction<TProgram>) | ({
724
- instructionType: MultiWalletInstruction.CreateMultiWallet;
725
- } & ParsedCreateMultiWalletInstruction<TProgram>) | ({
726
761
  instructionType: MultiWalletInstruction.CreateMultiWalletCompressed;
727
762
  } & ParsedCreateMultiWalletCompressedInstruction<TProgram>) | ({
728
763
  instructionType: MultiWalletInstruction.CreateUserAccounts;
@@ -776,6 +811,65 @@ type ParsedMultiWalletInstruction<TProgram extends string = "reviR1xysEChySVSWGa
776
811
  instructionType: MultiWalletInstruction.TransactionExecuteSyncCompressed;
777
812
  } & ParsedTransactionExecuteSyncCompressedInstruction<TProgram>);
778
813
 
814
+ declare const ADD_WHITELISTED_ADDRESS_TREES_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
815
+ declare function getAddWhitelistedAddressTreesDiscriminatorBytes(): ReadonlyUint8Array;
816
+ 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", TAccountAdminDomainConfig extends string | AccountMeta<string> = "5tgzUZaVtfnnSEBgmBDtJj6PdgYCnA1uaEGEUi3y5Njg", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
817
+ TAccountWhitelistedAddressTrees extends string ? WritableAccount<TAccountWhitelistedAddressTrees> : TAccountWhitelistedAddressTrees,
818
+ TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
819
+ TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
820
+ TAccountAdminDomainConfig extends string ? ReadonlyAccount<TAccountAdminDomainConfig> : TAccountAdminDomainConfig,
821
+ ...TRemainingAccounts
822
+ ]>;
823
+ type AddWhitelistedAddressTreesInstructionData = {
824
+ discriminator: ReadonlyUint8Array;
825
+ addressTree: Address;
826
+ };
827
+ type AddWhitelistedAddressTreesInstructionDataArgs = {
828
+ addressTree: Address;
829
+ };
830
+ declare function getAddWhitelistedAddressTreesInstructionDataEncoder(): FixedSizeEncoder<AddWhitelistedAddressTreesInstructionDataArgs>;
831
+ declare function getAddWhitelistedAddressTreesInstructionDataDecoder(): FixedSizeDecoder<AddWhitelistedAddressTreesInstructionData>;
832
+ declare function getAddWhitelistedAddressTreesInstructionDataCodec(): FixedSizeCodec<AddWhitelistedAddressTreesInstructionDataArgs, AddWhitelistedAddressTreesInstructionData>;
833
+ type AddWhitelistedAddressTreesInstructionExtraArgs = {
834
+ remainingAccounts: Array<{
835
+ address: Address;
836
+ role: number;
837
+ }>;
838
+ };
839
+ type AddWhitelistedAddressTreesAsyncInput<TAccountWhitelistedAddressTrees extends string = string, TAccountPayer extends string = string, TAccountSystemProgram extends string = string, TAccountAdminDomainConfig extends string = string> = {
840
+ whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
841
+ payer: TransactionSigner<TAccountPayer>;
842
+ systemProgram?: Address<TAccountSystemProgram>;
843
+ adminDomainConfig?: Address<TAccountAdminDomainConfig>;
844
+ addressTree: AddWhitelistedAddressTreesInstructionDataArgs["addressTree"];
845
+ remainingAccounts: AddWhitelistedAddressTreesInstructionExtraArgs["remainingAccounts"];
846
+ };
847
+ declare function getAddWhitelistedAddressTreesInstructionAsync<TAccountWhitelistedAddressTrees extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TAccountAdminDomainConfig extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: AddWhitelistedAddressTreesAsyncInput<TAccountWhitelistedAddressTrees, TAccountPayer, TAccountSystemProgram, TAccountAdminDomainConfig>, config?: {
848
+ programAddress?: TProgramAddress;
849
+ }): Promise<AddWhitelistedAddressTreesInstruction<TProgramAddress, TAccountWhitelistedAddressTrees, TAccountPayer, TAccountSystemProgram, TAccountAdminDomainConfig>>;
850
+ type AddWhitelistedAddressTreesInput<TAccountWhitelistedAddressTrees extends string = string, TAccountPayer extends string = string, TAccountSystemProgram extends string = string, TAccountAdminDomainConfig extends string = string> = {
851
+ whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
852
+ payer: TransactionSigner<TAccountPayer>;
853
+ systemProgram?: Address<TAccountSystemProgram>;
854
+ adminDomainConfig?: Address<TAccountAdminDomainConfig>;
855
+ addressTree: AddWhitelistedAddressTreesInstructionDataArgs["addressTree"];
856
+ remainingAccounts: AddWhitelistedAddressTreesInstructionExtraArgs["remainingAccounts"];
857
+ };
858
+ declare function getAddWhitelistedAddressTreesInstruction<TAccountWhitelistedAddressTrees extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TAccountAdminDomainConfig extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: AddWhitelistedAddressTreesInput<TAccountWhitelistedAddressTrees, TAccountPayer, TAccountSystemProgram, TAccountAdminDomainConfig>, config?: {
859
+ programAddress?: TProgramAddress;
860
+ }): AddWhitelistedAddressTreesInstruction<TProgramAddress, TAccountWhitelistedAddressTrees, TAccountPayer, TAccountSystemProgram, TAccountAdminDomainConfig>;
861
+ type ParsedAddWhitelistedAddressTreesInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
862
+ programAddress: Address<TProgram>;
863
+ accounts: {
864
+ whitelistedAddressTrees: TAccountMetas[0];
865
+ payer: TAccountMetas[1];
866
+ systemProgram: TAccountMetas[2];
867
+ adminDomainConfig: TAccountMetas[3];
868
+ };
869
+ data: AddWhitelistedAddressTreesInstructionData;
870
+ };
871
+ declare function parseAddWhitelistedAddressTreesInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedAddWhitelistedAddressTreesInstruction<TProgram, TAccountMetas>;
872
+
779
873
  declare const CHANGE_CONFIG_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
780
874
  declare function getChangeConfigDiscriminatorBytes(): ReadonlyUint8Array;
781
875
  type ChangeConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountAuthority 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<[
@@ -917,12 +1011,12 @@ type CompressSettingsAccountInstruction<TProgram extends string = typeof MULTI_W
917
1011
  type CompressSettingsAccountInstructionData = {
918
1012
  discriminator: ReadonlyUint8Array;
919
1013
  compressedProofArgs: ProofArgs;
920
- settingsArg: SettingsCreateOrMutateArgs;
1014
+ settingsMutArgs: SettingsMutArgs;
921
1015
  secp256r1VerifyArgs: Array<Secp256r1VerifyArgsWithDomainAddress>;
922
1016
  };
923
1017
  type CompressSettingsAccountInstructionDataArgs = {
924
1018
  compressedProofArgs: ProofArgsArgs;
925
- settingsArg: SettingsCreateOrMutateArgsArgs;
1019
+ settingsMutArgs: SettingsMutArgsArgs;
926
1020
  secp256r1VerifyArgs: Array<Secp256r1VerifyArgsWithDomainAddressArgs>;
927
1021
  };
928
1022
  declare function getCompressSettingsAccountInstructionDataEncoder(): Encoder<CompressSettingsAccountInstructionDataArgs>;
@@ -940,7 +1034,7 @@ type CompressSettingsAccountInput<TAccountSettings extends string = string, TAcc
940
1034
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
941
1035
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
942
1036
  compressedProofArgs: CompressSettingsAccountInstructionDataArgs["compressedProofArgs"];
943
- settingsArg: CompressSettingsAccountInstructionDataArgs["settingsArg"];
1037
+ settingsMutArgs: CompressSettingsAccountInstructionDataArgs["settingsMutArgs"];
944
1038
  secp256r1VerifyArgs: CompressSettingsAccountInstructionDataArgs["secp256r1VerifyArgs"];
945
1039
  remainingAccounts: CompressSettingsAccountInstructionExtraArgs["remainingAccounts"];
946
1040
  };
@@ -1018,10 +1112,11 @@ declare function parseCreateDomainConfigInstruction<TProgram extends string, TAc
1018
1112
 
1019
1113
  declare const CREATE_DOMAIN_USER_ACCOUNT_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1020
1114
  declare function getCreateDomainUserAccountDiscriminatorBytes(): ReadonlyUint8Array;
1021
- type CreateDomainUserAccountInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountAuthority extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1115
+ type CreateDomainUserAccountInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountAuthority extends string | AccountMeta<string> = string, TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1022
1116
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1023
1117
  TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
1024
1118
  TAccountAuthority extends string ? ReadonlySignerAccount<TAccountAuthority> & AccountSignerMeta<TAccountAuthority> : TAccountAuthority,
1119
+ TAccountWhitelistedAddressTrees extends string ? ReadonlyAccount<TAccountWhitelistedAddressTrees> : TAccountWhitelistedAddressTrees,
1025
1120
  ...TRemainingAccounts
1026
1121
  ]>;
1027
1122
  type CreateDomainUserAccountInstructionData = {
@@ -1048,10 +1143,26 @@ type CreateDomainUserAccountInstructionExtraArgs = {
1048
1143
  role: number;
1049
1144
  }>;
1050
1145
  };
1051
- type CreateDomainUserAccountInput<TAccountPayer extends string = string, TAccountDomainConfig extends string = string, TAccountAuthority extends string = string> = {
1146
+ type CreateDomainUserAccountAsyncInput<TAccountPayer extends string = string, TAccountDomainConfig extends string = string, TAccountAuthority extends string = string, TAccountWhitelistedAddressTrees extends string = string> = {
1147
+ payer: TransactionSigner<TAccountPayer>;
1148
+ domainConfig: Address<TAccountDomainConfig>;
1149
+ authority: TransactionSigner<TAccountAuthority>;
1150
+ whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1151
+ compressedProofArgs: CreateDomainUserAccountInstructionDataArgs["compressedProofArgs"];
1152
+ member: CreateDomainUserAccountInstructionDataArgs["member"];
1153
+ isPermanentMember: CreateDomainUserAccountInstructionDataArgs["isPermanentMember"];
1154
+ userAccountCreationArgs: CreateDomainUserAccountInstructionDataArgs["userAccountCreationArgs"];
1155
+ linkWalletArgs: CreateDomainUserAccountInstructionDataArgs["linkWalletArgs"];
1156
+ remainingAccounts: CreateDomainUserAccountInstructionExtraArgs["remainingAccounts"];
1157
+ };
1158
+ 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?: {
1159
+ programAddress?: TProgramAddress;
1160
+ }): Promise<CreateDomainUserAccountInstruction<TProgramAddress, TAccountPayer, TAccountDomainConfig, TAccountAuthority, TAccountWhitelistedAddressTrees>>;
1161
+ type CreateDomainUserAccountInput<TAccountPayer extends string = string, TAccountDomainConfig extends string = string, TAccountAuthority extends string = string, TAccountWhitelistedAddressTrees extends string = string> = {
1052
1162
  payer: TransactionSigner<TAccountPayer>;
1053
1163
  domainConfig: Address<TAccountDomainConfig>;
1054
1164
  authority: TransactionSigner<TAccountAuthority>;
1165
+ whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
1055
1166
  compressedProofArgs: CreateDomainUserAccountInstructionDataArgs["compressedProofArgs"];
1056
1167
  member: CreateDomainUserAccountInstructionDataArgs["member"];
1057
1168
  isPermanentMember: CreateDomainUserAccountInstructionDataArgs["isPermanentMember"];
@@ -1059,15 +1170,16 @@ type CreateDomainUserAccountInput<TAccountPayer extends string = string, TAccoun
1059
1170
  linkWalletArgs: CreateDomainUserAccountInstructionDataArgs["linkWalletArgs"];
1060
1171
  remainingAccounts: CreateDomainUserAccountInstructionExtraArgs["remainingAccounts"];
1061
1172
  };
1062
- declare function getCreateDomainUserAccountInstruction<TAccountPayer extends string, TAccountDomainConfig extends string, TAccountAuthority extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateDomainUserAccountInput<TAccountPayer, TAccountDomainConfig, TAccountAuthority>, config?: {
1173
+ 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?: {
1063
1174
  programAddress?: TProgramAddress;
1064
- }): CreateDomainUserAccountInstruction<TProgramAddress, TAccountPayer, TAccountDomainConfig, TAccountAuthority>;
1175
+ }): CreateDomainUserAccountInstruction<TProgramAddress, TAccountPayer, TAccountDomainConfig, TAccountAuthority, TAccountWhitelistedAddressTrees>;
1065
1176
  type ParsedCreateDomainUserAccountInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
1066
1177
  programAddress: Address<TProgram>;
1067
1178
  accounts: {
1068
1179
  payer: TAccountMetas[0];
1069
1180
  domainConfig: TAccountMetas[1];
1070
1181
  authority: TAccountMetas[2];
1182
+ whitelistedAddressTrees: TAccountMetas[3];
1071
1183
  };
1072
1184
  data: CreateDomainUserAccountInstructionData;
1073
1185
  };
@@ -1123,100 +1235,9 @@ type ParsedCreateGlobalCounterInstruction<TProgram extends string = typeof MULTI
1123
1235
  };
1124
1236
  declare function parseCreateGlobalCounterInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedCreateGlobalCounterInstruction<TProgram, TAccountMetas>;
1125
1237
 
1126
- declare const CREATE_MULTI_WALLET_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1127
- declare function getCreateMultiWalletDiscriminatorBytes(): ReadonlyUint8Array;
1128
- type CreateMultiWalletInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountInitialMember extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountGlobalCounter extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1129
- TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
1130
- TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1131
- TAccountInitialMember extends string ? ReadonlySignerAccount<TAccountInitialMember> & AccountSignerMeta<TAccountInitialMember> : TAccountInitialMember,
1132
- TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
1133
- TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
1134
- TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
1135
- TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
1136
- TAccountGlobalCounter extends string ? WritableAccount<TAccountGlobalCounter> : TAccountGlobalCounter,
1137
- ...TRemainingAccounts
1138
- ]>;
1139
- type CreateMultiWalletInstructionData = {
1140
- discriminator: ReadonlyUint8Array;
1141
- settingsIndex: bigint;
1142
- secp256r1VerifyArgs: Option<Secp256r1VerifyArgs>;
1143
- userMutArgs: UserMutArgs;
1144
- compressedProofArgs: ProofArgs;
1145
- setAsDelegate: boolean;
1146
- };
1147
- type CreateMultiWalletInstructionDataArgs = {
1148
- settingsIndex: number | bigint;
1149
- secp256r1VerifyArgs: OptionOrNullable<Secp256r1VerifyArgsArgs>;
1150
- userMutArgs: UserMutArgsArgs;
1151
- compressedProofArgs: ProofArgsArgs;
1152
- setAsDelegate: boolean;
1153
- };
1154
- declare function getCreateMultiWalletInstructionDataEncoder(): Encoder<CreateMultiWalletInstructionDataArgs>;
1155
- declare function getCreateMultiWalletInstructionDataDecoder(): Decoder<CreateMultiWalletInstructionData>;
1156
- declare function getCreateMultiWalletInstructionDataCodec(): Codec<CreateMultiWalletInstructionDataArgs, CreateMultiWalletInstructionData>;
1157
- type CreateMultiWalletInstructionExtraArgs = {
1158
- remainingAccounts: Array<{
1159
- address: Address;
1160
- role: number;
1161
- }>;
1162
- };
1163
- type CreateMultiWalletAsyncInput<TAccountSettings extends string = string, TAccountPayer extends string = string, TAccountInitialMember extends string = string, TAccountSystemProgram extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountDomainConfig extends string = string, TAccountGlobalCounter extends string = string> = {
1164
- settings?: Address<TAccountSettings>;
1165
- payer: TransactionSigner<TAccountPayer>;
1166
- initialMember?: TransactionSigner<TAccountInitialMember>;
1167
- systemProgram?: Address<TAccountSystemProgram>;
1168
- slotHashSysvar?: Address<TAccountSlotHashSysvar>;
1169
- instructionsSysvar?: Address<TAccountInstructionsSysvar>;
1170
- domainConfig?: Address<TAccountDomainConfig>;
1171
- globalCounter: Address<TAccountGlobalCounter>;
1172
- settingsIndex: CreateMultiWalletInstructionDataArgs["settingsIndex"];
1173
- secp256r1VerifyArgs: CreateMultiWalletInstructionDataArgs["secp256r1VerifyArgs"];
1174
- userMutArgs: CreateMultiWalletInstructionDataArgs["userMutArgs"];
1175
- compressedProofArgs: CreateMultiWalletInstructionDataArgs["compressedProofArgs"];
1176
- setAsDelegate: CreateMultiWalletInstructionDataArgs["setAsDelegate"];
1177
- remainingAccounts: CreateMultiWalletInstructionExtraArgs["remainingAccounts"];
1178
- };
1179
- declare function getCreateMultiWalletInstructionAsync<TAccountSettings extends string, TAccountPayer extends string, TAccountInitialMember extends string, TAccountSystemProgram extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountDomainConfig extends string, TAccountGlobalCounter extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateMultiWalletAsyncInput<TAccountSettings, TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountDomainConfig, TAccountGlobalCounter>, config?: {
1180
- programAddress?: TProgramAddress;
1181
- }): Promise<CreateMultiWalletInstruction<TProgramAddress, TAccountSettings, TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountDomainConfig, TAccountGlobalCounter>>;
1182
- type CreateMultiWalletInput<TAccountSettings extends string = string, TAccountPayer extends string = string, TAccountInitialMember extends string = string, TAccountSystemProgram extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountDomainConfig extends string = string, TAccountGlobalCounter extends string = string> = {
1183
- settings: Address<TAccountSettings>;
1184
- payer: TransactionSigner<TAccountPayer>;
1185
- initialMember?: TransactionSigner<TAccountInitialMember>;
1186
- systemProgram?: Address<TAccountSystemProgram>;
1187
- slotHashSysvar?: Address<TAccountSlotHashSysvar>;
1188
- instructionsSysvar?: Address<TAccountInstructionsSysvar>;
1189
- domainConfig?: Address<TAccountDomainConfig>;
1190
- globalCounter: Address<TAccountGlobalCounter>;
1191
- settingsIndex: CreateMultiWalletInstructionDataArgs["settingsIndex"];
1192
- secp256r1VerifyArgs: CreateMultiWalletInstructionDataArgs["secp256r1VerifyArgs"];
1193
- userMutArgs: CreateMultiWalletInstructionDataArgs["userMutArgs"];
1194
- compressedProofArgs: CreateMultiWalletInstructionDataArgs["compressedProofArgs"];
1195
- setAsDelegate: CreateMultiWalletInstructionDataArgs["setAsDelegate"];
1196
- remainingAccounts: CreateMultiWalletInstructionExtraArgs["remainingAccounts"];
1197
- };
1198
- declare function getCreateMultiWalletInstruction<TAccountSettings extends string, TAccountPayer extends string, TAccountInitialMember extends string, TAccountSystemProgram extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountDomainConfig extends string, TAccountGlobalCounter extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateMultiWalletInput<TAccountSettings, TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountDomainConfig, TAccountGlobalCounter>, config?: {
1199
- programAddress?: TProgramAddress;
1200
- }): CreateMultiWalletInstruction<TProgramAddress, TAccountSettings, TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountDomainConfig, TAccountGlobalCounter>;
1201
- type ParsedCreateMultiWalletInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
1202
- programAddress: Address<TProgram>;
1203
- accounts: {
1204
- settings: TAccountMetas[0];
1205
- payer: TAccountMetas[1];
1206
- initialMember?: TAccountMetas[2] | undefined;
1207
- systemProgram: TAccountMetas[3];
1208
- slotHashSysvar?: TAccountMetas[4] | undefined;
1209
- instructionsSysvar?: TAccountMetas[5] | undefined;
1210
- domainConfig?: TAccountMetas[6] | undefined;
1211
- globalCounter: TAccountMetas[7];
1212
- };
1213
- data: CreateMultiWalletInstructionData;
1214
- };
1215
- declare function parseCreateMultiWalletInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedCreateMultiWalletInstruction<TProgram, TAccountMetas>;
1216
-
1217
1238
  declare const CREATE_MULTI_WALLET_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1218
1239
  declare function getCreateMultiWalletCompressedDiscriminatorBytes(): ReadonlyUint8Array;
1219
- type CreateMultiWalletCompressedInstruction<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", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountGlobalCounter extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1240
+ type CreateMultiWalletCompressedInstruction<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", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountGlobalCounter extends string | AccountMeta<string> = string, TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1220
1241
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1221
1242
  TAccountInitialMember extends string ? ReadonlySignerAccount<TAccountInitialMember> & AccountSignerMeta<TAccountInitialMember> : TAccountInitialMember,
1222
1243
  TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
@@ -1224,6 +1245,7 @@ type CreateMultiWalletCompressedInstruction<TProgram extends string = typeof MUL
1224
1245
  TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
1225
1246
  TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
1226
1247
  TAccountGlobalCounter extends string ? WritableAccount<TAccountGlobalCounter> : TAccountGlobalCounter,
1248
+ TAccountWhitelistedAddressTrees extends string ? ReadonlyAccount<TAccountWhitelistedAddressTrees> : TAccountWhitelistedAddressTrees,
1227
1249
  ...TRemainingAccounts
1228
1250
  ]>;
1229
1251
  type CreateMultiWalletCompressedInstructionData = {
@@ -1252,7 +1274,7 @@ type CreateMultiWalletCompressedInstructionExtraArgs = {
1252
1274
  role: number;
1253
1275
  }>;
1254
1276
  };
1255
- type CreateMultiWalletCompressedInput<TAccountPayer extends string = string, TAccountInitialMember extends string = string, TAccountSystemProgram extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountDomainConfig extends string = string, TAccountGlobalCounter extends string = string> = {
1277
+ type CreateMultiWalletCompressedAsyncInput<TAccountPayer extends string = string, TAccountInitialMember extends string = string, TAccountSystemProgram extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountDomainConfig extends string = string, TAccountGlobalCounter extends string = string, TAccountWhitelistedAddressTrees extends string = string> = {
1256
1278
  payer: TransactionSigner<TAccountPayer>;
1257
1279
  initialMember?: TransactionSigner<TAccountInitialMember>;
1258
1280
  systemProgram?: Address<TAccountSystemProgram>;
@@ -1260,6 +1282,7 @@ type CreateMultiWalletCompressedInput<TAccountPayer extends string = string, TAc
1260
1282
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
1261
1283
  domainConfig?: Address<TAccountDomainConfig>;
1262
1284
  globalCounter: Address<TAccountGlobalCounter>;
1285
+ whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1263
1286
  secp256r1VerifyArgs: CreateMultiWalletCompressedInstructionDataArgs["secp256r1VerifyArgs"];
1264
1287
  compressedProofArgs: CreateMultiWalletCompressedInstructionDataArgs["compressedProofArgs"];
1265
1288
  settingsCreation: CreateMultiWalletCompressedInstructionDataArgs["settingsCreation"];
@@ -1268,9 +1291,29 @@ type CreateMultiWalletCompressedInput<TAccountPayer extends string = string, TAc
1268
1291
  setAsDelegate: CreateMultiWalletCompressedInstructionDataArgs["setAsDelegate"];
1269
1292
  remainingAccounts: CreateMultiWalletCompressedInstructionExtraArgs["remainingAccounts"];
1270
1293
  };
1271
- declare function getCreateMultiWalletCompressedInstruction<TAccountPayer extends string, TAccountInitialMember extends string, TAccountSystemProgram extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountDomainConfig extends string, TAccountGlobalCounter extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateMultiWalletCompressedInput<TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountDomainConfig, TAccountGlobalCounter>, config?: {
1294
+ declare function getCreateMultiWalletCompressedInstructionAsync<TAccountPayer extends string, TAccountInitialMember extends string, TAccountSystemProgram extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountDomainConfig extends string, TAccountGlobalCounter extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateMultiWalletCompressedAsyncInput<TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountDomainConfig, TAccountGlobalCounter, TAccountWhitelistedAddressTrees>, config?: {
1272
1295
  programAddress?: TProgramAddress;
1273
- }): CreateMultiWalletCompressedInstruction<TProgramAddress, TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountDomainConfig, TAccountGlobalCounter>;
1296
+ }): Promise<CreateMultiWalletCompressedInstruction<TProgramAddress, TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountDomainConfig, TAccountGlobalCounter, TAccountWhitelistedAddressTrees>>;
1297
+ type CreateMultiWalletCompressedInput<TAccountPayer extends string = string, TAccountInitialMember extends string = string, TAccountSystemProgram extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountDomainConfig extends string = string, TAccountGlobalCounter extends string = string, TAccountWhitelistedAddressTrees extends string = string> = {
1298
+ payer: TransactionSigner<TAccountPayer>;
1299
+ initialMember?: TransactionSigner<TAccountInitialMember>;
1300
+ systemProgram?: Address<TAccountSystemProgram>;
1301
+ slotHashSysvar?: Address<TAccountSlotHashSysvar>;
1302
+ instructionsSysvar?: Address<TAccountInstructionsSysvar>;
1303
+ domainConfig?: Address<TAccountDomainConfig>;
1304
+ globalCounter: Address<TAccountGlobalCounter>;
1305
+ whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
1306
+ secp256r1VerifyArgs: CreateMultiWalletCompressedInstructionDataArgs["secp256r1VerifyArgs"];
1307
+ compressedProofArgs: CreateMultiWalletCompressedInstructionDataArgs["compressedProofArgs"];
1308
+ settingsCreation: CreateMultiWalletCompressedInstructionDataArgs["settingsCreation"];
1309
+ userMutArgs: CreateMultiWalletCompressedInstructionDataArgs["userMutArgs"];
1310
+ settingsIndex: CreateMultiWalletCompressedInstructionDataArgs["settingsIndex"];
1311
+ setAsDelegate: CreateMultiWalletCompressedInstructionDataArgs["setAsDelegate"];
1312
+ remainingAccounts: CreateMultiWalletCompressedInstructionExtraArgs["remainingAccounts"];
1313
+ };
1314
+ declare function getCreateMultiWalletCompressedInstruction<TAccountPayer extends string, TAccountInitialMember extends string, TAccountSystemProgram extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountDomainConfig extends string, TAccountGlobalCounter extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateMultiWalletCompressedInput<TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountDomainConfig, TAccountGlobalCounter, TAccountWhitelistedAddressTrees>, config?: {
1315
+ programAddress?: TProgramAddress;
1316
+ }): CreateMultiWalletCompressedInstruction<TProgramAddress, TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountDomainConfig, TAccountGlobalCounter, TAccountWhitelistedAddressTrees>;
1274
1317
  type ParsedCreateMultiWalletCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
1275
1318
  programAddress: Address<TProgram>;
1276
1319
  accounts: {
@@ -1281,6 +1324,7 @@ type ParsedCreateMultiWalletCompressedInstruction<TProgram extends string = type
1281
1324
  instructionsSysvar?: TAccountMetas[4] | undefined;
1282
1325
  domainConfig?: TAccountMetas[5] | undefined;
1283
1326
  globalCounter: TAccountMetas[6];
1327
+ whitelistedAddressTrees: TAccountMetas[7];
1284
1328
  };
1285
1329
  data: CreateMultiWalletCompressedInstructionData;
1286
1330
  };
@@ -1288,9 +1332,10 @@ declare function parseCreateMultiWalletCompressedInstruction<TProgram extends st
1288
1332
 
1289
1333
  declare const CREATE_USER_ACCOUNTS_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1290
1334
  declare function getCreateUserAccountsDiscriminatorBytes(): ReadonlyUint8Array;
1291
- type CreateUserAccountsInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1335
+ 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<[
1292
1336
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1293
1337
  TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
1338
+ TAccountWhitelistedAddressTrees extends string ? ReadonlyAccount<TAccountWhitelistedAddressTrees> : TAccountWhitelistedAddressTrees,
1294
1339
  ...TRemainingAccounts
1295
1340
  ]>;
1296
1341
  type CreateUserAccountsInstructionData = {
@@ -1311,21 +1356,34 @@ type CreateUserAccountsInstructionExtraArgs = {
1311
1356
  role: number;
1312
1357
  }>;
1313
1358
  };
1314
- type CreateUserAccountsInput<TAccountPayer extends string = string, TAccountSystemProgram extends string = string> = {
1359
+ type CreateUserAccountsAsyncInput<TAccountPayer extends string = string, TAccountSystemProgram extends string = string, TAccountWhitelistedAddressTrees extends string = string> = {
1360
+ payer: TransactionSigner<TAccountPayer>;
1361
+ systemProgram?: Address<TAccountSystemProgram>;
1362
+ whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1363
+ compressedProofArgs: CreateUserAccountsInstructionDataArgs["compressedProofArgs"];
1364
+ createUserArgs: CreateUserAccountsInstructionDataArgs["createUserArgs"];
1365
+ remainingAccounts: CreateUserAccountsInstructionExtraArgs["remainingAccounts"];
1366
+ };
1367
+ 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?: {
1368
+ programAddress?: TProgramAddress;
1369
+ }): Promise<CreateUserAccountsInstruction<TProgramAddress, TAccountPayer, TAccountSystemProgram, TAccountWhitelistedAddressTrees>>;
1370
+ type CreateUserAccountsInput<TAccountPayer extends string = string, TAccountSystemProgram extends string = string, TAccountWhitelistedAddressTrees extends string = string> = {
1315
1371
  payer: TransactionSigner<TAccountPayer>;
1316
1372
  systemProgram?: Address<TAccountSystemProgram>;
1373
+ whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
1317
1374
  compressedProofArgs: CreateUserAccountsInstructionDataArgs["compressedProofArgs"];
1318
1375
  createUserArgs: CreateUserAccountsInstructionDataArgs["createUserArgs"];
1319
1376
  remainingAccounts: CreateUserAccountsInstructionExtraArgs["remainingAccounts"];
1320
1377
  };
1321
- declare function getCreateUserAccountsInstruction<TAccountPayer extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateUserAccountsInput<TAccountPayer, TAccountSystemProgram>, config?: {
1378
+ 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?: {
1322
1379
  programAddress?: TProgramAddress;
1323
- }): CreateUserAccountsInstruction<TProgramAddress, TAccountPayer, TAccountSystemProgram>;
1380
+ }): CreateUserAccountsInstruction<TProgramAddress, TAccountPayer, TAccountSystemProgram, TAccountWhitelistedAddressTrees>;
1324
1381
  type ParsedCreateUserAccountsInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
1325
1382
  programAddress: Address<TProgram>;
1326
1383
  accounts: {
1327
1384
  payer: TAccountMetas[0];
1328
1385
  systemProgram: TAccountMetas[1];
1386
+ whitelistedAddressTrees: TAccountMetas[2];
1329
1387
  };
1330
1388
  data: CreateUserAccountsInstructionData;
1331
1389
  };
@@ -2708,12 +2766,18 @@ type PermissionArgs = {
2708
2766
  };
2709
2767
  type AddMemberArgs = {
2710
2768
  setAsDelegate: true;
2711
- pubkey: TransactionSigner | SignedSecp256r1Key;
2769
+ account: {
2770
+ member: TransactionSigner | SignedSecp256r1Key;
2771
+ userAddressTreeIndex: number;
2772
+ };
2712
2773
  permissions: PermissionArgs;
2713
2774
  isTransactionManager: false;
2714
2775
  } | {
2715
2776
  setAsDelegate: false;
2716
- pubkey: Address;
2777
+ account: {
2778
+ member: Address;
2779
+ userAddressTreeIndex: number;
2780
+ };
2717
2781
  permissions: {
2718
2782
  initiate: true;
2719
2783
  vote: false;
@@ -2722,14 +2786,17 @@ type AddMemberArgs = {
2722
2786
  isTransactionManager: true;
2723
2787
  } | {
2724
2788
  setAsDelegate: false;
2725
- pubkey: Address | SignedSecp256r1Key;
2789
+ account: {
2790
+ member: Address | SignedSecp256r1Key;
2791
+ userAddressTreeIndex: number;
2792
+ };
2726
2793
  permissions: PermissionArgs;
2727
2794
  isTransactionManager: false;
2728
2795
  };
2729
2796
  type ConfigurationArgs = {
2730
2797
  type: "EditPermissions";
2731
2798
  members: {
2732
- pubkey: Address | Secp256r1Key;
2799
+ account: UserAccountWithAddressArgs;
2733
2800
  permissions: PermissionArgs;
2734
2801
  delegateOperation: DelegateOpArgs;
2735
2802
  }[];
@@ -2738,9 +2805,7 @@ type ConfigurationArgs = {
2738
2805
  members: AddMemberArgs[];
2739
2806
  } | {
2740
2807
  type: "RemoveMembers";
2741
- members: {
2742
- pubkey: Address | Secp256r1Key;
2743
- }[];
2808
+ members: UserAccountWithAddressArgs[];
2744
2809
  } | {
2745
2810
  type: "SetThreshold";
2746
2811
  threshold: number;
@@ -2798,14 +2863,20 @@ declare class SignedSecp256r1Key extends Secp256r1Key {
2798
2863
 
2799
2864
  type TransactionAuthenticationResponse = {
2800
2865
  authResponse: AuthenticationResponseJSON;
2801
- signer: Secp256r1Key;
2866
+ signer: {
2867
+ member: Secp256r1Key;
2868
+ userAddressTreeIndex: number;
2869
+ };
2802
2870
  slotNumber: string;
2803
2871
  slotHash: string;
2804
2872
  additionalInfo?: any;
2805
2873
  };
2806
2874
  type MessageAuthenticationResponse = {
2807
2875
  authResponse: AuthenticationResponseJSON;
2808
- signer: Secp256r1Key;
2876
+ signer: {
2877
+ member: Secp256r1Key;
2878
+ userAddressTreeIndex: number;
2879
+ };
2809
2880
  additionalInfo?: any;
2810
2881
  };
2811
2882
  type TransactionActionType = "create" | "create_with_preauthorized_execution" | "execute" | "vote" | "sync" | "close" | "add_new_member" | "compress" | "decompress" | "transfer_intent";
@@ -2844,6 +2915,11 @@ type TransactionDetails = {
2844
2915
  addressesByLookupTableAddress?: AddressesByLookupTableAddress;
2845
2916
  };
2846
2917
 
2918
+ type UserAccountWithAddressArgs = {
2919
+ member: Address | Secp256r1Key;
2920
+ userAddressTreeIndex: number;
2921
+ };
2922
+
2847
2923
  declare function vaultTransactionMessageSerialize(compiledMessage: CompiledTransactionMessage): ReadonlyUint8Array;
2848
2924
  declare function vaultTransactionMessageDeserialize(transactionMessageBytes: ReadonlyUint8Array): CompiledTransactionMessage;
2849
2925
 
@@ -2890,8 +2966,8 @@ type ParsedSecp256r1VerifyInstruction<TProgram extends string = typeof SECP256R1
2890
2966
  };
2891
2967
  declare function parseSecp256r1VerifyInstruction<TProgram extends string>(instruction: Instruction<TProgram> & InstructionWithData<Uint8Array>): ParsedSecp256r1VerifyInstruction<TProgram>;
2892
2968
 
2893
- declare function changeConfig({ index, configActionsArgs, payer, compressed, cachedAccounts, }: {
2894
- index: bigint | number;
2969
+ declare function changeConfig({ settingsIndexWithAddressArgs, configActionsArgs, payer, compressed, cachedAccounts, }: {
2970
+ settingsIndexWithAddressArgs: SettingsIndexWithAddressArgs;
2895
2971
  configActionsArgs: ConfigurationArgs[];
2896
2972
  payer: TransactionSigner;
2897
2973
  compressed?: boolean;
@@ -2901,13 +2977,18 @@ declare function changeConfig({ index, configActionsArgs, payer, compressed, cac
2901
2977
  secp256r1VerifyInput: Secp256r1VerifyInput;
2902
2978
  }>;
2903
2979
 
2904
- declare function compressSettingsAccount({ index, payer, signers, cachedAccounts, }: {
2905
- index: number | bigint;
2980
+ declare function compressSettingsAccount({ settingsIndexWithAddressArgs, payer, signers, cachedAccounts, }: {
2981
+ settingsIndexWithAddressArgs: SettingsIndexWithAddressArgs;
2906
2982
  payer: TransactionSigner;
2907
2983
  signers: (SignedSecp256r1Key | TransactionSigner)[];
2908
2984
  cachedAccounts?: Map<string, any>;
2909
2985
  }): Promise<(Secp256r1VerifyInstruction<gill.Address<"Secp256r1SigVerify1111111111111111111111111">> | CompressSettingsAccountInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, []>)[]>;
2910
2986
 
2987
+ declare function addWhitelistedAddressTrees({ admin, addressTree, }: {
2988
+ admin: TransactionSigner;
2989
+ addressTree: Address;
2990
+ }): Promise<AddWhitelistedAddressTreesInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, []>>;
2991
+
2911
2992
  declare function createDomainConfig({ payer, rpId, origins, authority, metadataUrl, adminDomainConfig, }: {
2912
2993
  metadataUrl: string;
2913
2994
  payer: TransactionSigner;
@@ -2920,8 +3001,11 @@ declare function createDomainConfig({ payer, rpId, origins, authority, metadataU
2920
3001
  interface UserCreationArgs$1 {
2921
3002
  member: Secp256r1Key;
2922
3003
  isPermanentMember: boolean;
2923
- settingsIndex?: number | bigint;
2924
- transactionManager?: Address;
3004
+ settingsIndexWithAddressArgs?: SettingsIndexWithAddressArgs;
3005
+ transactionManager?: {
3006
+ member: Address;
3007
+ userAddressTreeIndex: number;
3008
+ };
2925
3009
  }
2926
3010
  declare function createDomainUserAccounts({ authority, payer, createUserArgs, domainConfig, cachedAccounts, }: {
2927
3011
  domainConfig: Address;
@@ -2929,7 +3013,10 @@ declare function createDomainUserAccounts({ authority, payer, createUserArgs, do
2929
3013
  payer: TransactionSigner;
2930
3014
  createUserArgs: UserCreationArgs$1;
2931
3015
  cachedAccounts?: Map<string, any>;
2932
- }): Promise<CreateDomainUserAccountInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, []>>;
3016
+ }): Promise<{
3017
+ instruction: CreateDomainUserAccountInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, []>;
3018
+ userAddressTreeIndex: number;
3019
+ }>;
2933
3020
 
2934
3021
  declare function createGlobalCounter({ payer, }: {
2935
3022
  payer: TransactionSigner;
@@ -2947,7 +3034,10 @@ type UserCreationArgs = {
2947
3034
  declare function createUserAccounts({ createUserArgs, payer, }: {
2948
3035
  payer: TransactionSigner;
2949
3036
  createUserArgs: UserCreationArgs[];
2950
- }): Promise<CreateUserAccountsInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, []>>;
3037
+ }): Promise<{
3038
+ instruction: CreateUserAccountsInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, []>;
3039
+ userAddressTreeIndex: number;
3040
+ }>;
2951
3041
 
2952
3042
  declare function disableDomainConfig({ admin, rpId, disable, }: {
2953
3043
  admin: TransactionSigner;
@@ -2963,26 +3053,30 @@ declare function editDomainConfig({ authority, domainConfig, newAuthority, newOr
2963
3053
  newMetadataUrl?: string;
2964
3054
  }): Promise<EditDomainConfigInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, []>>;
2965
3055
 
2966
- declare function editTransactionManagerUrl({ authority, transactionManagerUrl, }: {
3056
+ declare function editTransactionManagerUrl({ authority, userAddressTreeIndex, transactionManagerUrl, }: {
2967
3057
  authority: TransactionSigner;
3058
+ userAddressTreeIndex: number;
2968
3059
  transactionManagerUrl: string;
2969
3060
  }): Promise<EditTransactionManagerUrlInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, []>>;
2970
3061
 
2971
3062
  type CreateWalletArgs = {
2972
- index: bigint | number;
3063
+ index: number | bigint;
2973
3064
  payer: TransactionSigner;
2974
- compressed?: boolean;
2975
3065
  cachedAccounts?: Map<string, any>;
2976
- initialMember: TransactionSigner | SignedSecp256r1Key;
3066
+ initialMember: {
3067
+ member: TransactionSigner | SignedSecp256r1Key;
3068
+ userAddressTreeIndex: number;
3069
+ };
2977
3070
  setAsDelegate: boolean;
2978
3071
  };
2979
- declare function createWallet({ index, payer, initialMember, setAsDelegate, compressed, cachedAccounts, }: CreateWalletArgs): Promise<{
3072
+ declare function createWallet({ index, payer, initialMember, setAsDelegate, cachedAccounts, }: CreateWalletArgs): Promise<{
2980
3073
  instructions: Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[];
2981
3074
  secp256r1VerifyInput: Secp256r1VerifyInput;
3075
+ settingsAddressTreeIndex: number;
2982
3076
  }>;
2983
3077
 
2984
- declare function decompressSettingsAccount({ index, payer, signers, cachedAccounts, }: {
2985
- index: number | bigint;
3078
+ declare function decompressSettingsAccount({ settingsIndexWithAddressArgs, payer, signers, cachedAccounts, }: {
3079
+ settingsIndexWithAddressArgs: SettingsIndexWithAddressArgs;
2986
3080
  payer: TransactionSigner;
2987
3081
  signers: (SignedSecp256r1Key | TransactionSigner)[];
2988
3082
  cachedAccounts?: Map<string, any>;
@@ -3003,8 +3097,8 @@ declare function executeTransaction({ settings, transactionBufferAddress, transa
3003
3097
  addressLookupTableAccounts: AddressesByLookupTableAddress;
3004
3098
  }>;
3005
3099
 
3006
- declare function executeTransactionSync({ index, transactionMessageBytes, signers, payer, addressesByLookupTableAddress, secp256r1VerifyInput, compressed, simulateProof, cachedAccounts, }: {
3007
- index: bigint | number;
3100
+ declare function executeTransactionSync({ settingsIndexWithAddressArgs, transactionMessageBytes, signers, payer, addressesByLookupTableAddress, secp256r1VerifyInput, compressed, simulateProof, cachedAccounts, }: {
3101
+ settingsIndexWithAddressArgs: SettingsIndexWithAddressArgs;
3008
3102
  signers: (TransactionSigner | SignedSecp256r1Key)[];
3009
3103
  transactionMessageBytes: ReadonlyUint8Array;
3010
3104
  secp256r1VerifyInput?: Secp256r1VerifyInput;
@@ -3018,8 +3112,8 @@ declare function executeTransactionSync({ index, transactionMessageBytes, signer
3018
3112
  addressLookupTableAccounts: AddressesByLookupTableAddress;
3019
3113
  }>;
3020
3114
 
3021
- declare function nativeTransferIntent({ index, destination, signers, cachedAccounts, amount, payer, compressed, }: {
3022
- index: number | bigint;
3115
+ declare function nativeTransferIntent({ settingsIndexWithAddressArgs, destination, signers, cachedAccounts, amount, payer, compressed, }: {
3116
+ settingsIndexWithAddressArgs: SettingsIndexWithAddressArgs;
3023
3117
  destination: Address;
3024
3118
  amount: number | bigint;
3025
3119
  signers: (TransactionSigner | SignedSecp256r1Key)[];
@@ -3028,8 +3122,8 @@ declare function nativeTransferIntent({ index, destination, signers, cachedAccou
3028
3122
  cachedAccounts?: Map<string, any>;
3029
3123
  }): Promise<Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[]>;
3030
3124
 
3031
- declare function tokenTransferIntent({ index, destination, mint, signers, cachedAccounts, amount, payer, tokenProgram, compressed, }: {
3032
- index: number | bigint;
3125
+ declare function tokenTransferIntent({ settingsIndexWithAddressArgs, destination, mint, signers, cachedAccounts, amount, payer, tokenProgram, compressed, }: {
3126
+ settingsIndexWithAddressArgs: SettingsIndexWithAddressArgs;
3033
3127
  destination: Address;
3034
3128
  mint: Address;
3035
3129
  amount: number | bigint;
@@ -3040,8 +3134,8 @@ declare function tokenTransferIntent({ index, destination, mint, signers, cached
3040
3134
  cachedAccounts?: Map<string, any>;
3041
3135
  }): Promise<Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[]>;
3042
3136
 
3043
- declare function closeTransactionBuffer({ index, closer, transactionBufferAddress, payer, compressed, cachedAccounts, }: {
3044
- index: bigint | number;
3137
+ declare function closeTransactionBuffer({ settingsIndexWithAddressArgs, closer, transactionBufferAddress, payer, compressed, cachedAccounts, }: {
3138
+ settingsIndexWithAddressArgs: SettingsIndexWithAddressArgs;
3045
3139
  closer: TransactionSigner | SignedSecp256r1Key;
3046
3140
  transactionBufferAddress: Address;
3047
3141
  payer?: TransactionSigner;
@@ -3049,7 +3143,7 @@ declare function closeTransactionBuffer({ index, closer, transactionBufferAddres
3049
3143
  cachedAccounts?: Map<string, any>;
3050
3144
  }): Promise<(Secp256r1VerifyInstruction<Address<"Secp256r1SigVerify1111111111111111111111111">> | TransactionBufferCloseCompressedInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, string, string, string, []> | TransactionBufferCloseInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, string, string, string, []>)[]>;
3051
3145
 
3052
- declare function createTransactionBuffer({ payer, creator, bufferIndex, settings, transactionBufferAddress, finalBufferHash, finalBufferSize, preauthorizeExecution, bufferExtendHashes, compressedArgs, }: {
3146
+ declare function createTransactionBuffer({ payer, creator, bufferIndex, settings, transactionBufferAddress, finalBufferHash, finalBufferSize, preauthorizeExecution, bufferExtendHashes, compressedArgs, expectedSigners, }: {
3053
3147
  finalBufferHash: Uint8Array;
3054
3148
  finalBufferSize: number;
3055
3149
  payer: TransactionSigner;
@@ -3064,6 +3158,7 @@ declare function createTransactionBuffer({ payer, creator, bufferIndex, settings
3064
3158
  compressedProofArgs: ProofArgsArgs;
3065
3159
  remainingAccounts: AccountMeta[];
3066
3160
  } | null;
3161
+ expectedSigners: MemberKey[];
3067
3162
  }): (Secp256r1VerifyInstruction<Address<"Secp256r1SigVerify1111111111111111111111111">> | TransactionBufferCreateCompressedInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, string, string, string, []> | TransactionBufferCreateInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, string, string, string, string, []>)[];
3068
3163
 
3069
3164
  declare function executeTransactionBuffer({ executor, transactionBufferAddress, settings, compressedArgs, }: {
@@ -3109,7 +3204,7 @@ declare function verifyMessage({ message, response, expectedOrigin, }: {
3109
3204
 
3110
3205
  interface CreateTransactionBundleArgs {
3111
3206
  payer: TransactionSigner;
3112
- index: bigint | number;
3207
+ settingsIndexWithAddressArgs: SettingsIndexWithAddressArgs;
3113
3208
  transactionMessageBytes: ReadonlyUint8Array;
3114
3209
  bufferIndex?: number;
3115
3210
  creator: TransactionSigner | SignedSecp256r1Key;
@@ -3118,12 +3213,12 @@ interface CreateTransactionBundleArgs {
3118
3213
  additionalSigners?: TransactionSigner[];
3119
3214
  secp256r1VerifyInput?: Secp256r1VerifyInput;
3120
3215
  jitoBundlesTipAmount?: number;
3121
- chunkSize?: number;
3122
3216
  compressed?: boolean;
3217
+ chunkSize?: number;
3123
3218
  addressesByLookupTableAddress?: AddressesByLookupTableAddress;
3124
3219
  cachedAccounts?: Map<string, any>;
3125
3220
  }
3126
- declare function prepareTransactionBundle({ payer, index, transactionMessageBytes, creator, executor, secp256r1VerifyInput, jitoBundlesTipAmount, addressesByLookupTableAddress, bufferIndex, additionalVoters, additionalSigners, compressed, chunkSize, cachedAccounts, }: CreateTransactionBundleArgs): Promise<TransactionDetails[]>;
3221
+ declare function prepareTransactionBundle({ payer, settingsIndexWithAddressArgs, transactionMessageBytes, creator, executor, secp256r1VerifyInput, jitoBundlesTipAmount, addressesByLookupTableAddress, compressed, bufferIndex, additionalVoters, additionalSigners, chunkSize, cachedAccounts, }: CreateTransactionBundleArgs): Promise<TransactionDetails[]>;
3127
3222
 
3128
3223
  interface PrepareTransactionMessageArgs {
3129
3224
  instructions: Instruction[];
@@ -3134,7 +3229,7 @@ declare function prepareTransactionMessage({ instructions, payer, addressesByLoo
3134
3229
 
3135
3230
  interface CreateTransactionSyncArgs {
3136
3231
  payer: TransactionSigner;
3137
- index: number | bigint;
3232
+ settingsIndexWithAddressArgs: SettingsIndexWithAddressArgs;
3138
3233
  transactionMessageBytes: ReadonlyUint8Array;
3139
3234
  signers: (TransactionSigner | SignedSecp256r1Key)[];
3140
3235
  addressesByLookupTableAddress?: AddressesByLookupTableAddress;
@@ -3143,35 +3238,38 @@ interface CreateTransactionSyncArgs {
3143
3238
  simulateProof?: boolean;
3144
3239
  cachedAccounts?: Map<string, any>;
3145
3240
  }
3146
- declare function prepareTransactionSync({ payer, index, transactionMessageBytes, signers, secp256r1VerifyInput, addressesByLookupTableAddress, cachedAccounts, compressed, simulateProof, }: CreateTransactionSyncArgs): Promise<TransactionDetails>;
3241
+ declare function prepareTransactionSync({ payer, settingsIndexWithAddressArgs, transactionMessageBytes, signers, secp256r1VerifyInput, addressesByLookupTableAddress, cachedAccounts, compressed, simulateProof, }: CreateTransactionSyncArgs): Promise<TransactionDetails>;
3147
3242
 
3148
- declare function getCompressedSettingsAddressFromIndex(index: number | bigint): {
3243
+ declare function getCompressedSettingsAddressFromIndex(args: SettingsIndexWithAddressArgs): Promise<{
3149
3244
  address: bn_js;
3150
3245
  addressTree: PublicKey;
3151
- };
3152
- declare function getUserAccountAddress(member: Address | Secp256r1Key): {
3246
+ }>;
3247
+ declare function getUserAccountAddress(args: UserAccountWithAddressArgs): Promise<{
3153
3248
  address: bn_js;
3154
3249
  addressTree: PublicKey;
3155
- };
3250
+ }>;
3156
3251
  declare function getDomainConfigAddress({ rpIdHash, rpId, }: {
3157
3252
  rpIdHash?: Uint8Array;
3158
3253
  rpId?: string;
3159
3254
  }): Promise<Address<string>>;
3160
3255
  declare function getGlobalCounterAddress(): Promise<Address<string>>;
3256
+ declare function getWhitelistedAddressTreesAddress(): Promise<Address<string>>;
3161
3257
  declare function getTransactionBufferAddress(settings: Address, creator: Address | Secp256r1Key, buffer_index: number): Promise<Address<string>>;
3162
3258
  declare function getWalletAddressFromSettings(settings: Address): Promise<Address<string>>;
3163
3259
  declare function getSettingsFromIndex(index: number | bigint): Promise<Address<string>>;
3164
3260
  declare function getWalletAddressFromIndex(index: number | bigint): Promise<Address<string>>;
3165
3261
  declare function getLightCpiSigner(): Promise<Address<string>>;
3166
3262
 
3167
- declare function fetchUserAccountData(member: Address | Secp256r1Key, cachedAccounts?: Map<string, any>): Promise<User>;
3168
- declare function fetchMaybeUserAccountData(member: Address | Secp256r1Key, cachedAccounts?: Map<string, any>): Promise<User | null>;
3169
- declare function fetchSettingsAccountData(index: number | bigint, cachedAccounts?: Map<string, any>): Promise<CompressedSettingsData & {
3263
+ declare function fetchUserAccountData(user: UserAccountWithAddressArgs, cachedAccounts?: Map<string, any>): Promise<User>;
3264
+ declare function fetchMaybeUserAccountData(user: UserAccountWithAddressArgs, cachedAccounts?: Map<string, any>): Promise<User | null>;
3265
+ declare function fetchSettingsAccountData(SettingsIndexWithAddressArgs: SettingsIndexWithAddressArgs, cachedAccounts?: Map<string, any>): Promise<CompressedSettingsData & {
3170
3266
  isCompressed: boolean;
3171
3267
  }>;
3172
- declare function fetchMaybeSettingsAccountData(index: number | bigint, cachedAccounts?: Map<string, any>): Promise<(CompressedSettingsData & {
3268
+ declare function fetchMaybeSettingsAccountData(SettingsIndexWithAddressArgs: SettingsIndexWithAddressArgs, cachedAccounts?: Map<string, any>): Promise<(CompressedSettingsData & {
3173
3269
  isCompressed: boolean;
3174
3270
  }) | null>;
3271
+ declare function getWhitelistedAddressTreeFromIndex(index: number): Promise<gill.Address>;
3272
+ declare function getWhitelistedAddressTreeIndexFromAddress(addressTree: string): Promise<number>;
3175
3273
 
3176
3274
  declare function getSolanaRpcEndpoint(): string;
3177
3275
  declare function getLightProtocolRpc(): Rpc;
@@ -3211,13 +3309,13 @@ declare function signAndSendBundledTransactions(bundle: TransactionDetails[]): P
3211
3309
  declare function signAndSendTransaction({ instructions, payer, addressesByLookupTableAddress, }: TransactionDetails): Promise<gill.Signature>;
3212
3310
  declare function sendJitoBundle(serializedTransactions: string[], maxRetries?: number, delayMs?: number, jitoTipsConfig?: JitoTipsConfig): Promise<string>;
3213
3311
  declare function pollJitoBundleConfirmation(bundleId: string, maxRetries?: number, delayMs?: number, jitoTipsConfig?: JitoTipsConfig): Promise<string>;
3214
- declare function resolveTransactionManagerSigner({ signer, index, transactionMessageBytes, cachedAccounts, }: {
3312
+ declare function resolveTransactionManagerSigner({ signer, settingsIndexWithAddressArgs, transactionMessageBytes, cachedAccounts, }: {
3215
3313
  signer: Secp256r1Key | Address;
3216
- index: number | bigint;
3314
+ settingsIndexWithAddressArgs: SettingsIndexWithAddressArgs;
3217
3315
  transactionMessageBytes?: ReadonlyUint8Array;
3218
3316
  cachedAccounts?: Map<string, any>;
3219
3317
  }): Promise<TransactionSigner | null>;
3220
3318
  declare function createTransactionManagerSigner(address: Address, url: string, transactionMessageBytes?: ReadonlyUint8Array): TransactionSigner;
3221
3319
  declare function convertMemberKeyToString(memberKey: MemberKey): string;
3222
3320
 
3223
- export { type AddMemberArgs$1 as AddMemberArgs, type AddMemberArgsArgs, type BasePayload, CHANGE_CONFIG_COMPRESSED_DISCRIMINATOR, CHANGE_CONFIG_DISCRIMINATOR, COMPRESS_SETTINGS_ACCOUNT_DISCRIMINATOR, CREATE_DOMAIN_CONFIG_DISCRIMINATOR, CREATE_DOMAIN_USER_ACCOUNT_DISCRIMINATOR, CREATE_GLOBAL_COUNTER_DISCRIMINATOR, CREATE_MULTI_WALLET_COMPRESSED_DISCRIMINATOR, CREATE_MULTI_WALLET_DISCRIMINATOR, CREATE_USER_ACCOUNTS_DISCRIMINATOR, 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 CompressSettingsAccountInput, type CompressSettingsAccountInstruction, type CompressSettingsAccountInstructionData, type CompressSettingsAccountInstructionDataArgs, type CompressSettingsAccountInstructionExtraArgs, type CompressedAccountMeta, type CompressedAccountMetaArgs, type CompressedAccountMetaReadOnly, type CompressedAccountMetaReadOnlyArgs, type CompressedProof, type CompressedProofArgs, type CompressedSettings, type CompressedSettingsArgs, type CompressedSettingsData, type CompressedSettingsDataArgs, type ConfigAction, type ConfigActionArgs, type ConfigurationArgs, type CreateDomainConfigInput, type CreateDomainConfigInstruction, type CreateDomainConfigInstructionData, type CreateDomainConfigInstructionDataArgs, type CreateDomainConfigInstructionExtraArgs, type CreateDomainUserAccountInput, type CreateDomainUserAccountInstruction, type CreateDomainUserAccountInstructionData, type CreateDomainUserAccountInstructionDataArgs, type CreateDomainUserAccountInstructionExtraArgs, type CreateGlobalCounterAsyncInput, type CreateGlobalCounterInput, type CreateGlobalCounterInstruction, type CreateGlobalCounterInstructionData, type CreateGlobalCounterInstructionDataArgs, type CreateGlobalCounterInstructionExtraArgs, type CreateMultiWalletAsyncInput, type CreateMultiWalletCompressedInput, type CreateMultiWalletCompressedInstruction, type CreateMultiWalletCompressedInstructionData, type CreateMultiWalletCompressedInstructionDataArgs, type CreateMultiWalletCompressedInstructionExtraArgs, type CreateMultiWalletInput, type CreateMultiWalletInstruction, type CreateMultiWalletInstructionData, type CreateMultiWalletInstructionDataArgs, type CreateMultiWalletInstructionExtraArgs, type CreateUserAccountArgs, type CreateUserAccountArgsArgs, 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, DelegateOp, type DelegateOpArgs, type DisableDomainConfigInput, type DisableDomainConfigInstruction, type DisableDomainConfigInstructionData, type DisableDomainConfigInstructionDataArgs, type DisableDomainConfigInstructionExtraArgs, type DomainConfig, type DomainConfigArgs, EDIT_DOMAIN_CONFIG_DISCRIMINATOR, EDIT_TRANSACTION_MANAGER_URL_DISCRIMINATOR, type EditDomainConfigInput, type EditDomainConfigInstruction, type EditDomainConfigInstructionData, type EditDomainConfigInstructionDataArgs, type EditDomainConfigInstructionExtraArgs, type EditMemberArgs, type EditMemberArgsArgs, type EditTransactionManagerUrlInput, type EditTransactionManagerUrlInstruction, type EditTransactionManagerUrlInstructionData, type EditTransactionManagerUrlInstructionDataArgs, type EditTransactionManagerUrlInstructionExtraArgs, 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__DOMAIN_CONFIG_IS_DISABLED, MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_MISSING, MULTI_WALLET_ERROR__DUPLICATE_MEMBER, MULTI_WALLET_ERROR__DURABLE_NONCE_DETECTED, MULTI_WALLET_ERROR__EMPTY_MEMBERS, MULTI_WALLET_ERROR__FINAL_BUFFER_HASH_MISMATCH, MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_EXCEEDED, MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_MISMATCH, 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_ARGUMENTS, MULTI_WALLET_ERROR__INVALID_BUFFER, MULTI_WALLET_ERROR__INVALID_NUMBER_OF_ACCOUNTS, MULTI_WALLET_ERROR__INVALID_SECP256R1_VERIFY_ARG, MULTI_WALLET_ERROR__INVALID_SIGNED_MESSAGE, MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT, MULTI_WALLET_ERROR__INVALID_THRESHOLD, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MESSAGE, MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED, MULTI_WALLET_ERROR__MEMBER_DOES_NOT_BELONG_TO_DOMAIN_CONFIG, MULTI_WALLET_ERROR__MISSING_ACCOUNT, MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY, MULTI_WALLET_ERROR__MISSING_USER_ARGS, MULTI_WALLET_ERROR__NO_SIGNER_FOUND, 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__PERMANENT_MEMBER, MULTI_WALLET_ERROR__PERMANENT_MEMBER_NOT_ALLOWED, MULTI_WALLET_ERROR__PROTECTED_ACCOUNT, MULTI_WALLET_ERROR__RP_ID_HASH_MISMATCH, MULTI_WALLET_ERROR__SLOT_NUMBER_NOT_FOUND, MULTI_WALLET_ERROR__TOO_MANY_MEMBERS, MULTI_WALLET_ERROR__TRANSACTION_HAS_EXPIRED, MULTI_WALLET_ERROR__TRANSACTION_MANAGER_NOT_ALLOWED, MULTI_WALLET_ERROR__TRANSACTION_NOT_APPROVED, MULTI_WALLET_ERROR__UNAUTHORISED_TO_CLOSE_TRANSACTION_BUFFER, MULTI_WALLET_PROGRAM_ADDRESS, type Member, type MemberArgs, type MemberKey, type MemberKeyArgs, type MessageAuthenticationResponse, type MessagePayload, 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 PackedAddressTreeInfo, type PackedAddressTreeInfoArgs, type PackedStateTreeInfo, type PackedStateTreeInfoArgs, type ParsedChangeConfigCompressedInstruction, type ParsedChangeConfigInstruction, type ParsedCompressSettingsAccountInstruction, type ParsedCreateDomainConfigInstruction, type ParsedCreateDomainUserAccountInstruction, type ParsedCreateGlobalCounterInstruction, type ParsedCreateMultiWalletCompressedInstruction, type ParsedCreateMultiWalletInstruction, type ParsedCreateUserAccountsInstruction, type ParsedDecompressSettingsAccountInstruction, type ParsedDisableDomainConfigInstruction, type ParsedEditDomainConfigInstruction, type ParsedEditTransactionManagerUrlInstruction, 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, PermanentMemberPermission, Permission, type PermissionArgs, Permissions, type PermissionsArgs, type ProofArgs, type ProofArgsArgs, type RemoveMemberArgs, type RemoveMemberArgsArgs, 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 SettingsCreateOrMutateArgs, type SettingsCreateOrMutateArgsArgs, type SettingsCreationArgs, type SettingsCreationArgsArgs, type SettingsMutArgs, type SettingsMutArgsArgs, type SettingsReadonlyArgs, type SettingsReadonlyArgsArgs, SignedSecp256r1Key, TOKEN_TRANSFER_INTENT_COMPRESSED_DISCRIMINATOR, TOKEN_TRANSFER_INTENT_DISCRIMINATOR, TRANSACTION_BUFFER_CLOSE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_CLOSE_DISCRIMINATOR, TRANSACTION_BUFFER_CREATE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_CREATE_DISCRIMINATOR, TRANSACTION_BUFFER_DISCRIMINATOR, TRANSACTION_BUFFER_EXECUTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_EXECUTE_DISCRIMINATOR, TRANSACTION_BUFFER_EXTEND_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_EXTEND_DISCRIMINATOR, TRANSACTION_BUFFER_VOTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_VOTE_DISCRIMINATOR, TRANSACTION_EXECUTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_EXECUTE_DISCRIMINATOR, TRANSACTION_EXECUTE_SYNC_COMPRESSED_DISCRIMINATOR, TRANSACTION_EXECUTE_SYNC_DISCRIMINATOR, type TokenTransferIntentAsyncInput, type TokenTransferIntentCompressedAsyncInput, type TokenTransferIntentCompressedInput, type TokenTransferIntentCompressedInstruction, type TokenTransferIntentCompressedInstructionData, type TokenTransferIntentCompressedInstructionDataArgs, type TokenTransferIntentCompressedInstructionExtraArgs, type TokenTransferIntentInput, type TokenTransferIntentInstruction, type TokenTransferIntentInstructionData, type TokenTransferIntentInstructionDataArgs, type TokenTransferIntentInstructionExtraArgs, type TransactionActionType, 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, 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, TransactionManagerPermission, type TransactionMessage, type TransactionMessageAddressTableLookup, type TransactionMessageAddressTableLookupArgs, type TransactionMessageArgs, type TransactionPayload, type User, type UserArgs, type UserCreationArgs$2 as UserCreationArgs, type UserCreationArgsArgs, type UserMutArgs, type UserMutArgsArgs, type UserReadOnlyArgs, type UserReadOnlyArgsArgs, type UserReadOnlyOrMutateArgs, type UserReadOnlyOrMutateArgsArgs, changeConfig, closeTransactionBuffer, compressSettingsAccount, configAction, convertMemberKeyToString, convertPubkeyCompressedToCose, convertPubkeyCoseToCompressed, createDomainConfig, createDomainUserAccounts, createGlobalCounter, createPopUp, createTransactionBuffer, createTransactionManagerSigner, createUserAccounts, createWallet, decodeDomainConfig, decodeGlobalCounter, decodeSettings, decodeTransactionBuffer, decompressSettingsAccount, disableDomainConfig, editDomainConfig, editTransactionManagerUrl, executeTransaction, executeTransactionBuffer, executeTransactionSync, extendTransactionBuffer, fetchAllDomainConfig, fetchAllGlobalCounter, fetchAllMaybeDomainConfig, fetchAllMaybeGlobalCounter, fetchAllMaybeSettings, fetchAllMaybeTransactionBuffer, fetchAllSettings, fetchAllTransactionBuffer, fetchDomainConfig, fetchGlobalCounter, fetchMaybeDomainConfig, fetchMaybeGlobalCounter, fetchMaybeSettings, fetchMaybeSettingsAccountData, fetchMaybeTransactionBuffer, fetchMaybeUserAccountData, fetchSettings, fetchSettingsAccountData, fetchTransactionBuffer, fetchUserAccountData, getAddMemberArgsCodec, getAddMemberArgsDecoder, getAddMemberArgsEncoder, getAuthEndpoint, getChangeConfigCompressedDiscriminatorBytes, getChangeConfigCompressedInstruction, getChangeConfigCompressedInstructionDataCodec, getChangeConfigCompressedInstructionDataDecoder, getChangeConfigCompressedInstructionDataEncoder, getChangeConfigDiscriminatorBytes, getChangeConfigInstruction, getChangeConfigInstructionAsync, getChangeConfigInstructionDataCodec, getChangeConfigInstructionDataDecoder, getChangeConfigInstructionDataEncoder, getCompiledInstructionCodec, getCompiledInstructionDecoder, getCompiledInstructionEncoder, getCompressSettingsAccountDiscriminatorBytes, getCompressSettingsAccountInstruction, getCompressSettingsAccountInstructionDataCodec, getCompressSettingsAccountInstructionDataDecoder, getCompressSettingsAccountInstructionDataEncoder, getCompressedAccountMetaCodec, getCompressedAccountMetaDecoder, getCompressedAccountMetaEncoder, getCompressedAccountMetaReadOnlyCodec, getCompressedAccountMetaReadOnlyDecoder, getCompressedAccountMetaReadOnlyEncoder, getCompressedProofCodec, getCompressedProofDecoder, getCompressedProofEncoder, getCompressedSettingsAddressFromIndex, getCompressedSettingsCodec, getCompressedSettingsDataCodec, getCompressedSettingsDataDecoder, getCompressedSettingsDataEncoder, getCompressedSettingsDecoder, getCompressedSettingsEncoder, getComputeBudgetEstimate, getConfigActionCodec, getConfigActionDecoder, getConfigActionEncoder, getCreateDomainConfigDiscriminatorBytes, getCreateDomainConfigInstruction, getCreateDomainConfigInstructionDataCodec, getCreateDomainConfigInstructionDataDecoder, getCreateDomainConfigInstructionDataEncoder, getCreateDomainUserAccountDiscriminatorBytes, getCreateDomainUserAccountInstruction, getCreateDomainUserAccountInstructionDataCodec, getCreateDomainUserAccountInstructionDataDecoder, getCreateDomainUserAccountInstructionDataEncoder, getCreateGlobalCounterDiscriminatorBytes, getCreateGlobalCounterInstruction, getCreateGlobalCounterInstructionAsync, getCreateGlobalCounterInstructionDataCodec, getCreateGlobalCounterInstructionDataDecoder, getCreateGlobalCounterInstructionDataEncoder, getCreateMultiWalletCompressedDiscriminatorBytes, getCreateMultiWalletCompressedInstruction, getCreateMultiWalletCompressedInstructionDataCodec, getCreateMultiWalletCompressedInstructionDataDecoder, getCreateMultiWalletCompressedInstructionDataEncoder, getCreateMultiWalletDiscriminatorBytes, getCreateMultiWalletInstruction, getCreateMultiWalletInstructionAsync, getCreateMultiWalletInstructionDataCodec, getCreateMultiWalletInstructionDataDecoder, getCreateMultiWalletInstructionDataEncoder, getCreateUserAccountArgsCodec, getCreateUserAccountArgsDecoder, getCreateUserAccountArgsEncoder, getCreateUserAccountsDiscriminatorBytes, getCreateUserAccountsInstruction, getCreateUserAccountsInstructionDataCodec, getCreateUserAccountsInstructionDataDecoder, getCreateUserAccountsInstructionDataEncoder, getDecompressSettingsAccountDiscriminatorBytes, getDecompressSettingsAccountInstruction, getDecompressSettingsAccountInstructionDataCodec, getDecompressSettingsAccountInstructionDataDecoder, getDecompressSettingsAccountInstructionDataEncoder, getDelegateOpCodec, getDelegateOpDecoder, getDelegateOpEncoder, getDisableDomainConfigDiscriminatorBytes, getDisableDomainConfigInstruction, getDisableDomainConfigInstructionDataCodec, getDisableDomainConfigInstructionDataDecoder, getDisableDomainConfigInstructionDataEncoder, getDomainConfigAddress, getDomainConfigCodec, getDomainConfigDecoder, getDomainConfigDiscriminatorBytes, getDomainConfigEncoder, getDomainConfigSize, getEditDomainConfigDiscriminatorBytes, getEditDomainConfigInstruction, getEditDomainConfigInstructionDataCodec, getEditDomainConfigInstructionDataDecoder, getEditDomainConfigInstructionDataEncoder, getEditMemberArgsCodec, getEditMemberArgsDecoder, getEditMemberArgsEncoder, getEditTransactionManagerUrlDiscriminatorBytes, getEditTransactionManagerUrlInstruction, getEditTransactionManagerUrlInstructionDataCodec, getEditTransactionManagerUrlInstructionDataDecoder, getEditTransactionManagerUrlInstructionDataEncoder, getFeePayer, getGlobalAdditonalInfo, getGlobalAuthorizedClient, 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, getOriginIndex, getPackedAddressTreeInfoCodec, getPackedAddressTreeInfoDecoder, getPackedAddressTreeInfoEncoder, getPackedStateTreeInfoCodec, getPackedStateTreeInfoDecoder, getPackedStateTreeInfoEncoder, getPermissionsCodec, getPermissionsDecoder, getPermissionsEncoder, getProofArgsCodec, getProofArgsDecoder, getProofArgsEncoder, getRemoveMemberArgsCodec, getRemoveMemberArgsDecoder, getRemoveMemberArgsEncoder, getSecp256r1PubkeyCodec, getSecp256r1PubkeyDecoder, getSecp256r1PubkeyEncoder, getSecp256r1SignatureOffsetsDataDecoder, getSecp256r1SignatureOffsetsDataEncoder, getSecp256r1VerifyArgsCodec, getSecp256r1VerifyArgsDecoder, getSecp256r1VerifyArgsEncoder, getSecp256r1VerifyArgsWithDomainAddressCodec, getSecp256r1VerifyArgsWithDomainAddressDecoder, getSecp256r1VerifyArgsWithDomainAddressEncoder, getSecp256r1VerifyInstruction, getSecp256r1VerifyInstructionDataCodec, getSecp256r1VerifyInstructionDataDecoder, getSecp256r1VerifyInstructionDataEncoder, getSendAndConfirmTransaction, getSettingsCodec, getSettingsCreateOrMutateArgsCodec, getSettingsCreateOrMutateArgsDecoder, getSettingsCreateOrMutateArgsEncoder, getSettingsCreationArgsCodec, getSettingsCreationArgsDecoder, getSettingsCreationArgsEncoder, getSettingsDecoder, getSettingsDiscriminatorBytes, getSettingsEncoder, getSettingsFromIndex, getSettingsMutArgsCodec, getSettingsMutArgsDecoder, getSettingsMutArgsEncoder, getSettingsReadonlyArgsCodec, getSettingsReadonlyArgsDecoder, getSettingsReadonlyArgsEncoder, getSettingsSize, getSignedSecp256r1Key, getSolanaRpc, getSolanaRpcEndpoint, getTokenTransferIntentCompressedDiscriminatorBytes, getTokenTransferIntentCompressedInstruction, getTokenTransferIntentCompressedInstructionAsync, getTokenTransferIntentCompressedInstructionDataCodec, getTokenTransferIntentCompressedInstructionDataDecoder, getTokenTransferIntentCompressedInstructionDataEncoder, getTokenTransferIntentDiscriminatorBytes, getTokenTransferIntentInstruction, getTokenTransferIntentInstructionAsync, getTokenTransferIntentInstructionDataCodec, getTokenTransferIntentInstructionDataDecoder, getTokenTransferIntentInstructionDataEncoder, getTransactionBufferAddress, getTransactionBufferCloseCompressedDiscriminatorBytes, getTransactionBufferCloseCompressedInstruction, getTransactionBufferCloseCompressedInstructionDataCodec, getTransactionBufferCloseCompressedInstructionDataDecoder, getTransactionBufferCloseCompressedInstructionDataEncoder, getTransactionBufferCloseDiscriminatorBytes, getTransactionBufferCloseInstruction, getTransactionBufferCloseInstructionDataCodec, getTransactionBufferCloseInstructionDataDecoder, getTransactionBufferCloseInstructionDataEncoder, getTransactionBufferCodec, getTransactionBufferCreateArgsCodec, getTransactionBufferCreateArgsDecoder, getTransactionBufferCreateArgsEncoder, getTransactionBufferCreateCompressedDiscriminatorBytes, getTransactionBufferCreateCompressedInstruction, getTransactionBufferCreateCompressedInstructionDataCodec, getTransactionBufferCreateCompressedInstructionDataDecoder, getTransactionBufferCreateCompressedInstructionDataEncoder, getTransactionBufferCreateDiscriminatorBytes, getTransactionBufferCreateInstruction, getTransactionBufferCreateInstructionDataCodec, getTransactionBufferCreateInstructionDataDecoder, getTransactionBufferCreateInstructionDataEncoder, getTransactionBufferDecoder, getTransactionBufferDiscriminatorBytes, getTransactionBufferEncoder, getTransactionBufferExecuteCompressedDiscriminatorBytes, getTransactionBufferExecuteCompressedInstruction, getTransactionBufferExecuteCompressedInstructionDataCodec, getTransactionBufferExecuteCompressedInstructionDataDecoder, getTransactionBufferExecuteCompressedInstructionDataEncoder, getTransactionBufferExecuteDiscriminatorBytes, getTransactionBufferExecuteInstruction, getTransactionBufferExecuteInstructionDataCodec, getTransactionBufferExecuteInstructionDataDecoder, getTransactionBufferExecuteInstructionDataEncoder, getTransactionBufferExtendCompressedDiscriminatorBytes, getTransactionBufferExtendCompressedInstruction, getTransactionBufferExtendCompressedInstructionDataCodec, getTransactionBufferExtendCompressedInstructionDataDecoder, getTransactionBufferExtendCompressedInstructionDataEncoder, getTransactionBufferExtendDiscriminatorBytes, getTransactionBufferExtendInstruction, getTransactionBufferExtendInstructionDataCodec, getTransactionBufferExtendInstructionDataDecoder, getTransactionBufferExtendInstructionDataEncoder, getTransactionBufferVoteCompressedDiscriminatorBytes, getTransactionBufferVoteCompressedInstruction, getTransactionBufferVoteCompressedInstructionDataCodec, getTransactionBufferVoteCompressedInstructionDataDecoder, getTransactionBufferVoteCompressedInstructionDataEncoder, getTransactionBufferVoteDiscriminatorBytes, getTransactionBufferVoteInstruction, getTransactionBufferVoteInstructionDataCodec, getTransactionBufferVoteInstructionDataDecoder, getTransactionBufferVoteInstructionDataEncoder, getTransactionExecuteCompressedDiscriminatorBytes, getTransactionExecuteCompressedInstruction, getTransactionExecuteCompressedInstructionDataCodec, getTransactionExecuteCompressedInstructionDataDecoder, getTransactionExecuteCompressedInstructionDataEncoder, getTransactionExecuteDiscriminatorBytes, getTransactionExecuteInstruction, getTransactionExecuteInstructionDataCodec, getTransactionExecuteInstructionDataDecoder, getTransactionExecuteInstructionDataEncoder, getTransactionExecuteSyncCompressedDiscriminatorBytes, getTransactionExecuteSyncCompressedInstruction, getTransactionExecuteSyncCompressedInstructionDataCodec, getTransactionExecuteSyncCompressedInstructionDataDecoder, getTransactionExecuteSyncCompressedInstructionDataEncoder, getTransactionExecuteSyncDiscriminatorBytes, getTransactionExecuteSyncInstruction, getTransactionExecuteSyncInstructionDataCodec, getTransactionExecuteSyncInstructionDataDecoder, getTransactionExecuteSyncInstructionDataEncoder, getTransactionMessageAddressTableLookupCodec, getTransactionMessageAddressTableLookupDecoder, getTransactionMessageAddressTableLookupEncoder, getTransactionMessageCodec, getTransactionMessageDecoder, getTransactionMessageEncoder, getUserAccountAddress, getUserCodec, getUserCreationArgsCodec, getUserCreationArgsDecoder, getUserCreationArgsEncoder, getUserDecoder, getUserEncoder, getUserMutArgsCodec, getUserMutArgsDecoder, getUserMutArgsEncoder, getUserReadOnlyArgsCodec, getUserReadOnlyArgsDecoder, getUserReadOnlyArgsEncoder, getUserReadOnlyOrMutateArgsCodec, getUserReadOnlyOrMutateArgsDecoder, getUserReadOnlyOrMutateArgsEncoder, getWalletAddressFromIndex, getWalletAddressFromSettings, identifyMultiWalletAccount, identifyMultiWalletInstruction, initialize, isConfigAction, isMultiWalletError, isSettingsCreateOrMutateArgs, isUserReadOnlyOrMutateArgs, nativeTransferIntent, parseChangeConfigCompressedInstruction, parseChangeConfigInstruction, parseCompressSettingsAccountInstruction, parseCreateDomainConfigInstruction, parseCreateDomainUserAccountInstruction, parseCreateGlobalCounterInstruction, parseCreateMultiWalletCompressedInstruction, parseCreateMultiWalletInstruction, parseCreateUserAccountsInstruction, parseDecompressSettingsAccountInstruction, parseDisableDomainConfigInstruction, parseEditDomainConfigInstruction, parseEditTransactionManagerUrlInstruction, parseMigrateCompressedSettingsInstruction, parseMigrateCompressedUsersInstruction, parseNativeTransferIntentCompressedInstruction, parseNativeTransferIntentInstruction, parseSecp256r1VerifyInstruction, parseTokenTransferIntentCompressedInstruction, parseTokenTransferIntentInstruction, parseTransactionBufferCloseCompressedInstruction, parseTransactionBufferCloseInstruction, parseTransactionBufferCreateCompressedInstruction, parseTransactionBufferCreateInstruction, parseTransactionBufferExecuteCompressedInstruction, parseTransactionBufferExecuteInstruction, parseTransactionBufferExtendCompressedInstruction, parseTransactionBufferExtendInstruction, parseTransactionBufferVoteCompressedInstruction, parseTransactionBufferVoteInstruction, parseTransactionExecuteCompressedInstruction, parseTransactionExecuteInstruction, parseTransactionExecuteSyncCompressedInstruction, parseTransactionExecuteSyncInstruction, pollJitoBundleConfirmation, prepareTransactionBundle, prepareTransactionMessage, prepareTransactionSync, resolveTransactionManagerSigner, sendJitoBundle, settingsCreateOrMutateArgs, signAndSendBundledTransactions, signAndSendTransaction, signMessageWithPasskey, signTransactionWithPasskey, tokenTransferIntent, uninitialize, userReadOnlyOrMutateArgs, vaultTransactionMessageDeserialize, vaultTransactionMessageSerialize, verifyMessage, voteTransactionBuffer };
3321
+ export { ADD_WHITELISTED_ADDRESS_TREES_DISCRIMINATOR, type AddMemberArgs$1 as AddMemberArgs, type AddMemberArgsArgs, type AddWhitelistedAddressTreesAsyncInput, type AddWhitelistedAddressTreesInput, type AddWhitelistedAddressTreesInstruction, type AddWhitelistedAddressTreesInstructionData, type AddWhitelistedAddressTreesInstructionDataArgs, type AddWhitelistedAddressTreesInstructionExtraArgs, type BasePayload, CHANGE_CONFIG_COMPRESSED_DISCRIMINATOR, CHANGE_CONFIG_DISCRIMINATOR, COMPRESS_SETTINGS_ACCOUNT_DISCRIMINATOR, CREATE_DOMAIN_CONFIG_DISCRIMINATOR, CREATE_DOMAIN_USER_ACCOUNT_DISCRIMINATOR, CREATE_GLOBAL_COUNTER_DISCRIMINATOR, CREATE_MULTI_WALLET_COMPRESSED_DISCRIMINATOR, CREATE_USER_ACCOUNTS_DISCRIMINATOR, 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 CompressSettingsAccountInput, type CompressSettingsAccountInstruction, type CompressSettingsAccountInstructionData, type CompressSettingsAccountInstructionDataArgs, type CompressSettingsAccountInstructionExtraArgs, type CompressedAccountMeta, type CompressedAccountMetaArgs, type CompressedAccountMetaReadOnly, type CompressedAccountMetaReadOnlyArgs, type CompressedProof, type CompressedProofArgs, type CompressedSettings, type CompressedSettingsArgs, type CompressedSettingsData, type CompressedSettingsDataArgs, type ConfigAction, type ConfigActionArgs, type ConfigurationArgs, type 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 CreateMultiWalletCompressedAsyncInput, type CreateMultiWalletCompressedInput, type CreateMultiWalletCompressedInstruction, type CreateMultiWalletCompressedInstructionData, type CreateMultiWalletCompressedInstructionDataArgs, type CreateMultiWalletCompressedInstructionExtraArgs, 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, DelegateOp, type DelegateOpArgs, type DisableDomainConfigInput, type DisableDomainConfigInstruction, type DisableDomainConfigInstructionData, type DisableDomainConfigInstructionDataArgs, type DisableDomainConfigInstructionExtraArgs, type DomainConfig, type DomainConfigArgs, EDIT_DOMAIN_CONFIG_DISCRIMINATOR, EDIT_TRANSACTION_MANAGER_URL_DISCRIMINATOR, type EditDomainConfigInput, type EditDomainConfigInstruction, type EditDomainConfigInstructionData, type EditDomainConfigInstructionDataArgs, type EditDomainConfigInstructionExtraArgs, type EditMemberArgs, type EditMemberArgsArgs, type EditTransactionManagerUrlInput, type EditTransactionManagerUrlInstruction, type EditTransactionManagerUrlInstructionData, type EditTransactionManagerUrlInstructionDataArgs, type EditTransactionManagerUrlInstructionExtraArgs, 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__DOMAIN_CONFIG_IS_DISABLED, MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_MISSING, MULTI_WALLET_ERROR__DUPLICATE_MEMBER, MULTI_WALLET_ERROR__DURABLE_NONCE_DETECTED, MULTI_WALLET_ERROR__EMPTY_MEMBERS, MULTI_WALLET_ERROR__FINAL_BUFFER_HASH_MISMATCH, MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_EXCEEDED, MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_MISMATCH, 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_ADDRESS_TREE, MULTI_WALLET_ERROR__INVALID_ARGUMENTS, MULTI_WALLET_ERROR__INVALID_BUFFER, MULTI_WALLET_ERROR__INVALID_NUMBER_OF_ACCOUNTS, MULTI_WALLET_ERROR__INVALID_SECP256R1_VERIFY_ARG, MULTI_WALLET_ERROR__INVALID_SIGNED_MESSAGE, MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT, MULTI_WALLET_ERROR__INVALID_THRESHOLD, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MESSAGE, MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED, MULTI_WALLET_ERROR__MEMBER_DOES_NOT_BELONG_TO_DOMAIN_CONFIG, MULTI_WALLET_ERROR__MISSING_ACCOUNT, MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY, MULTI_WALLET_ERROR__MISSING_USER_ARGS, MULTI_WALLET_ERROR__NO_SIGNER_FOUND, 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__PERMANENT_MEMBER, MULTI_WALLET_ERROR__PERMANENT_MEMBER_NOT_ALLOWED, MULTI_WALLET_ERROR__PROTECTED_ACCOUNT, MULTI_WALLET_ERROR__RP_ID_HASH_MISMATCH, MULTI_WALLET_ERROR__SLOT_NUMBER_NOT_FOUND, MULTI_WALLET_ERROR__TOO_MANY_MEMBERS, MULTI_WALLET_ERROR__TRANSACTION_HAS_EXPIRED, MULTI_WALLET_ERROR__TRANSACTION_MANAGER_NOT_ALLOWED, MULTI_WALLET_ERROR__TRANSACTION_NOT_APPROVED, MULTI_WALLET_ERROR__UNAUTHORISED_TO_CLOSE_TRANSACTION_BUFFER, MULTI_WALLET_ERROR__UNEXPECTED_SIGNER, MULTI_WALLET_PROGRAM_ADDRESS, type Member, type MemberArgs, type MemberKey, type MemberKeyArgs, type MessageAuthenticationResponse, type MessagePayload, 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 PackedAddressTreeInfo, type PackedAddressTreeInfoArgs, type PackedStateTreeInfo, type PackedStateTreeInfoArgs, type ParsedAddWhitelistedAddressTreesInstruction, type ParsedChangeConfigCompressedInstruction, type ParsedChangeConfigInstruction, type ParsedCompressSettingsAccountInstruction, type ParsedCreateDomainConfigInstruction, type ParsedCreateDomainUserAccountInstruction, type ParsedCreateGlobalCounterInstruction, type ParsedCreateMultiWalletCompressedInstruction, type ParsedCreateUserAccountsInstruction, type ParsedDecompressSettingsAccountInstruction, type ParsedDisableDomainConfigInstruction, type ParsedEditDomainConfigInstruction, type ParsedEditTransactionManagerUrlInstruction, 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, PermanentMemberPermission, Permission, type PermissionArgs, Permissions, type PermissionsArgs, type ProofArgs, type ProofArgsArgs, type RemoveMemberArgs, type RemoveMemberArgsArgs, 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 SettingsIndexWithAddressArgs, type SettingsMutArgs, type SettingsMutArgsArgs, type SettingsReadonlyArgs, type SettingsReadonlyArgsArgs, SignedSecp256r1Key, TOKEN_TRANSFER_INTENT_COMPRESSED_DISCRIMINATOR, TOKEN_TRANSFER_INTENT_DISCRIMINATOR, TRANSACTION_BUFFER_CLOSE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_CLOSE_DISCRIMINATOR, TRANSACTION_BUFFER_CREATE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_CREATE_DISCRIMINATOR, TRANSACTION_BUFFER_DISCRIMINATOR, TRANSACTION_BUFFER_EXECUTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_EXECUTE_DISCRIMINATOR, TRANSACTION_BUFFER_EXTEND_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_EXTEND_DISCRIMINATOR, TRANSACTION_BUFFER_VOTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_VOTE_DISCRIMINATOR, TRANSACTION_EXECUTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_EXECUTE_DISCRIMINATOR, TRANSACTION_EXECUTE_SYNC_COMPRESSED_DISCRIMINATOR, TRANSACTION_EXECUTE_SYNC_DISCRIMINATOR, type TokenTransferIntentAsyncInput, type TokenTransferIntentCompressedAsyncInput, type TokenTransferIntentCompressedInput, type TokenTransferIntentCompressedInstruction, type TokenTransferIntentCompressedInstructionData, type TokenTransferIntentCompressedInstructionDataArgs, type TokenTransferIntentCompressedInstructionExtraArgs, type TokenTransferIntentInput, type TokenTransferIntentInstruction, type TokenTransferIntentInstructionData, type TokenTransferIntentInstructionDataArgs, type TokenTransferIntentInstructionExtraArgs, type TransactionActionType, 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, 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, TransactionManagerPermission, type TransactionMessage, type TransactionMessageAddressTableLookup, type TransactionMessageAddressTableLookupArgs, type TransactionMessageArgs, type TransactionPayload, type User, type UserAccountWithAddressArgs, type UserArgs, type UserCreationArgs$2 as UserCreationArgs, type UserCreationArgsArgs, type UserMutArgs, type UserMutArgsArgs, type UserReadOnlyArgs, type UserReadOnlyArgsArgs, type UserReadOnlyOrMutateArgs, type UserReadOnlyOrMutateArgsArgs, WHITELISTED_ADDRESS_TREE_DISCRIMINATOR, type WhitelistedAddressTree, type WhitelistedAddressTreeArgs, addWhitelistedAddressTrees, changeConfig, closeTransactionBuffer, compressSettingsAccount, configAction, convertMemberKeyToString, convertPubkeyCompressedToCose, convertPubkeyCoseToCompressed, createDomainConfig, createDomainUserAccounts, createGlobalCounter, createPopUp, createTransactionBuffer, createTransactionManagerSigner, createUserAccounts, createWallet, decodeDomainConfig, decodeGlobalCounter, decodeSettings, decodeTransactionBuffer, decodeWhitelistedAddressTree, decompressSettingsAccount, disableDomainConfig, editDomainConfig, editTransactionManagerUrl, executeTransaction, executeTransactionBuffer, executeTransactionSync, extendTransactionBuffer, fetchAllDomainConfig, fetchAllGlobalCounter, fetchAllMaybeDomainConfig, fetchAllMaybeGlobalCounter, fetchAllMaybeSettings, fetchAllMaybeTransactionBuffer, fetchAllMaybeWhitelistedAddressTree, fetchAllSettings, fetchAllTransactionBuffer, fetchAllWhitelistedAddressTree, fetchDomainConfig, fetchGlobalCounter, fetchMaybeDomainConfig, fetchMaybeGlobalCounter, fetchMaybeSettings, fetchMaybeSettingsAccountData, fetchMaybeTransactionBuffer, fetchMaybeUserAccountData, fetchMaybeWhitelistedAddressTree, fetchSettings, fetchSettingsAccountData, fetchTransactionBuffer, fetchUserAccountData, fetchWhitelistedAddressTree, getAddMemberArgsCodec, getAddMemberArgsDecoder, getAddMemberArgsEncoder, getAddWhitelistedAddressTreesDiscriminatorBytes, getAddWhitelistedAddressTreesInstruction, getAddWhitelistedAddressTreesInstructionAsync, getAddWhitelistedAddressTreesInstructionDataCodec, getAddWhitelistedAddressTreesInstructionDataDecoder, getAddWhitelistedAddressTreesInstructionDataEncoder, getAuthEndpoint, getChangeConfigCompressedDiscriminatorBytes, getChangeConfigCompressedInstruction, getChangeConfigCompressedInstructionDataCodec, getChangeConfigCompressedInstructionDataDecoder, getChangeConfigCompressedInstructionDataEncoder, getChangeConfigDiscriminatorBytes, getChangeConfigInstruction, getChangeConfigInstructionAsync, getChangeConfigInstructionDataCodec, getChangeConfigInstructionDataDecoder, getChangeConfigInstructionDataEncoder, getCompiledInstructionCodec, getCompiledInstructionDecoder, getCompiledInstructionEncoder, getCompressSettingsAccountDiscriminatorBytes, getCompressSettingsAccountInstruction, getCompressSettingsAccountInstructionDataCodec, getCompressSettingsAccountInstructionDataDecoder, getCompressSettingsAccountInstructionDataEncoder, getCompressedAccountMetaCodec, getCompressedAccountMetaDecoder, getCompressedAccountMetaEncoder, getCompressedAccountMetaReadOnlyCodec, getCompressedAccountMetaReadOnlyDecoder, getCompressedAccountMetaReadOnlyEncoder, getCompressedProofCodec, getCompressedProofDecoder, getCompressedProofEncoder, getCompressedSettingsAddressFromIndex, getCompressedSettingsCodec, getCompressedSettingsDataCodec, getCompressedSettingsDataDecoder, getCompressedSettingsDataEncoder, getCompressedSettingsDecoder, getCompressedSettingsEncoder, getComputeBudgetEstimate, getConfigActionCodec, getConfigActionDecoder, getConfigActionEncoder, getCreateDomainConfigDiscriminatorBytes, getCreateDomainConfigInstruction, getCreateDomainConfigInstructionDataCodec, getCreateDomainConfigInstructionDataDecoder, getCreateDomainConfigInstructionDataEncoder, getCreateDomainUserAccountDiscriminatorBytes, getCreateDomainUserAccountInstruction, getCreateDomainUserAccountInstructionAsync, getCreateDomainUserAccountInstructionDataCodec, getCreateDomainUserAccountInstructionDataDecoder, getCreateDomainUserAccountInstructionDataEncoder, getCreateGlobalCounterDiscriminatorBytes, getCreateGlobalCounterInstruction, getCreateGlobalCounterInstructionAsync, getCreateGlobalCounterInstructionDataCodec, getCreateGlobalCounterInstructionDataDecoder, getCreateGlobalCounterInstructionDataEncoder, getCreateMultiWalletCompressedDiscriminatorBytes, getCreateMultiWalletCompressedInstruction, getCreateMultiWalletCompressedInstructionAsync, getCreateMultiWalletCompressedInstructionDataCodec, getCreateMultiWalletCompressedInstructionDataDecoder, getCreateMultiWalletCompressedInstructionDataEncoder, getCreateUserAccountArgsCodec, getCreateUserAccountArgsDecoder, getCreateUserAccountArgsEncoder, getCreateUserAccountsDiscriminatorBytes, getCreateUserAccountsInstruction, getCreateUserAccountsInstructionAsync, getCreateUserAccountsInstructionDataCodec, getCreateUserAccountsInstructionDataDecoder, getCreateUserAccountsInstructionDataEncoder, getDecompressSettingsAccountDiscriminatorBytes, getDecompressSettingsAccountInstruction, getDecompressSettingsAccountInstructionDataCodec, getDecompressSettingsAccountInstructionDataDecoder, getDecompressSettingsAccountInstructionDataEncoder, getDelegateOpCodec, getDelegateOpDecoder, getDelegateOpEncoder, getDisableDomainConfigDiscriminatorBytes, getDisableDomainConfigInstruction, getDisableDomainConfigInstructionDataCodec, getDisableDomainConfigInstructionDataDecoder, getDisableDomainConfigInstructionDataEncoder, getDomainConfigAddress, getDomainConfigCodec, getDomainConfigDecoder, getDomainConfigDiscriminatorBytes, getDomainConfigEncoder, getDomainConfigSize, getEditDomainConfigDiscriminatorBytes, getEditDomainConfigInstruction, getEditDomainConfigInstructionDataCodec, getEditDomainConfigInstructionDataDecoder, getEditDomainConfigInstructionDataEncoder, getEditMemberArgsCodec, getEditMemberArgsDecoder, getEditMemberArgsEncoder, getEditTransactionManagerUrlDiscriminatorBytes, getEditTransactionManagerUrlInstruction, getEditTransactionManagerUrlInstructionDataCodec, getEditTransactionManagerUrlInstructionDataDecoder, getEditTransactionManagerUrlInstructionDataEncoder, getFeePayer, getGlobalAdditonalInfo, getGlobalAuthorizedClient, 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, getOriginIndex, getPackedAddressTreeInfoCodec, getPackedAddressTreeInfoDecoder, getPackedAddressTreeInfoEncoder, getPackedStateTreeInfoCodec, getPackedStateTreeInfoDecoder, getPackedStateTreeInfoEncoder, getPermissionsCodec, getPermissionsDecoder, getPermissionsEncoder, getProofArgsCodec, getProofArgsDecoder, getProofArgsEncoder, getRemoveMemberArgsCodec, getRemoveMemberArgsDecoder, getRemoveMemberArgsEncoder, getSecp256r1PubkeyCodec, getSecp256r1PubkeyDecoder, getSecp256r1PubkeyEncoder, getSecp256r1SignatureOffsetsDataDecoder, getSecp256r1SignatureOffsetsDataEncoder, getSecp256r1VerifyArgsCodec, getSecp256r1VerifyArgsDecoder, getSecp256r1VerifyArgsEncoder, getSecp256r1VerifyArgsWithDomainAddressCodec, getSecp256r1VerifyArgsWithDomainAddressDecoder, getSecp256r1VerifyArgsWithDomainAddressEncoder, getSecp256r1VerifyInstruction, getSecp256r1VerifyInstructionDataCodec, getSecp256r1VerifyInstructionDataDecoder, getSecp256r1VerifyInstructionDataEncoder, getSendAndConfirmTransaction, getSettingsCodec, getSettingsCreationArgsCodec, getSettingsCreationArgsDecoder, getSettingsCreationArgsEncoder, getSettingsDecoder, getSettingsDiscriminatorBytes, getSettingsEncoder, getSettingsFromIndex, getSettingsIndexWithAddressCodec, getSettingsIndexWithAddressDecoder, getSettingsIndexWithAddressEncoder, getSettingsMutArgsCodec, getSettingsMutArgsDecoder, getSettingsMutArgsEncoder, getSettingsReadonlyArgsCodec, getSettingsReadonlyArgsDecoder, getSettingsReadonlyArgsEncoder, getSettingsSize, getSignedSecp256r1Key, getSolanaRpc, getSolanaRpcEndpoint, getTokenTransferIntentCompressedDiscriminatorBytes, getTokenTransferIntentCompressedInstruction, getTokenTransferIntentCompressedInstructionAsync, getTokenTransferIntentCompressedInstructionDataCodec, getTokenTransferIntentCompressedInstructionDataDecoder, getTokenTransferIntentCompressedInstructionDataEncoder, getTokenTransferIntentDiscriminatorBytes, getTokenTransferIntentInstruction, getTokenTransferIntentInstructionAsync, getTokenTransferIntentInstructionDataCodec, getTokenTransferIntentInstructionDataDecoder, getTokenTransferIntentInstructionDataEncoder, getTransactionBufferAddress, getTransactionBufferCloseCompressedDiscriminatorBytes, getTransactionBufferCloseCompressedInstruction, getTransactionBufferCloseCompressedInstructionDataCodec, getTransactionBufferCloseCompressedInstructionDataDecoder, getTransactionBufferCloseCompressedInstructionDataEncoder, getTransactionBufferCloseDiscriminatorBytes, getTransactionBufferCloseInstruction, getTransactionBufferCloseInstructionDataCodec, getTransactionBufferCloseInstructionDataDecoder, getTransactionBufferCloseInstructionDataEncoder, getTransactionBufferCodec, getTransactionBufferCreateArgsCodec, getTransactionBufferCreateArgsDecoder, getTransactionBufferCreateArgsEncoder, getTransactionBufferCreateCompressedDiscriminatorBytes, getTransactionBufferCreateCompressedInstruction, getTransactionBufferCreateCompressedInstructionDataCodec, getTransactionBufferCreateCompressedInstructionDataDecoder, getTransactionBufferCreateCompressedInstructionDataEncoder, getTransactionBufferCreateDiscriminatorBytes, getTransactionBufferCreateInstruction, getTransactionBufferCreateInstructionDataCodec, getTransactionBufferCreateInstructionDataDecoder, getTransactionBufferCreateInstructionDataEncoder, getTransactionBufferDecoder, getTransactionBufferDiscriminatorBytes, getTransactionBufferEncoder, getTransactionBufferExecuteCompressedDiscriminatorBytes, getTransactionBufferExecuteCompressedInstruction, getTransactionBufferExecuteCompressedInstructionDataCodec, getTransactionBufferExecuteCompressedInstructionDataDecoder, getTransactionBufferExecuteCompressedInstructionDataEncoder, getTransactionBufferExecuteDiscriminatorBytes, getTransactionBufferExecuteInstruction, getTransactionBufferExecuteInstructionDataCodec, getTransactionBufferExecuteInstructionDataDecoder, getTransactionBufferExecuteInstructionDataEncoder, getTransactionBufferExtendCompressedDiscriminatorBytes, getTransactionBufferExtendCompressedInstruction, getTransactionBufferExtendCompressedInstructionDataCodec, getTransactionBufferExtendCompressedInstructionDataDecoder, getTransactionBufferExtendCompressedInstructionDataEncoder, getTransactionBufferExtendDiscriminatorBytes, getTransactionBufferExtendInstruction, getTransactionBufferExtendInstructionDataCodec, getTransactionBufferExtendInstructionDataDecoder, getTransactionBufferExtendInstructionDataEncoder, getTransactionBufferVoteCompressedDiscriminatorBytes, getTransactionBufferVoteCompressedInstruction, getTransactionBufferVoteCompressedInstructionDataCodec, getTransactionBufferVoteCompressedInstructionDataDecoder, getTransactionBufferVoteCompressedInstructionDataEncoder, getTransactionBufferVoteDiscriminatorBytes, getTransactionBufferVoteInstruction, getTransactionBufferVoteInstructionDataCodec, getTransactionBufferVoteInstructionDataDecoder, getTransactionBufferVoteInstructionDataEncoder, getTransactionExecuteCompressedDiscriminatorBytes, getTransactionExecuteCompressedInstruction, getTransactionExecuteCompressedInstructionDataCodec, getTransactionExecuteCompressedInstructionDataDecoder, getTransactionExecuteCompressedInstructionDataEncoder, getTransactionExecuteDiscriminatorBytes, getTransactionExecuteInstruction, getTransactionExecuteInstructionDataCodec, getTransactionExecuteInstructionDataDecoder, getTransactionExecuteInstructionDataEncoder, getTransactionExecuteSyncCompressedDiscriminatorBytes, getTransactionExecuteSyncCompressedInstruction, getTransactionExecuteSyncCompressedInstructionDataCodec, getTransactionExecuteSyncCompressedInstructionDataDecoder, getTransactionExecuteSyncCompressedInstructionDataEncoder, getTransactionExecuteSyncDiscriminatorBytes, getTransactionExecuteSyncInstruction, getTransactionExecuteSyncInstructionDataCodec, getTransactionExecuteSyncInstructionDataDecoder, getTransactionExecuteSyncInstructionDataEncoder, getTransactionMessageAddressTableLookupCodec, getTransactionMessageAddressTableLookupDecoder, getTransactionMessageAddressTableLookupEncoder, getTransactionMessageCodec, getTransactionMessageDecoder, getTransactionMessageEncoder, getUserAccountAddress, getUserCodec, getUserCreationArgsCodec, getUserCreationArgsDecoder, getUserCreationArgsEncoder, getUserDecoder, getUserEncoder, getUserMutArgsCodec, getUserMutArgsDecoder, getUserMutArgsEncoder, getUserReadOnlyArgsCodec, getUserReadOnlyArgsDecoder, getUserReadOnlyArgsEncoder, getUserReadOnlyOrMutateArgsCodec, getUserReadOnlyOrMutateArgsDecoder, getUserReadOnlyOrMutateArgsEncoder, getWalletAddressFromIndex, getWalletAddressFromSettings, getWhitelistedAddressTreeCodec, getWhitelistedAddressTreeDecoder, getWhitelistedAddressTreeDiscriminatorBytes, getWhitelistedAddressTreeEncoder, getWhitelistedAddressTreeFromIndex, getWhitelistedAddressTreeIndexFromAddress, getWhitelistedAddressTreesAddress, identifyMultiWalletAccount, identifyMultiWalletInstruction, initialize, isConfigAction, isMultiWalletError, isUserReadOnlyOrMutateArgs, nativeTransferIntent, parseAddWhitelistedAddressTreesInstruction, parseChangeConfigCompressedInstruction, parseChangeConfigInstruction, parseCompressSettingsAccountInstruction, parseCreateDomainConfigInstruction, parseCreateDomainUserAccountInstruction, parseCreateGlobalCounterInstruction, parseCreateMultiWalletCompressedInstruction, parseCreateUserAccountsInstruction, parseDecompressSettingsAccountInstruction, parseDisableDomainConfigInstruction, parseEditDomainConfigInstruction, parseEditTransactionManagerUrlInstruction, parseMigrateCompressedSettingsInstruction, parseMigrateCompressedUsersInstruction, parseNativeTransferIntentCompressedInstruction, parseNativeTransferIntentInstruction, parseSecp256r1VerifyInstruction, parseTokenTransferIntentCompressedInstruction, parseTokenTransferIntentInstruction, parseTransactionBufferCloseCompressedInstruction, parseTransactionBufferCloseInstruction, parseTransactionBufferCreateCompressedInstruction, parseTransactionBufferCreateInstruction, parseTransactionBufferExecuteCompressedInstruction, parseTransactionBufferExecuteInstruction, parseTransactionBufferExtendCompressedInstruction, parseTransactionBufferExtendInstruction, parseTransactionBufferVoteCompressedInstruction, parseTransactionBufferVoteInstruction, parseTransactionExecuteCompressedInstruction, parseTransactionExecuteInstruction, parseTransactionExecuteSyncCompressedInstruction, parseTransactionExecuteSyncInstruction, pollJitoBundleConfirmation, prepareTransactionBundle, prepareTransactionMessage, prepareTransactionSync, resolveTransactionManagerSigner, sendJitoBundle, signAndSendBundledTransactions, signAndSendTransaction, signMessageWithPasskey, signTransactionWithPasskey, tokenTransferIntent, uninitialize, userReadOnlyOrMutateArgs, vaultTransactionMessageDeserialize, vaultTransactionMessageSerialize, verifyMessage, voteTransactionBuffer };