@revibase/core 0.0.15 → 0.0.16

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
@@ -65,15 +65,13 @@ type AddMemberArgs$1 = {
65
65
  memberKey: MemberKey;
66
66
  permissions: IPermissions;
67
67
  verifyArgs: Option<Secp256r1VerifyArgs>;
68
- userArgs: UserReadOnlyOrMutateArgs;
69
- delegateOperation: DelegateOp;
68
+ userMutArgs: UserMutArgs;
70
69
  };
71
70
  type AddMemberArgsArgs = {
72
71
  memberKey: MemberKeyArgs;
73
72
  permissions: PermissionsArgs;
74
73
  verifyArgs: OptionOrNullable<Secp256r1VerifyArgsArgs>;
75
- userArgs: UserReadOnlyOrMutateArgsArgs;
76
- delegateOperation: DelegateOpArgs;
74
+ userMutArgs: UserMutArgsArgs;
77
75
  };
78
76
  declare function getAddMemberArgsEncoder(): Encoder<AddMemberArgsArgs>;
79
77
  declare function getAddMemberArgsDecoder(): Decoder<AddMemberArgs$1>;
@@ -208,31 +206,17 @@ declare function getCreateUserAccountArgsEncoder(): Encoder<CreateUserAccountArg
208
206
  declare function getCreateUserAccountArgsDecoder(): Decoder<CreateUserAccountArgs>;
209
207
  declare function getCreateUserAccountArgsCodec(): Codec<CreateUserAccountArgsArgs, CreateUserAccountArgs>;
210
208
 
211
- declare enum DelegateOp {
212
- Add = 0,
213
- Remove = 1,
214
- Ignore = 2
215
- }
216
- type DelegateOpArgs = DelegateOp;
217
- declare function getDelegateOpEncoder(): FixedSizeEncoder<DelegateOpArgs>;
218
- declare function getDelegateOpDecoder(): FixedSizeDecoder<DelegateOp>;
219
- declare function getDelegateOpCodec(): FixedSizeCodec<DelegateOpArgs, DelegateOp>;
220
-
221
209
  type EditMemberArgs$1 = {
222
210
  memberKey: MemberKey;
223
211
  permissions: IPermissions;
224
- userArgs: Option<UserMutArgs>;
225
- delegateOperation: DelegateOp;
226
212
  };
227
213
  type EditMemberArgsArgs = {
228
214
  memberKey: MemberKeyArgs;
229
215
  permissions: PermissionsArgs;
230
- userArgs: OptionOrNullable<UserMutArgsArgs>;
231
- delegateOperation: DelegateOpArgs;
232
216
  };
233
- declare function getEditMemberArgsEncoder(): Encoder<EditMemberArgsArgs>;
234
- declare function getEditMemberArgsDecoder(): Decoder<EditMemberArgs$1>;
235
- declare function getEditMemberArgsCodec(): Codec<EditMemberArgsArgs, EditMemberArgs$1>;
217
+ declare function getEditMemberArgsEncoder(): FixedSizeEncoder<EditMemberArgsArgs>;
218
+ declare function getEditMemberArgsDecoder(): FixedSizeDecoder<EditMemberArgs$1>;
219
+ declare function getEditMemberArgsCodec(): FixedSizeCodec<EditMemberArgsArgs, EditMemberArgs$1>;
236
220
 
237
221
  type ExpectedSecp256r1Signers = {
238
222
  memberKey: MemberKey;
@@ -263,12 +247,14 @@ type Member = {
263
247
  permissions: IPermissions;
264
248
  role: number;
265
249
  userAddressTreeIndex: number;
250
+ isDelegate: number;
266
251
  };
267
252
  type MemberArgs = {
268
253
  pubkey: MemberKeyArgs;
269
254
  permissions: PermissionsArgs;
270
255
  role: number;
271
256
  userAddressTreeIndex: number;
257
+ isDelegate: number;
272
258
  };
273
259
  declare function getMemberEncoder(): FixedSizeEncoder<MemberArgs>;
274
260
  declare function getMemberDecoder(): FixedSizeDecoder<Member>;
@@ -339,11 +325,11 @@ declare function getProofArgsCodec(): Codec<ProofArgsArgs, ProofArgs>;
339
325
 
340
326
  type RemoveMemberArgs$1 = {
341
327
  memberKey: MemberKey;
342
- userArgs: UserReadOnlyOrMutateArgs;
328
+ userMutArgs: UserMutArgs;
343
329
  };
344
330
  type RemoveMemberArgsArgs = {
345
331
  memberKey: MemberKeyArgs;
346
- userArgs: UserReadOnlyOrMutateArgsArgs;
332
+ userMutArgs: UserMutArgsArgs;
347
333
  };
348
334
  declare function getRemoveMemberArgsEncoder(): Encoder<RemoveMemberArgsArgs>;
349
335
  declare function getRemoveMemberArgsDecoder(): Decoder<RemoveMemberArgs$1>;
@@ -529,41 +515,6 @@ declare function getUserMutArgsEncoder(): Encoder<UserMutArgsArgs>;
529
515
  declare function getUserMutArgsDecoder(): Decoder<UserMutArgs>;
530
516
  declare function getUserMutArgsCodec(): Codec<UserMutArgsArgs, UserMutArgs>;
531
517
 
532
- type UserReadOnlyArgs = {
533
- accountMeta: CompressedAccountMetaReadOnly;
534
- data: User;
535
- };
536
- type UserReadOnlyArgsArgs = {
537
- accountMeta: CompressedAccountMetaReadOnlyArgs;
538
- data: UserArgs;
539
- };
540
- declare function getUserReadOnlyArgsEncoder(): Encoder<UserReadOnlyArgsArgs>;
541
- declare function getUserReadOnlyArgsDecoder(): Decoder<UserReadOnlyArgs>;
542
- declare function getUserReadOnlyArgsCodec(): Codec<UserReadOnlyArgsArgs, UserReadOnlyArgs>;
543
-
544
- type UserReadOnlyOrMutateArgs = {
545
- __kind: "Read";
546
- fields: readonly [UserReadOnlyArgs];
547
- } | {
548
- __kind: "Mutate";
549
- fields: readonly [UserMutArgs];
550
- };
551
- type UserReadOnlyOrMutateArgsArgs = {
552
- __kind: "Read";
553
- fields: readonly [UserReadOnlyArgsArgs];
554
- } | {
555
- __kind: "Mutate";
556
- fields: readonly [UserMutArgsArgs];
557
- };
558
- declare function getUserReadOnlyOrMutateArgsEncoder(): Encoder<UserReadOnlyOrMutateArgsArgs>;
559
- declare function getUserReadOnlyOrMutateArgsDecoder(): Decoder<UserReadOnlyOrMutateArgs>;
560
- declare function getUserReadOnlyOrMutateArgsCodec(): Codec<UserReadOnlyOrMutateArgsArgs, UserReadOnlyOrMutateArgs>;
561
- declare function userReadOnlyOrMutateArgs(kind: "Read", data: GetDiscriminatedUnionVariantContent<UserReadOnlyOrMutateArgsArgs, "__kind", "Read">["fields"]): GetDiscriminatedUnionVariant<UserReadOnlyOrMutateArgsArgs, "__kind", "Read">;
562
- declare function userReadOnlyOrMutateArgs(kind: "Mutate", data: GetDiscriminatedUnionVariantContent<UserReadOnlyOrMutateArgsArgs, "__kind", "Mutate">["fields"]): GetDiscriminatedUnionVariant<UserReadOnlyOrMutateArgsArgs, "__kind", "Mutate">;
563
- declare function isUserReadOnlyOrMutateArgs<K extends UserReadOnlyOrMutateArgs["__kind"]>(kind: K, value: UserReadOnlyOrMutateArgs): value is UserReadOnlyOrMutateArgs & {
564
- __kind: K;
565
- };
566
-
567
518
  declare enum UserRole {
568
519
  Member = 0,
569
520
  PermanentMember = 1,
@@ -692,46 +643,48 @@ declare const MULTI_WALLET_ERROR__DURABLE_NONCE_DETECTED = 6009;
692
643
  declare const MULTI_WALLET_ERROR__DUPLICATE_MEMBER = 6010;
693
644
  declare const MULTI_WALLET_ERROR__PERMANENT_MEMBER = 6011;
694
645
  declare const MULTI_WALLET_ERROR__ONLY_ONE_PERMANENT_MEMBER_ALLOWED = 6012;
695
- declare const MULTI_WALLET_ERROR__ONLY_ONE_TRANSACTION_MANAGER_ALLOWED = 6013;
696
- declare const MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_PERMISSION = 6014;
697
- declare const MULTI_WALLET_ERROR__EXPECTED_TRANSACTION_MANAGER_ROLE_MISMATCH = 6015;
698
- declare const MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_CONFIG = 6016;
699
- declare const MULTI_WALLET_ERROR__EXPECTED_ADMINISTRATOR_ROLE_MISMATCH = 6017;
700
- declare const MULTI_WALLET_ERROR__INVALID_ADMINISTRATOR_CONFIG = 6018;
701
- declare const MULTI_WALLET_ERROR__EMPTY_MEMBERS = 6019;
702
- declare const MULTI_WALLET_ERROR__TOO_MANY_MEMBERS = 6020;
703
- declare const MULTI_WALLET_ERROR__INVALID_THRESHOLD = 6021;
704
- declare const MULTI_WALLET_ERROR__INVALID_TRANSACTION_MESSAGE = 6022;
705
- declare const MULTI_WALLET_ERROR__INVALID_NUMBER_OF_ACCOUNTS = 6023;
706
- declare const MULTI_WALLET_ERROR__INVALID_ACCOUNT = 6024;
707
- declare const MULTI_WALLET_ERROR__INVALID_USER_ROLE = 6025;
708
- declare const MULTI_WALLET_ERROR__INVALID_ARGUMENTS = 6026;
709
- declare const MULTI_WALLET_ERROR__MISSING_ACCOUNT = 6027;
710
- declare const MULTI_WALLET_ERROR__MISSING_USER_ARGS = 6028;
711
- declare const MULTI_WALLET_ERROR__ALREADY_DELEGATED = 6029;
712
- declare const MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_EXECUTE_PERMISSION = 6030;
713
- declare const MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_INITIATE_PERMISSION = 6031;
714
- declare const MULTI_WALLET_ERROR__INSUFFICIENT_SIGNERS_WITH_VOTE_PERMISSION = 6032;
715
- declare const MULTI_WALLET_ERROR__UNEXPECTED_SIGNER = 6033;
716
- declare const MULTI_WALLET_ERROR__NO_SIGNER_FOUND = 6034;
717
- declare const MULTI_WALLET_ERROR__UNAUTHORISED_TO_CLOSE_TRANSACTION_BUFFER = 6035;
718
- declare const MULTI_WALLET_ERROR__INVALID_BUFFER = 6036;
719
- declare const MULTI_WALLET_ERROR__FINAL_BUFFER_HASH_MISMATCH = 6037;
720
- declare const MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_EXCEEDED = 6038;
721
- declare const MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_MISMATCH = 6039;
722
- declare const MULTI_WALLET_ERROR__TRANSACTION_HAS_EXPIRED = 6040;
723
- declare const MULTI_WALLET_ERROR__TRANSACTION_NOT_APPROVED = 6041;
724
- declare const MULTI_WALLET_ERROR__PROTECTED_ACCOUNT = 6042;
725
- declare const MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED = 6043;
726
- declare const MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY = 6044;
727
- declare const MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT = 6045;
728
- declare const MULTI_WALLET_ERROR__SLOT_NUMBER_NOT_FOUND = 6046;
729
- declare const MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_DISABLED = 6047;
730
- declare const MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_MISSING = 6048;
731
- declare const MULTI_WALLET_ERROR__MEMBER_DOES_NOT_BELONG_TO_DOMAIN_CONFIG = 6049;
732
- declare const MULTI_WALLET_ERROR__ORIGIN_INDEX_OUT_OF_BOUNDS = 6050;
733
- declare const MULTI_WALLET_ERROR__INVALID_ADDRESS_TREE = 6051;
734
- type MultiWalletError = typeof MULTI_WALLET_ERROR__ALREADY_DELEGATED | typeof MULTI_WALLET_ERROR__CLIENT_DATA_HASH_MISMATCH | typeof MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_DISABLED | typeof MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_MISSING | typeof MULTI_WALLET_ERROR__DUPLICATE_MEMBER | typeof MULTI_WALLET_ERROR__DURABLE_NONCE_DETECTED | typeof MULTI_WALLET_ERROR__EMPTY_MEMBERS | typeof MULTI_WALLET_ERROR__EXPECTED_ADMINISTRATOR_ROLE_MISMATCH | typeof MULTI_WALLET_ERROR__EXPECTED_MESSAGE_HASH_MISMATCH | typeof MULTI_WALLET_ERROR__EXPECTED_TRANSACTION_MANAGER_ROLE_MISMATCH | typeof MULTI_WALLET_ERROR__FINAL_BUFFER_HASH_MISMATCH | typeof MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_EXCEEDED | typeof MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_MISMATCH | typeof MULTI_WALLET_ERROR__INSUFFICIENT_SIGNERS_WITH_VOTE_PERMISSION | typeof MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_EXECUTE_PERMISSION | typeof MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_INITIATE_PERMISSION | typeof MULTI_WALLET_ERROR__INVALID_ACCOUNT | typeof MULTI_WALLET_ERROR__INVALID_ADDRESS_TREE | typeof MULTI_WALLET_ERROR__INVALID_ADMINISTRATOR_CONFIG | typeof MULTI_WALLET_ERROR__INVALID_ARGUMENTS | typeof MULTI_WALLET_ERROR__INVALID_BUFFER | typeof MULTI_WALLET_ERROR__INVALID_NUMBER_OF_ACCOUNTS | typeof MULTI_WALLET_ERROR__INVALID_SECP256R1_INSTRUCTION | typeof MULTI_WALLET_ERROR__INVALID_SECP256R1_PUBLIC_KEY | typeof MULTI_WALLET_ERROR__INVALID_SECP256R1_VERIFY_ARG | typeof MULTI_WALLET_ERROR__INVALID_SIGNATURE_OFFSETS | typeof MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT | typeof MULTI_WALLET_ERROR__INVALID_THRESHOLD | typeof MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_CONFIG | typeof MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_PERMISSION | typeof MULTI_WALLET_ERROR__INVALID_TRANSACTION_MESSAGE | typeof MULTI_WALLET_ERROR__INVALID_USER_ROLE | typeof MULTI_WALLET_ERROR__MALFORMED_SIGNED_MESSAGE | typeof MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED | typeof MULTI_WALLET_ERROR__MEMBER_DOES_NOT_BELONG_TO_DOMAIN_CONFIG | typeof MULTI_WALLET_ERROR__MISSING_ACCOUNT | typeof MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY | typeof MULTI_WALLET_ERROR__MISSING_USER_ARGS | typeof MULTI_WALLET_ERROR__NO_SIGNER_FOUND | typeof MULTI_WALLET_ERROR__ONLY_ONE_PERMANENT_MEMBER_ALLOWED | typeof MULTI_WALLET_ERROR__ONLY_ONE_TRANSACTION_MANAGER_ALLOWED | typeof MULTI_WALLET_ERROR__ORIGIN_INDEX_OUT_OF_BOUNDS | typeof MULTI_WALLET_ERROR__PERMANENT_MEMBER | typeof MULTI_WALLET_ERROR__PROTECTED_ACCOUNT | typeof MULTI_WALLET_ERROR__RP_ID_HASH_MISMATCH | typeof MULTI_WALLET_ERROR__SIGNATURE_INDEX_OUT_OF_BOUNDS | typeof MULTI_WALLET_ERROR__SLOT_NUMBER_NOT_FOUND | typeof MULTI_WALLET_ERROR__TOO_MANY_MEMBERS | typeof MULTI_WALLET_ERROR__TRANSACTION_HAS_EXPIRED | typeof MULTI_WALLET_ERROR__TRANSACTION_NOT_APPROVED | typeof MULTI_WALLET_ERROR__UNAUTHORISED_TO_CLOSE_TRANSACTION_BUFFER | typeof MULTI_WALLET_ERROR__UNEXPECTED_SIGNER;
646
+ declare const MULTI_WALLET_ERROR__INVALID_PERMANENT_MEMBER_CONFIG = 6013;
647
+ declare const MULTI_WALLET_ERROR__ONLY_ONE_TRANSACTION_MANAGER_ALLOWED = 6014;
648
+ declare const MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_PERMISSION = 6015;
649
+ declare const MULTI_WALLET_ERROR__EXPECTED_TRANSACTION_MANAGER_ROLE_MISMATCH = 6016;
650
+ declare const MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_CONFIG = 6017;
651
+ declare const MULTI_WALLET_ERROR__EXPECTED_ADMINISTRATOR_ROLE_MISMATCH = 6018;
652
+ declare const MULTI_WALLET_ERROR__INVALID_ADMINISTRATOR_CONFIG = 6019;
653
+ declare const MULTI_WALLET_ERROR__EMPTY_MEMBERS = 6020;
654
+ declare const MULTI_WALLET_ERROR__TOO_MANY_MEMBERS = 6021;
655
+ declare const MULTI_WALLET_ERROR__INVALID_THRESHOLD = 6022;
656
+ declare const MULTI_WALLET_ERROR__INVALID_TRANSACTION_MESSAGE = 6023;
657
+ declare const MULTI_WALLET_ERROR__INVALID_NUMBER_OF_ACCOUNTS = 6024;
658
+ declare const MULTI_WALLET_ERROR__INVALID_ACCOUNT = 6025;
659
+ declare const MULTI_WALLET_ERROR__INVALID_USER_ROLE = 6026;
660
+ declare const MULTI_WALLET_ERROR__INVALID_ARGUMENTS = 6027;
661
+ declare const MULTI_WALLET_ERROR__MISSING_ACCOUNT = 6028;
662
+ declare const MULTI_WALLET_ERROR__MISSING_USER_ARGS = 6029;
663
+ declare const MULTI_WALLET_ERROR__ALREADY_DELEGATED = 6030;
664
+ declare const MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_EXECUTE_PERMISSION = 6031;
665
+ declare const MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_INITIATE_PERMISSION = 6032;
666
+ declare const MULTI_WALLET_ERROR__INSUFFICIENT_SIGNERS_WITH_VOTE_PERMISSION = 6033;
667
+ declare const MULTI_WALLET_ERROR__INVALID_NON_DELEGATED_SIGNERS = 6034;
668
+ declare const MULTI_WALLET_ERROR__UNEXPECTED_SIGNER = 6035;
669
+ declare const MULTI_WALLET_ERROR__NO_SIGNER_FOUND = 6036;
670
+ declare const MULTI_WALLET_ERROR__UNAUTHORISED_TO_CLOSE_TRANSACTION_BUFFER = 6037;
671
+ declare const MULTI_WALLET_ERROR__INVALID_BUFFER = 6038;
672
+ declare const MULTI_WALLET_ERROR__FINAL_BUFFER_HASH_MISMATCH = 6039;
673
+ declare const MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_EXCEEDED = 6040;
674
+ declare const MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_MISMATCH = 6041;
675
+ declare const MULTI_WALLET_ERROR__TRANSACTION_HAS_EXPIRED = 6042;
676
+ declare const MULTI_WALLET_ERROR__TRANSACTION_NOT_APPROVED = 6043;
677
+ declare const MULTI_WALLET_ERROR__PROTECTED_ACCOUNT = 6044;
678
+ declare const MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED = 6045;
679
+ declare const MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY = 6046;
680
+ declare const MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT = 6047;
681
+ declare const MULTI_WALLET_ERROR__SLOT_NUMBER_NOT_FOUND = 6048;
682
+ declare const MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_DISABLED = 6049;
683
+ declare const MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_MISSING = 6050;
684
+ declare const MULTI_WALLET_ERROR__MEMBER_DOES_NOT_BELONG_TO_DOMAIN_CONFIG = 6051;
685
+ declare const MULTI_WALLET_ERROR__ORIGIN_INDEX_OUT_OF_BOUNDS = 6052;
686
+ declare const MULTI_WALLET_ERROR__INVALID_ADDRESS_TREE = 6053;
687
+ type MultiWalletError = typeof MULTI_WALLET_ERROR__ALREADY_DELEGATED | typeof MULTI_WALLET_ERROR__CLIENT_DATA_HASH_MISMATCH | typeof MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_DISABLED | typeof MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_MISSING | typeof MULTI_WALLET_ERROR__DUPLICATE_MEMBER | typeof MULTI_WALLET_ERROR__DURABLE_NONCE_DETECTED | typeof MULTI_WALLET_ERROR__EMPTY_MEMBERS | typeof MULTI_WALLET_ERROR__EXPECTED_ADMINISTRATOR_ROLE_MISMATCH | typeof MULTI_WALLET_ERROR__EXPECTED_MESSAGE_HASH_MISMATCH | typeof MULTI_WALLET_ERROR__EXPECTED_TRANSACTION_MANAGER_ROLE_MISMATCH | typeof MULTI_WALLET_ERROR__FINAL_BUFFER_HASH_MISMATCH | typeof MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_EXCEEDED | typeof MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_MISMATCH | typeof MULTI_WALLET_ERROR__INSUFFICIENT_SIGNERS_WITH_VOTE_PERMISSION | typeof MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_EXECUTE_PERMISSION | typeof MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_INITIATE_PERMISSION | typeof MULTI_WALLET_ERROR__INVALID_ACCOUNT | typeof MULTI_WALLET_ERROR__INVALID_ADDRESS_TREE | typeof MULTI_WALLET_ERROR__INVALID_ADMINISTRATOR_CONFIG | typeof MULTI_WALLET_ERROR__INVALID_ARGUMENTS | typeof MULTI_WALLET_ERROR__INVALID_BUFFER | typeof MULTI_WALLET_ERROR__INVALID_NON_DELEGATED_SIGNERS | typeof MULTI_WALLET_ERROR__INVALID_NUMBER_OF_ACCOUNTS | typeof MULTI_WALLET_ERROR__INVALID_PERMANENT_MEMBER_CONFIG | typeof MULTI_WALLET_ERROR__INVALID_SECP256R1_INSTRUCTION | typeof MULTI_WALLET_ERROR__INVALID_SECP256R1_PUBLIC_KEY | typeof MULTI_WALLET_ERROR__INVALID_SECP256R1_VERIFY_ARG | typeof MULTI_WALLET_ERROR__INVALID_SIGNATURE_OFFSETS | typeof MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT | typeof MULTI_WALLET_ERROR__INVALID_THRESHOLD | typeof MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_CONFIG | typeof MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_PERMISSION | typeof MULTI_WALLET_ERROR__INVALID_TRANSACTION_MESSAGE | typeof MULTI_WALLET_ERROR__INVALID_USER_ROLE | typeof MULTI_WALLET_ERROR__MALFORMED_SIGNED_MESSAGE | typeof MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED | typeof MULTI_WALLET_ERROR__MEMBER_DOES_NOT_BELONG_TO_DOMAIN_CONFIG | typeof MULTI_WALLET_ERROR__MISSING_ACCOUNT | typeof MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY | typeof MULTI_WALLET_ERROR__MISSING_USER_ARGS | typeof MULTI_WALLET_ERROR__NO_SIGNER_FOUND | typeof MULTI_WALLET_ERROR__ONLY_ONE_PERMANENT_MEMBER_ALLOWED | typeof MULTI_WALLET_ERROR__ONLY_ONE_TRANSACTION_MANAGER_ALLOWED | typeof MULTI_WALLET_ERROR__ORIGIN_INDEX_OUT_OF_BOUNDS | typeof MULTI_WALLET_ERROR__PERMANENT_MEMBER | typeof MULTI_WALLET_ERROR__PROTECTED_ACCOUNT | typeof MULTI_WALLET_ERROR__RP_ID_HASH_MISMATCH | typeof MULTI_WALLET_ERROR__SIGNATURE_INDEX_OUT_OF_BOUNDS | typeof MULTI_WALLET_ERROR__SLOT_NUMBER_NOT_FOUND | typeof MULTI_WALLET_ERROR__TOO_MANY_MEMBERS | typeof MULTI_WALLET_ERROR__TRANSACTION_HAS_EXPIRED | typeof MULTI_WALLET_ERROR__TRANSACTION_NOT_APPROVED | typeof MULTI_WALLET_ERROR__UNAUTHORISED_TO_CLOSE_TRANSACTION_BUFFER | typeof MULTI_WALLET_ERROR__UNEXPECTED_SIGNER;
735
688
  declare function getMultiWalletErrorMessage(code: MultiWalletError): string;
736
689
  declare function isMultiWalletError<TProgramErrorCode extends MultiWalletError>(error: unknown, transactionMessage: {
737
690
  instructions: Record<number, {
@@ -768,26 +721,27 @@ declare enum MultiWalletInstruction {
768
721
  DisableDomainConfig = 10,
769
722
  EditDomainConfig = 11,
770
723
  EditTransactionManagerUrl = 12,
771
- MigrateCompressedSettings = 13,
772
- MigrateCompressedUsers = 14,
773
- NativeTransferIntent = 15,
774
- NativeTransferIntentCompressed = 16,
775
- TokenTransferIntent = 17,
776
- TokenTransferIntentCompressed = 18,
777
- TransactionBufferClose = 19,
778
- TransactionBufferCloseCompressed = 20,
779
- TransactionBufferCreate = 21,
780
- TransactionBufferCreateCompressed = 22,
781
- TransactionBufferExecute = 23,
782
- TransactionBufferExecuteCompressed = 24,
783
- TransactionBufferExtend = 25,
784
- TransactionBufferExtendCompressed = 26,
785
- TransactionBufferVote = 27,
786
- TransactionBufferVoteCompressed = 28,
787
- TransactionExecute = 29,
788
- TransactionExecuteCompressed = 30,
789
- TransactionExecuteSync = 31,
790
- TransactionExecuteSyncCompressed = 32
724
+ EditUserDelegate = 13,
725
+ MigrateCompressedSettings = 14,
726
+ MigrateCompressedUsers = 15,
727
+ NativeTransferIntent = 16,
728
+ NativeTransferIntentCompressed = 17,
729
+ TokenTransferIntent = 18,
730
+ TokenTransferIntentCompressed = 19,
731
+ TransactionBufferClose = 20,
732
+ TransactionBufferCloseCompressed = 21,
733
+ TransactionBufferCreate = 22,
734
+ TransactionBufferCreateCompressed = 23,
735
+ TransactionBufferExecute = 24,
736
+ TransactionBufferExecuteCompressed = 25,
737
+ TransactionBufferExtend = 26,
738
+ TransactionBufferExtendCompressed = 27,
739
+ TransactionBufferVote = 28,
740
+ TransactionBufferVoteCompressed = 29,
741
+ TransactionExecute = 30,
742
+ TransactionExecuteCompressed = 31,
743
+ TransactionExecuteSync = 32,
744
+ TransactionExecuteSyncCompressed = 33
791
745
  }
792
746
  declare function identifyMultiWalletInstruction(instruction: {
793
747
  data: ReadonlyUint8Array;
@@ -819,6 +773,8 @@ type ParsedMultiWalletInstruction<TProgram extends string = "reviR1xysEChySVSWGa
819
773
  } & ParsedEditDomainConfigInstruction<TProgram>) | ({
820
774
  instructionType: MultiWalletInstruction.EditTransactionManagerUrl;
821
775
  } & ParsedEditTransactionManagerUrlInstruction<TProgram>) | ({
776
+ instructionType: MultiWalletInstruction.EditUserDelegate;
777
+ } & ParsedEditUserDelegateInstruction<TProgram>) | ({
822
778
  instructionType: MultiWalletInstruction.MigrateCompressedSettings;
823
779
  } & ParsedMigrateCompressedSettingsInstruction<TProgram>) | ({
824
780
  instructionType: MultiWalletInstruction.MigrateCompressedUsers;
@@ -1318,7 +1274,6 @@ type CreateMultiWalletCompressedInstructionData = {
1318
1274
  settingsCreation: SettingsCreationArgs;
1319
1275
  userMutArgs: UserMutArgs;
1320
1276
  settingsIndex: bigint;
1321
- delegateOperation: DelegateOp;
1322
1277
  };
1323
1278
  type CreateMultiWalletCompressedInstructionDataArgs = {
1324
1279
  secp256r1VerifyArgs: OptionOrNullable<Secp256r1VerifyArgsArgs>;
@@ -1326,7 +1281,6 @@ type CreateMultiWalletCompressedInstructionDataArgs = {
1326
1281
  settingsCreation: SettingsCreationArgsArgs;
1327
1282
  userMutArgs: UserMutArgsArgs;
1328
1283
  settingsIndex: number | bigint;
1329
- delegateOperation: DelegateOpArgs;
1330
1284
  };
1331
1285
  declare function getCreateMultiWalletCompressedInstructionDataEncoder(): Encoder<CreateMultiWalletCompressedInstructionDataArgs>;
1332
1286
  declare function getCreateMultiWalletCompressedInstructionDataDecoder(): Decoder<CreateMultiWalletCompressedInstructionData>;
@@ -1351,7 +1305,6 @@ type CreateMultiWalletCompressedAsyncInput<TAccountPayer extends string = string
1351
1305
  settingsCreation: CreateMultiWalletCompressedInstructionDataArgs["settingsCreation"];
1352
1306
  userMutArgs: CreateMultiWalletCompressedInstructionDataArgs["userMutArgs"];
1353
1307
  settingsIndex: CreateMultiWalletCompressedInstructionDataArgs["settingsIndex"];
1354
- delegateOperation: CreateMultiWalletCompressedInstructionDataArgs["delegateOperation"];
1355
1308
  remainingAccounts: CreateMultiWalletCompressedInstructionExtraArgs["remainingAccounts"];
1356
1309
  };
1357
1310
  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?: {
@@ -1371,7 +1324,6 @@ type CreateMultiWalletCompressedInput<TAccountPayer extends string = string, TAc
1371
1324
  settingsCreation: CreateMultiWalletCompressedInstructionDataArgs["settingsCreation"];
1372
1325
  userMutArgs: CreateMultiWalletCompressedInstructionDataArgs["userMutArgs"];
1373
1326
  settingsIndex: CreateMultiWalletCompressedInstructionDataArgs["settingsIndex"];
1374
- delegateOperation: CreateMultiWalletCompressedInstructionDataArgs["delegateOperation"];
1375
1327
  remainingAccounts: CreateMultiWalletCompressedInstructionExtraArgs["remainingAccounts"];
1376
1328
  };
1377
1329
  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?: {
@@ -1621,7 +1573,7 @@ declare function parseEditDomainConfigInstruction<TProgram extends string, TAcco
1621
1573
  declare const EDIT_TRANSACTION_MANAGER_URL_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1622
1574
  declare function getEditTransactionManagerUrlDiscriminatorBytes(): ReadonlyUint8Array;
1623
1575
  type EditTransactionManagerUrlInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountAuthority extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1624
- TAccountAuthority extends string ? ReadonlySignerAccount<TAccountAuthority> & AccountSignerMeta<TAccountAuthority> : TAccountAuthority,
1576
+ TAccountAuthority extends string ? WritableSignerAccount<TAccountAuthority> & AccountSignerMeta<TAccountAuthority> : TAccountAuthority,
1625
1577
  ...TRemainingAccounts
1626
1578
  ]>;
1627
1579
  type EditTransactionManagerUrlInstructionData = {
@@ -1663,6 +1615,78 @@ type ParsedEditTransactionManagerUrlInstruction<TProgram extends string = typeof
1663
1615
  };
1664
1616
  declare function parseEditTransactionManagerUrlInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedEditTransactionManagerUrlInstruction<TProgram, TAccountMetas>;
1665
1617
 
1618
+ declare const EDIT_USER_DELEGATE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1619
+ declare function getEditUserDelegateDiscriminatorBytes(): ReadonlyUint8Array;
1620
+ type EditUserDelegateInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountFeePayer extends string | AccountMeta<string> = string, TAccountSigner extends string | AccountMeta<string> = string, TAccountOldSettings extends string | AccountMeta<string> = string, TAccountNewSettings extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountDomainConfig extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1621
+ TAccountFeePayer extends string ? WritableSignerAccount<TAccountFeePayer> & AccountSignerMeta<TAccountFeePayer> : TAccountFeePayer,
1622
+ TAccountSigner extends string ? ReadonlySignerAccount<TAccountSigner> & AccountSignerMeta<TAccountSigner> : TAccountSigner,
1623
+ TAccountOldSettings extends string ? WritableAccount<TAccountOldSettings> : TAccountOldSettings,
1624
+ TAccountNewSettings extends string ? WritableAccount<TAccountNewSettings> : TAccountNewSettings,
1625
+ TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
1626
+ TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
1627
+ TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
1628
+ ...TRemainingAccounts
1629
+ ]>;
1630
+ type EditUserDelegateInstructionData = {
1631
+ discriminator: ReadonlyUint8Array;
1632
+ userMutArgs: UserMutArgs;
1633
+ secp256r1VerifyArgs: Option<Secp256r1VerifyArgs>;
1634
+ delegateTo: Option<SettingsIndexWithAddress>;
1635
+ oldSettingsMutArgs: Option<SettingsMutArgs>;
1636
+ newSettingsMutArgs: Option<SettingsMutArgs>;
1637
+ compressedProofArgs: ProofArgs;
1638
+ };
1639
+ type EditUserDelegateInstructionDataArgs = {
1640
+ userMutArgs: UserMutArgsArgs;
1641
+ secp256r1VerifyArgs: OptionOrNullable<Secp256r1VerifyArgsArgs>;
1642
+ delegateTo: OptionOrNullable<SettingsIndexWithAddressArgs>;
1643
+ oldSettingsMutArgs: OptionOrNullable<SettingsMutArgsArgs>;
1644
+ newSettingsMutArgs: OptionOrNullable<SettingsMutArgsArgs>;
1645
+ compressedProofArgs: ProofArgsArgs;
1646
+ };
1647
+ declare function getEditUserDelegateInstructionDataEncoder(): Encoder<EditUserDelegateInstructionDataArgs>;
1648
+ declare function getEditUserDelegateInstructionDataDecoder(): Decoder<EditUserDelegateInstructionData>;
1649
+ declare function getEditUserDelegateInstructionDataCodec(): Codec<EditUserDelegateInstructionDataArgs, EditUserDelegateInstructionData>;
1650
+ type EditUserDelegateInstructionExtraArgs = {
1651
+ remainingAccounts: Array<{
1652
+ address: Address;
1653
+ role: number;
1654
+ }>;
1655
+ };
1656
+ type EditUserDelegateInput<TAccountFeePayer extends string = string, TAccountSigner extends string = string, TAccountOldSettings extends string = string, TAccountNewSettings extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountDomainConfig extends string = string> = {
1657
+ feePayer: TransactionSigner<TAccountFeePayer>;
1658
+ signer?: TransactionSigner<TAccountSigner>;
1659
+ oldSettings?: Address<TAccountOldSettings>;
1660
+ newSettings?: Address<TAccountNewSettings>;
1661
+ slotHashSysvar?: Address<TAccountSlotHashSysvar>;
1662
+ instructionsSysvar?: Address<TAccountInstructionsSysvar>;
1663
+ domainConfig?: Address<TAccountDomainConfig>;
1664
+ userMutArgs: EditUserDelegateInstructionDataArgs["userMutArgs"];
1665
+ secp256r1VerifyArgs: EditUserDelegateInstructionDataArgs["secp256r1VerifyArgs"];
1666
+ delegateTo: EditUserDelegateInstructionDataArgs["delegateTo"];
1667
+ oldSettingsMutArgs: EditUserDelegateInstructionDataArgs["oldSettingsMutArgs"];
1668
+ newSettingsMutArgs: EditUserDelegateInstructionDataArgs["newSettingsMutArgs"];
1669
+ compressedProofArgs: EditUserDelegateInstructionDataArgs["compressedProofArgs"];
1670
+ remainingAccounts: EditUserDelegateInstructionExtraArgs["remainingAccounts"];
1671
+ };
1672
+ declare function getEditUserDelegateInstruction<TAccountFeePayer extends string, TAccountSigner extends string, TAccountOldSettings extends string, TAccountNewSettings extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountDomainConfig extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: EditUserDelegateInput<TAccountFeePayer, TAccountSigner, TAccountOldSettings, TAccountNewSettings, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountDomainConfig>, config?: {
1673
+ programAddress?: TProgramAddress;
1674
+ }): EditUserDelegateInstruction<TProgramAddress, TAccountFeePayer, TAccountSigner, TAccountOldSettings, TAccountNewSettings, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountDomainConfig>;
1675
+ type ParsedEditUserDelegateInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
1676
+ programAddress: Address<TProgram>;
1677
+ accounts: {
1678
+ feePayer: TAccountMetas[0];
1679
+ signer?: TAccountMetas[1] | undefined;
1680
+ oldSettings?: TAccountMetas[2] | undefined;
1681
+ newSettings?: TAccountMetas[3] | undefined;
1682
+ slotHashSysvar?: TAccountMetas[4] | undefined;
1683
+ instructionsSysvar?: TAccountMetas[5] | undefined;
1684
+ domainConfig?: TAccountMetas[6] | undefined;
1685
+ };
1686
+ data: EditUserDelegateInstructionData;
1687
+ };
1688
+ declare function parseEditUserDelegateInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedEditUserDelegateInstruction<TProgram, TAccountMetas>;
1689
+
1666
1690
  declare const MIGRATE_COMPRESSED_SETTINGS_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1667
1691
  declare function getMigrateCompressedSettingsDiscriminatorBytes(): ReadonlyUint8Array;
1668
1692
  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<[
@@ -2843,21 +2867,14 @@ type PermissionArgs = {
2843
2867
  execute: boolean;
2844
2868
  };
2845
2869
  type AddMemberArgs = {
2846
- member: TransactionSigner | SignedSecp256r1Key;
2847
- userAddressTreeIndex?: number;
2848
- permissions: PermissionArgs;
2849
- delegateOperation: DelegateOp.Add;
2850
- } | {
2851
2870
  member: Address | SignedSecp256r1Key;
2852
2871
  userAddressTreeIndex?: number;
2853
2872
  permissions: PermissionArgs;
2854
- delegateOperation: DelegateOp.Ignore;
2855
2873
  };
2856
2874
  type EditMemberArgs = {
2857
2875
  member: Address | Secp256r1Key;
2858
2876
  userAddressTreeIndex?: number;
2859
2877
  permissions: PermissionArgs;
2860
- delegateOperation: DelegateOpArgs;
2861
2878
  };
2862
2879
  type RemoveMemberArgs = {
2863
2880
  member: Address | Secp256r1Key;
@@ -2982,7 +2999,7 @@ type MessageAuthenticationResponse = {
2982
2999
  userAddressTreeIndex?: number;
2983
3000
  additionalInfo?: any;
2984
3001
  };
2985
- type TransactionActionType = "create" | "create_with_preauthorized_execution" | "execute" | "vote" | "sync" | "close" | "add_new_member" | "compress" | "decompress" | "transfer_intent";
3002
+ type TransactionActionType = "create" | "create_with_preauthorized_execution" | "execute" | "vote" | "sync" | "close" | "add_new_member" | "compress" | "decompress" | "transfer_intent" | "change_delegate";
2986
3003
  type TransactionPayload = {
2987
3004
  transactionActionType: TransactionActionType;
2988
3005
  transactionAddress: string;
@@ -3148,6 +3165,14 @@ declare function editTransactionManagerUrl({ authority, userAddressTreeIndex, tr
3148
3165
  transactionManagerUrl: string;
3149
3166
  }): Promise<EditTransactionManagerUrlInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, []>>;
3150
3167
 
3168
+ declare function editUserDelegate({ payer, user, userAddressTreeIndex, newDelegate, cachedAccounts, }: {
3169
+ payer: TransactionSigner;
3170
+ user: TransactionSigner | SignedSecp256r1Key;
3171
+ userAddressTreeIndex?: number;
3172
+ cachedAccounts?: Map<string, any>;
3173
+ newDelegate?: SettingsIndexWithAddress;
3174
+ }): Promise<Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[]>;
3175
+
3151
3176
  declare function migrateSettings({ args, authority, index, settingsAddressTreeIndex, }: {
3152
3177
  authority: TransactionSigner;
3153
3178
  args: CompressedSettingsData;
@@ -3168,12 +3193,8 @@ type CreateWalletArgs = {
3168
3193
  cachedAccounts?: Map<string, any>;
3169
3194
  initialMember: TransactionSigner | SignedSecp256r1Key;
3170
3195
  userAddressTreeIndex?: number;
3171
- delegateOperation: DelegateOp.Add | DelegateOp.Ignore;
3172
3196
  };
3173
- declare function createWallet({ index, payer, initialMember, userAddressTreeIndex, delegateOperation, cachedAccounts, }: CreateWalletArgs): Promise<{
3174
- instructions: Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[];
3175
- secp256r1VerifyInput: Secp256r1VerifyInput;
3176
- }>;
3197
+ declare function createWallet({ index, payer, initialMember, userAddressTreeIndex, cachedAccounts, }: CreateWalletArgs): Promise<Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[]>;
3177
3198
 
3178
3199
  declare function decompressSettingsAccount({ index, settingsAddressTreeIndex, payer, signers, cachedAccounts, }: {
3179
3200
  index: number | bigint;
@@ -3438,4 +3459,4 @@ declare function getSignedTransactionManager({ authResponses, transactionManager
3438
3459
  declare function createTransactionManagerSigner(address: Address, url: string, authResponses?: TransactionAuthDetails[], transactionMessageBytes?: ReadonlyUint8Array): TransactionSigner;
3439
3460
  declare function convertMemberKeyToString(memberKey: MemberKey): string;
3440
3461
 
3441
- 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, type ExpectedSecp256r1Signers, type ExpectedSecp256r1SignersArgs, GLOBAL_COUNTER_DISCRIMINATOR, type GlobalCounter, type GlobalCounterArgs, type IKeyType, type IPermission, type IPermissions, type JitoTipsConfig, KeyType, type LinkWalletArgs, type LinkWalletArgsArgs, MIGRATE_COMPRESSED_SETTINGS_DISCRIMINATOR, MIGRATE_COMPRESSED_USERS_DISCRIMINATOR, MULTI_WALLET_ERROR__ALREADY_DELEGATED, MULTI_WALLET_ERROR__CLIENT_DATA_HASH_MISMATCH, MULTI_WALLET_ERROR__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__EXPECTED_ADMINISTRATOR_ROLE_MISMATCH, MULTI_WALLET_ERROR__EXPECTED_MESSAGE_HASH_MISMATCH, MULTI_WALLET_ERROR__EXPECTED_TRANSACTION_MANAGER_ROLE_MISMATCH, MULTI_WALLET_ERROR__FINAL_BUFFER_HASH_MISMATCH, MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_EXCEEDED, MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_MISMATCH, MULTI_WALLET_ERROR__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_ADMINISTRATOR_CONFIG, MULTI_WALLET_ERROR__INVALID_ARGUMENTS, MULTI_WALLET_ERROR__INVALID_BUFFER, MULTI_WALLET_ERROR__INVALID_NUMBER_OF_ACCOUNTS, MULTI_WALLET_ERROR__INVALID_SECP256R1_INSTRUCTION, MULTI_WALLET_ERROR__INVALID_SECP256R1_PUBLIC_KEY, MULTI_WALLET_ERROR__INVALID_SECP256R1_VERIFY_ARG, MULTI_WALLET_ERROR__INVALID_SIGNATURE_OFFSETS, MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT, MULTI_WALLET_ERROR__INVALID_THRESHOLD, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_CONFIG, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_PERMISSION, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MESSAGE, MULTI_WALLET_ERROR__INVALID_USER_ROLE, MULTI_WALLET_ERROR__MALFORMED_SIGNED_MESSAGE, MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED, MULTI_WALLET_ERROR__MEMBER_DOES_NOT_BELONG_TO_DOMAIN_CONFIG, MULTI_WALLET_ERROR__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__PROTECTED_ACCOUNT, MULTI_WALLET_ERROR__RP_ID_HASH_MISMATCH, MULTI_WALLET_ERROR__SIGNATURE_INDEX_OUT_OF_BOUNDS, MULTI_WALLET_ERROR__SLOT_NUMBER_NOT_FOUND, MULTI_WALLET_ERROR__TOO_MANY_MEMBERS, MULTI_WALLET_ERROR__TRANSACTION_HAS_EXPIRED, 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, type SignClientMessage, 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 TransactionAuthDetails, type TransactionAuthDetailsWithClientSignature, 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, fetchCompressedAccount, 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, getClientAndDeviceHash, getClientSettings, 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, getExpectedSecp256r1SignersCodec, getExpectedSecp256r1SignersDecoder, getExpectedSecp256r1SignersEncoder, getFeePayer, 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, getSecp256r1Message, getSecp256r1MessageHash, getSecp256r1PubkeyCodec, getSecp256r1PubkeyDecoder, getSecp256r1PubkeyEncoder, getSecp256r1SignatureOffsetsDataDecoder, getSecp256r1SignatureOffsetsDataEncoder, getSecp256r1VerifyArgsCodec, getSecp256r1VerifyArgsDecoder, getSecp256r1VerifyArgsEncoder, getSecp256r1VerifyArgsWithDomainAddressCodec, getSecp256r1VerifyArgsWithDomainAddressDecoder, getSecp256r1VerifyArgsWithDomainAddressEncoder, getSecp256r1VerifyInstruction, getSecp256r1VerifyInstructionDataCodec, getSecp256r1VerifyInstructionDataDecoder, getSecp256r1VerifyInstructionDataEncoder, getSendAndConfirmTransaction, getSettingsCodec, getSettingsCreationArgsCodec, getSettingsCreationArgsDecoder, getSettingsCreationArgsEncoder, getSettingsDecoder, getSettingsDiscriminatorBytes, getSettingsEncoder, getSettingsFromIndex, getSettingsIndexWithAddressCodec, getSettingsIndexWithAddressDecoder, getSettingsIndexWithAddressEncoder, getSettingsMutArgsCodec, getSettingsMutArgsDecoder, getSettingsMutArgsEncoder, getSettingsReadonlyArgsCodec, getSettingsReadonlyArgsDecoder, getSettingsReadonlyArgsEncoder, getSettingsSize, getSignedSecp256r1Key, getSignedTransactionManager, getSolanaRpc, getSolanaRpcEndpoint, getTokenTransferIntentCompressedDiscriminatorBytes, getTokenTransferIntentCompressedInstruction, getTokenTransferIntentCompressedInstructionAsync, getTokenTransferIntentCompressedInstructionDataCodec, getTokenTransferIntentCompressedInstructionDataDecoder, getTokenTransferIntentCompressedInstructionDataEncoder, getTokenTransferIntentDiscriminatorBytes, getTokenTransferIntentInstruction, getTokenTransferIntentInstructionAsync, getTokenTransferIntentInstructionDataCodec, getTokenTransferIntentInstructionDataDecoder, getTokenTransferIntentInstructionDataEncoder, getTransactionBufferAddress, getTransactionBufferCloseCompressedDiscriminatorBytes, getTransactionBufferCloseCompressedInstruction, getTransactionBufferCloseCompressedInstructionDataCodec, getTransactionBufferCloseCompressedInstructionDataDecoder, getTransactionBufferCloseCompressedInstructionDataEncoder, getTransactionBufferCloseDiscriminatorBytes, getTransactionBufferCloseInstruction, getTransactionBufferCloseInstructionDataCodec, getTransactionBufferCloseInstructionDataDecoder, getTransactionBufferCloseInstructionDataEncoder, getTransactionBufferCodec, getTransactionBufferCreateArgsCodec, getTransactionBufferCreateArgsDecoder, getTransactionBufferCreateArgsEncoder, getTransactionBufferCreateCompressedDiscriminatorBytes, getTransactionBufferCreateCompressedInstruction, getTransactionBufferCreateCompressedInstructionDataCodec, getTransactionBufferCreateCompressedInstructionDataDecoder, getTransactionBufferCreateCompressedInstructionDataEncoder, getTransactionBufferCreateDiscriminatorBytes, getTransactionBufferCreateInstruction, getTransactionBufferCreateInstructionDataCodec, getTransactionBufferCreateInstructionDataDecoder, getTransactionBufferCreateInstructionDataEncoder, getTransactionBufferDecoder, getTransactionBufferDiscriminatorBytes, getTransactionBufferEncoder, getTransactionBufferExecuteCompressedDiscriminatorBytes, getTransactionBufferExecuteCompressedInstruction, getTransactionBufferExecuteCompressedInstructionDataCodec, getTransactionBufferExecuteCompressedInstructionDataDecoder, getTransactionBufferExecuteCompressedInstructionDataEncoder, getTransactionBufferExecuteDiscriminatorBytes, getTransactionBufferExecuteInstruction, getTransactionBufferExecuteInstructionDataCodec, getTransactionBufferExecuteInstructionDataDecoder, getTransactionBufferExecuteInstructionDataEncoder, getTransactionBufferExtendCompressedDiscriminatorBytes, getTransactionBufferExtendCompressedInstruction, getTransactionBufferExtendCompressedInstructionDataCodec, getTransactionBufferExtendCompressedInstructionDataDecoder, getTransactionBufferExtendCompressedInstructionDataEncoder, getTransactionBufferExtendDiscriminatorBytes, getTransactionBufferExtendInstruction, getTransactionBufferExtendInstructionDataCodec, getTransactionBufferExtendInstructionDataDecoder, getTransactionBufferExtendInstructionDataEncoder, getTransactionBufferVoteCompressedDiscriminatorBytes, getTransactionBufferVoteCompressedInstruction, getTransactionBufferVoteCompressedInstructionDataCodec, getTransactionBufferVoteCompressedInstructionDataDecoder, getTransactionBufferVoteCompressedInstructionDataEncoder, getTransactionBufferVoteDiscriminatorBytes, getTransactionBufferVoteInstruction, getTransactionBufferVoteInstructionDataCodec, getTransactionBufferVoteInstructionDataDecoder, getTransactionBufferVoteInstructionDataEncoder, getTransactionExecuteCompressedDiscriminatorBytes, getTransactionExecuteCompressedInstruction, getTransactionExecuteCompressedInstructionDataCodec, getTransactionExecuteCompressedInstructionDataDecoder, getTransactionExecuteCompressedInstructionDataEncoder, getTransactionExecuteDiscriminatorBytes, getTransactionExecuteInstruction, getTransactionExecuteInstructionDataCodec, getTransactionExecuteInstructionDataDecoder, getTransactionExecuteInstructionDataEncoder, getTransactionExecuteSyncCompressedDiscriminatorBytes, getTransactionExecuteSyncCompressedInstruction, getTransactionExecuteSyncCompressedInstructionDataCodec, getTransactionExecuteSyncCompressedInstructionDataDecoder, getTransactionExecuteSyncCompressedInstructionDataEncoder, getTransactionExecuteSyncDiscriminatorBytes, getTransactionExecuteSyncInstruction, getTransactionExecuteSyncInstructionDataCodec, getTransactionExecuteSyncInstructionDataDecoder, getTransactionExecuteSyncInstructionDataEncoder, getTransactionMessageAddressTableLookupCodec, getTransactionMessageAddressTableLookupDecoder, getTransactionMessageAddressTableLookupEncoder, getTransactionMessageCodec, getTransactionMessageDecoder, getTransactionMessageEncoder, 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, migrateSettings, migrateUsers, 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, retrieveTransactionManager, sendJitoBundle, signAndSendBundledTransactions, signAndSendTransaction, signMessageWithPasskey, signTransactionWithPasskey, tokenTransferIntent, uninitialize, userReadOnlyOrMutateArgs, vaultTransactionMessageDeserialize, vaultTransactionMessageSerialize, verifyMessage, voteTransactionBuffer };
3462
+ 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, type DisableDomainConfigInput, type DisableDomainConfigInstruction, type DisableDomainConfigInstructionData, type DisableDomainConfigInstructionDataArgs, type DisableDomainConfigInstructionExtraArgs, type DomainConfig, type DomainConfigArgs, EDIT_DOMAIN_CONFIG_DISCRIMINATOR, EDIT_TRANSACTION_MANAGER_URL_DISCRIMINATOR, EDIT_USER_DELEGATE_DISCRIMINATOR, type EditDomainConfigAsyncInput, type EditDomainConfigInput, type EditDomainConfigInstruction, type EditDomainConfigInstructionData, type EditDomainConfigInstructionDataArgs, type EditDomainConfigInstructionExtraArgs, type EditMemberArgs$1 as EditMemberArgs, type EditMemberArgsArgs, type EditTransactionManagerUrlInput, type EditTransactionManagerUrlInstruction, type EditTransactionManagerUrlInstructionData, type EditTransactionManagerUrlInstructionDataArgs, type EditTransactionManagerUrlInstructionExtraArgs, type EditUserDelegateInput, type EditUserDelegateInstruction, type EditUserDelegateInstructionData, type EditUserDelegateInstructionDataArgs, type EditUserDelegateInstructionExtraArgs, type ExpectedSecp256r1Signers, type ExpectedSecp256r1SignersArgs, GLOBAL_COUNTER_DISCRIMINATOR, type GlobalCounter, type GlobalCounterArgs, type IKeyType, type IPermission, type IPermissions, type JitoTipsConfig, KeyType, type LinkWalletArgs, type LinkWalletArgsArgs, MIGRATE_COMPRESSED_SETTINGS_DISCRIMINATOR, MIGRATE_COMPRESSED_USERS_DISCRIMINATOR, MULTI_WALLET_ERROR__ALREADY_DELEGATED, MULTI_WALLET_ERROR__CLIENT_DATA_HASH_MISMATCH, MULTI_WALLET_ERROR__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__EXPECTED_ADMINISTRATOR_ROLE_MISMATCH, MULTI_WALLET_ERROR__EXPECTED_MESSAGE_HASH_MISMATCH, MULTI_WALLET_ERROR__EXPECTED_TRANSACTION_MANAGER_ROLE_MISMATCH, MULTI_WALLET_ERROR__FINAL_BUFFER_HASH_MISMATCH, MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_EXCEEDED, MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_MISMATCH, MULTI_WALLET_ERROR__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_ADMINISTRATOR_CONFIG, MULTI_WALLET_ERROR__INVALID_ARGUMENTS, MULTI_WALLET_ERROR__INVALID_BUFFER, MULTI_WALLET_ERROR__INVALID_NON_DELEGATED_SIGNERS, MULTI_WALLET_ERROR__INVALID_NUMBER_OF_ACCOUNTS, MULTI_WALLET_ERROR__INVALID_PERMANENT_MEMBER_CONFIG, MULTI_WALLET_ERROR__INVALID_SECP256R1_INSTRUCTION, MULTI_WALLET_ERROR__INVALID_SECP256R1_PUBLIC_KEY, MULTI_WALLET_ERROR__INVALID_SECP256R1_VERIFY_ARG, MULTI_WALLET_ERROR__INVALID_SIGNATURE_OFFSETS, MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT, MULTI_WALLET_ERROR__INVALID_THRESHOLD, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_CONFIG, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_PERMISSION, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MESSAGE, MULTI_WALLET_ERROR__INVALID_USER_ROLE, MULTI_WALLET_ERROR__MALFORMED_SIGNED_MESSAGE, MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED, MULTI_WALLET_ERROR__MEMBER_DOES_NOT_BELONG_TO_DOMAIN_CONFIG, MULTI_WALLET_ERROR__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__PROTECTED_ACCOUNT, MULTI_WALLET_ERROR__RP_ID_HASH_MISMATCH, MULTI_WALLET_ERROR__SIGNATURE_INDEX_OUT_OF_BOUNDS, MULTI_WALLET_ERROR__SLOT_NUMBER_NOT_FOUND, MULTI_WALLET_ERROR__TOO_MANY_MEMBERS, MULTI_WALLET_ERROR__TRANSACTION_HAS_EXPIRED, 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 ParsedEditUserDelegateInstruction, type ParsedMigrateCompressedSettingsInstruction, type ParsedMigrateCompressedUsersInstruction, type ParsedMultiWalletInstruction, type ParsedNativeTransferIntentCompressedInstruction, type ParsedNativeTransferIntentInstruction, type ParsedSecp256r1VerifyInstruction, type ParsedTokenTransferIntentCompressedInstruction, type ParsedTokenTransferIntentInstruction, type ParsedTransactionBufferCloseCompressedInstruction, type ParsedTransactionBufferCloseInstruction, type ParsedTransactionBufferCreateCompressedInstruction, type ParsedTransactionBufferCreateInstruction, type ParsedTransactionBufferExecuteCompressedInstruction, type ParsedTransactionBufferExecuteInstruction, type ParsedTransactionBufferExtendCompressedInstruction, type ParsedTransactionBufferExtendInstruction, type ParsedTransactionBufferVoteCompressedInstruction, type ParsedTransactionBufferVoteInstruction, type ParsedTransactionExecuteCompressedInstruction, type ParsedTransactionExecuteInstruction, type ParsedTransactionExecuteSyncCompressedInstruction, type ParsedTransactionExecuteSyncInstruction, 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, type SignClientMessage, 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 TransactionAuthDetails, type TransactionAuthDetailsWithClientSignature, 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, 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, editUserDelegate, executeTransaction, executeTransactionBuffer, executeTransactionSync, extendTransactionBuffer, fetchAllDomainConfig, fetchAllGlobalCounter, fetchAllMaybeDomainConfig, fetchAllMaybeGlobalCounter, fetchAllMaybeSettings, fetchAllMaybeTransactionBuffer, fetchAllMaybeWhitelistedAddressTree, fetchAllSettings, fetchAllTransactionBuffer, fetchAllWhitelistedAddressTree, fetchCompressedAccount, 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, getClientAndDeviceHash, getClientSettings, 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, getDisableDomainConfigDiscriminatorBytes, getDisableDomainConfigInstruction, getDisableDomainConfigInstructionDataCodec, getDisableDomainConfigInstructionDataDecoder, getDisableDomainConfigInstructionDataEncoder, getDomainConfigAddress, getDomainConfigCodec, getDomainConfigDecoder, getDomainConfigDiscriminatorBytes, getDomainConfigEncoder, getDomainConfigSize, getEditDomainConfigDiscriminatorBytes, getEditDomainConfigInstruction, getEditDomainConfigInstructionAsync, getEditDomainConfigInstructionDataCodec, getEditDomainConfigInstructionDataDecoder, getEditDomainConfigInstructionDataEncoder, getEditMemberArgsCodec, getEditMemberArgsDecoder, getEditMemberArgsEncoder, getEditTransactionManagerUrlDiscriminatorBytes, getEditTransactionManagerUrlInstruction, getEditTransactionManagerUrlInstructionDataCodec, getEditTransactionManagerUrlInstructionDataDecoder, getEditTransactionManagerUrlInstructionDataEncoder, getEditUserDelegateDiscriminatorBytes, getEditUserDelegateInstruction, getEditUserDelegateInstructionDataCodec, getEditUserDelegateInstructionDataDecoder, getEditUserDelegateInstructionDataEncoder, getExpectedSecp256r1SignersCodec, getExpectedSecp256r1SignersDecoder, getExpectedSecp256r1SignersEncoder, getFeePayer, 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, getSecp256r1Message, getSecp256r1MessageHash, getSecp256r1PubkeyCodec, getSecp256r1PubkeyDecoder, getSecp256r1PubkeyEncoder, getSecp256r1SignatureOffsetsDataDecoder, getSecp256r1SignatureOffsetsDataEncoder, getSecp256r1VerifyArgsCodec, getSecp256r1VerifyArgsDecoder, getSecp256r1VerifyArgsEncoder, getSecp256r1VerifyArgsWithDomainAddressCodec, getSecp256r1VerifyArgsWithDomainAddressDecoder, getSecp256r1VerifyArgsWithDomainAddressEncoder, getSecp256r1VerifyInstruction, getSecp256r1VerifyInstructionDataCodec, getSecp256r1VerifyInstructionDataDecoder, getSecp256r1VerifyInstructionDataEncoder, getSendAndConfirmTransaction, getSettingsCodec, getSettingsCreationArgsCodec, getSettingsCreationArgsDecoder, getSettingsCreationArgsEncoder, getSettingsDecoder, getSettingsDiscriminatorBytes, getSettingsEncoder, getSettingsFromIndex, getSettingsIndexWithAddressCodec, getSettingsIndexWithAddressDecoder, getSettingsIndexWithAddressEncoder, getSettingsMutArgsCodec, getSettingsMutArgsDecoder, getSettingsMutArgsEncoder, getSettingsReadonlyArgsCodec, getSettingsReadonlyArgsDecoder, getSettingsReadonlyArgsEncoder, getSettingsSize, getSignedSecp256r1Key, getSignedTransactionManager, getSolanaRpc, getSolanaRpcEndpoint, getTokenTransferIntentCompressedDiscriminatorBytes, getTokenTransferIntentCompressedInstruction, getTokenTransferIntentCompressedInstructionAsync, getTokenTransferIntentCompressedInstructionDataCodec, getTokenTransferIntentCompressedInstructionDataDecoder, getTokenTransferIntentCompressedInstructionDataEncoder, getTokenTransferIntentDiscriminatorBytes, getTokenTransferIntentInstruction, getTokenTransferIntentInstructionAsync, getTokenTransferIntentInstructionDataCodec, getTokenTransferIntentInstructionDataDecoder, getTokenTransferIntentInstructionDataEncoder, getTransactionBufferAddress, getTransactionBufferCloseCompressedDiscriminatorBytes, getTransactionBufferCloseCompressedInstruction, getTransactionBufferCloseCompressedInstructionDataCodec, getTransactionBufferCloseCompressedInstructionDataDecoder, getTransactionBufferCloseCompressedInstructionDataEncoder, getTransactionBufferCloseDiscriminatorBytes, getTransactionBufferCloseInstruction, getTransactionBufferCloseInstructionDataCodec, getTransactionBufferCloseInstructionDataDecoder, getTransactionBufferCloseInstructionDataEncoder, getTransactionBufferCodec, getTransactionBufferCreateArgsCodec, getTransactionBufferCreateArgsDecoder, getTransactionBufferCreateArgsEncoder, getTransactionBufferCreateCompressedDiscriminatorBytes, getTransactionBufferCreateCompressedInstruction, getTransactionBufferCreateCompressedInstructionDataCodec, getTransactionBufferCreateCompressedInstructionDataDecoder, getTransactionBufferCreateCompressedInstructionDataEncoder, getTransactionBufferCreateDiscriminatorBytes, getTransactionBufferCreateInstruction, getTransactionBufferCreateInstructionDataCodec, getTransactionBufferCreateInstructionDataDecoder, getTransactionBufferCreateInstructionDataEncoder, getTransactionBufferDecoder, getTransactionBufferDiscriminatorBytes, getTransactionBufferEncoder, getTransactionBufferExecuteCompressedDiscriminatorBytes, getTransactionBufferExecuteCompressedInstruction, getTransactionBufferExecuteCompressedInstructionDataCodec, getTransactionBufferExecuteCompressedInstructionDataDecoder, getTransactionBufferExecuteCompressedInstructionDataEncoder, getTransactionBufferExecuteDiscriminatorBytes, getTransactionBufferExecuteInstruction, getTransactionBufferExecuteInstructionDataCodec, getTransactionBufferExecuteInstructionDataDecoder, getTransactionBufferExecuteInstructionDataEncoder, getTransactionBufferExtendCompressedDiscriminatorBytes, getTransactionBufferExtendCompressedInstruction, getTransactionBufferExtendCompressedInstructionDataCodec, getTransactionBufferExtendCompressedInstructionDataDecoder, getTransactionBufferExtendCompressedInstructionDataEncoder, getTransactionBufferExtendDiscriminatorBytes, getTransactionBufferExtendInstruction, getTransactionBufferExtendInstructionDataCodec, getTransactionBufferExtendInstructionDataDecoder, getTransactionBufferExtendInstructionDataEncoder, getTransactionBufferVoteCompressedDiscriminatorBytes, getTransactionBufferVoteCompressedInstruction, getTransactionBufferVoteCompressedInstructionDataCodec, getTransactionBufferVoteCompressedInstructionDataDecoder, getTransactionBufferVoteCompressedInstructionDataEncoder, getTransactionBufferVoteDiscriminatorBytes, getTransactionBufferVoteInstruction, getTransactionBufferVoteInstructionDataCodec, getTransactionBufferVoteInstructionDataDecoder, getTransactionBufferVoteInstructionDataEncoder, getTransactionExecuteCompressedDiscriminatorBytes, getTransactionExecuteCompressedInstruction, getTransactionExecuteCompressedInstructionDataCodec, getTransactionExecuteCompressedInstructionDataDecoder, getTransactionExecuteCompressedInstructionDataEncoder, getTransactionExecuteDiscriminatorBytes, getTransactionExecuteInstruction, getTransactionExecuteInstructionDataCodec, getTransactionExecuteInstructionDataDecoder, getTransactionExecuteInstructionDataEncoder, getTransactionExecuteSyncCompressedDiscriminatorBytes, getTransactionExecuteSyncCompressedInstruction, getTransactionExecuteSyncCompressedInstructionDataCodec, getTransactionExecuteSyncCompressedInstructionDataDecoder, getTransactionExecuteSyncCompressedInstructionDataEncoder, getTransactionExecuteSyncDiscriminatorBytes, getTransactionExecuteSyncInstruction, getTransactionExecuteSyncInstructionDataCodec, getTransactionExecuteSyncInstructionDataDecoder, getTransactionExecuteSyncInstructionDataEncoder, getTransactionMessageAddressTableLookupCodec, getTransactionMessageAddressTableLookupDecoder, getTransactionMessageAddressTableLookupEncoder, getTransactionMessageCodec, getTransactionMessageDecoder, getTransactionMessageEncoder, getUserAccountAddress, getUserCodec, getUserCreationArgsCodec, getUserCreationArgsDecoder, getUserCreationArgsEncoder, getUserDecoder, getUserEncoder, getUserMutArgsCodec, getUserMutArgsDecoder, getUserMutArgsEncoder, getUserRoleCodec, getUserRoleDecoder, getUserRoleEncoder, getWalletAddressFromIndex, getWalletAddressFromSettings, getWhitelistedAddressTreeCodec, getWhitelistedAddressTreeDecoder, getWhitelistedAddressTreeDiscriminatorBytes, getWhitelistedAddressTreeEncoder, getWhitelistedAddressTreeFromIndex, getWhitelistedAddressTreeIndexFromAddress, getWhitelistedAddressTreesAddress, identifyMultiWalletAccount, identifyMultiWalletInstruction, initialize, isConfigAction, isMultiWalletError, migrateSettings, migrateUsers, nativeTransferIntent, parseAddWhitelistedAddressTreesInstruction, parseChangeConfigCompressedInstruction, parseChangeConfigInstruction, parseCompressSettingsAccountInstruction, parseCreateDomainConfigInstruction, parseCreateDomainUserAccountInstruction, parseCreateGlobalCounterInstruction, parseCreateMultiWalletCompressedInstruction, parseCreateUserAccountsInstruction, parseDecompressSettingsAccountInstruction, parseDisableDomainConfigInstruction, parseEditDomainConfigInstruction, parseEditTransactionManagerUrlInstruction, parseEditUserDelegateInstruction, parseMigrateCompressedSettingsInstruction, parseMigrateCompressedUsersInstruction, parseNativeTransferIntentCompressedInstruction, parseNativeTransferIntentInstruction, parseSecp256r1VerifyInstruction, parseTokenTransferIntentCompressedInstruction, parseTokenTransferIntentInstruction, parseTransactionBufferCloseCompressedInstruction, parseTransactionBufferCloseInstruction, parseTransactionBufferCreateCompressedInstruction, parseTransactionBufferCreateInstruction, parseTransactionBufferExecuteCompressedInstruction, parseTransactionBufferExecuteInstruction, parseTransactionBufferExtendCompressedInstruction, parseTransactionBufferExtendInstruction, parseTransactionBufferVoteCompressedInstruction, parseTransactionBufferVoteInstruction, parseTransactionExecuteCompressedInstruction, parseTransactionExecuteInstruction, parseTransactionExecuteSyncCompressedInstruction, parseTransactionExecuteSyncInstruction, pollJitoBundleConfirmation, prepareTransactionBundle, prepareTransactionMessage, prepareTransactionSync, retrieveTransactionManager, sendJitoBundle, signAndSendBundledTransactions, signAndSendTransaction, signMessageWithPasskey, signTransactionWithPasskey, tokenTransferIntent, uninitialize, vaultTransactionMessageDeserialize, vaultTransactionMessageSerialize, verifyMessage, voteTransactionBuffer };