@revibase/core 0.0.2 → 0.0.4

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;
@@ -468,15 +461,17 @@ type User = {
468
461
  member: MemberKey;
469
462
  domainConfig: Option<Address>;
470
463
  isPermanentMember: boolean;
471
- settingsIndex: Option<bigint>;
464
+ delegatedTo: Option<SettingsIndexWithAddress>;
472
465
  transactionManagerUrl: Option<string>;
466
+ userAddressTreeIndex: number;
473
467
  };
474
468
  type UserArgs = {
475
469
  member: MemberKeyArgs;
476
470
  domainConfig: OptionOrNullable<Address>;
477
471
  isPermanentMember: boolean;
478
- settingsIndex: OptionOrNullable<number | bigint>;
472
+ delegatedTo: OptionOrNullable<SettingsIndexWithAddressArgs>;
479
473
  transactionManagerUrl: OptionOrNullable<string>;
474
+ userAddressTreeIndex: number;
480
475
  };
481
476
  declare function getUserEncoder(): Encoder<UserArgs>;
482
477
  declare function getUserDecoder(): Decoder<User>;
@@ -551,6 +546,8 @@ type Settings = {
551
546
  threshold: number;
552
547
  multiWalletBump: number;
553
548
  bump: number;
549
+ settingsAddressTreeIndex: number;
550
+ padding: ReadonlyUint8Array;
554
551
  };
555
552
  type SettingsArgs = {
556
553
  index: number | bigint;
@@ -559,6 +556,8 @@ type SettingsArgs = {
559
556
  threshold: number;
560
557
  multiWalletBump: number;
561
558
  bump: number;
559
+ settingsAddressTreeIndex: number;
560
+ padding: ReadonlyUint8Array;
562
561
  };
563
562
  declare function getSettingsEncoder(): FixedSizeEncoder<SettingsArgs>;
564
563
  declare function getSettingsDecoder(): FixedSizeDecoder<Settings>;
@@ -620,6 +619,27 @@ declare function fetchMaybeTransactionBuffer<TAddress extends string = string>(r
620
619
  declare function fetchAllTransactionBuffer(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Array<Address>, config?: FetchAccountsConfig): Promise<Account<TransactionBuffer>[]>;
621
620
  declare function fetchAllMaybeTransactionBuffer(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Array<Address>, config?: FetchAccountsConfig): Promise<MaybeAccount<TransactionBuffer>[]>;
622
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
+
623
643
  declare const MULTI_WALLET_ERROR__INVALID_SIGNED_MESSAGE = 6000;
624
644
  declare const MULTI_WALLET_ERROR__INVALID_SECP256R1_VERIFY_ARG = 6001;
625
645
  declare const MULTI_WALLET_ERROR__DURABLE_NONCE_DETECTED = 6002;
@@ -661,7 +681,8 @@ declare const MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_MISSING = 6037;
661
681
  declare const MULTI_WALLET_ERROR__MEMBER_DOES_NOT_BELONG_TO_DOMAIN_CONFIG = 6038;
662
682
  declare const MULTI_WALLET_ERROR__RP_ID_HASH_MISMATCH = 6039;
663
683
  declare const MULTI_WALLET_ERROR__ORIGIN_INDEX_OUT_OF_BOUNDS = 6040;
664
- 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 | typeof MULTI_WALLET_ERROR__UNEXPECTED_SIGNER;
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;
665
686
  declare function getMultiWalletErrorMessage(code: MultiWalletError): string;
666
687
  declare function isMultiWalletError<TProgramErrorCode extends MultiWalletError>(error: unknown, transactionMessage: {
667
688
  instructions: Record<number, {
@@ -678,19 +699,20 @@ declare enum MultiWalletAccount {
678
699
  DomainConfig = 0,
679
700
  GlobalCounter = 1,
680
701
  Settings = 2,
681
- TransactionBuffer = 3
702
+ TransactionBuffer = 3,
703
+ WhitelistedAddressTree = 4
682
704
  }
683
705
  declare function identifyMultiWalletAccount(account: {
684
706
  data: ReadonlyUint8Array;
685
707
  } | ReadonlyUint8Array): MultiWalletAccount;
686
708
  declare enum MultiWalletInstruction {
687
- ChangeConfig = 0,
688
- ChangeConfigCompressed = 1,
689
- CompressSettingsAccount = 2,
690
- CreateDomainConfig = 3,
691
- CreateDomainUserAccount = 4,
692
- CreateGlobalCounter = 5,
693
- CreateMultiWallet = 6,
709
+ AddWhitelistedAddressTrees = 0,
710
+ ChangeConfig = 1,
711
+ ChangeConfigCompressed = 2,
712
+ CompressSettingsAccount = 3,
713
+ CreateDomainConfig = 4,
714
+ CreateDomainUserAccount = 5,
715
+ CreateGlobalCounter = 6,
694
716
  CreateMultiWalletCompressed = 7,
695
717
  CreateUserAccounts = 8,
696
718
  DecompressSettingsAccount = 9,
@@ -722,6 +744,8 @@ declare function identifyMultiWalletInstruction(instruction: {
722
744
  data: ReadonlyUint8Array;
723
745
  } | ReadonlyUint8Array): MultiWalletInstruction;
724
746
  type ParsedMultiWalletInstruction<TProgram extends string = "reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT"> = ({
747
+ instructionType: MultiWalletInstruction.AddWhitelistedAddressTrees;
748
+ } & ParsedAddWhitelistedAddressTreesInstruction<TProgram>) | ({
725
749
  instructionType: MultiWalletInstruction.ChangeConfig;
726
750
  } & ParsedChangeConfigInstruction<TProgram>) | ({
727
751
  instructionType: MultiWalletInstruction.ChangeConfigCompressed;
@@ -734,8 +758,6 @@ type ParsedMultiWalletInstruction<TProgram extends string = "reviR1xysEChySVSWGa
734
758
  } & ParsedCreateDomainUserAccountInstruction<TProgram>) | ({
735
759
  instructionType: MultiWalletInstruction.CreateGlobalCounter;
736
760
  } & ParsedCreateGlobalCounterInstruction<TProgram>) | ({
737
- instructionType: MultiWalletInstruction.CreateMultiWallet;
738
- } & ParsedCreateMultiWalletInstruction<TProgram>) | ({
739
761
  instructionType: MultiWalletInstruction.CreateMultiWalletCompressed;
740
762
  } & ParsedCreateMultiWalletCompressedInstruction<TProgram>) | ({
741
763
  instructionType: MultiWalletInstruction.CreateUserAccounts;
@@ -789,6 +811,65 @@ type ParsedMultiWalletInstruction<TProgram extends string = "reviR1xysEChySVSWGa
789
811
  instructionType: MultiWalletInstruction.TransactionExecuteSyncCompressed;
790
812
  } & ParsedTransactionExecuteSyncCompressedInstruction<TProgram>);
791
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
+
792
873
  declare const CHANGE_CONFIG_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
793
874
  declare function getChangeConfigDiscriminatorBytes(): ReadonlyUint8Array;
794
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<[
@@ -930,12 +1011,12 @@ type CompressSettingsAccountInstruction<TProgram extends string = typeof MULTI_W
930
1011
  type CompressSettingsAccountInstructionData = {
931
1012
  discriminator: ReadonlyUint8Array;
932
1013
  compressedProofArgs: ProofArgs;
933
- settingsArg: SettingsCreateOrMutateArgs;
1014
+ settingsMutArgs: SettingsMutArgs;
934
1015
  secp256r1VerifyArgs: Array<Secp256r1VerifyArgsWithDomainAddress>;
935
1016
  };
936
1017
  type CompressSettingsAccountInstructionDataArgs = {
937
1018
  compressedProofArgs: ProofArgsArgs;
938
- settingsArg: SettingsCreateOrMutateArgsArgs;
1019
+ settingsMutArgs: SettingsMutArgsArgs;
939
1020
  secp256r1VerifyArgs: Array<Secp256r1VerifyArgsWithDomainAddressArgs>;
940
1021
  };
941
1022
  declare function getCompressSettingsAccountInstructionDataEncoder(): Encoder<CompressSettingsAccountInstructionDataArgs>;
@@ -953,7 +1034,7 @@ type CompressSettingsAccountInput<TAccountSettings extends string = string, TAcc
953
1034
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
954
1035
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
955
1036
  compressedProofArgs: CompressSettingsAccountInstructionDataArgs["compressedProofArgs"];
956
- settingsArg: CompressSettingsAccountInstructionDataArgs["settingsArg"];
1037
+ settingsMutArgs: CompressSettingsAccountInstructionDataArgs["settingsMutArgs"];
957
1038
  secp256r1VerifyArgs: CompressSettingsAccountInstructionDataArgs["secp256r1VerifyArgs"];
958
1039
  remainingAccounts: CompressSettingsAccountInstructionExtraArgs["remainingAccounts"];
959
1040
  };
@@ -1031,10 +1112,11 @@ declare function parseCreateDomainConfigInstruction<TProgram extends string, TAc
1031
1112
 
1032
1113
  declare const CREATE_DOMAIN_USER_ACCOUNT_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1033
1114
  declare function getCreateDomainUserAccountDiscriminatorBytes(): ReadonlyUint8Array;
1034
- 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<[
1035
1116
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1036
1117
  TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
1037
1118
  TAccountAuthority extends string ? ReadonlySignerAccount<TAccountAuthority> & AccountSignerMeta<TAccountAuthority> : TAccountAuthority,
1119
+ TAccountWhitelistedAddressTrees extends string ? ReadonlyAccount<TAccountWhitelistedAddressTrees> : TAccountWhitelistedAddressTrees,
1038
1120
  ...TRemainingAccounts
1039
1121
  ]>;
1040
1122
  type CreateDomainUserAccountInstructionData = {
@@ -1061,10 +1143,11 @@ type CreateDomainUserAccountInstructionExtraArgs = {
1061
1143
  role: number;
1062
1144
  }>;
1063
1145
  };
1064
- 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> = {
1065
1147
  payer: TransactionSigner<TAccountPayer>;
1066
1148
  domainConfig: Address<TAccountDomainConfig>;
1067
1149
  authority: TransactionSigner<TAccountAuthority>;
1150
+ whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1068
1151
  compressedProofArgs: CreateDomainUserAccountInstructionDataArgs["compressedProofArgs"];
1069
1152
  member: CreateDomainUserAccountInstructionDataArgs["member"];
1070
1153
  isPermanentMember: CreateDomainUserAccountInstructionDataArgs["isPermanentMember"];
@@ -1072,15 +1155,31 @@ type CreateDomainUserAccountInput<TAccountPayer extends string = string, TAccoun
1072
1155
  linkWalletArgs: CreateDomainUserAccountInstructionDataArgs["linkWalletArgs"];
1073
1156
  remainingAccounts: CreateDomainUserAccountInstructionExtraArgs["remainingAccounts"];
1074
1157
  };
1075
- 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?: {
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?: {
1076
1159
  programAddress?: TProgramAddress;
1077
- }): CreateDomainUserAccountInstruction<TProgramAddress, TAccountPayer, TAccountDomainConfig, TAccountAuthority>;
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> = {
1162
+ payer: TransactionSigner<TAccountPayer>;
1163
+ domainConfig: Address<TAccountDomainConfig>;
1164
+ authority: TransactionSigner<TAccountAuthority>;
1165
+ whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
1166
+ compressedProofArgs: CreateDomainUserAccountInstructionDataArgs["compressedProofArgs"];
1167
+ member: CreateDomainUserAccountInstructionDataArgs["member"];
1168
+ isPermanentMember: CreateDomainUserAccountInstructionDataArgs["isPermanentMember"];
1169
+ userAccountCreationArgs: CreateDomainUserAccountInstructionDataArgs["userAccountCreationArgs"];
1170
+ linkWalletArgs: CreateDomainUserAccountInstructionDataArgs["linkWalletArgs"];
1171
+ remainingAccounts: CreateDomainUserAccountInstructionExtraArgs["remainingAccounts"];
1172
+ };
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?: {
1174
+ programAddress?: TProgramAddress;
1175
+ }): CreateDomainUserAccountInstruction<TProgramAddress, TAccountPayer, TAccountDomainConfig, TAccountAuthority, TAccountWhitelistedAddressTrees>;
1078
1176
  type ParsedCreateDomainUserAccountInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
1079
1177
  programAddress: Address<TProgram>;
1080
1178
  accounts: {
1081
1179
  payer: TAccountMetas[0];
1082
1180
  domainConfig: TAccountMetas[1];
1083
1181
  authority: TAccountMetas[2];
1182
+ whitelistedAddressTrees: TAccountMetas[3];
1084
1183
  };
1085
1184
  data: CreateDomainUserAccountInstructionData;
1086
1185
  };
@@ -1136,100 +1235,9 @@ type ParsedCreateGlobalCounterInstruction<TProgram extends string = typeof MULTI
1136
1235
  };
1137
1236
  declare function parseCreateGlobalCounterInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedCreateGlobalCounterInstruction<TProgram, TAccountMetas>;
1138
1237
 
1139
- declare const CREATE_MULTI_WALLET_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1140
- declare function getCreateMultiWalletDiscriminatorBytes(): ReadonlyUint8Array;
1141
- 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<[
1142
- TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
1143
- TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1144
- TAccountInitialMember extends string ? ReadonlySignerAccount<TAccountInitialMember> & AccountSignerMeta<TAccountInitialMember> : TAccountInitialMember,
1145
- TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
1146
- TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
1147
- TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
1148
- TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
1149
- TAccountGlobalCounter extends string ? WritableAccount<TAccountGlobalCounter> : TAccountGlobalCounter,
1150
- ...TRemainingAccounts
1151
- ]>;
1152
- type CreateMultiWalletInstructionData = {
1153
- discriminator: ReadonlyUint8Array;
1154
- settingsIndex: bigint;
1155
- secp256r1VerifyArgs: Option<Secp256r1VerifyArgs>;
1156
- userMutArgs: UserMutArgs;
1157
- compressedProofArgs: ProofArgs;
1158
- setAsDelegate: boolean;
1159
- };
1160
- type CreateMultiWalletInstructionDataArgs = {
1161
- settingsIndex: number | bigint;
1162
- secp256r1VerifyArgs: OptionOrNullable<Secp256r1VerifyArgsArgs>;
1163
- userMutArgs: UserMutArgsArgs;
1164
- compressedProofArgs: ProofArgsArgs;
1165
- setAsDelegate: boolean;
1166
- };
1167
- declare function getCreateMultiWalletInstructionDataEncoder(): Encoder<CreateMultiWalletInstructionDataArgs>;
1168
- declare function getCreateMultiWalletInstructionDataDecoder(): Decoder<CreateMultiWalletInstructionData>;
1169
- declare function getCreateMultiWalletInstructionDataCodec(): Codec<CreateMultiWalletInstructionDataArgs, CreateMultiWalletInstructionData>;
1170
- type CreateMultiWalletInstructionExtraArgs = {
1171
- remainingAccounts: Array<{
1172
- address: Address;
1173
- role: number;
1174
- }>;
1175
- };
1176
- 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> = {
1177
- settings?: Address<TAccountSettings>;
1178
- payer: TransactionSigner<TAccountPayer>;
1179
- initialMember?: TransactionSigner<TAccountInitialMember>;
1180
- systemProgram?: Address<TAccountSystemProgram>;
1181
- slotHashSysvar?: Address<TAccountSlotHashSysvar>;
1182
- instructionsSysvar?: Address<TAccountInstructionsSysvar>;
1183
- domainConfig?: Address<TAccountDomainConfig>;
1184
- globalCounter: Address<TAccountGlobalCounter>;
1185
- settingsIndex: CreateMultiWalletInstructionDataArgs["settingsIndex"];
1186
- secp256r1VerifyArgs: CreateMultiWalletInstructionDataArgs["secp256r1VerifyArgs"];
1187
- userMutArgs: CreateMultiWalletInstructionDataArgs["userMutArgs"];
1188
- compressedProofArgs: CreateMultiWalletInstructionDataArgs["compressedProofArgs"];
1189
- setAsDelegate: CreateMultiWalletInstructionDataArgs["setAsDelegate"];
1190
- remainingAccounts: CreateMultiWalletInstructionExtraArgs["remainingAccounts"];
1191
- };
1192
- 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?: {
1193
- programAddress?: TProgramAddress;
1194
- }): Promise<CreateMultiWalletInstruction<TProgramAddress, TAccountSettings, TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountDomainConfig, TAccountGlobalCounter>>;
1195
- 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> = {
1196
- settings: Address<TAccountSettings>;
1197
- payer: TransactionSigner<TAccountPayer>;
1198
- initialMember?: TransactionSigner<TAccountInitialMember>;
1199
- systemProgram?: Address<TAccountSystemProgram>;
1200
- slotHashSysvar?: Address<TAccountSlotHashSysvar>;
1201
- instructionsSysvar?: Address<TAccountInstructionsSysvar>;
1202
- domainConfig?: Address<TAccountDomainConfig>;
1203
- globalCounter: Address<TAccountGlobalCounter>;
1204
- settingsIndex: CreateMultiWalletInstructionDataArgs["settingsIndex"];
1205
- secp256r1VerifyArgs: CreateMultiWalletInstructionDataArgs["secp256r1VerifyArgs"];
1206
- userMutArgs: CreateMultiWalletInstructionDataArgs["userMutArgs"];
1207
- compressedProofArgs: CreateMultiWalletInstructionDataArgs["compressedProofArgs"];
1208
- setAsDelegate: CreateMultiWalletInstructionDataArgs["setAsDelegate"];
1209
- remainingAccounts: CreateMultiWalletInstructionExtraArgs["remainingAccounts"];
1210
- };
1211
- 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?: {
1212
- programAddress?: TProgramAddress;
1213
- }): CreateMultiWalletInstruction<TProgramAddress, TAccountSettings, TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountDomainConfig, TAccountGlobalCounter>;
1214
- type ParsedCreateMultiWalletInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
1215
- programAddress: Address<TProgram>;
1216
- accounts: {
1217
- settings: TAccountMetas[0];
1218
- payer: TAccountMetas[1];
1219
- initialMember?: TAccountMetas[2] | undefined;
1220
- systemProgram: TAccountMetas[3];
1221
- slotHashSysvar?: TAccountMetas[4] | undefined;
1222
- instructionsSysvar?: TAccountMetas[5] | undefined;
1223
- domainConfig?: TAccountMetas[6] | undefined;
1224
- globalCounter: TAccountMetas[7];
1225
- };
1226
- data: CreateMultiWalletInstructionData;
1227
- };
1228
- declare function parseCreateMultiWalletInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedCreateMultiWalletInstruction<TProgram, TAccountMetas>;
1229
-
1230
1238
  declare const CREATE_MULTI_WALLET_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1231
1239
  declare function getCreateMultiWalletCompressedDiscriminatorBytes(): ReadonlyUint8Array;
1232
- 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<[
1233
1241
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1234
1242
  TAccountInitialMember extends string ? ReadonlySignerAccount<TAccountInitialMember> & AccountSignerMeta<TAccountInitialMember> : TAccountInitialMember,
1235
1243
  TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
@@ -1237,6 +1245,7 @@ type CreateMultiWalletCompressedInstruction<TProgram extends string = typeof MUL
1237
1245
  TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
1238
1246
  TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
1239
1247
  TAccountGlobalCounter extends string ? WritableAccount<TAccountGlobalCounter> : TAccountGlobalCounter,
1248
+ TAccountWhitelistedAddressTrees extends string ? ReadonlyAccount<TAccountWhitelistedAddressTrees> : TAccountWhitelistedAddressTrees,
1240
1249
  ...TRemainingAccounts
1241
1250
  ]>;
1242
1251
  type CreateMultiWalletCompressedInstructionData = {
@@ -1265,7 +1274,7 @@ type CreateMultiWalletCompressedInstructionExtraArgs = {
1265
1274
  role: number;
1266
1275
  }>;
1267
1276
  };
1268
- 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> = {
1269
1278
  payer: TransactionSigner<TAccountPayer>;
1270
1279
  initialMember?: TransactionSigner<TAccountInitialMember>;
1271
1280
  systemProgram?: Address<TAccountSystemProgram>;
@@ -1273,6 +1282,7 @@ type CreateMultiWalletCompressedInput<TAccountPayer extends string = string, TAc
1273
1282
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
1274
1283
  domainConfig?: Address<TAccountDomainConfig>;
1275
1284
  globalCounter: Address<TAccountGlobalCounter>;
1285
+ whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1276
1286
  secp256r1VerifyArgs: CreateMultiWalletCompressedInstructionDataArgs["secp256r1VerifyArgs"];
1277
1287
  compressedProofArgs: CreateMultiWalletCompressedInstructionDataArgs["compressedProofArgs"];
1278
1288
  settingsCreation: CreateMultiWalletCompressedInstructionDataArgs["settingsCreation"];
@@ -1281,9 +1291,29 @@ type CreateMultiWalletCompressedInput<TAccountPayer extends string = string, TAc
1281
1291
  setAsDelegate: CreateMultiWalletCompressedInstructionDataArgs["setAsDelegate"];
1282
1292
  remainingAccounts: CreateMultiWalletCompressedInstructionExtraArgs["remainingAccounts"];
1283
1293
  };
1284
- 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?: {
1285
1295
  programAddress?: TProgramAddress;
1286
- }): 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>;
1287
1317
  type ParsedCreateMultiWalletCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
1288
1318
  programAddress: Address<TProgram>;
1289
1319
  accounts: {
@@ -1294,6 +1324,7 @@ type ParsedCreateMultiWalletCompressedInstruction<TProgram extends string = type
1294
1324
  instructionsSysvar?: TAccountMetas[4] | undefined;
1295
1325
  domainConfig?: TAccountMetas[5] | undefined;
1296
1326
  globalCounter: TAccountMetas[6];
1327
+ whitelistedAddressTrees: TAccountMetas[7];
1297
1328
  };
1298
1329
  data: CreateMultiWalletCompressedInstructionData;
1299
1330
  };
@@ -1301,9 +1332,10 @@ declare function parseCreateMultiWalletCompressedInstruction<TProgram extends st
1301
1332
 
1302
1333
  declare const CREATE_USER_ACCOUNTS_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1303
1334
  declare function getCreateUserAccountsDiscriminatorBytes(): ReadonlyUint8Array;
1304
- 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<[
1305
1336
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1306
1337
  TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
1338
+ TAccountWhitelistedAddressTrees extends string ? ReadonlyAccount<TAccountWhitelistedAddressTrees> : TAccountWhitelistedAddressTrees,
1307
1339
  ...TRemainingAccounts
1308
1340
  ]>;
1309
1341
  type CreateUserAccountsInstructionData = {
@@ -1324,21 +1356,34 @@ type CreateUserAccountsInstructionExtraArgs = {
1324
1356
  role: number;
1325
1357
  }>;
1326
1358
  };
1327
- 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> = {
1328
1371
  payer: TransactionSigner<TAccountPayer>;
1329
1372
  systemProgram?: Address<TAccountSystemProgram>;
1373
+ whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
1330
1374
  compressedProofArgs: CreateUserAccountsInstructionDataArgs["compressedProofArgs"];
1331
1375
  createUserArgs: CreateUserAccountsInstructionDataArgs["createUserArgs"];
1332
1376
  remainingAccounts: CreateUserAccountsInstructionExtraArgs["remainingAccounts"];
1333
1377
  };
1334
- 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?: {
1335
1379
  programAddress?: TProgramAddress;
1336
- }): CreateUserAccountsInstruction<TProgramAddress, TAccountPayer, TAccountSystemProgram>;
1380
+ }): CreateUserAccountsInstruction<TProgramAddress, TAccountPayer, TAccountSystemProgram, TAccountWhitelistedAddressTrees>;
1337
1381
  type ParsedCreateUserAccountsInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
1338
1382
  programAddress: Address<TProgram>;
1339
1383
  accounts: {
1340
1384
  payer: TAccountMetas[0];
1341
1385
  systemProgram: TAccountMetas[1];
1386
+ whitelistedAddressTrees: TAccountMetas[2];
1342
1387
  };
1343
1388
  data: CreateUserAccountsInstructionData;
1344
1389
  };
@@ -2721,12 +2766,14 @@ type PermissionArgs = {
2721
2766
  };
2722
2767
  type AddMemberArgs = {
2723
2768
  setAsDelegate: true;
2724
- pubkey: TransactionSigner | SignedSecp256r1Key;
2769
+ member: TransactionSigner | SignedSecp256r1Key;
2770
+ userAddressTreeIndex?: number;
2725
2771
  permissions: PermissionArgs;
2726
2772
  isTransactionManager: false;
2727
2773
  } | {
2728
2774
  setAsDelegate: false;
2729
- pubkey: Address;
2775
+ member: Address;
2776
+ userAddressTreeIndex?: number;
2730
2777
  permissions: {
2731
2778
  initiate: true;
2732
2779
  vote: false;
@@ -2735,14 +2782,16 @@ type AddMemberArgs = {
2735
2782
  isTransactionManager: true;
2736
2783
  } | {
2737
2784
  setAsDelegate: false;
2738
- pubkey: Address | SignedSecp256r1Key;
2785
+ member: Address | SignedSecp256r1Key;
2786
+ userAddressTreeIndex?: number;
2739
2787
  permissions: PermissionArgs;
2740
2788
  isTransactionManager: false;
2741
2789
  };
2742
2790
  type ConfigurationArgs = {
2743
2791
  type: "EditPermissions";
2744
2792
  members: {
2745
- pubkey: Address | Secp256r1Key;
2793
+ member: Address | Secp256r1Key;
2794
+ userAddressTreeIndex?: number;
2746
2795
  permissions: PermissionArgs;
2747
2796
  delegateOperation: DelegateOpArgs;
2748
2797
  }[];
@@ -2752,7 +2801,8 @@ type ConfigurationArgs = {
2752
2801
  } | {
2753
2802
  type: "RemoveMembers";
2754
2803
  members: {
2755
- pubkey: Address | Secp256r1Key;
2804
+ member: Address | Secp256r1Key;
2805
+ userAddressTreeIndex?: number;
2756
2806
  }[];
2757
2807
  } | {
2758
2808
  type: "SetThreshold";
@@ -2812,6 +2862,7 @@ declare class SignedSecp256r1Key extends Secp256r1Key {
2812
2862
  type TransactionAuthenticationResponse = {
2813
2863
  authResponse: AuthenticationResponseJSON;
2814
2864
  signer: Secp256r1Key;
2865
+ userAddressTreeIndex?: number;
2815
2866
  slotNumber: string;
2816
2867
  slotHash: string;
2817
2868
  additionalInfo?: any;
@@ -2819,6 +2870,7 @@ type TransactionAuthenticationResponse = {
2819
2870
  type MessageAuthenticationResponse = {
2820
2871
  authResponse: AuthenticationResponseJSON;
2821
2872
  signer: Secp256r1Key;
2873
+ userAddressTreeIndex?: number;
2822
2874
  additionalInfo?: any;
2823
2875
  };
2824
2876
  type TransactionActionType = "create" | "create_with_preauthorized_execution" | "execute" | "vote" | "sync" | "close" | "add_new_member" | "compress" | "decompress" | "transfer_intent";
@@ -2903,8 +2955,9 @@ type ParsedSecp256r1VerifyInstruction<TProgram extends string = typeof SECP256R1
2903
2955
  };
2904
2956
  declare function parseSecp256r1VerifyInstruction<TProgram extends string>(instruction: Instruction<TProgram> & InstructionWithData<Uint8Array>): ParsedSecp256r1VerifyInstruction<TProgram>;
2905
2957
 
2906
- declare function changeConfig({ index, configActionsArgs, payer, compressed, cachedAccounts, }: {
2907
- index: bigint | number;
2958
+ declare function changeConfig({ index, settingsAddressTreeIndex, configActionsArgs, payer, compressed, cachedAccounts, }: {
2959
+ index: number | bigint;
2960
+ settingsAddressTreeIndex?: number;
2908
2961
  configActionsArgs: ConfigurationArgs[];
2909
2962
  payer: TransactionSigner;
2910
2963
  compressed?: boolean;
@@ -2914,13 +2967,19 @@ declare function changeConfig({ index, configActionsArgs, payer, compressed, cac
2914
2967
  secp256r1VerifyInput: Secp256r1VerifyInput;
2915
2968
  }>;
2916
2969
 
2917
- declare function compressSettingsAccount({ index, payer, signers, cachedAccounts, }: {
2970
+ declare function compressSettingsAccount({ index, settingsAddressTreeIndex, payer, signers, cachedAccounts, }: {
2918
2971
  index: number | bigint;
2972
+ settingsAddressTreeIndex?: number;
2919
2973
  payer: TransactionSigner;
2920
2974
  signers: (SignedSecp256r1Key | TransactionSigner)[];
2921
2975
  cachedAccounts?: Map<string, any>;
2922
2976
  }): Promise<(Secp256r1VerifyInstruction<gill.Address<"Secp256r1SigVerify1111111111111111111111111">> | CompressSettingsAccountInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, []>)[]>;
2923
2977
 
2978
+ declare function addWhitelistedAddressTrees({ admin, addressTree, }: {
2979
+ admin: TransactionSigner;
2980
+ addressTree: Address;
2981
+ }): Promise<AddWhitelistedAddressTreesInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, []>>;
2982
+
2924
2983
  declare function createDomainConfig({ payer, rpId, origins, authority, metadataUrl, adminDomainConfig, }: {
2925
2984
  metadataUrl: string;
2926
2985
  payer: TransactionSigner;
@@ -2933,8 +2992,12 @@ declare function createDomainConfig({ payer, rpId, origins, authority, metadataU
2933
2992
  interface UserCreationArgs$1 {
2934
2993
  member: Secp256r1Key;
2935
2994
  isPermanentMember: boolean;
2936
- settingsIndex?: number | bigint;
2937
- transactionManager?: Address;
2995
+ index?: number | bigint;
2996
+ settingsAddressTreeIndex?: number;
2997
+ transactionManager?: {
2998
+ member: Address;
2999
+ userAddressTreeIndex?: number;
3000
+ };
2938
3001
  }
2939
3002
  declare function createDomainUserAccounts({ authority, payer, createUserArgs, domainConfig, cachedAccounts, }: {
2940
3003
  domainConfig: Address;
@@ -2942,7 +3005,7 @@ declare function createDomainUserAccounts({ authority, payer, createUserArgs, do
2942
3005
  payer: TransactionSigner;
2943
3006
  createUserArgs: UserCreationArgs$1;
2944
3007
  cachedAccounts?: Map<string, any>;
2945
- }): Promise<CreateDomainUserAccountInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, []>>;
3008
+ }): Promise<CreateDomainUserAccountInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, []>>;
2946
3009
 
2947
3010
  declare function createGlobalCounter({ payer, }: {
2948
3011
  payer: TransactionSigner;
@@ -2960,7 +3023,7 @@ type UserCreationArgs = {
2960
3023
  declare function createUserAccounts({ createUserArgs, payer, }: {
2961
3024
  payer: TransactionSigner;
2962
3025
  createUserArgs: UserCreationArgs[];
2963
- }): Promise<CreateUserAccountsInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, []>>;
3026
+ }): Promise<CreateUserAccountsInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, []>>;
2964
3027
 
2965
3028
  declare function disableDomainConfig({ admin, rpId, disable, }: {
2966
3029
  admin: TransactionSigner;
@@ -2976,26 +3039,28 @@ declare function editDomainConfig({ authority, domainConfig, newAuthority, newOr
2976
3039
  newMetadataUrl?: string;
2977
3040
  }): Promise<EditDomainConfigInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, []>>;
2978
3041
 
2979
- declare function editTransactionManagerUrl({ authority, transactionManagerUrl, }: {
3042
+ declare function editTransactionManagerUrl({ authority, userAddressTreeIndex, transactionManagerUrl, }: {
2980
3043
  authority: TransactionSigner;
3044
+ userAddressTreeIndex?: number;
2981
3045
  transactionManagerUrl: string;
2982
3046
  }): Promise<EditTransactionManagerUrlInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, []>>;
2983
3047
 
2984
3048
  type CreateWalletArgs = {
2985
- index: bigint | number;
3049
+ index: number | bigint;
2986
3050
  payer: TransactionSigner;
2987
- compressed?: boolean;
2988
3051
  cachedAccounts?: Map<string, any>;
2989
3052
  initialMember: TransactionSigner | SignedSecp256r1Key;
3053
+ userAddressTreeIndex?: number;
2990
3054
  setAsDelegate: boolean;
2991
3055
  };
2992
- declare function createWallet({ index, payer, initialMember, setAsDelegate, compressed, cachedAccounts, }: CreateWalletArgs): Promise<{
3056
+ declare function createWallet({ index, payer, initialMember, userAddressTreeIndex, setAsDelegate, cachedAccounts, }: CreateWalletArgs): Promise<{
2993
3057
  instructions: Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[];
2994
3058
  secp256r1VerifyInput: Secp256r1VerifyInput;
2995
3059
  }>;
2996
3060
 
2997
- declare function decompressSettingsAccount({ index, payer, signers, cachedAccounts, }: {
3061
+ declare function decompressSettingsAccount({ index, settingsAddressTreeIndex, payer, signers, cachedAccounts, }: {
2998
3062
  index: number | bigint;
3063
+ settingsAddressTreeIndex?: number;
2999
3064
  payer: TransactionSigner;
3000
3065
  signers: (SignedSecp256r1Key | TransactionSigner)[];
3001
3066
  cachedAccounts?: Map<string, any>;
@@ -3016,8 +3081,9 @@ declare function executeTransaction({ settings, transactionBufferAddress, transa
3016
3081
  addressLookupTableAccounts: AddressesByLookupTableAddress;
3017
3082
  }>;
3018
3083
 
3019
- declare function executeTransactionSync({ index, transactionMessageBytes, signers, payer, addressesByLookupTableAddress, secp256r1VerifyInput, compressed, simulateProof, cachedAccounts, }: {
3020
- index: bigint | number;
3084
+ declare function executeTransactionSync({ index, settingsAddressTreeIndex, transactionMessageBytes, signers, payer, addressesByLookupTableAddress, secp256r1VerifyInput, compressed, simulateProof, cachedAccounts, }: {
3085
+ index: number | bigint;
3086
+ settingsAddressTreeIndex?: number;
3021
3087
  signers: (TransactionSigner | SignedSecp256r1Key)[];
3022
3088
  transactionMessageBytes: ReadonlyUint8Array;
3023
3089
  secp256r1VerifyInput?: Secp256r1VerifyInput;
@@ -3031,8 +3097,9 @@ declare function executeTransactionSync({ index, transactionMessageBytes, signer
3031
3097
  addressLookupTableAccounts: AddressesByLookupTableAddress;
3032
3098
  }>;
3033
3099
 
3034
- declare function nativeTransferIntent({ index, destination, signers, cachedAccounts, amount, payer, compressed, }: {
3100
+ declare function nativeTransferIntent({ index, settingsAddressTreeIndex, destination, signers, cachedAccounts, amount, payer, compressed, }: {
3035
3101
  index: number | bigint;
3102
+ settingsAddressTreeIndex?: number;
3036
3103
  destination: Address;
3037
3104
  amount: number | bigint;
3038
3105
  signers: (TransactionSigner | SignedSecp256r1Key)[];
@@ -3041,8 +3108,9 @@ declare function nativeTransferIntent({ index, destination, signers, cachedAccou
3041
3108
  cachedAccounts?: Map<string, any>;
3042
3109
  }): Promise<Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[]>;
3043
3110
 
3044
- declare function tokenTransferIntent({ index, destination, mint, signers, cachedAccounts, amount, payer, tokenProgram, compressed, }: {
3111
+ declare function tokenTransferIntent({ index, settingsAddressTreeIndex, destination, mint, signers, cachedAccounts, amount, payer, tokenProgram, compressed, }: {
3045
3112
  index: number | bigint;
3113
+ settingsAddressTreeIndex?: number;
3046
3114
  destination: Address;
3047
3115
  mint: Address;
3048
3116
  amount: number | bigint;
@@ -3053,8 +3121,9 @@ declare function tokenTransferIntent({ index, destination, mint, signers, cached
3053
3121
  cachedAccounts?: Map<string, any>;
3054
3122
  }): Promise<Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[]>;
3055
3123
 
3056
- declare function closeTransactionBuffer({ index, closer, transactionBufferAddress, payer, compressed, cachedAccounts, }: {
3057
- index: bigint | number;
3124
+ declare function closeTransactionBuffer({ index, settingsAddressTreeIndex, closer, transactionBufferAddress, payer, compressed, cachedAccounts, }: {
3125
+ index: number | bigint;
3126
+ settingsAddressTreeIndex?: number;
3058
3127
  closer: TransactionSigner | SignedSecp256r1Key;
3059
3128
  transactionBufferAddress: Address;
3060
3129
  payer?: TransactionSigner;
@@ -3123,7 +3192,8 @@ declare function verifyMessage({ message, response, expectedOrigin, }: {
3123
3192
 
3124
3193
  interface CreateTransactionBundleArgs {
3125
3194
  payer: TransactionSigner;
3126
- index: bigint | number;
3195
+ index: number | bigint;
3196
+ settingsAddressTreeIndex?: number;
3127
3197
  transactionMessageBytes: ReadonlyUint8Array;
3128
3198
  bufferIndex?: number;
3129
3199
  creator: TransactionSigner | SignedSecp256r1Key;
@@ -3137,7 +3207,7 @@ interface CreateTransactionBundleArgs {
3137
3207
  addressesByLookupTableAddress?: AddressesByLookupTableAddress;
3138
3208
  cachedAccounts?: Map<string, any>;
3139
3209
  }
3140
- declare function prepareTransactionBundle({ payer, index, transactionMessageBytes, creator, executor, secp256r1VerifyInput, jitoBundlesTipAmount, addressesByLookupTableAddress, compressed, bufferIndex, additionalVoters, additionalSigners, chunkSize, cachedAccounts, }: CreateTransactionBundleArgs): Promise<TransactionDetails[]>;
3210
+ declare function prepareTransactionBundle({ payer, index, settingsAddressTreeIndex, transactionMessageBytes, creator, executor, secp256r1VerifyInput, jitoBundlesTipAmount, addressesByLookupTableAddress, compressed, bufferIndex, additionalVoters, additionalSigners, chunkSize, cachedAccounts, }: CreateTransactionBundleArgs): Promise<TransactionDetails[]>;
3141
3211
 
3142
3212
  interface PrepareTransactionMessageArgs {
3143
3213
  instructions: Instruction[];
@@ -3149,6 +3219,7 @@ declare function prepareTransactionMessage({ instructions, payer, addressesByLoo
3149
3219
  interface CreateTransactionSyncArgs {
3150
3220
  payer: TransactionSigner;
3151
3221
  index: number | bigint;
3222
+ settingsAddressTreeIndex?: number;
3152
3223
  transactionMessageBytes: ReadonlyUint8Array;
3153
3224
  signers: (TransactionSigner | SignedSecp256r1Key)[];
3154
3225
  addressesByLookupTableAddress?: AddressesByLookupTableAddress;
@@ -3157,35 +3228,38 @@ interface CreateTransactionSyncArgs {
3157
3228
  simulateProof?: boolean;
3158
3229
  cachedAccounts?: Map<string, any>;
3159
3230
  }
3160
- declare function prepareTransactionSync({ payer, index, transactionMessageBytes, signers, secp256r1VerifyInput, addressesByLookupTableAddress, cachedAccounts, compressed, simulateProof, }: CreateTransactionSyncArgs): Promise<TransactionDetails>;
3231
+ declare function prepareTransactionSync({ payer, index, settingsAddressTreeIndex, transactionMessageBytes, signers, secp256r1VerifyInput, addressesByLookupTableAddress, cachedAccounts, compressed, simulateProof, }: CreateTransactionSyncArgs): Promise<TransactionDetails>;
3161
3232
 
3162
- declare function getCompressedSettingsAddressFromIndex(index: number | bigint): {
3233
+ declare function getCompressedSettingsAddressFromIndex(index: number | bigint, settingsAddressTreeIndex?: number): Promise<{
3163
3234
  address: bn_js;
3164
3235
  addressTree: PublicKey;
3165
- };
3166
- declare function getUserAccountAddress(member: Address | Secp256r1Key): {
3236
+ }>;
3237
+ declare function getUserAccountAddress(member: Address | Secp256r1Key, userAddressTreeIndex?: number): Promise<{
3167
3238
  address: bn_js;
3168
3239
  addressTree: PublicKey;
3169
- };
3240
+ }>;
3170
3241
  declare function getDomainConfigAddress({ rpIdHash, rpId, }: {
3171
3242
  rpIdHash?: Uint8Array;
3172
3243
  rpId?: string;
3173
3244
  }): Promise<Address<string>>;
3174
3245
  declare function getGlobalCounterAddress(): Promise<Address<string>>;
3246
+ declare function getWhitelistedAddressTreesAddress(): Promise<Address<string>>;
3175
3247
  declare function getTransactionBufferAddress(settings: Address, creator: Address | Secp256r1Key, buffer_index: number): Promise<Address<string>>;
3176
3248
  declare function getWalletAddressFromSettings(settings: Address): Promise<Address<string>>;
3177
3249
  declare function getSettingsFromIndex(index: number | bigint): Promise<Address<string>>;
3178
3250
  declare function getWalletAddressFromIndex(index: number | bigint): Promise<Address<string>>;
3179
3251
  declare function getLightCpiSigner(): Promise<Address<string>>;
3180
3252
 
3181
- declare function fetchUserAccountData(member: Address | Secp256r1Key, cachedAccounts?: Map<string, any>): Promise<User>;
3182
- declare function fetchMaybeUserAccountData(member: Address | Secp256r1Key, cachedAccounts?: Map<string, any>): Promise<User | null>;
3183
- declare function fetchSettingsAccountData(index: number | bigint, cachedAccounts?: Map<string, any>): Promise<CompressedSettingsData & {
3253
+ declare function fetchUserAccountData(member: Address | Secp256r1Key, userAddressTreeIndex?: number, cachedAccounts?: Map<string, any>): Promise<User>;
3254
+ declare function fetchMaybeUserAccountData(member: Address | Secp256r1Key, userAddressTreeIndex?: number, cachedAccounts?: Map<string, any>): Promise<User | null>;
3255
+ declare function fetchSettingsAccountData(index: number | bigint, settingsAddressTreeIndex?: number, cachedAccounts?: Map<string, any>): Promise<CompressedSettingsData & {
3184
3256
  isCompressed: boolean;
3185
3257
  }>;
3186
- declare function fetchMaybeSettingsAccountData(index: number | bigint, cachedAccounts?: Map<string, any>): Promise<(CompressedSettingsData & {
3258
+ declare function fetchMaybeSettingsAccountData(index: number | bigint, settingsAddressTreeIndex?: number, cachedAccounts?: Map<string, any>): Promise<(CompressedSettingsData & {
3187
3259
  isCompressed: boolean;
3188
3260
  }) | null>;
3261
+ declare function getWhitelistedAddressTreeFromIndex(index: number): Promise<Address>;
3262
+ declare function getWhitelistedAddressTreeIndexFromAddress(addressTree: string): Promise<number>;
3189
3263
 
3190
3264
  declare function getSolanaRpcEndpoint(): string;
3191
3265
  declare function getLightProtocolRpc(): Rpc;
@@ -3225,13 +3299,14 @@ declare function signAndSendBundledTransactions(bundle: TransactionDetails[]): P
3225
3299
  declare function signAndSendTransaction({ instructions, payer, addressesByLookupTableAddress, }: TransactionDetails): Promise<gill.Signature>;
3226
3300
  declare function sendJitoBundle(serializedTransactions: string[], maxRetries?: number, delayMs?: number, jitoTipsConfig?: JitoTipsConfig): Promise<string>;
3227
3301
  declare function pollJitoBundleConfirmation(bundleId: string, maxRetries?: number, delayMs?: number, jitoTipsConfig?: JitoTipsConfig): Promise<string>;
3228
- declare function resolveTransactionManagerSigner({ signer, index, transactionMessageBytes, cachedAccounts, }: {
3302
+ declare function resolveTransactionManagerSigner({ signer, index, settingsAddressTreeIndex, transactionMessageBytes, cachedAccounts, }: {
3229
3303
  signer: Secp256r1Key | Address;
3230
3304
  index: number | bigint;
3305
+ settingsAddressTreeIndex?: number;
3231
3306
  transactionMessageBytes?: ReadonlyUint8Array;
3232
3307
  cachedAccounts?: Map<string, any>;
3233
3308
  }): Promise<TransactionSigner | null>;
3234
3309
  declare function createTransactionManagerSigner(address: Address, url: string, transactionMessageBytes?: ReadonlyUint8Array): TransactionSigner;
3235
3310
  declare function convertMemberKeyToString(memberKey: MemberKey): string;
3236
3311
 
3237
- 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_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 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 };
3312
+ 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 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 };