@revibase/core 0.0.3 → 0.0.5

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.ts 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, ReadonlyAccount, TransactionSigner, ReadonlySignerAccount, 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, BaseTransactionMessage, 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';
@@ -64,16 +64,18 @@ declare function fetchAllMaybeGlobalCounter(rpc: Parameters<typeof fetchEncodedA
64
64
  declare function getGlobalCounterSize(): number;
65
65
 
66
66
  type AddMemberArgs$1 = {
67
- member: Member;
67
+ memberKey: MemberKey;
68
+ permissions: IPermissions;
68
69
  verifyArgs: Option<Secp256r1VerifyArgs>;
69
70
  userArgs: UserReadOnlyOrMutateArgs;
70
- setAsDelegate: boolean;
71
+ delegateOperation: DelegateOp;
71
72
  };
72
73
  type AddMemberArgsArgs = {
73
- member: MemberArgs;
74
+ memberKey: MemberKeyArgs;
75
+ permissions: PermissionsArgs;
74
76
  verifyArgs: OptionOrNullable<Secp256r1VerifyArgsArgs>;
75
77
  userArgs: UserReadOnlyOrMutateArgsArgs;
76
- setAsDelegate: boolean;
78
+ delegateOperation: DelegateOpArgs;
77
79
  };
78
80
  declare function getAddMemberArgsEncoder(): Encoder<AddMemberArgsArgs>;
79
81
  declare function getAddMemberArgsDecoder(): Decoder<AddMemberArgs$1>;
@@ -157,13 +159,13 @@ declare function getCompressedSettingsDataCodec(): Codec<CompressedSettingsDataA
157
159
 
158
160
  type ConfigAction = {
159
161
  __kind: "EditPermissions";
160
- fields: readonly [Array<EditMemberArgs>];
162
+ fields: readonly [Array<EditMemberArgs$1>];
161
163
  } | {
162
164
  __kind: "AddMembers";
163
165
  fields: readonly [Array<AddMemberArgs$1>];
164
166
  } | {
165
167
  __kind: "RemoveMembers";
166
- fields: readonly [Array<RemoveMemberArgs>];
168
+ fields: readonly [Array<RemoveMemberArgs$1>];
167
169
  } | {
168
170
  __kind: "SetThreshold";
169
171
  fields: readonly [number];
@@ -194,13 +196,13 @@ declare function isConfigAction<K extends ConfigAction["__kind"]>(kind: K, value
194
196
 
195
197
  type CreateUserAccountArgs = {
196
198
  member: Address;
197
- isPermanentMember: boolean;
199
+ role: UserRole;
198
200
  transactionManagerUrl: Option<string>;
199
201
  userCreationArgs: UserCreationArgs$2;
200
202
  };
201
203
  type CreateUserAccountArgsArgs = {
202
204
  member: Address;
203
- isPermanentMember: boolean;
205
+ role: UserRoleArgs;
204
206
  transactionManagerUrl: OptionOrNullable<string>;
205
207
  userCreationArgs: UserCreationArgsArgs;
206
208
  };
@@ -218,7 +220,7 @@ declare function getDelegateOpEncoder(): FixedSizeEncoder<DelegateOpArgs>;
218
220
  declare function getDelegateOpDecoder(): FixedSizeDecoder<DelegateOp>;
219
221
  declare function getDelegateOpCodec(): FixedSizeCodec<DelegateOpArgs, DelegateOp>;
220
222
 
221
- type EditMemberArgs = {
223
+ type EditMemberArgs$1 = {
222
224
  memberKey: MemberKey;
223
225
  permissions: IPermissions;
224
226
  userArgs: Option<UserMutArgs>;
@@ -231,8 +233,8 @@ type EditMemberArgsArgs = {
231
233
  delegateOperation: DelegateOpArgs;
232
234
  };
233
235
  declare function getEditMemberArgsEncoder(): Encoder<EditMemberArgsArgs>;
234
- declare function getEditMemberArgsDecoder(): Decoder<EditMemberArgs>;
235
- declare function getEditMemberArgsCodec(): Codec<EditMemberArgsArgs, EditMemberArgs>;
236
+ declare function getEditMemberArgsDecoder(): Decoder<EditMemberArgs$1>;
237
+ declare function getEditMemberArgsCodec(): Codec<EditMemberArgsArgs, EditMemberArgs$1>;
236
238
 
237
239
  type LinkWalletArgs = {
238
240
  settingsMutArgs: SettingsMutArgs;
@@ -249,11 +251,13 @@ declare function getLinkWalletArgsCodec(): Codec<LinkWalletArgsArgs, LinkWalletA
249
251
  type Member = {
250
252
  pubkey: MemberKey;
251
253
  permissions: IPermissions;
254
+ role: number;
252
255
  userAddressTreeIndex: number;
253
256
  };
254
257
  type MemberArgs = {
255
258
  pubkey: MemberKeyArgs;
256
259
  permissions: PermissionsArgs;
260
+ role: number;
257
261
  userAddressTreeIndex: number;
258
262
  };
259
263
  declare function getMemberEncoder(): FixedSizeEncoder<MemberArgs>;
@@ -269,6 +273,18 @@ declare function getMemberKeyEncoder(): FixedSizeEncoder<MemberKeyArgs>;
269
273
  declare function getMemberKeyDecoder(): FixedSizeDecoder<MemberKey>;
270
274
  declare function getMemberKeyCodec(): FixedSizeCodec<MemberKeyArgs, MemberKey>;
271
275
 
276
+ type NewAuthorityArgs = {
277
+ authorityCreationArgs: UserCreationArgs$2;
278
+ compressedProofArgs: ProofArgs;
279
+ };
280
+ type NewAuthorityArgsArgs = {
281
+ authorityCreationArgs: UserCreationArgsArgs;
282
+ compressedProofArgs: ProofArgsArgs;
283
+ };
284
+ declare function getNewAuthorityArgsEncoder(): Encoder<NewAuthorityArgsArgs>;
285
+ declare function getNewAuthorityArgsDecoder(): Decoder<NewAuthorityArgs>;
286
+ declare function getNewAuthorityArgsCodec(): Codec<NewAuthorityArgsArgs, NewAuthorityArgs>;
287
+
272
288
  type PackedAddressTreeInfo = {
273
289
  addressMerkleTreePubkeyIndex: number;
274
290
  addressQueuePubkeyIndex: number;
@@ -311,7 +327,7 @@ declare function getProofArgsEncoder(): Encoder<ProofArgsArgs>;
311
327
  declare function getProofArgsDecoder(): Decoder<ProofArgs>;
312
328
  declare function getProofArgsCodec(): Codec<ProofArgsArgs, ProofArgs>;
313
329
 
314
- type RemoveMemberArgs = {
330
+ type RemoveMemberArgs$1 = {
315
331
  memberKey: MemberKey;
316
332
  userArgs: UserReadOnlyOrMutateArgs;
317
333
  };
@@ -320,8 +336,8 @@ type RemoveMemberArgsArgs = {
320
336
  userArgs: UserReadOnlyOrMutateArgsArgs;
321
337
  };
322
338
  declare function getRemoveMemberArgsEncoder(): Encoder<RemoveMemberArgsArgs>;
323
- declare function getRemoveMemberArgsDecoder(): Decoder<RemoveMemberArgs>;
324
- declare function getRemoveMemberArgsCodec(): Codec<RemoveMemberArgsArgs, RemoveMemberArgs>;
339
+ declare function getRemoveMemberArgsDecoder(): Decoder<RemoveMemberArgs$1>;
340
+ declare function getRemoveMemberArgsCodec(): Codec<RemoveMemberArgsArgs, RemoveMemberArgs$1>;
325
341
 
326
342
  type Secp256r1Pubkey = readonly [ReadonlyUint8Array];
327
343
  type Secp256r1PubkeyArgs = Secp256r1Pubkey;
@@ -460,7 +476,7 @@ declare function getTransactionMessageAddressTableLookupCodec(): Codec<Transacti
460
476
  type User = {
461
477
  member: MemberKey;
462
478
  domainConfig: Option<Address>;
463
- isPermanentMember: boolean;
479
+ role: UserRole;
464
480
  delegatedTo: Option<SettingsIndexWithAddress>;
465
481
  transactionManagerUrl: Option<string>;
466
482
  userAddressTreeIndex: number;
@@ -468,7 +484,7 @@ type User = {
468
484
  type UserArgs = {
469
485
  member: MemberKeyArgs;
470
486
  domainConfig: OptionOrNullable<Address>;
471
- isPermanentMember: boolean;
487
+ role: UserRoleArgs;
472
488
  delegatedTo: OptionOrNullable<SettingsIndexWithAddressArgs>;
473
489
  transactionManagerUrl: OptionOrNullable<string>;
474
490
  userAddressTreeIndex: number;
@@ -536,6 +552,17 @@ declare function isUserReadOnlyOrMutateArgs<K extends UserReadOnlyOrMutateArgs["
536
552
  __kind: K;
537
553
  };
538
554
 
555
+ declare enum UserRole {
556
+ Member = 0,
557
+ PermanentMember = 1,
558
+ TransactionManager = 2,
559
+ Administrator = 3
560
+ }
561
+ type UserRoleArgs = UserRole;
562
+ declare function getUserRoleEncoder(): FixedSizeEncoder<UserRoleArgs>;
563
+ declare function getUserRoleDecoder(): FixedSizeDecoder<UserRole>;
564
+ declare function getUserRoleCodec(): FixedSizeCodec<UserRoleArgs, UserRole>;
565
+
539
566
  declare const SETTINGS_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
540
567
  declare function getSettingsDiscriminatorBytes(): ReadonlyUint8Array;
541
568
  type Settings = {
@@ -813,11 +840,10 @@ type ParsedMultiWalletInstruction<TProgram extends string = "reviR1xysEChySVSWGa
813
840
 
814
841
  declare const ADD_WHITELISTED_ADDRESS_TREES_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
815
842
  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<[
843
+ type AddWhitelistedAddressTreesInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
817
844
  TAccountWhitelistedAddressTrees extends string ? WritableAccount<TAccountWhitelistedAddressTrees> : TAccountWhitelistedAddressTrees,
818
845
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
819
846
  TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
820
- TAccountAdminDomainConfig extends string ? ReadonlyAccount<TAccountAdminDomainConfig> : TAccountAdminDomainConfig,
821
847
  ...TRemainingAccounts
822
848
  ]>;
823
849
  type AddWhitelistedAddressTreesInstructionData = {
@@ -836,35 +862,32 @@ type AddWhitelistedAddressTreesInstructionExtraArgs = {
836
862
  role: number;
837
863
  }>;
838
864
  };
839
- type AddWhitelistedAddressTreesAsyncInput<TAccountWhitelistedAddressTrees extends string = string, TAccountPayer extends string = string, TAccountSystemProgram extends string = string, TAccountAdminDomainConfig extends string = string> = {
865
+ type AddWhitelistedAddressTreesAsyncInput<TAccountWhitelistedAddressTrees extends string = string, TAccountPayer extends string = string, TAccountSystemProgram extends string = string> = {
840
866
  whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
841
867
  payer: TransactionSigner<TAccountPayer>;
842
868
  systemProgram?: Address<TAccountSystemProgram>;
843
- adminDomainConfig?: Address<TAccountAdminDomainConfig>;
844
869
  addressTree: AddWhitelistedAddressTreesInstructionDataArgs["addressTree"];
845
870
  remainingAccounts: AddWhitelistedAddressTreesInstructionExtraArgs["remainingAccounts"];
846
871
  };
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?: {
872
+ declare function getAddWhitelistedAddressTreesInstructionAsync<TAccountWhitelistedAddressTrees extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: AddWhitelistedAddressTreesAsyncInput<TAccountWhitelistedAddressTrees, TAccountPayer, TAccountSystemProgram>, config?: {
848
873
  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> = {
874
+ }): Promise<AddWhitelistedAddressTreesInstruction<TProgramAddress, TAccountWhitelistedAddressTrees, TAccountPayer, TAccountSystemProgram>>;
875
+ type AddWhitelistedAddressTreesInput<TAccountWhitelistedAddressTrees extends string = string, TAccountPayer extends string = string, TAccountSystemProgram extends string = string> = {
851
876
  whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
852
877
  payer: TransactionSigner<TAccountPayer>;
853
878
  systemProgram?: Address<TAccountSystemProgram>;
854
- adminDomainConfig?: Address<TAccountAdminDomainConfig>;
855
879
  addressTree: AddWhitelistedAddressTreesInstructionDataArgs["addressTree"];
856
880
  remainingAccounts: AddWhitelistedAddressTreesInstructionExtraArgs["remainingAccounts"];
857
881
  };
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?: {
882
+ declare function getAddWhitelistedAddressTreesInstruction<TAccountWhitelistedAddressTrees extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: AddWhitelistedAddressTreesInput<TAccountWhitelistedAddressTrees, TAccountPayer, TAccountSystemProgram>, config?: {
859
883
  programAddress?: TProgramAddress;
860
- }): AddWhitelistedAddressTreesInstruction<TProgramAddress, TAccountWhitelistedAddressTrees, TAccountPayer, TAccountSystemProgram, TAccountAdminDomainConfig>;
884
+ }): AddWhitelistedAddressTreesInstruction<TProgramAddress, TAccountWhitelistedAddressTrees, TAccountPayer, TAccountSystemProgram>;
861
885
  type ParsedAddWhitelistedAddressTreesInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
862
886
  programAddress: Address<TProgram>;
863
887
  accounts: {
864
888
  whitelistedAddressTrees: TAccountMetas[0];
865
889
  payer: TAccountMetas[1];
866
890
  systemProgram: TAccountMetas[2];
867
- adminDomainConfig: TAccountMetas[3];
868
891
  };
869
892
  data: AddWhitelistedAddressTreesInstructionData;
870
893
  };
@@ -1055,25 +1078,28 @@ declare function parseCompressSettingsAccountInstruction<TProgram extends string
1055
1078
 
1056
1079
  declare const CREATE_DOMAIN_CONFIG_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1057
1080
  declare function getCreateDomainConfigDiscriminatorBytes(): ReadonlyUint8Array;
1058
- type CreateDomainConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountAdminDomainConfig extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1081
+ type CreateDomainConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountAuthority extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1059
1082
  TAccountDomainConfig extends string ? WritableAccount<TAccountDomainConfig> : TAccountDomainConfig,
1060
1083
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1084
+ TAccountAuthority extends string ? ReadonlySignerAccount<TAccountAuthority> & AccountSignerMeta<TAccountAuthority> : TAccountAuthority,
1061
1085
  TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
1062
- TAccountAdminDomainConfig extends string ? ReadonlyAccount<TAccountAdminDomainConfig> : TAccountAdminDomainConfig,
1086
+ TAccountWhitelistedAddressTrees extends string ? ReadonlyAccount<TAccountWhitelistedAddressTrees> : TAccountWhitelistedAddressTrees,
1063
1087
  ...TRemainingAccounts
1064
1088
  ]>;
1065
1089
  type CreateDomainConfigInstructionData = {
1066
1090
  discriminator: ReadonlyUint8Array;
1067
1091
  rpId: string;
1068
1092
  origins: Array<string>;
1069
- authority: Address;
1070
1093
  metadataUrl: string;
1094
+ authorityCreationArgs: UserCreationArgs$2;
1095
+ compressedProofArgs: ProofArgs;
1071
1096
  };
1072
1097
  type CreateDomainConfigInstructionDataArgs = {
1073
1098
  rpId: string;
1074
1099
  origins: Array<string>;
1075
- authority: Address;
1076
1100
  metadataUrl: string;
1101
+ authorityCreationArgs: UserCreationArgsArgs;
1102
+ compressedProofArgs: ProofArgsArgs;
1077
1103
  };
1078
1104
  declare function getCreateDomainConfigInstructionDataEncoder(): Encoder<CreateDomainConfigInstructionDataArgs>;
1079
1105
  declare function getCreateDomainConfigInstructionDataDecoder(): Decoder<CreateDomainConfigInstructionData>;
@@ -1084,27 +1110,46 @@ type CreateDomainConfigInstructionExtraArgs = {
1084
1110
  role: number;
1085
1111
  }>;
1086
1112
  };
1087
- type CreateDomainConfigInput<TAccountDomainConfig extends string = string, TAccountPayer extends string = string, TAccountSystemProgram extends string = string, TAccountAdminDomainConfig extends string = string> = {
1113
+ type CreateDomainConfigAsyncInput<TAccountDomainConfig extends string = string, TAccountPayer extends string = string, TAccountAuthority extends string = string, TAccountSystemProgram extends string = string, TAccountWhitelistedAddressTrees extends string = string> = {
1114
+ domainConfig: Address<TAccountDomainConfig>;
1115
+ payer: TransactionSigner<TAccountPayer>;
1116
+ authority: TransactionSigner<TAccountAuthority>;
1117
+ systemProgram?: Address<TAccountSystemProgram>;
1118
+ whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1119
+ rpId: CreateDomainConfigInstructionDataArgs["rpId"];
1120
+ origins: CreateDomainConfigInstructionDataArgs["origins"];
1121
+ metadataUrl: CreateDomainConfigInstructionDataArgs["metadataUrl"];
1122
+ authorityCreationArgs: CreateDomainConfigInstructionDataArgs["authorityCreationArgs"];
1123
+ compressedProofArgs: CreateDomainConfigInstructionDataArgs["compressedProofArgs"];
1124
+ remainingAccounts: CreateDomainConfigInstructionExtraArgs["remainingAccounts"];
1125
+ };
1126
+ declare function getCreateDomainConfigInstructionAsync<TAccountDomainConfig extends string, TAccountPayer extends string, TAccountAuthority extends string, TAccountSystemProgram extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateDomainConfigAsyncInput<TAccountDomainConfig, TAccountPayer, TAccountAuthority, TAccountSystemProgram, TAccountWhitelistedAddressTrees>, config?: {
1127
+ programAddress?: TProgramAddress;
1128
+ }): Promise<CreateDomainConfigInstruction<TProgramAddress, TAccountDomainConfig, TAccountPayer, TAccountAuthority, TAccountSystemProgram, TAccountWhitelistedAddressTrees>>;
1129
+ type CreateDomainConfigInput<TAccountDomainConfig extends string = string, TAccountPayer extends string = string, TAccountAuthority extends string = string, TAccountSystemProgram extends string = string, TAccountWhitelistedAddressTrees extends string = string> = {
1088
1130
  domainConfig: Address<TAccountDomainConfig>;
1089
1131
  payer: TransactionSigner<TAccountPayer>;
1132
+ authority: TransactionSigner<TAccountAuthority>;
1090
1133
  systemProgram?: Address<TAccountSystemProgram>;
1091
- adminDomainConfig?: Address<TAccountAdminDomainConfig>;
1134
+ whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
1092
1135
  rpId: CreateDomainConfigInstructionDataArgs["rpId"];
1093
1136
  origins: CreateDomainConfigInstructionDataArgs["origins"];
1094
- authority: CreateDomainConfigInstructionDataArgs["authority"];
1095
1137
  metadataUrl: CreateDomainConfigInstructionDataArgs["metadataUrl"];
1138
+ authorityCreationArgs: CreateDomainConfigInstructionDataArgs["authorityCreationArgs"];
1139
+ compressedProofArgs: CreateDomainConfigInstructionDataArgs["compressedProofArgs"];
1096
1140
  remainingAccounts: CreateDomainConfigInstructionExtraArgs["remainingAccounts"];
1097
1141
  };
1098
- declare function getCreateDomainConfigInstruction<TAccountDomainConfig extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TAccountAdminDomainConfig extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateDomainConfigInput<TAccountDomainConfig, TAccountPayer, TAccountSystemProgram, TAccountAdminDomainConfig>, config?: {
1142
+ declare function getCreateDomainConfigInstruction<TAccountDomainConfig extends string, TAccountPayer extends string, TAccountAuthority extends string, TAccountSystemProgram extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateDomainConfigInput<TAccountDomainConfig, TAccountPayer, TAccountAuthority, TAccountSystemProgram, TAccountWhitelistedAddressTrees>, config?: {
1099
1143
  programAddress?: TProgramAddress;
1100
- }): CreateDomainConfigInstruction<TProgramAddress, TAccountDomainConfig, TAccountPayer, TAccountSystemProgram, TAccountAdminDomainConfig>;
1144
+ }): CreateDomainConfigInstruction<TProgramAddress, TAccountDomainConfig, TAccountPayer, TAccountAuthority, TAccountSystemProgram, TAccountWhitelistedAddressTrees>;
1101
1145
  type ParsedCreateDomainConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
1102
1146
  programAddress: Address<TProgram>;
1103
1147
  accounts: {
1104
1148
  domainConfig: TAccountMetas[0];
1105
1149
  payer: TAccountMetas[1];
1106
- systemProgram: TAccountMetas[2];
1107
- adminDomainConfig?: TAccountMetas[3] | undefined;
1150
+ authority: TAccountMetas[2];
1151
+ systemProgram: TAccountMetas[3];
1152
+ whitelistedAddressTrees: TAccountMetas[4];
1108
1153
  };
1109
1154
  data: CreateDomainConfigInstructionData;
1110
1155
  };
@@ -1123,14 +1168,14 @@ type CreateDomainUserAccountInstructionData = {
1123
1168
  discriminator: ReadonlyUint8Array;
1124
1169
  compressedProofArgs: ProofArgs;
1125
1170
  member: Secp256r1Pubkey;
1126
- isPermanentMember: boolean;
1171
+ role: UserRole;
1127
1172
  userAccountCreationArgs: UserCreationArgs$2;
1128
1173
  linkWalletArgs: Option<LinkWalletArgs>;
1129
1174
  };
1130
1175
  type CreateDomainUserAccountInstructionDataArgs = {
1131
1176
  compressedProofArgs: ProofArgsArgs;
1132
1177
  member: Secp256r1PubkeyArgs;
1133
- isPermanentMember: boolean;
1178
+ role: UserRoleArgs;
1134
1179
  userAccountCreationArgs: UserCreationArgsArgs;
1135
1180
  linkWalletArgs: OptionOrNullable<LinkWalletArgsArgs>;
1136
1181
  };
@@ -1150,7 +1195,7 @@ type CreateDomainUserAccountAsyncInput<TAccountPayer extends string = string, TA
1150
1195
  whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1151
1196
  compressedProofArgs: CreateDomainUserAccountInstructionDataArgs["compressedProofArgs"];
1152
1197
  member: CreateDomainUserAccountInstructionDataArgs["member"];
1153
- isPermanentMember: CreateDomainUserAccountInstructionDataArgs["isPermanentMember"];
1198
+ role: CreateDomainUserAccountInstructionDataArgs["role"];
1154
1199
  userAccountCreationArgs: CreateDomainUserAccountInstructionDataArgs["userAccountCreationArgs"];
1155
1200
  linkWalletArgs: CreateDomainUserAccountInstructionDataArgs["linkWalletArgs"];
1156
1201
  remainingAccounts: CreateDomainUserAccountInstructionExtraArgs["remainingAccounts"];
@@ -1165,7 +1210,7 @@ type CreateDomainUserAccountInput<TAccountPayer extends string = string, TAccoun
1165
1210
  whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
1166
1211
  compressedProofArgs: CreateDomainUserAccountInstructionDataArgs["compressedProofArgs"];
1167
1212
  member: CreateDomainUserAccountInstructionDataArgs["member"];
1168
- isPermanentMember: CreateDomainUserAccountInstructionDataArgs["isPermanentMember"];
1213
+ role: CreateDomainUserAccountInstructionDataArgs["role"];
1169
1214
  userAccountCreationArgs: CreateDomainUserAccountInstructionDataArgs["userAccountCreationArgs"];
1170
1215
  linkWalletArgs: CreateDomainUserAccountInstructionDataArgs["linkWalletArgs"];
1171
1216
  remainingAccounts: CreateDomainUserAccountInstructionExtraArgs["remainingAccounts"];
@@ -1255,7 +1300,7 @@ type CreateMultiWalletCompressedInstructionData = {
1255
1300
  settingsCreation: SettingsCreationArgs;
1256
1301
  userMutArgs: UserMutArgs;
1257
1302
  settingsIndex: bigint;
1258
- setAsDelegate: boolean;
1303
+ delegateOperation: DelegateOp;
1259
1304
  };
1260
1305
  type CreateMultiWalletCompressedInstructionDataArgs = {
1261
1306
  secp256r1VerifyArgs: OptionOrNullable<Secp256r1VerifyArgsArgs>;
@@ -1263,7 +1308,7 @@ type CreateMultiWalletCompressedInstructionDataArgs = {
1263
1308
  settingsCreation: SettingsCreationArgsArgs;
1264
1309
  userMutArgs: UserMutArgsArgs;
1265
1310
  settingsIndex: number | bigint;
1266
- setAsDelegate: boolean;
1311
+ delegateOperation: DelegateOpArgs;
1267
1312
  };
1268
1313
  declare function getCreateMultiWalletCompressedInstructionDataEncoder(): Encoder<CreateMultiWalletCompressedInstructionDataArgs>;
1269
1314
  declare function getCreateMultiWalletCompressedInstructionDataDecoder(): Decoder<CreateMultiWalletCompressedInstructionData>;
@@ -1281,14 +1326,14 @@ type CreateMultiWalletCompressedAsyncInput<TAccountPayer extends string = string
1281
1326
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
1282
1327
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
1283
1328
  domainConfig?: Address<TAccountDomainConfig>;
1284
- globalCounter: Address<TAccountGlobalCounter>;
1329
+ globalCounter?: Address<TAccountGlobalCounter>;
1285
1330
  whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1286
1331
  secp256r1VerifyArgs: CreateMultiWalletCompressedInstructionDataArgs["secp256r1VerifyArgs"];
1287
1332
  compressedProofArgs: CreateMultiWalletCompressedInstructionDataArgs["compressedProofArgs"];
1288
1333
  settingsCreation: CreateMultiWalletCompressedInstructionDataArgs["settingsCreation"];
1289
1334
  userMutArgs: CreateMultiWalletCompressedInstructionDataArgs["userMutArgs"];
1290
1335
  settingsIndex: CreateMultiWalletCompressedInstructionDataArgs["settingsIndex"];
1291
- setAsDelegate: CreateMultiWalletCompressedInstructionDataArgs["setAsDelegate"];
1336
+ delegateOperation: CreateMultiWalletCompressedInstructionDataArgs["delegateOperation"];
1292
1337
  remainingAccounts: CreateMultiWalletCompressedInstructionExtraArgs["remainingAccounts"];
1293
1338
  };
1294
1339
  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?: {
@@ -1308,7 +1353,7 @@ type CreateMultiWalletCompressedInput<TAccountPayer extends string = string, TAc
1308
1353
  settingsCreation: CreateMultiWalletCompressedInstructionDataArgs["settingsCreation"];
1309
1354
  userMutArgs: CreateMultiWalletCompressedInstructionDataArgs["userMutArgs"];
1310
1355
  settingsIndex: CreateMultiWalletCompressedInstructionDataArgs["settingsIndex"];
1311
- setAsDelegate: CreateMultiWalletCompressedInstructionDataArgs["setAsDelegate"];
1356
+ delegateOperation: CreateMultiWalletCompressedInstructionDataArgs["delegateOperation"];
1312
1357
  remainingAccounts: CreateMultiWalletCompressedInstructionExtraArgs["remainingAccounts"];
1313
1358
  };
1314
1359
  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?: {
@@ -1448,10 +1493,9 @@ declare function parseDecompressSettingsAccountInstruction<TProgram extends stri
1448
1493
 
1449
1494
  declare const DISABLE_DOMAIN_CONFIG_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1450
1495
  declare function getDisableDomainConfigDiscriminatorBytes(): ReadonlyUint8Array;
1451
- type DisableDomainConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountAdmin extends string | AccountMeta<string> = string, TAccountAdminDomainConfig extends string | AccountMeta<string> = "5tgzUZaVtfnnSEBgmBDtJj6PdgYCnA1uaEGEUi3y5Njg", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1496
+ type DisableDomainConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountAdmin extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1452
1497
  TAccountDomainConfig extends string ? WritableAccount<TAccountDomainConfig> : TAccountDomainConfig,
1453
1498
  TAccountAdmin extends string ? ReadonlySignerAccount<TAccountAdmin> & AccountSignerMeta<TAccountAdmin> : TAccountAdmin,
1454
- TAccountAdminDomainConfig extends string ? ReadonlyAccount<TAccountAdminDomainConfig> : TAccountAdminDomainConfig,
1455
1499
  ...TRemainingAccounts
1456
1500
  ]>;
1457
1501
  type DisableDomainConfigInstructionData = {
@@ -1470,22 +1514,20 @@ type DisableDomainConfigInstructionExtraArgs = {
1470
1514
  role: number;
1471
1515
  }>;
1472
1516
  };
1473
- type DisableDomainConfigInput<TAccountDomainConfig extends string = string, TAccountAdmin extends string = string, TAccountAdminDomainConfig extends string = string> = {
1517
+ type DisableDomainConfigInput<TAccountDomainConfig extends string = string, TAccountAdmin extends string = string> = {
1474
1518
  domainConfig: Address<TAccountDomainConfig>;
1475
1519
  admin: TransactionSigner<TAccountAdmin>;
1476
- adminDomainConfig?: Address<TAccountAdminDomainConfig>;
1477
1520
  disable: DisableDomainConfigInstructionDataArgs["disable"];
1478
1521
  remainingAccounts: DisableDomainConfigInstructionExtraArgs["remainingAccounts"];
1479
1522
  };
1480
- declare function getDisableDomainConfigInstruction<TAccountDomainConfig extends string, TAccountAdmin extends string, TAccountAdminDomainConfig extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: DisableDomainConfigInput<TAccountDomainConfig, TAccountAdmin, TAccountAdminDomainConfig>, config?: {
1523
+ declare function getDisableDomainConfigInstruction<TAccountDomainConfig extends string, TAccountAdmin extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: DisableDomainConfigInput<TAccountDomainConfig, TAccountAdmin>, config?: {
1481
1524
  programAddress?: TProgramAddress;
1482
- }): DisableDomainConfigInstruction<TProgramAddress, TAccountDomainConfig, TAccountAdmin, TAccountAdminDomainConfig>;
1525
+ }): DisableDomainConfigInstruction<TProgramAddress, TAccountDomainConfig, TAccountAdmin>;
1483
1526
  type ParsedDisableDomainConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
1484
1527
  programAddress: Address<TProgram>;
1485
1528
  accounts: {
1486
1529
  domainConfig: TAccountMetas[0];
1487
1530
  admin: TAccountMetas[1];
1488
- adminDomainConfig: TAccountMetas[2];
1489
1531
  };
1490
1532
  data: DisableDomainConfigInstructionData;
1491
1533
  };
@@ -1493,21 +1535,23 @@ declare function parseDisableDomainConfigInstruction<TProgram extends string, TA
1493
1535
 
1494
1536
  declare const EDIT_DOMAIN_CONFIG_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1495
1537
  declare function getEditDomainConfigDiscriminatorBytes(): ReadonlyUint8Array;
1496
- type EditDomainConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountAuthority extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1538
+ type EditDomainConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountAuthority extends string | AccountMeta<string> = string, TAccountNewAuthority extends string | AccountMeta<string> = string, TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1497
1539
  TAccountDomainConfig extends string ? WritableAccount<TAccountDomainConfig> : TAccountDomainConfig,
1498
- TAccountAuthority extends string ? ReadonlySignerAccount<TAccountAuthority> & AccountSignerMeta<TAccountAuthority> : TAccountAuthority,
1540
+ TAccountAuthority extends string ? WritableSignerAccount<TAccountAuthority> & AccountSignerMeta<TAccountAuthority> : TAccountAuthority,
1541
+ TAccountNewAuthority extends string ? ReadonlySignerAccount<TAccountNewAuthority> & AccountSignerMeta<TAccountNewAuthority> : TAccountNewAuthority,
1542
+ TAccountWhitelistedAddressTrees extends string ? ReadonlyAccount<TAccountWhitelistedAddressTrees> : TAccountWhitelistedAddressTrees,
1499
1543
  TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
1500
1544
  ...TRemainingAccounts
1501
1545
  ]>;
1502
1546
  type EditDomainConfigInstructionData = {
1503
1547
  discriminator: ReadonlyUint8Array;
1504
1548
  newOrigins: Option<Array<string>>;
1505
- newAuthority: Option<Address>;
1549
+ newAuthorityArgs: Option<NewAuthorityArgs>;
1506
1550
  newMetadataUrl: Option<string>;
1507
1551
  };
1508
1552
  type EditDomainConfigInstructionDataArgs = {
1509
1553
  newOrigins: OptionOrNullable<Array<string>>;
1510
- newAuthority: OptionOrNullable<Address>;
1554
+ newAuthorityArgs: OptionOrNullable<NewAuthorityArgsArgs>;
1511
1555
  newMetadataUrl: OptionOrNullable<string>;
1512
1556
  };
1513
1557
  declare function getEditDomainConfigInstructionDataEncoder(): Encoder<EditDomainConfigInstructionDataArgs>;
@@ -1519,24 +1563,42 @@ type EditDomainConfigInstructionExtraArgs = {
1519
1563
  role: number;
1520
1564
  }>;
1521
1565
  };
1522
- type EditDomainConfigInput<TAccountDomainConfig extends string = string, TAccountAuthority extends string = string, TAccountSystemProgram extends string = string> = {
1566
+ type EditDomainConfigAsyncInput<TAccountDomainConfig extends string = string, TAccountAuthority extends string = string, TAccountNewAuthority extends string = string, TAccountWhitelistedAddressTrees extends string = string, TAccountSystemProgram extends string = string> = {
1523
1567
  domainConfig: Address<TAccountDomainConfig>;
1524
1568
  authority: TransactionSigner<TAccountAuthority>;
1569
+ newAuthority?: TransactionSigner<TAccountNewAuthority>;
1570
+ whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1525
1571
  systemProgram?: Address<TAccountSystemProgram>;
1526
1572
  newOrigins: EditDomainConfigInstructionDataArgs["newOrigins"];
1527
- newAuthority: EditDomainConfigInstructionDataArgs["newAuthority"];
1573
+ newAuthorityArgs: EditDomainConfigInstructionDataArgs["newAuthorityArgs"];
1528
1574
  newMetadataUrl: EditDomainConfigInstructionDataArgs["newMetadataUrl"];
1529
1575
  remainingAccounts: EditDomainConfigInstructionExtraArgs["remainingAccounts"];
1530
1576
  };
1531
- declare function getEditDomainConfigInstruction<TAccountDomainConfig extends string, TAccountAuthority extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: EditDomainConfigInput<TAccountDomainConfig, TAccountAuthority, TAccountSystemProgram>, config?: {
1577
+ declare function getEditDomainConfigInstructionAsync<TAccountDomainConfig extends string, TAccountAuthority extends string, TAccountNewAuthority extends string, TAccountWhitelistedAddressTrees extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: EditDomainConfigAsyncInput<TAccountDomainConfig, TAccountAuthority, TAccountNewAuthority, TAccountWhitelistedAddressTrees, TAccountSystemProgram>, config?: {
1532
1578
  programAddress?: TProgramAddress;
1533
- }): EditDomainConfigInstruction<TProgramAddress, TAccountDomainConfig, TAccountAuthority, TAccountSystemProgram>;
1579
+ }): Promise<EditDomainConfigInstruction<TProgramAddress, TAccountDomainConfig, TAccountAuthority, TAccountNewAuthority, TAccountWhitelistedAddressTrees, TAccountSystemProgram>>;
1580
+ type EditDomainConfigInput<TAccountDomainConfig extends string = string, TAccountAuthority extends string = string, TAccountNewAuthority extends string = string, TAccountWhitelistedAddressTrees extends string = string, TAccountSystemProgram extends string = string> = {
1581
+ domainConfig: Address<TAccountDomainConfig>;
1582
+ authority: TransactionSigner<TAccountAuthority>;
1583
+ newAuthority?: TransactionSigner<TAccountNewAuthority>;
1584
+ whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1585
+ systemProgram?: Address<TAccountSystemProgram>;
1586
+ newOrigins: EditDomainConfigInstructionDataArgs["newOrigins"];
1587
+ newAuthorityArgs: EditDomainConfigInstructionDataArgs["newAuthorityArgs"];
1588
+ newMetadataUrl: EditDomainConfigInstructionDataArgs["newMetadataUrl"];
1589
+ remainingAccounts: EditDomainConfigInstructionExtraArgs["remainingAccounts"];
1590
+ };
1591
+ declare function getEditDomainConfigInstruction<TAccountDomainConfig extends string, TAccountAuthority extends string, TAccountNewAuthority extends string, TAccountWhitelistedAddressTrees extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: EditDomainConfigInput<TAccountDomainConfig, TAccountAuthority, TAccountNewAuthority, TAccountWhitelistedAddressTrees, TAccountSystemProgram>, config?: {
1592
+ programAddress?: TProgramAddress;
1593
+ }): EditDomainConfigInstruction<TProgramAddress, TAccountDomainConfig, TAccountAuthority, TAccountNewAuthority, TAccountWhitelistedAddressTrees, TAccountSystemProgram>;
1534
1594
  type ParsedEditDomainConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
1535
1595
  programAddress: Address<TProgram>;
1536
1596
  accounts: {
1537
1597
  domainConfig: TAccountMetas[0];
1538
1598
  authority: TAccountMetas[1];
1539
- systemProgram: TAccountMetas[2];
1599
+ newAuthority?: TAccountMetas[2] | undefined;
1600
+ whitelistedAddressTrees?: TAccountMetas[3] | undefined;
1601
+ systemProgram: TAccountMetas[4];
1540
1602
  };
1541
1603
  data: EditDomainConfigInstructionData;
1542
1604
  };
@@ -1589,9 +1651,8 @@ declare function parseEditTransactionManagerUrlInstruction<TProgram extends stri
1589
1651
 
1590
1652
  declare const MIGRATE_COMPRESSED_SETTINGS_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1591
1653
  declare function getMigrateCompressedSettingsDiscriminatorBytes(): ReadonlyUint8Array;
1592
- type MigrateCompressedSettingsInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountAuthority extends string | AccountMeta<string> = string, TAccountAdminDomainConfig extends string | AccountMeta<string> = "5tgzUZaVtfnnSEBgmBDtJj6PdgYCnA1uaEGEUi3y5Njg", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1654
+ type MigrateCompressedSettingsInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountAuthority extends string | AccountMeta<string> = "AMn21jT5RMZrv5hSvtkrWCMJFp3cUyeAx4AxKvF59xJZ", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1593
1655
  TAccountAuthority extends string ? WritableSignerAccount<TAccountAuthority> & AccountSignerMeta<TAccountAuthority> : TAccountAuthority,
1594
- TAccountAdminDomainConfig extends string ? ReadonlyAccount<TAccountAdminDomainConfig> : TAccountAdminDomainConfig,
1595
1656
  ...TRemainingAccounts
1596
1657
  ]>;
1597
1658
  type MigrateCompressedSettingsInstructionData = {
@@ -1614,22 +1675,20 @@ type MigrateCompressedSettingsInstructionExtraArgs = {
1614
1675
  role: number;
1615
1676
  }>;
1616
1677
  };
1617
- type MigrateCompressedSettingsInput<TAccountAuthority extends string = string, TAccountAdminDomainConfig extends string = string> = {
1618
- authority: TransactionSigner<TAccountAuthority>;
1619
- adminDomainConfig?: Address<TAccountAdminDomainConfig>;
1678
+ type MigrateCompressedSettingsInput<TAccountAuthority extends string = string> = {
1679
+ authority?: TransactionSigner<TAccountAuthority>;
1620
1680
  args: MigrateCompressedSettingsInstructionDataArgs["args"];
1621
1681
  compressedProofArgs: MigrateCompressedSettingsInstructionDataArgs["compressedProofArgs"];
1622
1682
  settingsCreationArgs: MigrateCompressedSettingsInstructionDataArgs["settingsCreationArgs"];
1623
1683
  remainingAccounts: MigrateCompressedSettingsInstructionExtraArgs["remainingAccounts"];
1624
1684
  };
1625
- declare function getMigrateCompressedSettingsInstruction<TAccountAuthority extends string, TAccountAdminDomainConfig extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: MigrateCompressedSettingsInput<TAccountAuthority, TAccountAdminDomainConfig>, config?: {
1685
+ declare function getMigrateCompressedSettingsInstruction<TAccountAuthority extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: MigrateCompressedSettingsInput<TAccountAuthority>, config?: {
1626
1686
  programAddress?: TProgramAddress;
1627
- }): MigrateCompressedSettingsInstruction<TProgramAddress, TAccountAuthority, TAccountAdminDomainConfig>;
1687
+ }): MigrateCompressedSettingsInstruction<TProgramAddress, TAccountAuthority>;
1628
1688
  type ParsedMigrateCompressedSettingsInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
1629
1689
  programAddress: Address<TProgram>;
1630
1690
  accounts: {
1631
1691
  authority: TAccountMetas[0];
1632
- adminDomainConfig: TAccountMetas[1];
1633
1692
  };
1634
1693
  data: MigrateCompressedSettingsInstructionData;
1635
1694
  };
@@ -1637,9 +1696,8 @@ declare function parseMigrateCompressedSettingsInstruction<TProgram extends stri
1637
1696
 
1638
1697
  declare const MIGRATE_COMPRESSED_USERS_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1639
1698
  declare function getMigrateCompressedUsersDiscriminatorBytes(): ReadonlyUint8Array;
1640
- type MigrateCompressedUsersInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountAuthority extends string | AccountMeta<string> = string, TAccountAdminDomainConfig extends string | AccountMeta<string> = "5tgzUZaVtfnnSEBgmBDtJj6PdgYCnA1uaEGEUi3y5Njg", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1699
+ type MigrateCompressedUsersInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountAuthority extends string | AccountMeta<string> = "AMn21jT5RMZrv5hSvtkrWCMJFp3cUyeAx4AxKvF59xJZ", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1641
1700
  TAccountAuthority extends string ? WritableSignerAccount<TAccountAuthority> & AccountSignerMeta<TAccountAuthority> : TAccountAuthority,
1642
- TAccountAdminDomainConfig extends string ? ReadonlyAccount<TAccountAdminDomainConfig> : TAccountAdminDomainConfig,
1643
1701
  ...TRemainingAccounts
1644
1702
  ]>;
1645
1703
  type MigrateCompressedUsersInstructionData = {
@@ -1662,22 +1720,20 @@ type MigrateCompressedUsersInstructionExtraArgs = {
1662
1720
  role: number;
1663
1721
  }>;
1664
1722
  };
1665
- type MigrateCompressedUsersInput<TAccountAuthority extends string = string, TAccountAdminDomainConfig extends string = string> = {
1666
- authority: TransactionSigner<TAccountAuthority>;
1667
- adminDomainConfig?: Address<TAccountAdminDomainConfig>;
1723
+ type MigrateCompressedUsersInput<TAccountAuthority extends string = string> = {
1724
+ authority?: TransactionSigner<TAccountAuthority>;
1668
1725
  args: MigrateCompressedUsersInstructionDataArgs["args"];
1669
1726
  compressedProofArgs: MigrateCompressedUsersInstructionDataArgs["compressedProofArgs"];
1670
1727
  userCreationArgs: MigrateCompressedUsersInstructionDataArgs["userCreationArgs"];
1671
1728
  remainingAccounts: MigrateCompressedUsersInstructionExtraArgs["remainingAccounts"];
1672
1729
  };
1673
- declare function getMigrateCompressedUsersInstruction<TAccountAuthority extends string, TAccountAdminDomainConfig extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: MigrateCompressedUsersInput<TAccountAuthority, TAccountAdminDomainConfig>, config?: {
1730
+ declare function getMigrateCompressedUsersInstruction<TAccountAuthority extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: MigrateCompressedUsersInput<TAccountAuthority>, config?: {
1674
1731
  programAddress?: TProgramAddress;
1675
- }): MigrateCompressedUsersInstruction<TProgramAddress, TAccountAuthority, TAccountAdminDomainConfig>;
1732
+ }): MigrateCompressedUsersInstruction<TProgramAddress, TAccountAuthority>;
1676
1733
  type ParsedMigrateCompressedUsersInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
1677
1734
  programAddress: Address<TProgram>;
1678
1735
  accounts: {
1679
1736
  authority: TAccountMetas[0];
1680
- adminDomainConfig: TAccountMetas[1];
1681
1737
  };
1682
1738
  data: MigrateCompressedUsersInstructionData;
1683
1739
  };
@@ -2765,47 +2821,35 @@ type PermissionArgs = {
2765
2821
  execute: boolean;
2766
2822
  };
2767
2823
  type AddMemberArgs = {
2768
- setAsDelegate: true;
2769
- account: {
2770
- member: TransactionSigner | SignedSecp256r1Key;
2771
- userAddressTreeIndex: number;
2772
- };
2824
+ member: TransactionSigner | SignedSecp256r1Key;
2825
+ userAddressTreeIndex?: number;
2773
2826
  permissions: PermissionArgs;
2774
- isTransactionManager: false;
2775
- } | {
2776
- setAsDelegate: false;
2777
- account: {
2778
- member: Address;
2779
- userAddressTreeIndex: number;
2780
- };
2781
- permissions: {
2782
- initiate: true;
2783
- vote: false;
2784
- execute: false;
2785
- };
2786
- isTransactionManager: true;
2827
+ delegateOperation: DelegateOp.Add;
2787
2828
  } | {
2788
- setAsDelegate: false;
2789
- account: {
2790
- member: Address | SignedSecp256r1Key;
2791
- userAddressTreeIndex: number;
2792
- };
2829
+ member: Address | SignedSecp256r1Key;
2830
+ userAddressTreeIndex?: number;
2793
2831
  permissions: PermissionArgs;
2794
- isTransactionManager: false;
2832
+ delegateOperation: DelegateOp.Ignore;
2833
+ };
2834
+ type EditMemberArgs = {
2835
+ member: Address | Secp256r1Key;
2836
+ userAddressTreeIndex?: number;
2837
+ permissions: PermissionArgs;
2838
+ delegateOperation: DelegateOpArgs;
2839
+ };
2840
+ type RemoveMemberArgs = {
2841
+ member: Address | Secp256r1Key;
2842
+ userAddressTreeIndex?: number;
2795
2843
  };
2796
2844
  type ConfigurationArgs = {
2797
2845
  type: "EditPermissions";
2798
- members: {
2799
- account: UserAccountWithAddressArgs;
2800
- permissions: PermissionArgs;
2801
- delegateOperation: DelegateOpArgs;
2802
- }[];
2846
+ members: EditMemberArgs[];
2803
2847
  } | {
2804
2848
  type: "AddMembers";
2805
2849
  members: AddMemberArgs[];
2806
2850
  } | {
2807
2851
  type: "RemoveMembers";
2808
- members: UserAccountWithAddressArgs[];
2852
+ members: RemoveMemberArgs[];
2809
2853
  } | {
2810
2854
  type: "SetThreshold";
2811
2855
  threshold: number;
@@ -2863,20 +2907,16 @@ declare class SignedSecp256r1Key extends Secp256r1Key {
2863
2907
 
2864
2908
  type TransactionAuthenticationResponse = {
2865
2909
  authResponse: AuthenticationResponseJSON;
2866
- signer: {
2867
- member: Secp256r1Key;
2868
- userAddressTreeIndex: number;
2869
- };
2910
+ signer: Secp256r1Key;
2911
+ userAddressTreeIndex?: number;
2870
2912
  slotNumber: string;
2871
2913
  slotHash: string;
2872
2914
  additionalInfo?: any;
2873
2915
  };
2874
2916
  type MessageAuthenticationResponse = {
2875
2917
  authResponse: AuthenticationResponseJSON;
2876
- signer: {
2877
- member: Secp256r1Key;
2878
- userAddressTreeIndex: number;
2879
- };
2918
+ signer: Secp256r1Key;
2919
+ userAddressTreeIndex?: number;
2880
2920
  additionalInfo?: any;
2881
2921
  };
2882
2922
  type TransactionActionType = "create" | "create_with_preauthorized_execution" | "execute" | "vote" | "sync" | "close" | "add_new_member" | "compress" | "decompress" | "transfer_intent";
@@ -2898,8 +2938,6 @@ declare const Permission: {
2898
2938
  readonly VoteTransaction: number;
2899
2939
  readonly ExecuteTransaction: number;
2900
2940
  };
2901
- declare const PermanentMemberPermission: IPermission;
2902
- declare const TransactionManagerPermission: IPermission;
2903
2941
  type IPermission = (typeof Permission)[keyof typeof Permission];
2904
2942
  declare class Permissions implements IPermissions {
2905
2943
  readonly mask: number;
@@ -2915,11 +2953,6 @@ type TransactionDetails = {
2915
2953
  addressesByLookupTableAddress?: AddressesByLookupTableAddress;
2916
2954
  };
2917
2955
 
2918
- type UserAccountWithAddressArgs = {
2919
- member: Address | Secp256r1Key;
2920
- userAddressTreeIndex: number;
2921
- };
2922
-
2923
2956
  declare function vaultTransactionMessageSerialize(compiledMessage: CompiledTransactionMessage): ReadonlyUint8Array;
2924
2957
  declare function vaultTransactionMessageDeserialize(transactionMessageBytes: ReadonlyUint8Array): CompiledTransactionMessage;
2925
2958
 
@@ -2966,8 +2999,9 @@ type ParsedSecp256r1VerifyInstruction<TProgram extends string = typeof SECP256R1
2966
2999
  };
2967
3000
  declare function parseSecp256r1VerifyInstruction<TProgram extends string>(instruction: Instruction<TProgram> & InstructionWithData<Uint8Array>): ParsedSecp256r1VerifyInstruction<TProgram>;
2968
3001
 
2969
- declare function changeConfig({ settingsIndexWithAddressArgs, configActionsArgs, payer, compressed, cachedAccounts, }: {
2970
- settingsIndexWithAddressArgs: SettingsIndexWithAddressArgs;
3002
+ declare function changeConfig({ index, settingsAddressTreeIndex, configActionsArgs, payer, compressed, cachedAccounts, }: {
3003
+ index: number | bigint;
3004
+ settingsAddressTreeIndex?: number;
2971
3005
  configActionsArgs: ConfigurationArgs[];
2972
3006
  payer: TransactionSigner;
2973
3007
  compressed?: boolean;
@@ -2977,8 +3011,9 @@ declare function changeConfig({ settingsIndexWithAddressArgs, configActionsArgs,
2977
3011
  secp256r1VerifyInput: Secp256r1VerifyInput;
2978
3012
  }>;
2979
3013
 
2980
- declare function compressSettingsAccount({ settingsIndexWithAddressArgs, payer, signers, cachedAccounts, }: {
2981
- settingsIndexWithAddressArgs: SettingsIndexWithAddressArgs;
3014
+ declare function compressSettingsAccount({ index, settingsAddressTreeIndex, payer, signers, cachedAccounts, }: {
3015
+ index: number | bigint;
3016
+ settingsAddressTreeIndex?: number;
2982
3017
  payer: TransactionSigner;
2983
3018
  signers: (SignedSecp256r1Key | TransactionSigner)[];
2984
3019
  cachedAccounts?: Map<string, any>;
@@ -2987,24 +3022,24 @@ declare function compressSettingsAccount({ settingsIndexWithAddressArgs, payer,
2987
3022
  declare function addWhitelistedAddressTrees({ admin, addressTree, }: {
2988
3023
  admin: TransactionSigner;
2989
3024
  addressTree: Address;
2990
- }): Promise<AddWhitelistedAddressTreesInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, []>>;
3025
+ }): Promise<AddWhitelistedAddressTreesInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, []>>;
2991
3026
 
2992
- declare function createDomainConfig({ payer, rpId, origins, authority, metadataUrl, adminDomainConfig, }: {
3027
+ declare function createDomainConfig({ payer, rpId, origins, authority, metadataUrl, }: {
2993
3028
  metadataUrl: string;
2994
3029
  payer: TransactionSigner;
2995
3030
  rpId: string;
2996
3031
  origins: string[];
2997
- authority: Address;
2998
- adminDomainConfig?: Address;
2999
- }): Promise<CreateDomainConfigInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, []>>;
3032
+ authority: TransactionSigner;
3033
+ }): Promise<CreateDomainConfigInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, string, []>>;
3000
3034
 
3001
3035
  interface UserCreationArgs$1 {
3002
3036
  member: Secp256r1Key;
3003
- isPermanentMember: boolean;
3004
- settingsIndexWithAddressArgs?: SettingsIndexWithAddressArgs;
3037
+ role: UserRole.Member | UserRole.PermanentMember;
3038
+ index?: number | bigint;
3039
+ settingsAddressTreeIndex?: number;
3005
3040
  transactionManager?: {
3006
3041
  member: Address;
3007
- userAddressTreeIndex: number;
3042
+ userAddressTreeIndex?: number;
3008
3043
  };
3009
3044
  }
3010
3045
  declare function createDomainUserAccounts({ authority, payer, createUserArgs, domainConfig, cachedAccounts, }: {
@@ -3013,10 +3048,7 @@ declare function createDomainUserAccounts({ authority, payer, createUserArgs, do
3013
3048
  payer: TransactionSigner;
3014
3049
  createUserArgs: UserCreationArgs$1;
3015
3050
  cachedAccounts?: Map<string, any>;
3016
- }): Promise<{
3017
- instruction: CreateDomainUserAccountInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, []>;
3018
- userAddressTreeIndex: number;
3019
- }>;
3051
+ }): Promise<CreateDomainUserAccountInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, []>>;
3020
3052
 
3021
3053
  declare function createGlobalCounter({ payer, }: {
3022
3054
  payer: TransactionSigner;
@@ -3024,38 +3056,34 @@ declare function createGlobalCounter({ payer, }: {
3024
3056
 
3025
3057
  type UserCreationArgs = {
3026
3058
  member: TransactionSigner;
3027
- isPermanentMember: true;
3028
- transactionManagerUrl: undefined;
3059
+ role: UserRole.TransactionManager;
3060
+ transactionManagerUrl: string;
3029
3061
  } | {
3030
3062
  member: TransactionSigner;
3031
- isPermanentMember: false;
3032
- transactionManagerUrl?: string;
3063
+ role: UserRole.Member | UserRole.PermanentMember;
3033
3064
  };
3034
3065
  declare function createUserAccounts({ createUserArgs, payer, }: {
3035
3066
  payer: TransactionSigner;
3036
3067
  createUserArgs: UserCreationArgs[];
3037
- }): Promise<{
3038
- instruction: CreateUserAccountsInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, []>;
3039
- userAddressTreeIndex: number;
3040
- }>;
3068
+ }): Promise<CreateUserAccountsInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, []>>;
3041
3069
 
3042
3070
  declare function disableDomainConfig({ admin, rpId, disable, }: {
3043
3071
  admin: TransactionSigner;
3044
3072
  disable: boolean;
3045
3073
  rpId: string;
3046
- }): Promise<DisableDomainConfigInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, []>>;
3074
+ }): Promise<DisableDomainConfigInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, []>>;
3047
3075
 
3048
3076
  declare function editDomainConfig({ authority, domainConfig, newAuthority, newOrigins, newMetadataUrl, }: {
3049
3077
  domainConfig: Address;
3050
3078
  authority: TransactionSigner;
3051
- newAuthority?: Address;
3079
+ newAuthority?: TransactionSigner;
3052
3080
  newOrigins?: string[];
3053
3081
  newMetadataUrl?: string;
3054
- }): Promise<EditDomainConfigInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, []>>;
3082
+ }): Promise<EditDomainConfigInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, string, []>>;
3055
3083
 
3056
3084
  declare function editTransactionManagerUrl({ authority, userAddressTreeIndex, transactionManagerUrl, }: {
3057
3085
  authority: TransactionSigner;
3058
- userAddressTreeIndex: number;
3086
+ userAddressTreeIndex?: number;
3059
3087
  transactionManagerUrl: string;
3060
3088
  }): Promise<EditTransactionManagerUrlInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, []>>;
3061
3089
 
@@ -3063,20 +3091,18 @@ type CreateWalletArgs = {
3063
3091
  index: number | bigint;
3064
3092
  payer: TransactionSigner;
3065
3093
  cachedAccounts?: Map<string, any>;
3066
- initialMember: {
3067
- member: TransactionSigner | SignedSecp256r1Key;
3068
- userAddressTreeIndex: number;
3069
- };
3070
- setAsDelegate: boolean;
3094
+ initialMember: TransactionSigner | SignedSecp256r1Key;
3095
+ userAddressTreeIndex?: number;
3096
+ delegateOperation: DelegateOp.Add | DelegateOp.Ignore;
3071
3097
  };
3072
- declare function createWallet({ index, payer, initialMember, setAsDelegate, cachedAccounts, }: CreateWalletArgs): Promise<{
3098
+ declare function createWallet({ index, payer, initialMember, userAddressTreeIndex, delegateOperation, cachedAccounts, }: CreateWalletArgs): Promise<{
3073
3099
  instructions: Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[];
3074
3100
  secp256r1VerifyInput: Secp256r1VerifyInput;
3075
- settingsAddressTreeIndex: number;
3076
3101
  }>;
3077
3102
 
3078
- declare function decompressSettingsAccount({ settingsIndexWithAddressArgs, payer, signers, cachedAccounts, }: {
3079
- settingsIndexWithAddressArgs: SettingsIndexWithAddressArgs;
3103
+ declare function decompressSettingsAccount({ index, settingsAddressTreeIndex, payer, signers, cachedAccounts, }: {
3104
+ index: number | bigint;
3105
+ settingsAddressTreeIndex?: number;
3080
3106
  payer: TransactionSigner;
3081
3107
  signers: (SignedSecp256r1Key | TransactionSigner)[];
3082
3108
  cachedAccounts?: Map<string, any>;
@@ -3097,8 +3123,9 @@ declare function executeTransaction({ settings, transactionBufferAddress, transa
3097
3123
  addressLookupTableAccounts: AddressesByLookupTableAddress;
3098
3124
  }>;
3099
3125
 
3100
- declare function executeTransactionSync({ settingsIndexWithAddressArgs, transactionMessageBytes, signers, payer, addressesByLookupTableAddress, secp256r1VerifyInput, compressed, simulateProof, cachedAccounts, }: {
3101
- settingsIndexWithAddressArgs: SettingsIndexWithAddressArgs;
3126
+ declare function executeTransactionSync({ index, settingsAddressTreeIndex, transactionMessageBytes, signers, payer, addressesByLookupTableAddress, secp256r1VerifyInput, compressed, simulateProof, cachedAccounts, }: {
3127
+ index: number | bigint;
3128
+ settingsAddressTreeIndex?: number;
3102
3129
  signers: (TransactionSigner | SignedSecp256r1Key)[];
3103
3130
  transactionMessageBytes: ReadonlyUint8Array;
3104
3131
  secp256r1VerifyInput?: Secp256r1VerifyInput;
@@ -3112,8 +3139,9 @@ declare function executeTransactionSync({ settingsIndexWithAddressArgs, transact
3112
3139
  addressLookupTableAccounts: AddressesByLookupTableAddress;
3113
3140
  }>;
3114
3141
 
3115
- declare function nativeTransferIntent({ settingsIndexWithAddressArgs, destination, signers, cachedAccounts, amount, payer, compressed, }: {
3116
- settingsIndexWithAddressArgs: SettingsIndexWithAddressArgs;
3142
+ declare function nativeTransferIntent({ index, settingsAddressTreeIndex, destination, signers, cachedAccounts, amount, payer, compressed, }: {
3143
+ index: number | bigint;
3144
+ settingsAddressTreeIndex?: number;
3117
3145
  destination: Address;
3118
3146
  amount: number | bigint;
3119
3147
  signers: (TransactionSigner | SignedSecp256r1Key)[];
@@ -3122,8 +3150,9 @@ declare function nativeTransferIntent({ settingsIndexWithAddressArgs, destinatio
3122
3150
  cachedAccounts?: Map<string, any>;
3123
3151
  }): Promise<Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[]>;
3124
3152
 
3125
- declare function tokenTransferIntent({ settingsIndexWithAddressArgs, destination, mint, signers, cachedAccounts, amount, payer, tokenProgram, compressed, }: {
3126
- settingsIndexWithAddressArgs: SettingsIndexWithAddressArgs;
3153
+ declare function tokenTransferIntent({ index, settingsAddressTreeIndex, destination, mint, signers, cachedAccounts, amount, payer, tokenProgram, compressed, }: {
3154
+ index: number | bigint;
3155
+ settingsAddressTreeIndex?: number;
3127
3156
  destination: Address;
3128
3157
  mint: Address;
3129
3158
  amount: number | bigint;
@@ -3134,8 +3163,9 @@ declare function tokenTransferIntent({ settingsIndexWithAddressArgs, destination
3134
3163
  cachedAccounts?: Map<string, any>;
3135
3164
  }): Promise<Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[]>;
3136
3165
 
3137
- declare function closeTransactionBuffer({ settingsIndexWithAddressArgs, closer, transactionBufferAddress, payer, compressed, cachedAccounts, }: {
3138
- settingsIndexWithAddressArgs: SettingsIndexWithAddressArgs;
3166
+ declare function closeTransactionBuffer({ index, settingsAddressTreeIndex, closer, transactionBufferAddress, payer, compressed, cachedAccounts, }: {
3167
+ index: number | bigint;
3168
+ settingsAddressTreeIndex?: number;
3139
3169
  closer: TransactionSigner | SignedSecp256r1Key;
3140
3170
  transactionBufferAddress: Address;
3141
3171
  payer?: TransactionSigner;
@@ -3196,15 +3226,17 @@ declare function signMessageWithPasskey({ message, signer, popUp, }: MessagePayl
3196
3226
 
3197
3227
  declare function signTransactionWithPasskey({ transactionActionType, transactionAddress, transactionMessageBytes, signer, popUp, }: TransactionPayload & BasePayload): Promise<TransactionAuthenticationResponse>;
3198
3228
 
3199
- declare function verifyMessage({ message, response, expectedOrigin, }: {
3229
+ declare function verifyMessage({ message, response, expectedRPID, expectedOrigin, }: {
3200
3230
  message: string;
3201
3231
  response: MessageAuthenticationResponse;
3232
+ expectedRPID?: string;
3202
3233
  expectedOrigin?: string;
3203
3234
  }): Promise<boolean>;
3204
3235
 
3205
3236
  interface CreateTransactionBundleArgs {
3206
3237
  payer: TransactionSigner;
3207
- settingsIndexWithAddressArgs: SettingsIndexWithAddressArgs;
3238
+ index: number | bigint;
3239
+ settingsAddressTreeIndex?: number;
3208
3240
  transactionMessageBytes: ReadonlyUint8Array;
3209
3241
  bufferIndex?: number;
3210
3242
  creator: TransactionSigner | SignedSecp256r1Key;
@@ -3218,7 +3250,7 @@ interface CreateTransactionBundleArgs {
3218
3250
  addressesByLookupTableAddress?: AddressesByLookupTableAddress;
3219
3251
  cachedAccounts?: Map<string, any>;
3220
3252
  }
3221
- declare function prepareTransactionBundle({ payer, settingsIndexWithAddressArgs, transactionMessageBytes, creator, executor, secp256r1VerifyInput, jitoBundlesTipAmount, addressesByLookupTableAddress, compressed, bufferIndex, additionalVoters, additionalSigners, chunkSize, cachedAccounts, }: CreateTransactionBundleArgs): Promise<TransactionDetails[]>;
3253
+ declare function prepareTransactionBundle({ payer, index, settingsAddressTreeIndex, transactionMessageBytes, creator, executor, secp256r1VerifyInput, jitoBundlesTipAmount, addressesByLookupTableAddress, compressed, bufferIndex, additionalVoters, additionalSigners, chunkSize, cachedAccounts, }: CreateTransactionBundleArgs): Promise<TransactionDetails[]>;
3222
3254
 
3223
3255
  interface PrepareTransactionMessageArgs {
3224
3256
  instructions: Instruction[];
@@ -3229,7 +3261,8 @@ declare function prepareTransactionMessage({ instructions, payer, addressesByLoo
3229
3261
 
3230
3262
  interface CreateTransactionSyncArgs {
3231
3263
  payer: TransactionSigner;
3232
- settingsIndexWithAddressArgs: SettingsIndexWithAddressArgs;
3264
+ index: number | bigint;
3265
+ settingsAddressTreeIndex?: number;
3233
3266
  transactionMessageBytes: ReadonlyUint8Array;
3234
3267
  signers: (TransactionSigner | SignedSecp256r1Key)[];
3235
3268
  addressesByLookupTableAddress?: AddressesByLookupTableAddress;
@@ -3238,13 +3271,13 @@ interface CreateTransactionSyncArgs {
3238
3271
  simulateProof?: boolean;
3239
3272
  cachedAccounts?: Map<string, any>;
3240
3273
  }
3241
- declare function prepareTransactionSync({ payer, settingsIndexWithAddressArgs, transactionMessageBytes, signers, secp256r1VerifyInput, addressesByLookupTableAddress, cachedAccounts, compressed, simulateProof, }: CreateTransactionSyncArgs): Promise<TransactionDetails>;
3274
+ declare function prepareTransactionSync({ payer, index, settingsAddressTreeIndex, transactionMessageBytes, signers, secp256r1VerifyInput, addressesByLookupTableAddress, cachedAccounts, compressed, simulateProof, }: CreateTransactionSyncArgs): Promise<TransactionDetails>;
3242
3275
 
3243
- declare function getCompressedSettingsAddressFromIndex(args: SettingsIndexWithAddressArgs): Promise<{
3276
+ declare function getCompressedSettingsAddressFromIndex(index: number | bigint, settingsAddressTreeIndex?: number): Promise<{
3244
3277
  address: bn_js;
3245
3278
  addressTree: PublicKey;
3246
3279
  }>;
3247
- declare function getUserAccountAddress(args: UserAccountWithAddressArgs): Promise<{
3280
+ declare function getUserAccountAddress(member: Address | Secp256r1Key, userAddressTreeIndex?: number): Promise<{
3248
3281
  address: bn_js;
3249
3282
  addressTree: PublicKey;
3250
3283
  }>;
@@ -3260,38 +3293,40 @@ declare function getSettingsFromIndex(index: number | bigint): Promise<Address<s
3260
3293
  declare function getWalletAddressFromIndex(index: number | bigint): Promise<Address<string>>;
3261
3294
  declare function getLightCpiSigner(): Promise<Address<string>>;
3262
3295
 
3263
- declare function fetchUserAccountData(user: UserAccountWithAddressArgs, cachedAccounts?: Map<string, any>): Promise<User>;
3264
- declare function fetchMaybeUserAccountData(user: UserAccountWithAddressArgs, cachedAccounts?: Map<string, any>): Promise<User | null>;
3265
- declare function fetchSettingsAccountData(SettingsIndexWithAddressArgs: SettingsIndexWithAddressArgs, cachedAccounts?: Map<string, any>): Promise<CompressedSettingsData & {
3296
+ declare function fetchUserAccountData(member: Address | Secp256r1Key, userAddressTreeIndex?: number, cachedAccounts?: Map<string, any>): Promise<User>;
3297
+ declare function fetchMaybeUserAccountData(member: Address | Secp256r1Key, userAddressTreeIndex?: number, cachedAccounts?: Map<string, any>): Promise<User | null>;
3298
+ declare function fetchSettingsAccountData(index: number | bigint, settingsAddressTreeIndex?: number, cachedAccounts?: Map<string, any>): Promise<CompressedSettingsData & {
3266
3299
  isCompressed: boolean;
3267
3300
  }>;
3268
- declare function fetchMaybeSettingsAccountData(SettingsIndexWithAddressArgs: SettingsIndexWithAddressArgs, cachedAccounts?: Map<string, any>): Promise<(CompressedSettingsData & {
3301
+ declare function fetchMaybeSettingsAccountData(index: number | bigint, settingsAddressTreeIndex?: number, cachedAccounts?: Map<string, any>): Promise<(CompressedSettingsData & {
3269
3302
  isCompressed: boolean;
3270
3303
  }) | null>;
3271
- declare function getWhitelistedAddressTreeFromIndex(index: number): Promise<gill.Address>;
3304
+ declare function getWhitelistedAddressTreeFromIndex(index: number): Promise<Address>;
3272
3305
  declare function getWhitelistedAddressTreeIndexFromAddress(addressTree: string): Promise<number>;
3273
3306
 
3274
3307
  declare function getSolanaRpcEndpoint(): string;
3275
3308
  declare function getLightProtocolRpc(): Rpc;
3276
3309
  declare function getSolanaRpc(): Rpc$1<gill.RequestAirdropApi & gill.GetAccountInfoApi & gill.GetBalanceApi & gill.GetBlockApi & gill.GetBlockCommitmentApi & gill.GetBlockHeightApi & gill.GetBlockProductionApi & gill.GetBlocksApi & gill.GetBlocksWithLimitApi & gill.GetBlockTimeApi & gill.GetClusterNodesApi & gill.GetEpochInfoApi & gill.GetEpochScheduleApi & gill.GetFeeForMessageApi & gill.GetFirstAvailableBlockApi & gill.GetGenesisHashApi & gill.GetHealthApi & gill.GetHighestSnapshotSlotApi & gill.GetIdentityApi & gill.GetInflationGovernorApi & gill.GetInflationRateApi & gill.GetInflationRewardApi & gill.GetLargestAccountsApi & gill.GetLatestBlockhashApi & gill.GetLeaderScheduleApi & gill.GetMaxRetransmitSlotApi & gill.GetMaxShredInsertSlotApi & gill.GetMinimumBalanceForRentExemptionApi & gill.GetMultipleAccountsApi & gill.GetProgramAccountsApi & gill.GetRecentPerformanceSamplesApi & gill.GetRecentPrioritizationFeesApi & gill.GetSignaturesForAddressApi & gill.GetSignatureStatusesApi & gill.GetSlotApi & gill.GetSlotLeaderApi & gill.GetSlotLeadersApi & gill.GetStakeMinimumDelegationApi & gill.GetSupplyApi & gill.GetTokenAccountBalanceApi & gill.GetTokenAccountsByDelegateApi & gill.GetTokenAccountsByOwnerApi & gill.GetTokenLargestAccountsApi & gill.GetTokenSupplyApi & gill.GetTransactionApi & gill.GetTransactionCountApi & gill.GetVersionApi & gill.GetVoteAccountsApi & gill.IsBlockhashValidApi & gill.MinimumLedgerSlotApi & gill.SendTransactionApi & gill.SimulateTransactionApi>;
3277
3310
  declare function getSendAndConfirmTransaction(): SendAndConfirmTransactionWithSignersFunction;
3278
- declare function getComputeBudgetEstimate(): (transactionMessage: CompilableTransactionMessage | (TransactionMessage$1 & TransactionMessageWithFeePayer), config?: any) => Promise<number>;
3311
+ declare function getComputeBudgetEstimate(): (transactionMessage: BaseTransactionMessage & TransactionMessageWithFeePayer, config?: any) => Promise<number>;
3279
3312
  declare function getFeePayer(): Promise<TransactionSigner>;
3280
3313
  declare function getJitoTipsConfig(): JitoTipsConfig;
3281
3314
  declare function getAuthEndpoint(): string;
3315
+ declare function getRpId(): string;
3282
3316
  declare function getGlobalAuthorizedClient(): {
3283
3317
  publicKey: string;
3284
3318
  url: string;
3285
3319
  } | null;
3286
3320
  declare function getGlobalAdditonalInfo(): any;
3287
3321
  declare function uninitialize(): void;
3288
- declare function initialize({ rpcEndpoint, proverEndpoint, compressionApiEndpoint, jitoTipsConfig, apiEndpoint, authEndpoint, authorizedClient, additionalInfo, }: {
3322
+ declare function initialize({ rpcEndpoint, proverEndpoint, compressionApiEndpoint, jitoTipsConfig, apiEndpoint, authEndpoint, rpId, authorizedClient, additionalInfo, }: {
3289
3323
  rpcEndpoint: string;
3290
3324
  proverEndpoint?: string;
3291
3325
  compressionApiEndpoint?: string;
3292
3326
  jitoTipsConfig?: JitoTipsConfig;
3293
3327
  apiEndpoint?: string;
3294
3328
  authEndpoint?: string;
3329
+ rpId?: string;
3295
3330
  authorizedClient?: {
3296
3331
  publicKey: string;
3297
3332
  url: string;
@@ -3309,13 +3344,14 @@ declare function signAndSendBundledTransactions(bundle: TransactionDetails[]): P
3309
3344
  declare function signAndSendTransaction({ instructions, payer, addressesByLookupTableAddress, }: TransactionDetails): Promise<gill.Signature>;
3310
3345
  declare function sendJitoBundle(serializedTransactions: string[], maxRetries?: number, delayMs?: number, jitoTipsConfig?: JitoTipsConfig): Promise<string>;
3311
3346
  declare function pollJitoBundleConfirmation(bundleId: string, maxRetries?: number, delayMs?: number, jitoTipsConfig?: JitoTipsConfig): Promise<string>;
3312
- declare function resolveTransactionManagerSigner({ signer, settingsIndexWithAddressArgs, transactionMessageBytes, cachedAccounts, }: {
3347
+ declare function resolveTransactionManagerSigner({ signer, index, settingsAddressTreeIndex, transactionMessageBytes, cachedAccounts, }: {
3313
3348
  signer: Secp256r1Key | Address;
3314
- settingsIndexWithAddressArgs: SettingsIndexWithAddressArgs;
3349
+ index: number | bigint;
3350
+ settingsAddressTreeIndex?: number;
3315
3351
  transactionMessageBytes?: ReadonlyUint8Array;
3316
3352
  cachedAccounts?: Map<string, any>;
3317
3353
  }): Promise<TransactionSigner | null>;
3318
3354
  declare function createTransactionManagerSigner(address: Address, url: string, transactionMessageBytes?: ReadonlyUint8Array): TransactionSigner;
3319
3355
  declare function convertMemberKeyToString(memberKey: MemberKey): string;
3320
3356
 
3321
- export { ADD_WHITELISTED_ADDRESS_TREES_DISCRIMINATOR, type AddMemberArgs$1 as AddMemberArgs, type AddMemberArgsArgs, type AddWhitelistedAddressTreesAsyncInput, type AddWhitelistedAddressTreesInput, type AddWhitelistedAddressTreesInstruction, type AddWhitelistedAddressTreesInstructionData, type AddWhitelistedAddressTreesInstructionDataArgs, type AddWhitelistedAddressTreesInstructionExtraArgs, type BasePayload, CHANGE_CONFIG_COMPRESSED_DISCRIMINATOR, CHANGE_CONFIG_DISCRIMINATOR, COMPRESS_SETTINGS_ACCOUNT_DISCRIMINATOR, CREATE_DOMAIN_CONFIG_DISCRIMINATOR, CREATE_DOMAIN_USER_ACCOUNT_DISCRIMINATOR, CREATE_GLOBAL_COUNTER_DISCRIMINATOR, CREATE_MULTI_WALLET_COMPRESSED_DISCRIMINATOR, CREATE_USER_ACCOUNTS_DISCRIMINATOR, type ChangeConfigAsyncInput, type ChangeConfigCompressedInput, type ChangeConfigCompressedInstruction, type ChangeConfigCompressedInstructionData, type ChangeConfigCompressedInstructionDataArgs, type ChangeConfigCompressedInstructionExtraArgs, type ChangeConfigInput, type ChangeConfigInstruction, type ChangeConfigInstructionData, type ChangeConfigInstructionDataArgs, type ChangeConfigInstructionExtraArgs, type CompiledInstruction, type CompiledInstructionArgs, type CompressSettingsAccountInput, type CompressSettingsAccountInstruction, type CompressSettingsAccountInstructionData, type CompressSettingsAccountInstructionDataArgs, type CompressSettingsAccountInstructionExtraArgs, type CompressedAccountMeta, type CompressedAccountMetaArgs, type CompressedAccountMetaReadOnly, type CompressedAccountMetaReadOnlyArgs, type CompressedProof, type CompressedProofArgs, type CompressedSettings, type CompressedSettingsArgs, type CompressedSettingsData, type CompressedSettingsDataArgs, type ConfigAction, type ConfigActionArgs, type ConfigurationArgs, type CreateDomainConfigInput, type CreateDomainConfigInstruction, type CreateDomainConfigInstructionData, type CreateDomainConfigInstructionDataArgs, type CreateDomainConfigInstructionExtraArgs, type CreateDomainUserAccountAsyncInput, type CreateDomainUserAccountInput, type CreateDomainUserAccountInstruction, type CreateDomainUserAccountInstructionData, type CreateDomainUserAccountInstructionDataArgs, type CreateDomainUserAccountInstructionExtraArgs, type CreateGlobalCounterAsyncInput, type CreateGlobalCounterInput, type CreateGlobalCounterInstruction, type CreateGlobalCounterInstructionData, type CreateGlobalCounterInstructionDataArgs, type CreateGlobalCounterInstructionExtraArgs, type CreateMultiWalletCompressedAsyncInput, type CreateMultiWalletCompressedInput, type CreateMultiWalletCompressedInstruction, type CreateMultiWalletCompressedInstructionData, type CreateMultiWalletCompressedInstructionDataArgs, type CreateMultiWalletCompressedInstructionExtraArgs, type CreateUserAccountArgs, type CreateUserAccountArgsArgs, type CreateUserAccountsAsyncInput, type CreateUserAccountsInput, type CreateUserAccountsInstruction, type CreateUserAccountsInstructionData, type CreateUserAccountsInstructionDataArgs, type CreateUserAccountsInstructionExtraArgs, DECOMPRESS_SETTINGS_ACCOUNT_DISCRIMINATOR, DISABLE_DOMAIN_CONFIG_DISCRIMINATOR, DOMAIN_CONFIG_DISCRIMINATOR, type DecompressSettingsAccountInput, type DecompressSettingsAccountInstruction, type DecompressSettingsAccountInstructionData, type DecompressSettingsAccountInstructionDataArgs, type DecompressSettingsAccountInstructionExtraArgs, DelegateOp, type DelegateOpArgs, type DisableDomainConfigInput, type DisableDomainConfigInstruction, type DisableDomainConfigInstructionData, type DisableDomainConfigInstructionDataArgs, type DisableDomainConfigInstructionExtraArgs, type DomainConfig, type DomainConfigArgs, EDIT_DOMAIN_CONFIG_DISCRIMINATOR, EDIT_TRANSACTION_MANAGER_URL_DISCRIMINATOR, type EditDomainConfigInput, type EditDomainConfigInstruction, type EditDomainConfigInstructionData, type EditDomainConfigInstructionDataArgs, type EditDomainConfigInstructionExtraArgs, type EditMemberArgs, type EditMemberArgsArgs, type EditTransactionManagerUrlInput, type EditTransactionManagerUrlInstruction, type EditTransactionManagerUrlInstructionData, type EditTransactionManagerUrlInstructionDataArgs, type EditTransactionManagerUrlInstructionExtraArgs, GLOBAL_COUNTER_DISCRIMINATOR, type GlobalCounter, type GlobalCounterArgs, type IKeyType, type IPermission, type IPermissions, type JitoTipsConfig, KeyType, type LinkWalletArgs, type LinkWalletArgsArgs, MIGRATE_COMPRESSED_SETTINGS_DISCRIMINATOR, MIGRATE_COMPRESSED_USERS_DISCRIMINATOR, MULTI_WALLET_ERROR__ALREADY_DELEGATED, MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_DISABLED, MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_MISSING, MULTI_WALLET_ERROR__DUPLICATE_MEMBER, MULTI_WALLET_ERROR__DURABLE_NONCE_DETECTED, MULTI_WALLET_ERROR__EMPTY_MEMBERS, MULTI_WALLET_ERROR__FINAL_BUFFER_HASH_MISMATCH, MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_EXCEEDED, MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_MISMATCH, MULTI_WALLET_ERROR__INSUFFICIENT_SIGNERS_WITH_VOTE_PERMISSION, MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_EXECUTE_PERMISSION, MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_INITIATE_PERMISSION, MULTI_WALLET_ERROR__INVALID_ACCOUNT, MULTI_WALLET_ERROR__INVALID_ADDRESS_TREE, MULTI_WALLET_ERROR__INVALID_ARGUMENTS, MULTI_WALLET_ERROR__INVALID_BUFFER, MULTI_WALLET_ERROR__INVALID_NUMBER_OF_ACCOUNTS, MULTI_WALLET_ERROR__INVALID_SECP256R1_VERIFY_ARG, MULTI_WALLET_ERROR__INVALID_SIGNED_MESSAGE, MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT, MULTI_WALLET_ERROR__INVALID_THRESHOLD, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MESSAGE, MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED, MULTI_WALLET_ERROR__MEMBER_DOES_NOT_BELONG_TO_DOMAIN_CONFIG, MULTI_WALLET_ERROR__MISSING_ACCOUNT, MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY, MULTI_WALLET_ERROR__MISSING_USER_ARGS, MULTI_WALLET_ERROR__NO_SIGNER_FOUND, MULTI_WALLET_ERROR__ONLY_ONE_PERMANENT_MEMBER_ALLOWED, MULTI_WALLET_ERROR__ONLY_ONE_TRANSACTION_MANAGER_ALLOWED, MULTI_WALLET_ERROR__ORIGIN_INDEX_OUT_OF_BOUNDS, MULTI_WALLET_ERROR__PERMANENT_MEMBER, MULTI_WALLET_ERROR__PERMANENT_MEMBER_NOT_ALLOWED, MULTI_WALLET_ERROR__PROTECTED_ACCOUNT, MULTI_WALLET_ERROR__RP_ID_HASH_MISMATCH, MULTI_WALLET_ERROR__SLOT_NUMBER_NOT_FOUND, MULTI_WALLET_ERROR__TOO_MANY_MEMBERS, MULTI_WALLET_ERROR__TRANSACTION_HAS_EXPIRED, MULTI_WALLET_ERROR__TRANSACTION_MANAGER_NOT_ALLOWED, MULTI_WALLET_ERROR__TRANSACTION_NOT_APPROVED, MULTI_WALLET_ERROR__UNAUTHORISED_TO_CLOSE_TRANSACTION_BUFFER, MULTI_WALLET_ERROR__UNEXPECTED_SIGNER, MULTI_WALLET_PROGRAM_ADDRESS, type Member, type MemberArgs, type MemberKey, type MemberKeyArgs, type MessageAuthenticationResponse, type MessagePayload, type MigrateCompressedSettingsInput, type MigrateCompressedSettingsInstruction, type MigrateCompressedSettingsInstructionData, type MigrateCompressedSettingsInstructionDataArgs, type MigrateCompressedSettingsInstructionExtraArgs, type MigrateCompressedUsersInput, type MigrateCompressedUsersInstruction, type MigrateCompressedUsersInstructionData, type MigrateCompressedUsersInstructionDataArgs, type MigrateCompressedUsersInstructionExtraArgs, MultiWalletAccount, type MultiWalletError, MultiWalletInstruction, NATIVE_TRANSFER_INTENT_COMPRESSED_DISCRIMINATOR, NATIVE_TRANSFER_INTENT_DISCRIMINATOR, type NativeTransferIntentAsyncInput, type NativeTransferIntentCompressedInput, type NativeTransferIntentCompressedInstruction, type NativeTransferIntentCompressedInstructionData, type NativeTransferIntentCompressedInstructionDataArgs, type NativeTransferIntentCompressedInstructionExtraArgs, type NativeTransferIntentInput, type NativeTransferIntentInstruction, type NativeTransferIntentInstructionData, type NativeTransferIntentInstructionDataArgs, type NativeTransferIntentInstructionExtraArgs, type PackedAddressTreeInfo, type PackedAddressTreeInfoArgs, type PackedStateTreeInfo, type PackedStateTreeInfoArgs, type ParsedAddWhitelistedAddressTreesInstruction, type ParsedChangeConfigCompressedInstruction, type ParsedChangeConfigInstruction, type ParsedCompressSettingsAccountInstruction, type ParsedCreateDomainConfigInstruction, type ParsedCreateDomainUserAccountInstruction, type ParsedCreateGlobalCounterInstruction, type ParsedCreateMultiWalletCompressedInstruction, type ParsedCreateUserAccountsInstruction, type ParsedDecompressSettingsAccountInstruction, type ParsedDisableDomainConfigInstruction, type ParsedEditDomainConfigInstruction, type ParsedEditTransactionManagerUrlInstruction, type ParsedMigrateCompressedSettingsInstruction, type ParsedMigrateCompressedUsersInstruction, type ParsedMultiWalletInstruction, type ParsedNativeTransferIntentCompressedInstruction, type ParsedNativeTransferIntentInstruction, type ParsedSecp256r1VerifyInstruction, type ParsedTokenTransferIntentCompressedInstruction, type ParsedTokenTransferIntentInstruction, type ParsedTransactionBufferCloseCompressedInstruction, type ParsedTransactionBufferCloseInstruction, type ParsedTransactionBufferCreateCompressedInstruction, type ParsedTransactionBufferCreateInstruction, type ParsedTransactionBufferExecuteCompressedInstruction, type ParsedTransactionBufferExecuteInstruction, type ParsedTransactionBufferExtendCompressedInstruction, type ParsedTransactionBufferExtendInstruction, type ParsedTransactionBufferVoteCompressedInstruction, type ParsedTransactionBufferVoteInstruction, type ParsedTransactionExecuteCompressedInstruction, type ParsedTransactionExecuteInstruction, type ParsedTransactionExecuteSyncCompressedInstruction, type ParsedTransactionExecuteSyncInstruction, PermanentMemberPermission, Permission, type PermissionArgs, Permissions, type PermissionsArgs, type ProofArgs, type ProofArgsArgs, type RemoveMemberArgs, type RemoveMemberArgsArgs, SETTINGS_DISCRIMINATOR, Secp256r1Key, type Secp256r1Pubkey, type Secp256r1PubkeyArgs, type Secp256r1SignatureOffsetsDataArgs, type Secp256r1VerifyArgs, type Secp256r1VerifyArgsArgs, type Secp256r1VerifyArgsWithDomainAddress, type Secp256r1VerifyArgsWithDomainAddressArgs, type Secp256r1VerifyInput, type Secp256r1VerifyInstruction, type Secp256r1VerifyInstructionData, type Secp256r1VerifyInstructionDataArgs, type Settings, type SettingsArgs, type SettingsCreationArgs, type SettingsCreationArgsArgs, type SettingsIndexWithAddress, type SettingsIndexWithAddressArgs, type SettingsMutArgs, type SettingsMutArgsArgs, type SettingsReadonlyArgs, type SettingsReadonlyArgsArgs, SignedSecp256r1Key, TOKEN_TRANSFER_INTENT_COMPRESSED_DISCRIMINATOR, TOKEN_TRANSFER_INTENT_DISCRIMINATOR, TRANSACTION_BUFFER_CLOSE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_CLOSE_DISCRIMINATOR, TRANSACTION_BUFFER_CREATE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_CREATE_DISCRIMINATOR, TRANSACTION_BUFFER_DISCRIMINATOR, TRANSACTION_BUFFER_EXECUTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_EXECUTE_DISCRIMINATOR, TRANSACTION_BUFFER_EXTEND_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_EXTEND_DISCRIMINATOR, TRANSACTION_BUFFER_VOTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_VOTE_DISCRIMINATOR, TRANSACTION_EXECUTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_EXECUTE_DISCRIMINATOR, TRANSACTION_EXECUTE_SYNC_COMPRESSED_DISCRIMINATOR, TRANSACTION_EXECUTE_SYNC_DISCRIMINATOR, type TokenTransferIntentAsyncInput, type TokenTransferIntentCompressedAsyncInput, type TokenTransferIntentCompressedInput, type TokenTransferIntentCompressedInstruction, type TokenTransferIntentCompressedInstructionData, type TokenTransferIntentCompressedInstructionDataArgs, type TokenTransferIntentCompressedInstructionExtraArgs, type TokenTransferIntentInput, type TokenTransferIntentInstruction, type TokenTransferIntentInstructionData, type TokenTransferIntentInstructionDataArgs, type TokenTransferIntentInstructionExtraArgs, type TransactionActionType, type TransactionAuthenticationResponse, type TransactionBuffer, type TransactionBufferArgs, type TransactionBufferCloseCompressedInput, type TransactionBufferCloseCompressedInstruction, type TransactionBufferCloseCompressedInstructionData, type TransactionBufferCloseCompressedInstructionDataArgs, type TransactionBufferCloseCompressedInstructionExtraArgs, type TransactionBufferCloseInput, type TransactionBufferCloseInstruction, type TransactionBufferCloseInstructionData, type TransactionBufferCloseInstructionDataArgs, type TransactionBufferCloseInstructionExtraArgs, type TransactionBufferCreateArgs, type TransactionBufferCreateArgsArgs, type TransactionBufferCreateCompressedInput, type TransactionBufferCreateCompressedInstruction, type TransactionBufferCreateCompressedInstructionData, type TransactionBufferCreateCompressedInstructionDataArgs, type TransactionBufferCreateCompressedInstructionExtraArgs, type TransactionBufferCreateInput, type TransactionBufferCreateInstruction, type TransactionBufferCreateInstructionData, type TransactionBufferCreateInstructionDataArgs, type TransactionBufferCreateInstructionExtraArgs, type TransactionBufferExecuteCompressedInput, type TransactionBufferExecuteCompressedInstruction, type TransactionBufferExecuteCompressedInstructionData, type TransactionBufferExecuteCompressedInstructionDataArgs, type TransactionBufferExecuteCompressedInstructionExtraArgs, type TransactionBufferExecuteInput, type TransactionBufferExecuteInstruction, type TransactionBufferExecuteInstructionData, type TransactionBufferExecuteInstructionDataArgs, type TransactionBufferExecuteInstructionExtraArgs, type TransactionBufferExtendCompressedInput, type TransactionBufferExtendCompressedInstruction, type TransactionBufferExtendCompressedInstructionData, type TransactionBufferExtendCompressedInstructionDataArgs, type TransactionBufferExtendCompressedInstructionExtraArgs, type TransactionBufferExtendInput, type TransactionBufferExtendInstruction, type TransactionBufferExtendInstructionData, type TransactionBufferExtendInstructionDataArgs, type TransactionBufferExtendInstructionExtraArgs, type TransactionBufferVoteCompressedInput, type TransactionBufferVoteCompressedInstruction, type TransactionBufferVoteCompressedInstructionData, type TransactionBufferVoteCompressedInstructionDataArgs, type TransactionBufferVoteCompressedInstructionExtraArgs, type TransactionBufferVoteInput, type TransactionBufferVoteInstruction, type TransactionBufferVoteInstructionData, type TransactionBufferVoteInstructionDataArgs, type TransactionBufferVoteInstructionExtraArgs, type TransactionDetails, type TransactionExecuteCompressedInput, type TransactionExecuteCompressedInstruction, type TransactionExecuteCompressedInstructionData, type TransactionExecuteCompressedInstructionDataArgs, type TransactionExecuteCompressedInstructionExtraArgs, type TransactionExecuteInput, type TransactionExecuteInstruction, type TransactionExecuteInstructionData, type TransactionExecuteInstructionDataArgs, type TransactionExecuteInstructionExtraArgs, type TransactionExecuteSyncCompressedInput, type TransactionExecuteSyncCompressedInstruction, type TransactionExecuteSyncCompressedInstructionData, type TransactionExecuteSyncCompressedInstructionDataArgs, type TransactionExecuteSyncCompressedInstructionExtraArgs, type TransactionExecuteSyncInput, type TransactionExecuteSyncInstruction, type TransactionExecuteSyncInstructionData, type TransactionExecuteSyncInstructionDataArgs, type TransactionExecuteSyncInstructionExtraArgs, TransactionManagerPermission, type TransactionMessage, type TransactionMessageAddressTableLookup, type TransactionMessageAddressTableLookupArgs, type TransactionMessageArgs, type TransactionPayload, type User, type UserAccountWithAddressArgs, type UserArgs, type UserCreationArgs$2 as UserCreationArgs, type UserCreationArgsArgs, type UserMutArgs, type UserMutArgsArgs, type UserReadOnlyArgs, type UserReadOnlyArgsArgs, type UserReadOnlyOrMutateArgs, type UserReadOnlyOrMutateArgsArgs, WHITELISTED_ADDRESS_TREE_DISCRIMINATOR, type WhitelistedAddressTree, type WhitelistedAddressTreeArgs, addWhitelistedAddressTrees, changeConfig, closeTransactionBuffer, compressSettingsAccount, configAction, convertMemberKeyToString, convertPubkeyCompressedToCose, convertPubkeyCoseToCompressed, createDomainConfig, createDomainUserAccounts, createGlobalCounter, createPopUp, createTransactionBuffer, createTransactionManagerSigner, createUserAccounts, createWallet, decodeDomainConfig, decodeGlobalCounter, decodeSettings, decodeTransactionBuffer, decodeWhitelistedAddressTree, decompressSettingsAccount, disableDomainConfig, editDomainConfig, editTransactionManagerUrl, executeTransaction, executeTransactionBuffer, executeTransactionSync, extendTransactionBuffer, fetchAllDomainConfig, fetchAllGlobalCounter, fetchAllMaybeDomainConfig, fetchAllMaybeGlobalCounter, fetchAllMaybeSettings, fetchAllMaybeTransactionBuffer, fetchAllMaybeWhitelistedAddressTree, fetchAllSettings, fetchAllTransactionBuffer, fetchAllWhitelistedAddressTree, fetchDomainConfig, fetchGlobalCounter, fetchMaybeDomainConfig, fetchMaybeGlobalCounter, fetchMaybeSettings, fetchMaybeSettingsAccountData, fetchMaybeTransactionBuffer, fetchMaybeUserAccountData, fetchMaybeWhitelistedAddressTree, fetchSettings, fetchSettingsAccountData, fetchTransactionBuffer, fetchUserAccountData, fetchWhitelistedAddressTree, getAddMemberArgsCodec, getAddMemberArgsDecoder, getAddMemberArgsEncoder, getAddWhitelistedAddressTreesDiscriminatorBytes, getAddWhitelistedAddressTreesInstruction, getAddWhitelistedAddressTreesInstructionAsync, getAddWhitelistedAddressTreesInstructionDataCodec, getAddWhitelistedAddressTreesInstructionDataDecoder, getAddWhitelistedAddressTreesInstructionDataEncoder, getAuthEndpoint, getChangeConfigCompressedDiscriminatorBytes, getChangeConfigCompressedInstruction, getChangeConfigCompressedInstructionDataCodec, getChangeConfigCompressedInstructionDataDecoder, getChangeConfigCompressedInstructionDataEncoder, getChangeConfigDiscriminatorBytes, getChangeConfigInstruction, getChangeConfigInstructionAsync, getChangeConfigInstructionDataCodec, getChangeConfigInstructionDataDecoder, getChangeConfigInstructionDataEncoder, getCompiledInstructionCodec, getCompiledInstructionDecoder, getCompiledInstructionEncoder, getCompressSettingsAccountDiscriminatorBytes, getCompressSettingsAccountInstruction, getCompressSettingsAccountInstructionDataCodec, getCompressSettingsAccountInstructionDataDecoder, getCompressSettingsAccountInstructionDataEncoder, getCompressedAccountMetaCodec, getCompressedAccountMetaDecoder, getCompressedAccountMetaEncoder, getCompressedAccountMetaReadOnlyCodec, getCompressedAccountMetaReadOnlyDecoder, getCompressedAccountMetaReadOnlyEncoder, getCompressedProofCodec, getCompressedProofDecoder, getCompressedProofEncoder, getCompressedSettingsAddressFromIndex, getCompressedSettingsCodec, getCompressedSettingsDataCodec, getCompressedSettingsDataDecoder, getCompressedSettingsDataEncoder, getCompressedSettingsDecoder, getCompressedSettingsEncoder, getComputeBudgetEstimate, getConfigActionCodec, getConfigActionDecoder, getConfigActionEncoder, getCreateDomainConfigDiscriminatorBytes, getCreateDomainConfigInstruction, getCreateDomainConfigInstructionDataCodec, getCreateDomainConfigInstructionDataDecoder, getCreateDomainConfigInstructionDataEncoder, getCreateDomainUserAccountDiscriminatorBytes, getCreateDomainUserAccountInstruction, getCreateDomainUserAccountInstructionAsync, getCreateDomainUserAccountInstructionDataCodec, getCreateDomainUserAccountInstructionDataDecoder, getCreateDomainUserAccountInstructionDataEncoder, getCreateGlobalCounterDiscriminatorBytes, getCreateGlobalCounterInstruction, getCreateGlobalCounterInstructionAsync, getCreateGlobalCounterInstructionDataCodec, getCreateGlobalCounterInstructionDataDecoder, getCreateGlobalCounterInstructionDataEncoder, getCreateMultiWalletCompressedDiscriminatorBytes, getCreateMultiWalletCompressedInstruction, getCreateMultiWalletCompressedInstructionAsync, getCreateMultiWalletCompressedInstructionDataCodec, getCreateMultiWalletCompressedInstructionDataDecoder, getCreateMultiWalletCompressedInstructionDataEncoder, getCreateUserAccountArgsCodec, getCreateUserAccountArgsDecoder, getCreateUserAccountArgsEncoder, getCreateUserAccountsDiscriminatorBytes, getCreateUserAccountsInstruction, getCreateUserAccountsInstructionAsync, getCreateUserAccountsInstructionDataCodec, getCreateUserAccountsInstructionDataDecoder, getCreateUserAccountsInstructionDataEncoder, getDecompressSettingsAccountDiscriminatorBytes, getDecompressSettingsAccountInstruction, getDecompressSettingsAccountInstructionDataCodec, getDecompressSettingsAccountInstructionDataDecoder, getDecompressSettingsAccountInstructionDataEncoder, getDelegateOpCodec, getDelegateOpDecoder, getDelegateOpEncoder, getDisableDomainConfigDiscriminatorBytes, getDisableDomainConfigInstruction, getDisableDomainConfigInstructionDataCodec, getDisableDomainConfigInstructionDataDecoder, getDisableDomainConfigInstructionDataEncoder, getDomainConfigAddress, getDomainConfigCodec, getDomainConfigDecoder, getDomainConfigDiscriminatorBytes, getDomainConfigEncoder, getDomainConfigSize, getEditDomainConfigDiscriminatorBytes, getEditDomainConfigInstruction, getEditDomainConfigInstructionDataCodec, getEditDomainConfigInstructionDataDecoder, getEditDomainConfigInstructionDataEncoder, getEditMemberArgsCodec, getEditMemberArgsDecoder, getEditMemberArgsEncoder, getEditTransactionManagerUrlDiscriminatorBytes, getEditTransactionManagerUrlInstruction, getEditTransactionManagerUrlInstructionDataCodec, getEditTransactionManagerUrlInstructionDataDecoder, getEditTransactionManagerUrlInstructionDataEncoder, getFeePayer, getGlobalAdditonalInfo, getGlobalAuthorizedClient, getGlobalCounterAddress, getGlobalCounterCodec, getGlobalCounterDecoder, getGlobalCounterDiscriminatorBytes, getGlobalCounterEncoder, getGlobalCounterSize, getJitoTipsConfig, getLightCpiSigner, getLightProtocolRpc, getLinkWalletArgsCodec, getLinkWalletArgsDecoder, getLinkWalletArgsEncoder, getMemberCodec, getMemberDecoder, getMemberEncoder, getMemberKeyCodec, getMemberKeyDecoder, getMemberKeyEncoder, getMigrateCompressedSettingsDiscriminatorBytes, getMigrateCompressedSettingsInstruction, getMigrateCompressedSettingsInstructionDataCodec, getMigrateCompressedSettingsInstructionDataDecoder, getMigrateCompressedSettingsInstructionDataEncoder, getMigrateCompressedUsersDiscriminatorBytes, getMigrateCompressedUsersInstruction, getMigrateCompressedUsersInstructionDataCodec, getMigrateCompressedUsersInstructionDataDecoder, getMigrateCompressedUsersInstructionDataEncoder, getMultiWalletErrorMessage, getNativeTransferIntentCompressedDiscriminatorBytes, getNativeTransferIntentCompressedInstruction, getNativeTransferIntentCompressedInstructionDataCodec, getNativeTransferIntentCompressedInstructionDataDecoder, getNativeTransferIntentCompressedInstructionDataEncoder, getNativeTransferIntentDiscriminatorBytes, getNativeTransferIntentInstruction, getNativeTransferIntentInstructionAsync, getNativeTransferIntentInstructionDataCodec, getNativeTransferIntentInstructionDataDecoder, getNativeTransferIntentInstructionDataEncoder, getOriginIndex, getPackedAddressTreeInfoCodec, getPackedAddressTreeInfoDecoder, getPackedAddressTreeInfoEncoder, getPackedStateTreeInfoCodec, getPackedStateTreeInfoDecoder, getPackedStateTreeInfoEncoder, getPermissionsCodec, getPermissionsDecoder, getPermissionsEncoder, getProofArgsCodec, getProofArgsDecoder, getProofArgsEncoder, getRemoveMemberArgsCodec, getRemoveMemberArgsDecoder, getRemoveMemberArgsEncoder, getSecp256r1PubkeyCodec, getSecp256r1PubkeyDecoder, getSecp256r1PubkeyEncoder, getSecp256r1SignatureOffsetsDataDecoder, getSecp256r1SignatureOffsetsDataEncoder, getSecp256r1VerifyArgsCodec, getSecp256r1VerifyArgsDecoder, getSecp256r1VerifyArgsEncoder, getSecp256r1VerifyArgsWithDomainAddressCodec, getSecp256r1VerifyArgsWithDomainAddressDecoder, getSecp256r1VerifyArgsWithDomainAddressEncoder, getSecp256r1VerifyInstruction, getSecp256r1VerifyInstructionDataCodec, getSecp256r1VerifyInstructionDataDecoder, getSecp256r1VerifyInstructionDataEncoder, getSendAndConfirmTransaction, getSettingsCodec, getSettingsCreationArgsCodec, getSettingsCreationArgsDecoder, getSettingsCreationArgsEncoder, getSettingsDecoder, getSettingsDiscriminatorBytes, getSettingsEncoder, getSettingsFromIndex, getSettingsIndexWithAddressCodec, getSettingsIndexWithAddressDecoder, getSettingsIndexWithAddressEncoder, getSettingsMutArgsCodec, getSettingsMutArgsDecoder, getSettingsMutArgsEncoder, getSettingsReadonlyArgsCodec, getSettingsReadonlyArgsDecoder, getSettingsReadonlyArgsEncoder, getSettingsSize, getSignedSecp256r1Key, getSolanaRpc, getSolanaRpcEndpoint, getTokenTransferIntentCompressedDiscriminatorBytes, getTokenTransferIntentCompressedInstruction, getTokenTransferIntentCompressedInstructionAsync, getTokenTransferIntentCompressedInstructionDataCodec, getTokenTransferIntentCompressedInstructionDataDecoder, getTokenTransferIntentCompressedInstructionDataEncoder, getTokenTransferIntentDiscriminatorBytes, getTokenTransferIntentInstruction, getTokenTransferIntentInstructionAsync, getTokenTransferIntentInstructionDataCodec, getTokenTransferIntentInstructionDataDecoder, getTokenTransferIntentInstructionDataEncoder, getTransactionBufferAddress, getTransactionBufferCloseCompressedDiscriminatorBytes, getTransactionBufferCloseCompressedInstruction, getTransactionBufferCloseCompressedInstructionDataCodec, getTransactionBufferCloseCompressedInstructionDataDecoder, getTransactionBufferCloseCompressedInstructionDataEncoder, getTransactionBufferCloseDiscriminatorBytes, getTransactionBufferCloseInstruction, getTransactionBufferCloseInstructionDataCodec, getTransactionBufferCloseInstructionDataDecoder, getTransactionBufferCloseInstructionDataEncoder, getTransactionBufferCodec, getTransactionBufferCreateArgsCodec, getTransactionBufferCreateArgsDecoder, getTransactionBufferCreateArgsEncoder, getTransactionBufferCreateCompressedDiscriminatorBytes, getTransactionBufferCreateCompressedInstruction, getTransactionBufferCreateCompressedInstructionDataCodec, getTransactionBufferCreateCompressedInstructionDataDecoder, getTransactionBufferCreateCompressedInstructionDataEncoder, getTransactionBufferCreateDiscriminatorBytes, getTransactionBufferCreateInstruction, getTransactionBufferCreateInstructionDataCodec, getTransactionBufferCreateInstructionDataDecoder, getTransactionBufferCreateInstructionDataEncoder, getTransactionBufferDecoder, getTransactionBufferDiscriminatorBytes, getTransactionBufferEncoder, getTransactionBufferExecuteCompressedDiscriminatorBytes, getTransactionBufferExecuteCompressedInstruction, getTransactionBufferExecuteCompressedInstructionDataCodec, getTransactionBufferExecuteCompressedInstructionDataDecoder, getTransactionBufferExecuteCompressedInstructionDataEncoder, getTransactionBufferExecuteDiscriminatorBytes, getTransactionBufferExecuteInstruction, getTransactionBufferExecuteInstructionDataCodec, getTransactionBufferExecuteInstructionDataDecoder, getTransactionBufferExecuteInstructionDataEncoder, getTransactionBufferExtendCompressedDiscriminatorBytes, getTransactionBufferExtendCompressedInstruction, getTransactionBufferExtendCompressedInstructionDataCodec, getTransactionBufferExtendCompressedInstructionDataDecoder, getTransactionBufferExtendCompressedInstructionDataEncoder, getTransactionBufferExtendDiscriminatorBytes, getTransactionBufferExtendInstruction, getTransactionBufferExtendInstructionDataCodec, getTransactionBufferExtendInstructionDataDecoder, getTransactionBufferExtendInstructionDataEncoder, getTransactionBufferVoteCompressedDiscriminatorBytes, getTransactionBufferVoteCompressedInstruction, getTransactionBufferVoteCompressedInstructionDataCodec, getTransactionBufferVoteCompressedInstructionDataDecoder, getTransactionBufferVoteCompressedInstructionDataEncoder, getTransactionBufferVoteDiscriminatorBytes, getTransactionBufferVoteInstruction, getTransactionBufferVoteInstructionDataCodec, getTransactionBufferVoteInstructionDataDecoder, getTransactionBufferVoteInstructionDataEncoder, getTransactionExecuteCompressedDiscriminatorBytes, getTransactionExecuteCompressedInstruction, getTransactionExecuteCompressedInstructionDataCodec, getTransactionExecuteCompressedInstructionDataDecoder, getTransactionExecuteCompressedInstructionDataEncoder, getTransactionExecuteDiscriminatorBytes, getTransactionExecuteInstruction, getTransactionExecuteInstructionDataCodec, getTransactionExecuteInstructionDataDecoder, getTransactionExecuteInstructionDataEncoder, getTransactionExecuteSyncCompressedDiscriminatorBytes, getTransactionExecuteSyncCompressedInstruction, getTransactionExecuteSyncCompressedInstructionDataCodec, getTransactionExecuteSyncCompressedInstructionDataDecoder, getTransactionExecuteSyncCompressedInstructionDataEncoder, getTransactionExecuteSyncDiscriminatorBytes, getTransactionExecuteSyncInstruction, getTransactionExecuteSyncInstructionDataCodec, getTransactionExecuteSyncInstructionDataDecoder, getTransactionExecuteSyncInstructionDataEncoder, getTransactionMessageAddressTableLookupCodec, getTransactionMessageAddressTableLookupDecoder, getTransactionMessageAddressTableLookupEncoder, getTransactionMessageCodec, getTransactionMessageDecoder, getTransactionMessageEncoder, getUserAccountAddress, getUserCodec, getUserCreationArgsCodec, getUserCreationArgsDecoder, getUserCreationArgsEncoder, getUserDecoder, getUserEncoder, getUserMutArgsCodec, getUserMutArgsDecoder, getUserMutArgsEncoder, getUserReadOnlyArgsCodec, getUserReadOnlyArgsDecoder, getUserReadOnlyArgsEncoder, getUserReadOnlyOrMutateArgsCodec, getUserReadOnlyOrMutateArgsDecoder, getUserReadOnlyOrMutateArgsEncoder, getWalletAddressFromIndex, getWalletAddressFromSettings, getWhitelistedAddressTreeCodec, getWhitelistedAddressTreeDecoder, getWhitelistedAddressTreeDiscriminatorBytes, getWhitelistedAddressTreeEncoder, getWhitelistedAddressTreeFromIndex, getWhitelistedAddressTreeIndexFromAddress, getWhitelistedAddressTreesAddress, identifyMultiWalletAccount, identifyMultiWalletInstruction, initialize, isConfigAction, isMultiWalletError, isUserReadOnlyOrMutateArgs, nativeTransferIntent, parseAddWhitelistedAddressTreesInstruction, parseChangeConfigCompressedInstruction, parseChangeConfigInstruction, parseCompressSettingsAccountInstruction, parseCreateDomainConfigInstruction, parseCreateDomainUserAccountInstruction, parseCreateGlobalCounterInstruction, parseCreateMultiWalletCompressedInstruction, parseCreateUserAccountsInstruction, parseDecompressSettingsAccountInstruction, parseDisableDomainConfigInstruction, parseEditDomainConfigInstruction, parseEditTransactionManagerUrlInstruction, parseMigrateCompressedSettingsInstruction, parseMigrateCompressedUsersInstruction, parseNativeTransferIntentCompressedInstruction, parseNativeTransferIntentInstruction, parseSecp256r1VerifyInstruction, parseTokenTransferIntentCompressedInstruction, parseTokenTransferIntentInstruction, parseTransactionBufferCloseCompressedInstruction, parseTransactionBufferCloseInstruction, parseTransactionBufferCreateCompressedInstruction, parseTransactionBufferCreateInstruction, parseTransactionBufferExecuteCompressedInstruction, parseTransactionBufferExecuteInstruction, parseTransactionBufferExtendCompressedInstruction, parseTransactionBufferExtendInstruction, parseTransactionBufferVoteCompressedInstruction, parseTransactionBufferVoteInstruction, parseTransactionExecuteCompressedInstruction, parseTransactionExecuteInstruction, parseTransactionExecuteSyncCompressedInstruction, parseTransactionExecuteSyncInstruction, pollJitoBundleConfirmation, prepareTransactionBundle, prepareTransactionMessage, prepareTransactionSync, resolveTransactionManagerSigner, sendJitoBundle, signAndSendBundledTransactions, signAndSendTransaction, signMessageWithPasskey, signTransactionWithPasskey, tokenTransferIntent, uninitialize, userReadOnlyOrMutateArgs, vaultTransactionMessageDeserialize, vaultTransactionMessageSerialize, verifyMessage, voteTransactionBuffer };
3357
+ 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 CreateDomainConfigAsyncInput, type CreateDomainConfigInput, type CreateDomainConfigInstruction, type CreateDomainConfigInstructionData, type CreateDomainConfigInstructionDataArgs, type CreateDomainConfigInstructionExtraArgs, type CreateDomainUserAccountAsyncInput, type CreateDomainUserAccountInput, type CreateDomainUserAccountInstruction, type CreateDomainUserAccountInstructionData, type CreateDomainUserAccountInstructionDataArgs, type CreateDomainUserAccountInstructionExtraArgs, type CreateGlobalCounterAsyncInput, type CreateGlobalCounterInput, type CreateGlobalCounterInstruction, type CreateGlobalCounterInstructionData, type CreateGlobalCounterInstructionDataArgs, type CreateGlobalCounterInstructionExtraArgs, type 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 EditDomainConfigAsyncInput, type EditDomainConfigInput, type EditDomainConfigInstruction, type EditDomainConfigInstructionData, type EditDomainConfigInstructionDataArgs, type EditDomainConfigInstructionExtraArgs, type EditMemberArgs$1 as EditMemberArgs, type EditMemberArgsArgs, type EditTransactionManagerUrlInput, type EditTransactionManagerUrlInstruction, type EditTransactionManagerUrlInstructionData, type EditTransactionManagerUrlInstructionDataArgs, type EditTransactionManagerUrlInstructionExtraArgs, 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 NewAuthorityArgs, type NewAuthorityArgsArgs, 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, Permission, type PermissionArgs, Permissions, type PermissionsArgs, type ProofArgs, type ProofArgsArgs, type RemoveMemberArgs$1 as RemoveMemberArgs, type RemoveMemberArgsArgs, SETTINGS_DISCRIMINATOR, Secp256r1Key, type Secp256r1Pubkey, type Secp256r1PubkeyArgs, type Secp256r1SignatureOffsetsDataArgs, type Secp256r1VerifyArgs, type Secp256r1VerifyArgsArgs, type 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, 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, UserRole, type UserRoleArgs, 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, getCreateDomainConfigInstructionAsync, 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, getEditDomainConfigInstructionAsync, 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, getNewAuthorityArgsCodec, getNewAuthorityArgsDecoder, getNewAuthorityArgsEncoder, getOriginIndex, getPackedAddressTreeInfoCodec, getPackedAddressTreeInfoDecoder, getPackedAddressTreeInfoEncoder, getPackedStateTreeInfoCodec, getPackedStateTreeInfoDecoder, getPackedStateTreeInfoEncoder, getPermissionsCodec, getPermissionsDecoder, getPermissionsEncoder, getProofArgsCodec, getProofArgsDecoder, getProofArgsEncoder, getRemoveMemberArgsCodec, getRemoveMemberArgsDecoder, getRemoveMemberArgsEncoder, getRpId, 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, getUserRoleCodec, getUserRoleDecoder, getUserRoleEncoder, 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 };