@revibase/core 0.0.35-alpha.0 → 0.0.36

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
@@ -151,40 +151,56 @@ declare function getCompressedSettingsDataEncoder(): Encoder<CompressedSettingsD
151
151
  declare function getCompressedSettingsDataDecoder(): Decoder<CompressedSettingsData>;
152
152
  declare function getCompressedSettingsDataCodec(): Codec<CompressedSettingsDataArgs, CompressedSettingsData>;
153
153
 
154
+ type CompressedTokenArgs = {
155
+ version: number;
156
+ rootIndex: number;
157
+ amount: bigint;
158
+ merkleContext: PackedMerkleContext;
159
+ };
160
+ type CompressedTokenArgsArgs = {
161
+ version: number;
162
+ rootIndex: number;
163
+ amount: number | bigint;
164
+ merkleContext: PackedMerkleContextArgs;
165
+ };
166
+ declare function getCompressedTokenArgsEncoder(): FixedSizeEncoder<CompressedTokenArgsArgs>;
167
+ declare function getCompressedTokenArgsDecoder(): FixedSizeDecoder<CompressedTokenArgs>;
168
+ declare function getCompressedTokenArgsCodec(): FixedSizeCodec<CompressedTokenArgsArgs, CompressedTokenArgs>;
169
+
154
170
  type ConfigAction = {
155
- __kind: "EditPermissions";
171
+ __kind: 'EditPermissions';
156
172
  fields: readonly [Array<EditMemberArgs$1>];
157
173
  } | {
158
- __kind: "AddMembers";
174
+ __kind: 'AddMembers';
159
175
  fields: readonly [Array<AddMemberArgs$1>];
160
176
  } | {
161
- __kind: "RemoveMembers";
177
+ __kind: 'RemoveMembers';
162
178
  fields: readonly [Array<RemoveMemberArgs$1>];
163
179
  } | {
164
- __kind: "SetThreshold";
180
+ __kind: 'SetThreshold';
165
181
  fields: readonly [number];
166
182
  };
167
183
  type ConfigActionArgs = {
168
- __kind: "EditPermissions";
184
+ __kind: 'EditPermissions';
169
185
  fields: readonly [Array<EditMemberArgsArgs>];
170
186
  } | {
171
- __kind: "AddMembers";
187
+ __kind: 'AddMembers';
172
188
  fields: readonly [Array<AddMemberArgsArgs>];
173
189
  } | {
174
- __kind: "RemoveMembers";
190
+ __kind: 'RemoveMembers';
175
191
  fields: readonly [Array<RemoveMemberArgsArgs>];
176
192
  } | {
177
- __kind: "SetThreshold";
193
+ __kind: 'SetThreshold';
178
194
  fields: readonly [number];
179
195
  };
180
196
  declare function getConfigActionEncoder(): Encoder<ConfigActionArgs>;
181
197
  declare function getConfigActionDecoder(): Decoder<ConfigAction>;
182
198
  declare function getConfigActionCodec(): Codec<ConfigActionArgs, ConfigAction>;
183
- declare function configAction(kind: "EditPermissions", data: GetDiscriminatedUnionVariantContent<ConfigActionArgs, "__kind", "EditPermissions">["fields"]): GetDiscriminatedUnionVariant<ConfigActionArgs, "__kind", "EditPermissions">;
184
- declare function configAction(kind: "AddMembers", data: GetDiscriminatedUnionVariantContent<ConfigActionArgs, "__kind", "AddMembers">["fields"]): GetDiscriminatedUnionVariant<ConfigActionArgs, "__kind", "AddMembers">;
185
- declare function configAction(kind: "RemoveMembers", data: GetDiscriminatedUnionVariantContent<ConfigActionArgs, "__kind", "RemoveMembers">["fields"]): GetDiscriminatedUnionVariant<ConfigActionArgs, "__kind", "RemoveMembers">;
186
- declare function configAction(kind: "SetThreshold", data: GetDiscriminatedUnionVariantContent<ConfigActionArgs, "__kind", "SetThreshold">["fields"]): GetDiscriminatedUnionVariant<ConfigActionArgs, "__kind", "SetThreshold">;
187
- declare function isConfigAction<K extends ConfigAction["__kind"]>(kind: K, value: ConfigAction): value is ConfigAction & {
199
+ declare function configAction(kind: 'EditPermissions', data: GetDiscriminatedUnionVariantContent<ConfigActionArgs, '__kind', 'EditPermissions'>['fields']): GetDiscriminatedUnionVariant<ConfigActionArgs, '__kind', 'EditPermissions'>;
200
+ declare function configAction(kind: 'AddMembers', data: GetDiscriminatedUnionVariantContent<ConfigActionArgs, '__kind', 'AddMembers'>['fields']): GetDiscriminatedUnionVariant<ConfigActionArgs, '__kind', 'AddMembers'>;
201
+ declare function configAction(kind: 'RemoveMembers', data: GetDiscriminatedUnionVariantContent<ConfigActionArgs, '__kind', 'RemoveMembers'>['fields']): GetDiscriminatedUnionVariant<ConfigActionArgs, '__kind', 'RemoveMembers'>;
202
+ declare function configAction(kind: 'SetThreshold', data: GetDiscriminatedUnionVariantContent<ConfigActionArgs, '__kind', 'SetThreshold'>['fields']): GetDiscriminatedUnionVariant<ConfigActionArgs, '__kind', 'SetThreshold'>;
203
+ declare function isConfigAction<K extends ConfigAction['__kind']>(kind: K, value: ConfigAction): value is ConfigAction & {
188
204
  __kind: K;
189
205
  };
190
206
 
@@ -230,11 +246,11 @@ declare function getExpectedSecp256r1SignersCodec(): FixedSizeCodec<ExpectedSecp
230
246
 
231
247
  type LinkWalletArgs = {
232
248
  settingsMutArgs: SettingsMutArgs;
233
- transactionManager: Option<UserMutArgs>;
249
+ transactionManager: Option<UserReadOnlyArgs>;
234
250
  };
235
251
  type LinkWalletArgsArgs = {
236
252
  settingsMutArgs: SettingsMutArgsArgs;
237
- transactionManager: OptionOrNullable<UserMutArgsArgs>;
253
+ transactionManager: OptionOrNullable<UserReadOnlyArgsArgs>;
238
254
  };
239
255
  declare function getLinkWalletArgsEncoder(): Encoder<LinkWalletArgsArgs>;
240
256
  declare function getLinkWalletArgsDecoder(): Decoder<LinkWalletArgs>;
@@ -289,6 +305,17 @@ declare function getPackedAddressTreeInfoEncoder(): FixedSizeEncoder<PackedAddre
289
305
  declare function getPackedAddressTreeInfoDecoder(): FixedSizeDecoder<PackedAddressTreeInfo>;
290
306
  declare function getPackedAddressTreeInfoCodec(): FixedSizeCodec<PackedAddressTreeInfoArgs, PackedAddressTreeInfo>;
291
307
 
308
+ type PackedMerkleContext = {
309
+ merkleTreePubkeyIndex: number;
310
+ queuePubkeyIndex: number;
311
+ leafIndex: number;
312
+ proveByIndex: boolean;
313
+ };
314
+ type PackedMerkleContextArgs = PackedMerkleContext;
315
+ declare function getPackedMerkleContextEncoder(): FixedSizeEncoder<PackedMerkleContextArgs>;
316
+ declare function getPackedMerkleContextDecoder(): FixedSizeDecoder<PackedMerkleContext>;
317
+ declare function getPackedMerkleContextCodec(): FixedSizeCodec<PackedMerkleContextArgs, PackedMerkleContext>;
318
+
292
319
  type PackedStateTreeInfo = {
293
320
  rootIndex: number;
294
321
  proveByIndex: boolean;
@@ -425,7 +452,7 @@ type TransactionBufferCreateArgs = {
425
452
  bufferExtendHashes: Array<ReadonlyUint8Array>;
426
453
  finalBufferHash: ReadonlyUint8Array;
427
454
  finalBufferSize: number;
428
- expectedSecp256r1Signers: Option<Array<ExpectedSecp256r1Signers>>;
455
+ expectedSecp256r1Signers: Array<ExpectedSecp256r1Signers>;
429
456
  };
430
457
  type TransactionBufferCreateArgsArgs = {
431
458
  bufferIndex: number;
@@ -433,7 +460,7 @@ type TransactionBufferCreateArgsArgs = {
433
460
  bufferExtendHashes: Array<ReadonlyUint8Array>;
434
461
  finalBufferHash: ReadonlyUint8Array;
435
462
  finalBufferSize: number;
436
- expectedSecp256r1Signers: OptionOrNullable<Array<ExpectedSecp256r1SignersArgs>>;
463
+ expectedSecp256r1Signers: Array<ExpectedSecp256r1SignersArgs>;
437
464
  };
438
465
  declare function getTransactionBufferCreateArgsEncoder(): Encoder<TransactionBufferCreateArgsArgs>;
439
466
  declare function getTransactionBufferCreateArgsDecoder(): Decoder<TransactionBufferCreateArgs>;
@@ -526,25 +553,25 @@ declare function getUserReadOnlyArgsDecoder(): Decoder<UserReadOnlyArgs>;
526
553
  declare function getUserReadOnlyArgsCodec(): Codec<UserReadOnlyArgsArgs, UserReadOnlyArgs>;
527
554
 
528
555
  type UserReadOnlyOrMutateArgs = {
529
- __kind: "Read";
556
+ __kind: 'Read';
530
557
  fields: readonly [UserReadOnlyArgs];
531
558
  } | {
532
- __kind: "Mutate";
559
+ __kind: 'Mutate';
533
560
  fields: readonly [UserMutArgs];
534
561
  };
535
562
  type UserReadOnlyOrMutateArgsArgs = {
536
- __kind: "Read";
563
+ __kind: 'Read';
537
564
  fields: readonly [UserReadOnlyArgsArgs];
538
565
  } | {
539
- __kind: "Mutate";
566
+ __kind: 'Mutate';
540
567
  fields: readonly [UserMutArgsArgs];
541
568
  };
542
569
  declare function getUserReadOnlyOrMutateArgsEncoder(): Encoder<UserReadOnlyOrMutateArgsArgs>;
543
570
  declare function getUserReadOnlyOrMutateArgsDecoder(): Decoder<UserReadOnlyOrMutateArgs>;
544
571
  declare function getUserReadOnlyOrMutateArgsCodec(): Codec<UserReadOnlyOrMutateArgsArgs, UserReadOnlyOrMutateArgs>;
545
- declare function userReadOnlyOrMutateArgs(kind: "Read", data: GetDiscriminatedUnionVariantContent<UserReadOnlyOrMutateArgsArgs, "__kind", "Read">["fields"]): GetDiscriminatedUnionVariant<UserReadOnlyOrMutateArgsArgs, "__kind", "Read">;
546
- declare function userReadOnlyOrMutateArgs(kind: "Mutate", data: GetDiscriminatedUnionVariantContent<UserReadOnlyOrMutateArgsArgs, "__kind", "Mutate">["fields"]): GetDiscriminatedUnionVariant<UserReadOnlyOrMutateArgsArgs, "__kind", "Mutate">;
547
- declare function isUserReadOnlyOrMutateArgs<K extends UserReadOnlyOrMutateArgs["__kind"]>(kind: K, value: UserReadOnlyOrMutateArgs): value is UserReadOnlyOrMutateArgs & {
572
+ declare function userReadOnlyOrMutateArgs(kind: 'Read', data: GetDiscriminatedUnionVariantContent<UserReadOnlyOrMutateArgsArgs, '__kind', 'Read'>['fields']): GetDiscriminatedUnionVariant<UserReadOnlyOrMutateArgsArgs, '__kind', 'Read'>;
573
+ declare function userReadOnlyOrMutateArgs(kind: 'Mutate', data: GetDiscriminatedUnionVariantContent<UserReadOnlyOrMutateArgsArgs, '__kind', 'Mutate'>['fields']): GetDiscriminatedUnionVariant<UserReadOnlyOrMutateArgsArgs, '__kind', 'Mutate'>;
574
+ declare function isUserReadOnlyOrMutateArgs<K extends UserReadOnlyOrMutateArgs['__kind']>(kind: K, value: UserReadOnlyOrMutateArgs): value is UserReadOnlyOrMutateArgs & {
548
575
  __kind: K;
549
576
  };
550
577
 
@@ -563,37 +590,32 @@ declare const SETTINGS_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
563
590
  declare function getSettingsDiscriminatorBytes(): ReadonlyUint8Array;
564
591
  type Settings = {
565
592
  discriminator: ReadonlyUint8Array;
566
- index: ReadonlyUint8Array;
593
+ index: bigint;
567
594
  members: Array<Member>;
568
- membersLen: number;
569
595
  threshold: number;
570
596
  multiWalletBump: number;
571
597
  bump: number;
572
598
  settingsAddressTreeIndex: number;
573
- padding: ReadonlyUint8Array;
574
599
  latestSlotNumber: bigint;
575
600
  };
576
601
  type SettingsArgs = {
577
- index: ReadonlyUint8Array;
602
+ index: number | bigint;
578
603
  members: Array<MemberArgs>;
579
- membersLen: number;
580
604
  threshold: number;
581
605
  multiWalletBump: number;
582
606
  bump: number;
583
607
  settingsAddressTreeIndex: number;
584
- padding: ReadonlyUint8Array;
585
608
  latestSlotNumber: number | bigint;
586
609
  };
587
- declare function getSettingsEncoder(): FixedSizeEncoder<SettingsArgs>;
588
- declare function getSettingsDecoder(): FixedSizeDecoder<Settings>;
589
- declare function getSettingsCodec(): FixedSizeCodec<SettingsArgs, Settings>;
610
+ declare function getSettingsEncoder(): Encoder<SettingsArgs>;
611
+ declare function getSettingsDecoder(): Decoder<Settings>;
612
+ declare function getSettingsCodec(): Codec<SettingsArgs, Settings>;
590
613
  declare function decodeSettings<TAddress extends string = string>(encodedAccount: EncodedAccount<TAddress>): Account<Settings, TAddress>;
591
614
  declare function decodeSettings<TAddress extends string = string>(encodedAccount: MaybeEncodedAccount<TAddress>): MaybeAccount<Settings, TAddress>;
592
615
  declare function fetchSettings<TAddress extends string = string>(rpc: Parameters<typeof fetchEncodedAccount>[0], address: Address<TAddress>, config?: FetchAccountConfig): Promise<Account<Settings, TAddress>>;
593
616
  declare function fetchMaybeSettings<TAddress extends string = string>(rpc: Parameters<typeof fetchEncodedAccount>[0], address: Address<TAddress>, config?: FetchAccountConfig): Promise<MaybeAccount<Settings, TAddress>>;
594
617
  declare function fetchAllSettings(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Array<Address>, config?: FetchAccountsConfig): Promise<Account<Settings>[]>;
595
618
  declare function fetchAllMaybeSettings(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Array<Address>, config?: FetchAccountsConfig): Promise<MaybeAccount<Settings>[]>;
596
- declare function getSettingsSize(): number;
597
619
 
598
620
  declare const TRANSACTION_BUFFER_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
599
621
  declare function getTransactionBufferDiscriminatorBytes(): ReadonlyUint8Array;
@@ -613,7 +635,7 @@ type TransactionBuffer = {
613
635
  executor: MemberKey;
614
636
  bufferExtendHashes: Array<ReadonlyUint8Array>;
615
637
  voters: Array<MemberKey>;
616
- expectedSecp256r1Signers: Option<Array<ExpectedSecp256r1Signers>>;
638
+ expectedSecp256r1Signers: Array<ExpectedSecp256r1Signers>;
617
639
  buffer: ReadonlyUint8Array;
618
640
  };
619
641
  type TransactionBufferArgs = {
@@ -631,7 +653,7 @@ type TransactionBufferArgs = {
631
653
  executor: MemberKeyArgs;
632
654
  bufferExtendHashes: Array<ReadonlyUint8Array>;
633
655
  voters: Array<MemberKeyArgs>;
634
- expectedSecp256r1Signers: OptionOrNullable<Array<ExpectedSecp256r1SignersArgs>>;
656
+ expectedSecp256r1Signers: Array<ExpectedSecp256r1SignersArgs>;
635
657
  buffer: ReadonlyUint8Array;
636
658
  };
637
659
  declare function getTransactionBufferEncoder(): Encoder<TransactionBufferArgs>;
@@ -747,58 +769,55 @@ declare enum MultiWalletInstruction {
747
769
  AddWhitelistedAddressTrees = 0,
748
770
  ChangeConfig = 1,
749
771
  ChangeConfigCompressed = 2,
750
- CompressSettingsAccount = 3,
772
+ CreateCompressedWallet = 3,
751
773
  CreateDomainConfig = 4,
752
774
  CreateDomainUserAccount = 5,
753
775
  CreateGlobalCounter = 6,
754
- CreateMultiWalletCompressed = 7,
755
- CreateUserAccounts = 8,
756
- DecompressSettingsAccount = 9,
757
- DisableDomainConfig = 10,
758
- EditDomainConfig = 11,
759
- EditTransactionManagerUrl = 12,
760
- EditUserDelegate = 13,
761
- MigrateCompressedSettings = 14,
762
- MigrateCompressedUsers = 15,
763
- NativeTransferIntent = 16,
764
- NativeTransferIntentCompressed = 17,
765
- TokenTransferIntent = 18,
766
- TokenTransferIntentCompressed = 19,
767
- TransactionBufferClose = 20,
768
- TransactionBufferCloseCompressed = 21,
769
- TransactionBufferCreate = 22,
770
- TransactionBufferCreateCompressed = 23,
771
- TransactionBufferExecute = 24,
772
- TransactionBufferExecuteCompressed = 25,
773
- TransactionBufferExtend = 26,
774
- TransactionBufferExtendCompressed = 27,
775
- TransactionBufferVote = 28,
776
- TransactionBufferVoteCompressed = 29,
777
- TransactionExecute = 30,
778
- TransactionExecuteCompressed = 31,
779
- TransactionExecuteSync = 32,
780
- TransactionExecuteSyncCompressed = 33
776
+ CreateUserAccounts = 7,
777
+ DecompressSettingsAccount = 8,
778
+ DisableDomainConfig = 9,
779
+ EditDomainConfig = 10,
780
+ EditTransactionManagerUrl = 11,
781
+ EditUserDelegate = 12,
782
+ MigrateCompressedSettings = 13,
783
+ MigrateCompressedUsers = 14,
784
+ NativeTransferIntent = 15,
785
+ NativeTransferIntentCompressed = 16,
786
+ TokenTransferIntent = 17,
787
+ TokenTransferIntentCompressed = 18,
788
+ TransactionBufferClose = 19,
789
+ TransactionBufferCloseCompressed = 20,
790
+ TransactionBufferCreate = 21,
791
+ TransactionBufferCreateCompressed = 22,
792
+ TransactionBufferExecute = 23,
793
+ TransactionBufferExecuteCompressed = 24,
794
+ TransactionBufferExtend = 25,
795
+ TransactionBufferExtendCompressed = 26,
796
+ TransactionBufferVote = 27,
797
+ TransactionBufferVoteCompressed = 28,
798
+ TransactionExecute = 29,
799
+ TransactionExecuteCompressed = 30,
800
+ TransactionExecuteSync = 31,
801
+ TransactionExecuteSyncCompressed = 32
781
802
  }
782
803
  declare function identifyMultiWalletInstruction(instruction: {
783
804
  data: ReadonlyUint8Array;
784
805
  } | ReadonlyUint8Array): MultiWalletInstruction;
785
- type ParsedMultiWalletInstruction<TProgram extends string = "reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT"> = ({
806
+ type ParsedMultiWalletInstruction<TProgram extends string = 'reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT'> = ({
786
807
  instructionType: MultiWalletInstruction.AddWhitelistedAddressTrees;
787
808
  } & ParsedAddWhitelistedAddressTreesInstruction<TProgram>) | ({
788
809
  instructionType: MultiWalletInstruction.ChangeConfig;
789
810
  } & ParsedChangeConfigInstruction<TProgram>) | ({
790
811
  instructionType: MultiWalletInstruction.ChangeConfigCompressed;
791
812
  } & ParsedChangeConfigCompressedInstruction<TProgram>) | ({
792
- instructionType: MultiWalletInstruction.CompressSettingsAccount;
793
- } & ParsedCompressSettingsAccountInstruction<TProgram>) | ({
813
+ instructionType: MultiWalletInstruction.CreateCompressedWallet;
814
+ } & ParsedCreateCompressedWalletInstruction<TProgram>) | ({
794
815
  instructionType: MultiWalletInstruction.CreateDomainConfig;
795
816
  } & ParsedCreateDomainConfigInstruction<TProgram>) | ({
796
817
  instructionType: MultiWalletInstruction.CreateDomainUserAccount;
797
818
  } & ParsedCreateDomainUserAccountInstruction<TProgram>) | ({
798
819
  instructionType: MultiWalletInstruction.CreateGlobalCounter;
799
820
  } & ParsedCreateGlobalCounterInstruction<TProgram>) | ({
800
- instructionType: MultiWalletInstruction.CreateMultiWalletCompressed;
801
- } & ParsedCreateMultiWalletCompressedInstruction<TProgram>) | ({
802
821
  instructionType: MultiWalletInstruction.CreateUserAccounts;
803
822
  } & ParsedCreateUserAccountsInstruction<TProgram>) | ({
804
823
  instructionType: MultiWalletInstruction.DecompressSettingsAccount;
@@ -854,7 +873,7 @@ type ParsedMultiWalletInstruction<TProgram extends string = "reviR1xysEChySVSWGa
854
873
 
855
874
  declare const ADD_WHITELISTED_ADDRESS_TREES_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
856
875
  declare function getAddWhitelistedAddressTreesDiscriminatorBytes(): ReadonlyUint8Array;
857
- type AddWhitelistedAddressTreesInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
876
+ type AddWhitelistedAddressTreesInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
858
877
  TAccountWhitelistedAddressTrees extends string ? WritableAccount<TAccountWhitelistedAddressTrees> : TAccountWhitelistedAddressTrees,
859
878
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
860
879
  TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
@@ -880,8 +899,8 @@ type AddWhitelistedAddressTreesAsyncInput<TAccountWhitelistedAddressTrees extend
880
899
  whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
881
900
  payer: TransactionSigner<TAccountPayer>;
882
901
  systemProgram?: Address<TAccountSystemProgram>;
883
- addressTree: AddWhitelistedAddressTreesInstructionDataArgs["addressTree"];
884
- remainingAccounts: AddWhitelistedAddressTreesInstructionExtraArgs["remainingAccounts"];
902
+ addressTree: AddWhitelistedAddressTreesInstructionDataArgs['addressTree'];
903
+ remainingAccounts: AddWhitelistedAddressTreesInstructionExtraArgs['remainingAccounts'];
885
904
  };
886
905
  declare function getAddWhitelistedAddressTreesInstructionAsync<TAccountWhitelistedAddressTrees extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: AddWhitelistedAddressTreesAsyncInput<TAccountWhitelistedAddressTrees, TAccountPayer, TAccountSystemProgram>, config?: {
887
906
  programAddress?: TProgramAddress;
@@ -890,8 +909,8 @@ type AddWhitelistedAddressTreesInput<TAccountWhitelistedAddressTrees extends str
890
909
  whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
891
910
  payer: TransactionSigner<TAccountPayer>;
892
911
  systemProgram?: Address<TAccountSystemProgram>;
893
- addressTree: AddWhitelistedAddressTreesInstructionDataArgs["addressTree"];
894
- remainingAccounts: AddWhitelistedAddressTreesInstructionExtraArgs["remainingAccounts"];
912
+ addressTree: AddWhitelistedAddressTreesInstructionDataArgs['addressTree'];
913
+ remainingAccounts: AddWhitelistedAddressTreesInstructionExtraArgs['remainingAccounts'];
895
914
  };
896
915
  declare function getAddWhitelistedAddressTreesInstruction<TAccountWhitelistedAddressTrees extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: AddWhitelistedAddressTreesInput<TAccountWhitelistedAddressTrees, TAccountPayer, TAccountSystemProgram>, config?: {
897
916
  programAddress?: TProgramAddress;
@@ -909,7 +928,7 @@ declare function parseAddWhitelistedAddressTreesInstruction<TProgram extends str
909
928
 
910
929
  declare const CHANGE_CONFIG_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
911
930
  declare function getChangeConfigDiscriminatorBytes(): ReadonlyUint8Array;
912
- type ChangeConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountAuthority extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
931
+ type ChangeConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountAuthority extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
913
932
  TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
914
933
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
915
934
  TAccountAuthority extends string ? ReadonlySignerAccount<TAccountAuthority> & AccountSignerMeta<TAccountAuthority> : TAccountAuthority,
@@ -947,11 +966,11 @@ type ChangeConfigAsyncInput<TAccountSettings extends string = string, TAccountPa
947
966
  systemProgram?: Address<TAccountSystemProgram>;
948
967
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
949
968
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
950
- settingsIndex: ChangeConfigInstructionDataArgs["settingsIndex"];
951
- configActions: ChangeConfigInstructionDataArgs["configActions"];
952
- secp256r1VerifyArgs: ChangeConfigInstructionDataArgs["secp256r1VerifyArgs"];
953
- compressedProofArgs: ChangeConfigInstructionDataArgs["compressedProofArgs"];
954
- remainingAccounts: ChangeConfigInstructionExtraArgs["remainingAccounts"];
969
+ settingsIndex: ChangeConfigInstructionDataArgs['settingsIndex'];
970
+ configActions: ChangeConfigInstructionDataArgs['configActions'];
971
+ secp256r1VerifyArgs: ChangeConfigInstructionDataArgs['secp256r1VerifyArgs'];
972
+ compressedProofArgs: ChangeConfigInstructionDataArgs['compressedProofArgs'];
973
+ remainingAccounts: ChangeConfigInstructionExtraArgs['remainingAccounts'];
955
974
  };
956
975
  declare function getChangeConfigInstructionAsync<TAccountSettings extends string, TAccountPayer extends string, TAccountAuthority extends string, TAccountSystemProgram extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: ChangeConfigAsyncInput<TAccountSettings, TAccountPayer, TAccountAuthority, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
957
976
  programAddress?: TProgramAddress;
@@ -963,11 +982,11 @@ type ChangeConfigInput<TAccountSettings extends string = string, TAccountPayer e
963
982
  systemProgram?: Address<TAccountSystemProgram>;
964
983
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
965
984
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
966
- settingsIndex: ChangeConfigInstructionDataArgs["settingsIndex"];
967
- configActions: ChangeConfigInstructionDataArgs["configActions"];
968
- secp256r1VerifyArgs: ChangeConfigInstructionDataArgs["secp256r1VerifyArgs"];
969
- compressedProofArgs: ChangeConfigInstructionDataArgs["compressedProofArgs"];
970
- remainingAccounts: ChangeConfigInstructionExtraArgs["remainingAccounts"];
985
+ settingsIndex: ChangeConfigInstructionDataArgs['settingsIndex'];
986
+ configActions: ChangeConfigInstructionDataArgs['configActions'];
987
+ secp256r1VerifyArgs: ChangeConfigInstructionDataArgs['secp256r1VerifyArgs'];
988
+ compressedProofArgs: ChangeConfigInstructionDataArgs['compressedProofArgs'];
989
+ remainingAccounts: ChangeConfigInstructionExtraArgs['remainingAccounts'];
971
990
  };
972
991
  declare function getChangeConfigInstruction<TAccountSettings extends string, TAccountPayer extends string, TAccountAuthority extends string, TAccountSystemProgram extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: ChangeConfigInput<TAccountSettings, TAccountPayer, TAccountAuthority, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
973
992
  programAddress?: TProgramAddress;
@@ -988,7 +1007,7 @@ declare function parseChangeConfigInstruction<TProgram extends string, TAccountM
988
1007
 
989
1008
  declare const CHANGE_CONFIG_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
990
1009
  declare function getChangeConfigCompressedDiscriminatorBytes(): ReadonlyUint8Array;
991
- type ChangeConfigCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1010
+ type ChangeConfigCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
992
1011
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
993
1012
  TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
994
1013
  TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
@@ -1020,11 +1039,11 @@ type ChangeConfigCompressedInput<TAccountPayer extends string = string, TAccount
1020
1039
  payer: TransactionSigner<TAccountPayer>;
1021
1040
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
1022
1041
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
1023
- configActions: ChangeConfigCompressedInstructionDataArgs["configActions"];
1024
- secp256r1VerifyArgs: ChangeConfigCompressedInstructionDataArgs["secp256r1VerifyArgs"];
1025
- settingsMutArgs: ChangeConfigCompressedInstructionDataArgs["settingsMutArgs"];
1026
- compressedProofArgs: ChangeConfigCompressedInstructionDataArgs["compressedProofArgs"];
1027
- remainingAccounts: ChangeConfigCompressedInstructionExtraArgs["remainingAccounts"];
1042
+ configActions: ChangeConfigCompressedInstructionDataArgs['configActions'];
1043
+ secp256r1VerifyArgs: ChangeConfigCompressedInstructionDataArgs['secp256r1VerifyArgs'];
1044
+ settingsMutArgs: ChangeConfigCompressedInstructionDataArgs['settingsMutArgs'];
1045
+ compressedProofArgs: ChangeConfigCompressedInstructionDataArgs['compressedProofArgs'];
1046
+ remainingAccounts: ChangeConfigCompressedInstructionExtraArgs['remainingAccounts'];
1028
1047
  };
1029
1048
  declare function getChangeConfigCompressedInstruction<TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: ChangeConfigCompressedInput<TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
1030
1049
  programAddress?: TProgramAddress;
@@ -1040,63 +1059,84 @@ type ParsedChangeConfigCompressedInstruction<TProgram extends string = typeof MU
1040
1059
  };
1041
1060
  declare function parseChangeConfigCompressedInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedChangeConfigCompressedInstruction<TProgram, TAccountMetas>;
1042
1061
 
1043
- declare const COMPRESS_SETTINGS_ACCOUNT_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1044
- declare function getCompressSettingsAccountDiscriminatorBytes(): ReadonlyUint8Array;
1045
- type CompressSettingsAccountInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1046
- TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
1062
+ declare const CREATE_COMPRESSED_WALLET_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1063
+ declare function getCreateCompressedWalletDiscriminatorBytes(): ReadonlyUint8Array;
1064
+ type CreateCompressedWalletInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountInitialMember extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountGlobalCounter extends string | AccountMeta<string> = string, TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1047
1065
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1048
- TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
1049
- TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
1066
+ TAccountInitialMember extends string ? ReadonlySignerAccount<TAccountInitialMember> & AccountSignerMeta<TAccountInitialMember> : TAccountInitialMember,
1067
+ TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
1068
+ TAccountGlobalCounter extends string ? WritableAccount<TAccountGlobalCounter> : TAccountGlobalCounter,
1069
+ TAccountWhitelistedAddressTrees extends string ? ReadonlyAccount<TAccountWhitelistedAddressTrees> : TAccountWhitelistedAddressTrees,
1050
1070
  ...TRemainingAccounts
1051
1071
  ]>;
1052
- type CompressSettingsAccountInstructionData = {
1072
+ type CreateCompressedWalletInstructionData = {
1053
1073
  discriminator: ReadonlyUint8Array;
1054
1074
  compressedProofArgs: ProofArgs;
1055
- settingsMutArgs: SettingsMutArgs;
1056
- secp256r1VerifyArgs: Array<Secp256r1VerifyArgsWithDomainAddress>;
1075
+ settingsCreation: SettingsCreationArgs;
1076
+ userReadonlyArgs: UserReadOnlyArgs;
1077
+ settingsIndex: bigint;
1057
1078
  };
1058
- type CompressSettingsAccountInstructionDataArgs = {
1079
+ type CreateCompressedWalletInstructionDataArgs = {
1059
1080
  compressedProofArgs: ProofArgsArgs;
1060
- settingsMutArgs: SettingsMutArgsArgs;
1061
- secp256r1VerifyArgs: Array<Secp256r1VerifyArgsWithDomainAddressArgs>;
1081
+ settingsCreation: SettingsCreationArgsArgs;
1082
+ userReadonlyArgs: UserReadOnlyArgsArgs;
1083
+ settingsIndex: number | bigint;
1062
1084
  };
1063
- declare function getCompressSettingsAccountInstructionDataEncoder(): Encoder<CompressSettingsAccountInstructionDataArgs>;
1064
- declare function getCompressSettingsAccountInstructionDataDecoder(): Decoder<CompressSettingsAccountInstructionData>;
1065
- declare function getCompressSettingsAccountInstructionDataCodec(): Codec<CompressSettingsAccountInstructionDataArgs, CompressSettingsAccountInstructionData>;
1066
- type CompressSettingsAccountInstructionExtraArgs = {
1085
+ declare function getCreateCompressedWalletInstructionDataEncoder(): Encoder<CreateCompressedWalletInstructionDataArgs>;
1086
+ declare function getCreateCompressedWalletInstructionDataDecoder(): Decoder<CreateCompressedWalletInstructionData>;
1087
+ declare function getCreateCompressedWalletInstructionDataCodec(): Codec<CreateCompressedWalletInstructionDataArgs, CreateCompressedWalletInstructionData>;
1088
+ type CreateCompressedWalletInstructionExtraArgs = {
1067
1089
  remainingAccounts: Array<{
1068
1090
  address: Address;
1069
1091
  role: number;
1070
1092
  }>;
1071
1093
  };
1072
- type CompressSettingsAccountInput<TAccountSettings extends string = string, TAccountPayer extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string> = {
1073
- settings: Address<TAccountSettings>;
1094
+ type CreateCompressedWalletAsyncInput<TAccountPayer extends string = string, TAccountInitialMember extends string = string, TAccountSystemProgram extends string = string, TAccountGlobalCounter extends string = string, TAccountWhitelistedAddressTrees extends string = string> = {
1074
1095
  payer: TransactionSigner<TAccountPayer>;
1075
- slotHashSysvar?: Address<TAccountSlotHashSysvar>;
1076
- instructionsSysvar?: Address<TAccountInstructionsSysvar>;
1077
- compressedProofArgs: CompressSettingsAccountInstructionDataArgs["compressedProofArgs"];
1078
- settingsMutArgs: CompressSettingsAccountInstructionDataArgs["settingsMutArgs"];
1079
- secp256r1VerifyArgs: CompressSettingsAccountInstructionDataArgs["secp256r1VerifyArgs"];
1080
- remainingAccounts: CompressSettingsAccountInstructionExtraArgs["remainingAccounts"];
1096
+ initialMember: TransactionSigner<TAccountInitialMember>;
1097
+ systemProgram?: Address<TAccountSystemProgram>;
1098
+ globalCounter?: Address<TAccountGlobalCounter>;
1099
+ whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1100
+ compressedProofArgs: CreateCompressedWalletInstructionDataArgs['compressedProofArgs'];
1101
+ settingsCreation: CreateCompressedWalletInstructionDataArgs['settingsCreation'];
1102
+ userReadonlyArgs: CreateCompressedWalletInstructionDataArgs['userReadonlyArgs'];
1103
+ settingsIndex: CreateCompressedWalletInstructionDataArgs['settingsIndex'];
1104
+ remainingAccounts: CreateCompressedWalletInstructionExtraArgs['remainingAccounts'];
1105
+ };
1106
+ declare function getCreateCompressedWalletInstructionAsync<TAccountPayer extends string, TAccountInitialMember extends string, TAccountSystemProgram extends string, TAccountGlobalCounter extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateCompressedWalletAsyncInput<TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountGlobalCounter, TAccountWhitelistedAddressTrees>, config?: {
1107
+ programAddress?: TProgramAddress;
1108
+ }): Promise<CreateCompressedWalletInstruction<TProgramAddress, TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountGlobalCounter, TAccountWhitelistedAddressTrees>>;
1109
+ type CreateCompressedWalletInput<TAccountPayer extends string = string, TAccountInitialMember extends string = string, TAccountSystemProgram extends string = string, TAccountGlobalCounter extends string = string, TAccountWhitelistedAddressTrees extends string = string> = {
1110
+ payer: TransactionSigner<TAccountPayer>;
1111
+ initialMember: TransactionSigner<TAccountInitialMember>;
1112
+ systemProgram?: Address<TAccountSystemProgram>;
1113
+ globalCounter: Address<TAccountGlobalCounter>;
1114
+ whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
1115
+ compressedProofArgs: CreateCompressedWalletInstructionDataArgs['compressedProofArgs'];
1116
+ settingsCreation: CreateCompressedWalletInstructionDataArgs['settingsCreation'];
1117
+ userReadonlyArgs: CreateCompressedWalletInstructionDataArgs['userReadonlyArgs'];
1118
+ settingsIndex: CreateCompressedWalletInstructionDataArgs['settingsIndex'];
1119
+ remainingAccounts: CreateCompressedWalletInstructionExtraArgs['remainingAccounts'];
1081
1120
  };
1082
- declare function getCompressSettingsAccountInstruction<TAccountSettings extends string, TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CompressSettingsAccountInput<TAccountSettings, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
1121
+ declare function getCreateCompressedWalletInstruction<TAccountPayer extends string, TAccountInitialMember extends string, TAccountSystemProgram extends string, TAccountGlobalCounter extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateCompressedWalletInput<TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountGlobalCounter, TAccountWhitelistedAddressTrees>, config?: {
1083
1122
  programAddress?: TProgramAddress;
1084
- }): CompressSettingsAccountInstruction<TProgramAddress, TAccountSettings, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar>;
1085
- type ParsedCompressSettingsAccountInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
1123
+ }): CreateCompressedWalletInstruction<TProgramAddress, TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountGlobalCounter, TAccountWhitelistedAddressTrees>;
1124
+ type ParsedCreateCompressedWalletInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
1086
1125
  programAddress: Address<TProgram>;
1087
1126
  accounts: {
1088
- settings: TAccountMetas[0];
1089
- payer: TAccountMetas[1];
1090
- slotHashSysvar?: TAccountMetas[2] | undefined;
1091
- instructionsSysvar: TAccountMetas[3];
1127
+ payer: TAccountMetas[0];
1128
+ initialMember: TAccountMetas[1];
1129
+ systemProgram: TAccountMetas[2];
1130
+ globalCounter: TAccountMetas[3];
1131
+ whitelistedAddressTrees: TAccountMetas[4];
1092
1132
  };
1093
- data: CompressSettingsAccountInstructionData;
1133
+ data: CreateCompressedWalletInstructionData;
1094
1134
  };
1095
- declare function parseCompressSettingsAccountInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedCompressSettingsAccountInstruction<TProgram, TAccountMetas>;
1135
+ declare function parseCreateCompressedWalletInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedCreateCompressedWalletInstruction<TProgram, TAccountMetas>;
1096
1136
 
1097
1137
  declare const CREATE_DOMAIN_CONFIG_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1098
1138
  declare function getCreateDomainConfigDiscriminatorBytes(): ReadonlyUint8Array;
1099
- type CreateDomainConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountAuthority extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1139
+ type CreateDomainConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountAuthority extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1100
1140
  TAccountDomainConfig extends string ? WritableAccount<TAccountDomainConfig> : TAccountDomainConfig,
1101
1141
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1102
1142
  TAccountAuthority extends string ? ReadonlySignerAccount<TAccountAuthority> & AccountSignerMeta<TAccountAuthority> : TAccountAuthority,
@@ -1132,11 +1172,11 @@ type CreateDomainConfigAsyncInput<TAccountDomainConfig extends string = string,
1132
1172
  authority: TransactionSigner<TAccountAuthority>;
1133
1173
  systemProgram?: Address<TAccountSystemProgram>;
1134
1174
  whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1135
- rpId: CreateDomainConfigInstructionDataArgs["rpId"];
1136
- origins: CreateDomainConfigInstructionDataArgs["origins"];
1137
- authorityCreationArgs: CreateDomainConfigInstructionDataArgs["authorityCreationArgs"];
1138
- compressedProofArgs: CreateDomainConfigInstructionDataArgs["compressedProofArgs"];
1139
- remainingAccounts: CreateDomainConfigInstructionExtraArgs["remainingAccounts"];
1175
+ rpId: CreateDomainConfigInstructionDataArgs['rpId'];
1176
+ origins: CreateDomainConfigInstructionDataArgs['origins'];
1177
+ authorityCreationArgs: CreateDomainConfigInstructionDataArgs['authorityCreationArgs'];
1178
+ compressedProofArgs: CreateDomainConfigInstructionDataArgs['compressedProofArgs'];
1179
+ remainingAccounts: CreateDomainConfigInstructionExtraArgs['remainingAccounts'];
1140
1180
  };
1141
1181
  declare function getCreateDomainConfigInstructionAsync<TAccountDomainConfig extends string, TAccountPayer extends string, TAccountAuthority extends string, TAccountSystemProgram extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateDomainConfigAsyncInput<TAccountDomainConfig, TAccountPayer, TAccountAuthority, TAccountSystemProgram, TAccountWhitelistedAddressTrees>, config?: {
1142
1182
  programAddress?: TProgramAddress;
@@ -1147,11 +1187,11 @@ type CreateDomainConfigInput<TAccountDomainConfig extends string = string, TAcco
1147
1187
  authority: TransactionSigner<TAccountAuthority>;
1148
1188
  systemProgram?: Address<TAccountSystemProgram>;
1149
1189
  whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
1150
- rpId: CreateDomainConfigInstructionDataArgs["rpId"];
1151
- origins: CreateDomainConfigInstructionDataArgs["origins"];
1152
- authorityCreationArgs: CreateDomainConfigInstructionDataArgs["authorityCreationArgs"];
1153
- compressedProofArgs: CreateDomainConfigInstructionDataArgs["compressedProofArgs"];
1154
- remainingAccounts: CreateDomainConfigInstructionExtraArgs["remainingAccounts"];
1190
+ rpId: CreateDomainConfigInstructionDataArgs['rpId'];
1191
+ origins: CreateDomainConfigInstructionDataArgs['origins'];
1192
+ authorityCreationArgs: CreateDomainConfigInstructionDataArgs['authorityCreationArgs'];
1193
+ compressedProofArgs: CreateDomainConfigInstructionDataArgs['compressedProofArgs'];
1194
+ remainingAccounts: CreateDomainConfigInstructionExtraArgs['remainingAccounts'];
1155
1195
  };
1156
1196
  declare function getCreateDomainConfigInstruction<TAccountDomainConfig extends string, TAccountPayer extends string, TAccountAuthority extends string, TAccountSystemProgram extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateDomainConfigInput<TAccountDomainConfig, TAccountPayer, TAccountAuthority, TAccountSystemProgram, TAccountWhitelistedAddressTrees>, config?: {
1157
1197
  programAddress?: TProgramAddress;
@@ -1207,12 +1247,12 @@ type CreateDomainUserAccountAsyncInput<TAccountPayer extends string = string, TA
1207
1247
  domainConfig: Address<TAccountDomainConfig>;
1208
1248
  authority: TransactionSigner<TAccountAuthority>;
1209
1249
  whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1210
- compressedProofArgs: CreateDomainUserAccountInstructionDataArgs["compressedProofArgs"];
1211
- member: CreateDomainUserAccountInstructionDataArgs["member"];
1212
- role: CreateDomainUserAccountInstructionDataArgs["role"];
1213
- userAccountCreationArgs: CreateDomainUserAccountInstructionDataArgs["userAccountCreationArgs"];
1214
- linkWalletArgs: CreateDomainUserAccountInstructionDataArgs["linkWalletArgs"];
1215
- remainingAccounts: CreateDomainUserAccountInstructionExtraArgs["remainingAccounts"];
1250
+ compressedProofArgs: CreateDomainUserAccountInstructionDataArgs['compressedProofArgs'];
1251
+ member: CreateDomainUserAccountInstructionDataArgs['member'];
1252
+ role: CreateDomainUserAccountInstructionDataArgs['role'];
1253
+ userAccountCreationArgs: CreateDomainUserAccountInstructionDataArgs['userAccountCreationArgs'];
1254
+ linkWalletArgs: CreateDomainUserAccountInstructionDataArgs['linkWalletArgs'];
1255
+ remainingAccounts: CreateDomainUserAccountInstructionExtraArgs['remainingAccounts'];
1216
1256
  };
1217
1257
  declare function getCreateDomainUserAccountInstructionAsync<TAccountPayer extends string, TAccountDomainConfig extends string, TAccountAuthority extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateDomainUserAccountAsyncInput<TAccountPayer, TAccountDomainConfig, TAccountAuthority, TAccountWhitelistedAddressTrees>, config?: {
1218
1258
  programAddress?: TProgramAddress;
@@ -1222,12 +1262,12 @@ type CreateDomainUserAccountInput<TAccountPayer extends string = string, TAccoun
1222
1262
  domainConfig: Address<TAccountDomainConfig>;
1223
1263
  authority: TransactionSigner<TAccountAuthority>;
1224
1264
  whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
1225
- compressedProofArgs: CreateDomainUserAccountInstructionDataArgs["compressedProofArgs"];
1226
- member: CreateDomainUserAccountInstructionDataArgs["member"];
1227
- role: CreateDomainUserAccountInstructionDataArgs["role"];
1228
- userAccountCreationArgs: CreateDomainUserAccountInstructionDataArgs["userAccountCreationArgs"];
1229
- linkWalletArgs: CreateDomainUserAccountInstructionDataArgs["linkWalletArgs"];
1230
- remainingAccounts: CreateDomainUserAccountInstructionExtraArgs["remainingAccounts"];
1265
+ compressedProofArgs: CreateDomainUserAccountInstructionDataArgs['compressedProofArgs'];
1266
+ member: CreateDomainUserAccountInstructionDataArgs['member'];
1267
+ role: CreateDomainUserAccountInstructionDataArgs['role'];
1268
+ userAccountCreationArgs: CreateDomainUserAccountInstructionDataArgs['userAccountCreationArgs'];
1269
+ linkWalletArgs: CreateDomainUserAccountInstructionDataArgs['linkWalletArgs'];
1270
+ remainingAccounts: CreateDomainUserAccountInstructionExtraArgs['remainingAccounts'];
1231
1271
  };
1232
1272
  declare function getCreateDomainUserAccountInstruction<TAccountPayer extends string, TAccountDomainConfig extends string, TAccountAuthority extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateDomainUserAccountInput<TAccountPayer, TAccountDomainConfig, TAccountAuthority, TAccountWhitelistedAddressTrees>, config?: {
1233
1273
  programAddress?: TProgramAddress;
@@ -1246,7 +1286,7 @@ declare function parseCreateDomainUserAccountInstruction<TProgram extends string
1246
1286
 
1247
1287
  declare const CREATE_GLOBAL_COUNTER_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1248
1288
  declare function getCreateGlobalCounterDiscriminatorBytes(): ReadonlyUint8Array;
1249
- type CreateGlobalCounterInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountGlobalCounter extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1289
+ type CreateGlobalCounterInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountGlobalCounter extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1250
1290
  TAccountGlobalCounter extends string ? WritableAccount<TAccountGlobalCounter> : TAccountGlobalCounter,
1251
1291
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1252
1292
  TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
@@ -1269,7 +1309,7 @@ type CreateGlobalCounterAsyncInput<TAccountGlobalCounter extends string = string
1269
1309
  globalCounter?: Address<TAccountGlobalCounter>;
1270
1310
  payer: TransactionSigner<TAccountPayer>;
1271
1311
  systemProgram?: Address<TAccountSystemProgram>;
1272
- remainingAccounts: CreateGlobalCounterInstructionExtraArgs["remainingAccounts"];
1312
+ remainingAccounts: CreateGlobalCounterInstructionExtraArgs['remainingAccounts'];
1273
1313
  };
1274
1314
  declare function getCreateGlobalCounterInstructionAsync<TAccountGlobalCounter extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateGlobalCounterAsyncInput<TAccountGlobalCounter, TAccountPayer, TAccountSystemProgram>, config?: {
1275
1315
  programAddress?: TProgramAddress;
@@ -1278,7 +1318,7 @@ type CreateGlobalCounterInput<TAccountGlobalCounter extends string = string, TAc
1278
1318
  globalCounter: Address<TAccountGlobalCounter>;
1279
1319
  payer: TransactionSigner<TAccountPayer>;
1280
1320
  systemProgram?: Address<TAccountSystemProgram>;
1281
- remainingAccounts: CreateGlobalCounterInstructionExtraArgs["remainingAccounts"];
1321
+ remainingAccounts: CreateGlobalCounterInstructionExtraArgs['remainingAccounts'];
1282
1322
  };
1283
1323
  declare function getCreateGlobalCounterInstruction<TAccountGlobalCounter extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateGlobalCounterInput<TAccountGlobalCounter, TAccountPayer, TAccountSystemProgram>, config?: {
1284
1324
  programAddress?: TProgramAddress;
@@ -1294,84 +1334,9 @@ type ParsedCreateGlobalCounterInstruction<TProgram extends string = typeof MULTI
1294
1334
  };
1295
1335
  declare function parseCreateGlobalCounterInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedCreateGlobalCounterInstruction<TProgram, TAccountMetas>;
1296
1336
 
1297
- declare const CREATE_MULTI_WALLET_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1298
- declare function getCreateMultiWalletCompressedDiscriminatorBytes(): ReadonlyUint8Array;
1299
- type CreateMultiWalletCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountInitialMember extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountGlobalCounter extends string | AccountMeta<string> = string, TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1300
- TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1301
- TAccountInitialMember extends string ? ReadonlySignerAccount<TAccountInitialMember> & AccountSignerMeta<TAccountInitialMember> : TAccountInitialMember,
1302
- TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
1303
- TAccountGlobalCounter extends string ? WritableAccount<TAccountGlobalCounter> : TAccountGlobalCounter,
1304
- TAccountWhitelistedAddressTrees extends string ? ReadonlyAccount<TAccountWhitelistedAddressTrees> : TAccountWhitelistedAddressTrees,
1305
- ...TRemainingAccounts
1306
- ]>;
1307
- type CreateMultiWalletCompressedInstructionData = {
1308
- discriminator: ReadonlyUint8Array;
1309
- compressedProofArgs: ProofArgs;
1310
- settingsCreation: SettingsCreationArgs;
1311
- userReadonlyArgs: UserReadOnlyArgs;
1312
- settingsIndex: bigint;
1313
- };
1314
- type CreateMultiWalletCompressedInstructionDataArgs = {
1315
- compressedProofArgs: ProofArgsArgs;
1316
- settingsCreation: SettingsCreationArgsArgs;
1317
- userReadonlyArgs: UserReadOnlyArgsArgs;
1318
- settingsIndex: number | bigint;
1319
- };
1320
- declare function getCreateMultiWalletCompressedInstructionDataEncoder(): Encoder<CreateMultiWalletCompressedInstructionDataArgs>;
1321
- declare function getCreateMultiWalletCompressedInstructionDataDecoder(): Decoder<CreateMultiWalletCompressedInstructionData>;
1322
- declare function getCreateMultiWalletCompressedInstructionDataCodec(): Codec<CreateMultiWalletCompressedInstructionDataArgs, CreateMultiWalletCompressedInstructionData>;
1323
- type CreateMultiWalletCompressedInstructionExtraArgs = {
1324
- remainingAccounts: Array<{
1325
- address: Address;
1326
- role: number;
1327
- }>;
1328
- };
1329
- type CreateMultiWalletCompressedAsyncInput<TAccountPayer extends string = string, TAccountInitialMember extends string = string, TAccountSystemProgram extends string = string, TAccountGlobalCounter extends string = string, TAccountWhitelistedAddressTrees extends string = string> = {
1330
- payer: TransactionSigner<TAccountPayer>;
1331
- initialMember: TransactionSigner<TAccountInitialMember>;
1332
- systemProgram?: Address<TAccountSystemProgram>;
1333
- globalCounter?: Address<TAccountGlobalCounter>;
1334
- whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1335
- compressedProofArgs: CreateMultiWalletCompressedInstructionDataArgs["compressedProofArgs"];
1336
- settingsCreation: CreateMultiWalletCompressedInstructionDataArgs["settingsCreation"];
1337
- userReadonlyArgs: CreateMultiWalletCompressedInstructionDataArgs["userReadonlyArgs"];
1338
- settingsIndex: CreateMultiWalletCompressedInstructionDataArgs["settingsIndex"];
1339
- remainingAccounts: CreateMultiWalletCompressedInstructionExtraArgs["remainingAccounts"];
1340
- };
1341
- declare function getCreateMultiWalletCompressedInstructionAsync<TAccountPayer extends string, TAccountInitialMember extends string, TAccountSystemProgram extends string, TAccountGlobalCounter extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateMultiWalletCompressedAsyncInput<TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountGlobalCounter, TAccountWhitelistedAddressTrees>, config?: {
1342
- programAddress?: TProgramAddress;
1343
- }): Promise<CreateMultiWalletCompressedInstruction<TProgramAddress, TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountGlobalCounter, TAccountWhitelistedAddressTrees>>;
1344
- type CreateMultiWalletCompressedInput<TAccountPayer extends string = string, TAccountInitialMember extends string = string, TAccountSystemProgram extends string = string, TAccountGlobalCounter extends string = string, TAccountWhitelistedAddressTrees extends string = string> = {
1345
- payer: TransactionSigner<TAccountPayer>;
1346
- initialMember: TransactionSigner<TAccountInitialMember>;
1347
- systemProgram?: Address<TAccountSystemProgram>;
1348
- globalCounter: Address<TAccountGlobalCounter>;
1349
- whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
1350
- compressedProofArgs: CreateMultiWalletCompressedInstructionDataArgs["compressedProofArgs"];
1351
- settingsCreation: CreateMultiWalletCompressedInstructionDataArgs["settingsCreation"];
1352
- userReadonlyArgs: CreateMultiWalletCompressedInstructionDataArgs["userReadonlyArgs"];
1353
- settingsIndex: CreateMultiWalletCompressedInstructionDataArgs["settingsIndex"];
1354
- remainingAccounts: CreateMultiWalletCompressedInstructionExtraArgs["remainingAccounts"];
1355
- };
1356
- declare function getCreateMultiWalletCompressedInstruction<TAccountPayer extends string, TAccountInitialMember extends string, TAccountSystemProgram extends string, TAccountGlobalCounter extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateMultiWalletCompressedInput<TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountGlobalCounter, TAccountWhitelistedAddressTrees>, config?: {
1357
- programAddress?: TProgramAddress;
1358
- }): CreateMultiWalletCompressedInstruction<TProgramAddress, TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountGlobalCounter, TAccountWhitelistedAddressTrees>;
1359
- type ParsedCreateMultiWalletCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
1360
- programAddress: Address<TProgram>;
1361
- accounts: {
1362
- payer: TAccountMetas[0];
1363
- initialMember: TAccountMetas[1];
1364
- systemProgram: TAccountMetas[2];
1365
- globalCounter: TAccountMetas[3];
1366
- whitelistedAddressTrees: TAccountMetas[4];
1367
- };
1368
- data: CreateMultiWalletCompressedInstructionData;
1369
- };
1370
- declare function parseCreateMultiWalletCompressedInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedCreateMultiWalletCompressedInstruction<TProgram, TAccountMetas>;
1371
-
1372
1337
  declare const CREATE_USER_ACCOUNTS_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1373
1338
  declare function getCreateUserAccountsDiscriminatorBytes(): ReadonlyUint8Array;
1374
- type CreateUserAccountsInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1339
+ type CreateUserAccountsInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1375
1340
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1376
1341
  TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
1377
1342
  TAccountWhitelistedAddressTrees extends string ? ReadonlyAccount<TAccountWhitelistedAddressTrees> : TAccountWhitelistedAddressTrees,
@@ -1399,9 +1364,9 @@ type CreateUserAccountsAsyncInput<TAccountPayer extends string = string, TAccoun
1399
1364
  payer: TransactionSigner<TAccountPayer>;
1400
1365
  systemProgram?: Address<TAccountSystemProgram>;
1401
1366
  whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1402
- compressedProofArgs: CreateUserAccountsInstructionDataArgs["compressedProofArgs"];
1403
- createUserArgs: CreateUserAccountsInstructionDataArgs["createUserArgs"];
1404
- remainingAccounts: CreateUserAccountsInstructionExtraArgs["remainingAccounts"];
1367
+ compressedProofArgs: CreateUserAccountsInstructionDataArgs['compressedProofArgs'];
1368
+ createUserArgs: CreateUserAccountsInstructionDataArgs['createUserArgs'];
1369
+ remainingAccounts: CreateUserAccountsInstructionExtraArgs['remainingAccounts'];
1405
1370
  };
1406
1371
  declare function getCreateUserAccountsInstructionAsync<TAccountPayer extends string, TAccountSystemProgram extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateUserAccountsAsyncInput<TAccountPayer, TAccountSystemProgram, TAccountWhitelistedAddressTrees>, config?: {
1407
1372
  programAddress?: TProgramAddress;
@@ -1410,9 +1375,9 @@ type CreateUserAccountsInput<TAccountPayer extends string = string, TAccountSyst
1410
1375
  payer: TransactionSigner<TAccountPayer>;
1411
1376
  systemProgram?: Address<TAccountSystemProgram>;
1412
1377
  whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
1413
- compressedProofArgs: CreateUserAccountsInstructionDataArgs["compressedProofArgs"];
1414
- createUserArgs: CreateUserAccountsInstructionDataArgs["createUserArgs"];
1415
- remainingAccounts: CreateUserAccountsInstructionExtraArgs["remainingAccounts"];
1378
+ compressedProofArgs: CreateUserAccountsInstructionDataArgs['compressedProofArgs'];
1379
+ createUserArgs: CreateUserAccountsInstructionDataArgs['createUserArgs'];
1380
+ remainingAccounts: CreateUserAccountsInstructionExtraArgs['remainingAccounts'];
1416
1381
  };
1417
1382
  declare function getCreateUserAccountsInstruction<TAccountPayer extends string, TAccountSystemProgram extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateUserAccountsInput<TAccountPayer, TAccountSystemProgram, TAccountWhitelistedAddressTrees>, config?: {
1418
1383
  programAddress?: TProgramAddress;
@@ -1430,7 +1395,7 @@ declare function parseCreateUserAccountsInstruction<TProgram extends string, TAc
1430
1395
 
1431
1396
  declare const DECOMPRESS_SETTINGS_ACCOUNT_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1432
1397
  declare function getDecompressSettingsAccountDiscriminatorBytes(): ReadonlyUint8Array;
1433
- type DecompressSettingsAccountInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1398
+ type DecompressSettingsAccountInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1434
1399
  TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
1435
1400
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1436
1401
  TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
@@ -1464,10 +1429,10 @@ type DecompressSettingsAccountInput<TAccountSettings extends string = string, TA
1464
1429
  systemProgram?: Address<TAccountSystemProgram>;
1465
1430
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
1466
1431
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
1467
- settingsMutArgs: DecompressSettingsAccountInstructionDataArgs["settingsMutArgs"];
1468
- compressedProofArgs: DecompressSettingsAccountInstructionDataArgs["compressedProofArgs"];
1469
- secp256r1VerifyArgs: DecompressSettingsAccountInstructionDataArgs["secp256r1VerifyArgs"];
1470
- remainingAccounts: DecompressSettingsAccountInstructionExtraArgs["remainingAccounts"];
1432
+ settingsMutArgs: DecompressSettingsAccountInstructionDataArgs['settingsMutArgs'];
1433
+ compressedProofArgs: DecompressSettingsAccountInstructionDataArgs['compressedProofArgs'];
1434
+ secp256r1VerifyArgs: DecompressSettingsAccountInstructionDataArgs['secp256r1VerifyArgs'];
1435
+ remainingAccounts: DecompressSettingsAccountInstructionExtraArgs['remainingAccounts'];
1471
1436
  };
1472
1437
  declare function getDecompressSettingsAccountInstruction<TAccountSettings extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: DecompressSettingsAccountInput<TAccountSettings, TAccountPayer, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
1473
1438
  programAddress?: TProgramAddress;
@@ -1511,8 +1476,8 @@ type DisableDomainConfigInstructionExtraArgs = {
1511
1476
  type DisableDomainConfigInput<TAccountDomainConfig extends string = string, TAccountAdmin extends string = string> = {
1512
1477
  domainConfig: Address<TAccountDomainConfig>;
1513
1478
  admin: TransactionSigner<TAccountAdmin>;
1514
- disable: DisableDomainConfigInstructionDataArgs["disable"];
1515
- remainingAccounts: DisableDomainConfigInstructionExtraArgs["remainingAccounts"];
1479
+ disable: DisableDomainConfigInstructionDataArgs['disable'];
1480
+ remainingAccounts: DisableDomainConfigInstructionExtraArgs['remainingAccounts'];
1516
1481
  };
1517
1482
  declare function getDisableDomainConfigInstruction<TAccountDomainConfig extends string, TAccountAdmin extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: DisableDomainConfigInput<TAccountDomainConfig, TAccountAdmin>, config?: {
1518
1483
  programAddress?: TProgramAddress;
@@ -1529,7 +1494,7 @@ declare function parseDisableDomainConfigInstruction<TProgram extends string, TA
1529
1494
 
1530
1495
  declare const EDIT_DOMAIN_CONFIG_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1531
1496
  declare function getEditDomainConfigDiscriminatorBytes(): ReadonlyUint8Array;
1532
- type EditDomainConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountAuthority extends string | AccountMeta<string> = string, TAccountNewAuthority extends string | AccountMeta<string> = string, TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1497
+ type EditDomainConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountAuthority extends string | AccountMeta<string> = string, TAccountNewAuthority extends string | AccountMeta<string> = string, TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1533
1498
  TAccountDomainConfig extends string ? WritableAccount<TAccountDomainConfig> : TAccountDomainConfig,
1534
1499
  TAccountAuthority extends string ? WritableSignerAccount<TAccountAuthority> & AccountSignerMeta<TAccountAuthority> : TAccountAuthority,
1535
1500
  TAccountNewAuthority extends string ? ReadonlySignerAccount<TAccountNewAuthority> & AccountSignerMeta<TAccountNewAuthority> : TAccountNewAuthority,
@@ -1561,9 +1526,9 @@ type EditDomainConfigAsyncInput<TAccountDomainConfig extends string = string, TA
1561
1526
  newAuthority?: TransactionSigner<TAccountNewAuthority>;
1562
1527
  whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1563
1528
  systemProgram?: Address<TAccountSystemProgram>;
1564
- newOrigins: EditDomainConfigInstructionDataArgs["newOrigins"];
1565
- newAuthorityArgs: EditDomainConfigInstructionDataArgs["newAuthorityArgs"];
1566
- remainingAccounts: EditDomainConfigInstructionExtraArgs["remainingAccounts"];
1529
+ newOrigins: EditDomainConfigInstructionDataArgs['newOrigins'];
1530
+ newAuthorityArgs: EditDomainConfigInstructionDataArgs['newAuthorityArgs'];
1531
+ remainingAccounts: EditDomainConfigInstructionExtraArgs['remainingAccounts'];
1567
1532
  };
1568
1533
  declare function getEditDomainConfigInstructionAsync<TAccountDomainConfig extends string, TAccountAuthority extends string, TAccountNewAuthority extends string, TAccountWhitelistedAddressTrees extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: EditDomainConfigAsyncInput<TAccountDomainConfig, TAccountAuthority, TAccountNewAuthority, TAccountWhitelistedAddressTrees, TAccountSystemProgram>, config?: {
1569
1534
  programAddress?: TProgramAddress;
@@ -1574,9 +1539,9 @@ type EditDomainConfigInput<TAccountDomainConfig extends string = string, TAccoun
1574
1539
  newAuthority?: TransactionSigner<TAccountNewAuthority>;
1575
1540
  whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1576
1541
  systemProgram?: Address<TAccountSystemProgram>;
1577
- newOrigins: EditDomainConfigInstructionDataArgs["newOrigins"];
1578
- newAuthorityArgs: EditDomainConfigInstructionDataArgs["newAuthorityArgs"];
1579
- remainingAccounts: EditDomainConfigInstructionExtraArgs["remainingAccounts"];
1542
+ newOrigins: EditDomainConfigInstructionDataArgs['newOrigins'];
1543
+ newAuthorityArgs: EditDomainConfigInstructionDataArgs['newAuthorityArgs'];
1544
+ remainingAccounts: EditDomainConfigInstructionExtraArgs['remainingAccounts'];
1580
1545
  };
1581
1546
  declare function getEditDomainConfigInstruction<TAccountDomainConfig extends string, TAccountAuthority extends string, TAccountNewAuthority extends string, TAccountWhitelistedAddressTrees extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: EditDomainConfigInput<TAccountDomainConfig, TAccountAuthority, TAccountNewAuthority, TAccountWhitelistedAddressTrees, TAccountSystemProgram>, config?: {
1582
1547
  programAddress?: TProgramAddress;
@@ -1622,10 +1587,10 @@ type EditTransactionManagerUrlInstructionExtraArgs = {
1622
1587
  };
1623
1588
  type EditTransactionManagerUrlInput<TAccountAuthority extends string = string> = {
1624
1589
  authority: TransactionSigner<TAccountAuthority>;
1625
- userMutArgs: EditTransactionManagerUrlInstructionDataArgs["userMutArgs"];
1626
- transactionManagerUrl: EditTransactionManagerUrlInstructionDataArgs["transactionManagerUrl"];
1627
- compressedProofArgs: EditTransactionManagerUrlInstructionDataArgs["compressedProofArgs"];
1628
- remainingAccounts: EditTransactionManagerUrlInstructionExtraArgs["remainingAccounts"];
1590
+ userMutArgs: EditTransactionManagerUrlInstructionDataArgs['userMutArgs'];
1591
+ transactionManagerUrl: EditTransactionManagerUrlInstructionDataArgs['transactionManagerUrl'];
1592
+ compressedProofArgs: EditTransactionManagerUrlInstructionDataArgs['compressedProofArgs'];
1593
+ remainingAccounts: EditTransactionManagerUrlInstructionExtraArgs['remainingAccounts'];
1629
1594
  };
1630
1595
  declare function getEditTransactionManagerUrlInstruction<TAccountAuthority extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: EditTransactionManagerUrlInput<TAccountAuthority>, config?: {
1631
1596
  programAddress?: TProgramAddress;
@@ -1641,7 +1606,7 @@ declare function parseEditTransactionManagerUrlInstruction<TProgram extends stri
1641
1606
 
1642
1607
  declare const EDIT_USER_DELEGATE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1643
1608
  declare function getEditUserDelegateDiscriminatorBytes(): ReadonlyUint8Array;
1644
- 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<[
1609
+ 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<[
1645
1610
  TAccountFeePayer extends string ? WritableSignerAccount<TAccountFeePayer> & AccountSignerMeta<TAccountFeePayer> : TAccountFeePayer,
1646
1611
  TAccountSigner extends string ? ReadonlySignerAccount<TAccountSigner> & AccountSignerMeta<TAccountSigner> : TAccountSigner,
1647
1612
  TAccountOldSettings extends string ? WritableAccount<TAccountOldSettings> : TAccountOldSettings,
@@ -1685,13 +1650,13 @@ type EditUserDelegateInput<TAccountFeePayer extends string = string, TAccountSig
1685
1650
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
1686
1651
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
1687
1652
  domainConfig?: Address<TAccountDomainConfig>;
1688
- userMutArgs: EditUserDelegateInstructionDataArgs["userMutArgs"];
1689
- secp256r1VerifyArgs: EditUserDelegateInstructionDataArgs["secp256r1VerifyArgs"];
1690
- delegateTo: EditUserDelegateInstructionDataArgs["delegateTo"];
1691
- oldSettingsMutArgs: EditUserDelegateInstructionDataArgs["oldSettingsMutArgs"];
1692
- newSettingsMutArgs: EditUserDelegateInstructionDataArgs["newSettingsMutArgs"];
1693
- compressedProofArgs: EditUserDelegateInstructionDataArgs["compressedProofArgs"];
1694
- remainingAccounts: EditUserDelegateInstructionExtraArgs["remainingAccounts"];
1653
+ userMutArgs: EditUserDelegateInstructionDataArgs['userMutArgs'];
1654
+ secp256r1VerifyArgs: EditUserDelegateInstructionDataArgs['secp256r1VerifyArgs'];
1655
+ delegateTo: EditUserDelegateInstructionDataArgs['delegateTo'];
1656
+ oldSettingsMutArgs: EditUserDelegateInstructionDataArgs['oldSettingsMutArgs'];
1657
+ newSettingsMutArgs: EditUserDelegateInstructionDataArgs['newSettingsMutArgs'];
1658
+ compressedProofArgs: EditUserDelegateInstructionDataArgs['compressedProofArgs'];
1659
+ remainingAccounts: EditUserDelegateInstructionExtraArgs['remainingAccounts'];
1695
1660
  };
1696
1661
  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?: {
1697
1662
  programAddress?: TProgramAddress;
@@ -1713,7 +1678,7 @@ declare function parseEditUserDelegateInstruction<TProgram extends string, TAcco
1713
1678
 
1714
1679
  declare const MIGRATE_COMPRESSED_SETTINGS_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1715
1680
  declare function getMigrateCompressedSettingsDiscriminatorBytes(): ReadonlyUint8Array;
1716
- 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<[
1681
+ 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<[
1717
1682
  TAccountAuthority extends string ? WritableSignerAccount<TAccountAuthority> & AccountSignerMeta<TAccountAuthority> : TAccountAuthority,
1718
1683
  ...TRemainingAccounts
1719
1684
  ]>;
@@ -1739,10 +1704,10 @@ type MigrateCompressedSettingsInstructionExtraArgs = {
1739
1704
  };
1740
1705
  type MigrateCompressedSettingsInput<TAccountAuthority extends string = string> = {
1741
1706
  authority?: TransactionSigner<TAccountAuthority>;
1742
- args: MigrateCompressedSettingsInstructionDataArgs["args"];
1743
- compressedProofArgs: MigrateCompressedSettingsInstructionDataArgs["compressedProofArgs"];
1744
- settingsCreationArgs: MigrateCompressedSettingsInstructionDataArgs["settingsCreationArgs"];
1745
- remainingAccounts: MigrateCompressedSettingsInstructionExtraArgs["remainingAccounts"];
1707
+ args: MigrateCompressedSettingsInstructionDataArgs['args'];
1708
+ compressedProofArgs: MigrateCompressedSettingsInstructionDataArgs['compressedProofArgs'];
1709
+ settingsCreationArgs: MigrateCompressedSettingsInstructionDataArgs['settingsCreationArgs'];
1710
+ remainingAccounts: MigrateCompressedSettingsInstructionExtraArgs['remainingAccounts'];
1746
1711
  };
1747
1712
  declare function getMigrateCompressedSettingsInstruction<TAccountAuthority extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: MigrateCompressedSettingsInput<TAccountAuthority>, config?: {
1748
1713
  programAddress?: TProgramAddress;
@@ -1758,7 +1723,7 @@ declare function parseMigrateCompressedSettingsInstruction<TProgram extends stri
1758
1723
 
1759
1724
  declare const MIGRATE_COMPRESSED_USERS_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1760
1725
  declare function getMigrateCompressedUsersDiscriminatorBytes(): ReadonlyUint8Array;
1761
- type MigrateCompressedUsersInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountAuthority extends string | AccountMeta<string> = "AMn21jT5RMZrv5hSvtkrWCMJFp3cUyeAx4AxKvF59xJZ", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1726
+ type MigrateCompressedUsersInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountAuthority extends string | AccountMeta<string> = 'AMn21jT5RMZrv5hSvtkrWCMJFp3cUyeAx4AxKvF59xJZ', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1762
1727
  TAccountAuthority extends string ? WritableSignerAccount<TAccountAuthority> & AccountSignerMeta<TAccountAuthority> : TAccountAuthority,
1763
1728
  ...TRemainingAccounts
1764
1729
  ]>;
@@ -1784,10 +1749,10 @@ type MigrateCompressedUsersInstructionExtraArgs = {
1784
1749
  };
1785
1750
  type MigrateCompressedUsersInput<TAccountAuthority extends string = string> = {
1786
1751
  authority?: TransactionSigner<TAccountAuthority>;
1787
- args: MigrateCompressedUsersInstructionDataArgs["args"];
1788
- compressedProofArgs: MigrateCompressedUsersInstructionDataArgs["compressedProofArgs"];
1789
- userCreationArgs: MigrateCompressedUsersInstructionDataArgs["userCreationArgs"];
1790
- remainingAccounts: MigrateCompressedUsersInstructionExtraArgs["remainingAccounts"];
1752
+ args: MigrateCompressedUsersInstructionDataArgs['args'];
1753
+ compressedProofArgs: MigrateCompressedUsersInstructionDataArgs['compressedProofArgs'];
1754
+ userCreationArgs: MigrateCompressedUsersInstructionDataArgs['userCreationArgs'];
1755
+ remainingAccounts: MigrateCompressedUsersInstructionExtraArgs['remainingAccounts'];
1791
1756
  };
1792
1757
  declare function getMigrateCompressedUsersInstruction<TAccountAuthority extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: MigrateCompressedUsersInput<TAccountAuthority>, config?: {
1793
1758
  programAddress?: TProgramAddress;
@@ -1803,7 +1768,7 @@ declare function parseMigrateCompressedUsersInstruction<TProgram extends string,
1803
1768
 
1804
1769
  declare const NATIVE_TRANSFER_INTENT_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1805
1770
  declare function getNativeTransferIntentDiscriminatorBytes(): ReadonlyUint8Array;
1806
- type NativeTransferIntentInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountSource extends string | AccountMeta<string> = string, TAccountDestination extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1771
+ type NativeTransferIntentInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TAccountSource extends string | AccountMeta<string> = string, TAccountDestination extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1807
1772
  TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
1808
1773
  TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
1809
1774
  TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
@@ -1837,9 +1802,9 @@ type NativeTransferIntentAsyncInput<TAccountSettings extends string = string, TA
1837
1802
  source?: Address<TAccountSource>;
1838
1803
  destination: Address<TAccountDestination>;
1839
1804
  systemProgram?: Address<TAccountSystemProgram>;
1840
- amount: NativeTransferIntentInstructionDataArgs["amount"];
1841
- secp256r1VerifyArgs: NativeTransferIntentInstructionDataArgs["secp256r1VerifyArgs"];
1842
- remainingAccounts: NativeTransferIntentInstructionExtraArgs["remainingAccounts"];
1805
+ amount: NativeTransferIntentInstructionDataArgs['amount'];
1806
+ secp256r1VerifyArgs: NativeTransferIntentInstructionDataArgs['secp256r1VerifyArgs'];
1807
+ remainingAccounts: NativeTransferIntentInstructionExtraArgs['remainingAccounts'];
1843
1808
  };
1844
1809
  declare function getNativeTransferIntentInstructionAsync<TAccountSettings extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountDestination extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: NativeTransferIntentAsyncInput<TAccountSettings, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountDestination, TAccountSystemProgram>, config?: {
1845
1810
  programAddress?: TProgramAddress;
@@ -1851,9 +1816,9 @@ type NativeTransferIntentInput<TAccountSettings extends string = string, TAccoun
1851
1816
  source: Address<TAccountSource>;
1852
1817
  destination: Address<TAccountDestination>;
1853
1818
  systemProgram?: Address<TAccountSystemProgram>;
1854
- amount: NativeTransferIntentInstructionDataArgs["amount"];
1855
- secp256r1VerifyArgs: NativeTransferIntentInstructionDataArgs["secp256r1VerifyArgs"];
1856
- remainingAccounts: NativeTransferIntentInstructionExtraArgs["remainingAccounts"];
1819
+ amount: NativeTransferIntentInstructionDataArgs['amount'];
1820
+ secp256r1VerifyArgs: NativeTransferIntentInstructionDataArgs['secp256r1VerifyArgs'];
1821
+ remainingAccounts: NativeTransferIntentInstructionExtraArgs['remainingAccounts'];
1857
1822
  };
1858
1823
  declare function getNativeTransferIntentInstruction<TAccountSettings extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountDestination extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: NativeTransferIntentInput<TAccountSettings, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountDestination, TAccountSystemProgram>, config?: {
1859
1824
  programAddress?: TProgramAddress;
@@ -1874,7 +1839,7 @@ declare function parseNativeTransferIntentInstruction<TProgram extends string, T
1874
1839
 
1875
1840
  declare const NATIVE_TRANSFER_INTENT_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1876
1841
  declare function getNativeTransferIntentCompressedDiscriminatorBytes(): ReadonlyUint8Array;
1877
- type NativeTransferIntentCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountSource extends string | AccountMeta<string> = string, TAccountDestination extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1842
+ type NativeTransferIntentCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TAccountSource extends string | AccountMeta<string> = string, TAccountDestination extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1878
1843
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1879
1844
  TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
1880
1845
  TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
@@ -1912,11 +1877,11 @@ type NativeTransferIntentCompressedInput<TAccountPayer extends string = string,
1912
1877
  source: Address<TAccountSource>;
1913
1878
  destination: Address<TAccountDestination>;
1914
1879
  systemProgram?: Address<TAccountSystemProgram>;
1915
- amount: NativeTransferIntentCompressedInstructionDataArgs["amount"];
1916
- secp256r1VerifyArgs: NativeTransferIntentCompressedInstructionDataArgs["secp256r1VerifyArgs"];
1917
- settingsMutArgs: NativeTransferIntentCompressedInstructionDataArgs["settingsMutArgs"];
1918
- compressedProofArgs: NativeTransferIntentCompressedInstructionDataArgs["compressedProofArgs"];
1919
- remainingAccounts: NativeTransferIntentCompressedInstructionExtraArgs["remainingAccounts"];
1880
+ amount: NativeTransferIntentCompressedInstructionDataArgs['amount'];
1881
+ secp256r1VerifyArgs: NativeTransferIntentCompressedInstructionDataArgs['secp256r1VerifyArgs'];
1882
+ settingsMutArgs: NativeTransferIntentCompressedInstructionDataArgs['settingsMutArgs'];
1883
+ compressedProofArgs: NativeTransferIntentCompressedInstructionDataArgs['compressedProofArgs'];
1884
+ remainingAccounts: NativeTransferIntentCompressedInstructionExtraArgs['remainingAccounts'];
1920
1885
  };
1921
1886
  declare function getNativeTransferIntentCompressedInstruction<TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountDestination extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: NativeTransferIntentCompressedInput<TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountDestination, TAccountSystemProgram>, config?: {
1922
1887
  programAddress?: TProgramAddress;
@@ -1937,29 +1902,38 @@ declare function parseNativeTransferIntentCompressedInstruction<TProgram extends
1937
1902
 
1938
1903
  declare const TOKEN_TRANSFER_INTENT_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1939
1904
  declare function getTokenTransferIntentDiscriminatorBytes(): ReadonlyUint8Array;
1940
- type TokenTransferIntentInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountSource extends string | AccountMeta<string> = string, TAccountSourceTokenAccount extends string | AccountMeta<string> = string, TAccountDestination extends string | AccountMeta<string> = string, TAccountDestinationTokenAccount extends string | AccountMeta<string> = string, TAccountTokenProgram extends string | AccountMeta<string> = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA", TAccountMint extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountAssociatedTokenProgram extends string | AccountMeta<string> = "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1905
+ type TokenTransferIntentInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TAccountSource extends string | AccountMeta<string> = string, TAccountSourceSplTokenAccount extends string | AccountMeta<string> = string, TAccountSourceCtokenTokenAccount extends string | AccountMeta<string> = string, TAccountDestination extends string | AccountMeta<string> = string, TAccountDestinationSplTokenAccount extends string | AccountMeta<string> = string, TAccountDestinationCtokenTokenAccount extends string | AccountMeta<string> = string, TAccountTokenProgram extends string | AccountMeta<string> = 'TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA', TAccountMint extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountCompressedTokenProgramAuthority extends string | AccountMeta<string> = 'GXtd2izAiMJPwMEjfgTRH3d7k9mjn4Jq3JrWFv9gySYy', TAccountSplInterfacePda extends string | AccountMeta<string> = string, TAccountCompressibleConfig extends string | AccountMeta<string> = string, TAccountRentSponsor extends string | AccountMeta<string> = string, TAccountCompressedTokenProgram extends string | AccountMeta<string> = 'cTokenmWW8bLPjZEBAUgYy3zKxQZW6VKi7bqNFEVv3m', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1941
1906
  TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
1907
+ TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1942
1908
  TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
1943
1909
  TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
1944
- TAccountSource extends string ? WritableAccount<TAccountSource> : TAccountSource,
1945
- TAccountSourceTokenAccount extends string ? WritableAccount<TAccountSourceTokenAccount> : TAccountSourceTokenAccount,
1910
+ TAccountSource extends string ? ReadonlyAccount<TAccountSource> : TAccountSource,
1911
+ TAccountSourceSplTokenAccount extends string ? WritableAccount<TAccountSourceSplTokenAccount> : TAccountSourceSplTokenAccount,
1912
+ TAccountSourceCtokenTokenAccount extends string ? WritableAccount<TAccountSourceCtokenTokenAccount> : TAccountSourceCtokenTokenAccount,
1946
1913
  TAccountDestination extends string ? ReadonlyAccount<TAccountDestination> : TAccountDestination,
1947
- TAccountDestinationTokenAccount extends string ? WritableAccount<TAccountDestinationTokenAccount> : TAccountDestinationTokenAccount,
1914
+ TAccountDestinationSplTokenAccount extends string ? WritableAccount<TAccountDestinationSplTokenAccount> : TAccountDestinationSplTokenAccount,
1915
+ TAccountDestinationCtokenTokenAccount extends string ? WritableAccount<TAccountDestinationCtokenTokenAccount> : TAccountDestinationCtokenTokenAccount,
1948
1916
  TAccountTokenProgram extends string ? ReadonlyAccount<TAccountTokenProgram> : TAccountTokenProgram,
1949
1917
  TAccountMint extends string ? ReadonlyAccount<TAccountMint> : TAccountMint,
1950
1918
  TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
1951
- TAccountAssociatedTokenProgram extends string ? ReadonlyAccount<TAccountAssociatedTokenProgram> : TAccountAssociatedTokenProgram,
1919
+ TAccountCompressedTokenProgramAuthority extends string ? ReadonlyAccount<TAccountCompressedTokenProgramAuthority> : TAccountCompressedTokenProgramAuthority,
1920
+ TAccountSplInterfacePda extends string ? WritableAccount<TAccountSplInterfacePda> : TAccountSplInterfacePda,
1921
+ TAccountCompressibleConfig extends string ? ReadonlyAccount<TAccountCompressibleConfig> : TAccountCompressibleConfig,
1922
+ TAccountRentSponsor extends string ? WritableAccount<TAccountRentSponsor> : TAccountRentSponsor,
1923
+ TAccountCompressedTokenProgram extends string ? ReadonlyAccount<TAccountCompressedTokenProgram> : TAccountCompressedTokenProgram,
1952
1924
  ...TRemainingAccounts
1953
1925
  ]>;
1954
1926
  type TokenTransferIntentInstructionData = {
1955
1927
  discriminator: ReadonlyUint8Array;
1956
1928
  amount: bigint;
1957
- createAtaIfNeeded: boolean;
1929
+ compressedTokenAccount: Option<CompressedTokenArgs>;
1930
+ compressedProofArgs: Option<ProofArgs>;
1958
1931
  secp256r1VerifyArgs: Array<Secp256r1VerifyArgsWithDomainAddress>;
1959
1932
  };
1960
1933
  type TokenTransferIntentInstructionDataArgs = {
1961
1934
  amount: number | bigint;
1962
- createAtaIfNeeded: boolean;
1935
+ compressedTokenAccount: OptionOrNullable<CompressedTokenArgsArgs>;
1936
+ compressedProofArgs: OptionOrNullable<ProofArgsArgs>;
1963
1937
  secp256r1VerifyArgs: Array<Secp256r1VerifyArgsWithDomainAddressArgs>;
1964
1938
  };
1965
1939
  declare function getTokenTransferIntentInstructionDataEncoder(): Encoder<TokenTransferIntentInstructionDataArgs>;
@@ -1971,60 +1945,83 @@ type TokenTransferIntentInstructionExtraArgs = {
1971
1945
  role: number;
1972
1946
  }>;
1973
1947
  };
1974
- type TokenTransferIntentAsyncInput<TAccountSettings extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountSource extends string = string, TAccountSourceTokenAccount extends string = string, TAccountDestination extends string = string, TAccountDestinationTokenAccount extends string = string, TAccountTokenProgram extends string = string, TAccountMint extends string = string, TAccountSystemProgram extends string = string, TAccountAssociatedTokenProgram extends string = string> = {
1948
+ type TokenTransferIntentAsyncInput<TAccountSettings extends string = string, TAccountPayer extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountSource extends string = string, TAccountSourceSplTokenAccount extends string = string, TAccountSourceCtokenTokenAccount extends string = string, TAccountDestination extends string = string, TAccountDestinationSplTokenAccount extends string = string, TAccountDestinationCtokenTokenAccount extends string = string, TAccountTokenProgram extends string = string, TAccountMint extends string = string, TAccountSystemProgram extends string = string, TAccountCompressedTokenProgramAuthority extends string = string, TAccountSplInterfacePda extends string = string, TAccountCompressibleConfig extends string = string, TAccountRentSponsor extends string = string, TAccountCompressedTokenProgram extends string = string> = {
1975
1949
  settings: Address<TAccountSettings>;
1950
+ payer: TransactionSigner<TAccountPayer>;
1976
1951
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
1977
1952
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
1978
1953
  source?: Address<TAccountSource>;
1979
- sourceTokenAccount?: Address<TAccountSourceTokenAccount>;
1954
+ sourceSplTokenAccount?: Address<TAccountSourceSplTokenAccount>;
1955
+ sourceCtokenTokenAccount?: Address<TAccountSourceCtokenTokenAccount>;
1980
1956
  destination: Address<TAccountDestination>;
1981
- destinationTokenAccount?: Address<TAccountDestinationTokenAccount>;
1957
+ destinationSplTokenAccount?: Address<TAccountDestinationSplTokenAccount>;
1958
+ destinationCtokenTokenAccount?: Address<TAccountDestinationCtokenTokenAccount>;
1982
1959
  tokenProgram?: Address<TAccountTokenProgram>;
1983
1960
  mint: Address<TAccountMint>;
1984
1961
  systemProgram?: Address<TAccountSystemProgram>;
1985
- associatedTokenProgram?: Address<TAccountAssociatedTokenProgram>;
1986
- amount: TokenTransferIntentInstructionDataArgs["amount"];
1987
- createAtaIfNeeded: TokenTransferIntentInstructionDataArgs["createAtaIfNeeded"];
1988
- secp256r1VerifyArgs: TokenTransferIntentInstructionDataArgs["secp256r1VerifyArgs"];
1989
- remainingAccounts: TokenTransferIntentInstructionExtraArgs["remainingAccounts"];
1990
- };
1991
- declare function getTokenTransferIntentInstructionAsync<TAccountSettings extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceTokenAccount extends string, TAccountDestination extends string, TAccountDestinationTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string, TAccountSystemProgram extends string, TAccountAssociatedTokenProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentAsyncInput<TAccountSettings, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceTokenAccount, TAccountDestination, TAccountDestinationTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountAssociatedTokenProgram>, config?: {
1962
+ compressedTokenProgramAuthority?: Address<TAccountCompressedTokenProgramAuthority>;
1963
+ splInterfacePda?: Address<TAccountSplInterfacePda>;
1964
+ compressibleConfig: Address<TAccountCompressibleConfig>;
1965
+ rentSponsor?: Address<TAccountRentSponsor>;
1966
+ compressedTokenProgram?: Address<TAccountCompressedTokenProgram>;
1967
+ amount: TokenTransferIntentInstructionDataArgs['amount'];
1968
+ compressedTokenAccount: TokenTransferIntentInstructionDataArgs['compressedTokenAccount'];
1969
+ compressedProofArgs: TokenTransferIntentInstructionDataArgs['compressedProofArgs'];
1970
+ secp256r1VerifyArgs: TokenTransferIntentInstructionDataArgs['secp256r1VerifyArgs'];
1971
+ remainingAccounts: TokenTransferIntentInstructionExtraArgs['remainingAccounts'];
1972
+ };
1973
+ declare function getTokenTransferIntentInstructionAsync<TAccountSettings extends string, TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceSplTokenAccount extends string, TAccountSourceCtokenTokenAccount extends string, TAccountDestination extends string, TAccountDestinationSplTokenAccount extends string, TAccountDestinationCtokenTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string, TAccountSystemProgram extends string, TAccountCompressedTokenProgramAuthority extends string, TAccountSplInterfacePda extends string, TAccountCompressibleConfig extends string, TAccountRentSponsor extends string, TAccountCompressedTokenProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentAsyncInput<TAccountSettings, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>, config?: {
1992
1974
  programAddress?: TProgramAddress;
1993
- }): Promise<TokenTransferIntentInstruction<TProgramAddress, TAccountSettings, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceTokenAccount, TAccountDestination, TAccountDestinationTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountAssociatedTokenProgram>>;
1994
- type TokenTransferIntentInput<TAccountSettings extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountSource extends string = string, TAccountSourceTokenAccount extends string = string, TAccountDestination extends string = string, TAccountDestinationTokenAccount extends string = string, TAccountTokenProgram extends string = string, TAccountMint extends string = string, TAccountSystemProgram extends string = string, TAccountAssociatedTokenProgram extends string = string> = {
1975
+ }): Promise<TokenTransferIntentInstruction<TProgramAddress, TAccountSettings, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>>;
1976
+ type TokenTransferIntentInput<TAccountSettings extends string = string, TAccountPayer extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountSource extends string = string, TAccountSourceSplTokenAccount extends string = string, TAccountSourceCtokenTokenAccount extends string = string, TAccountDestination extends string = string, TAccountDestinationSplTokenAccount extends string = string, TAccountDestinationCtokenTokenAccount extends string = string, TAccountTokenProgram extends string = string, TAccountMint extends string = string, TAccountSystemProgram extends string = string, TAccountCompressedTokenProgramAuthority extends string = string, TAccountSplInterfacePda extends string = string, TAccountCompressibleConfig extends string = string, TAccountRentSponsor extends string = string, TAccountCompressedTokenProgram extends string = string> = {
1995
1977
  settings: Address<TAccountSettings>;
1978
+ payer: TransactionSigner<TAccountPayer>;
1996
1979
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
1997
1980
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
1998
1981
  source: Address<TAccountSource>;
1999
- sourceTokenAccount: Address<TAccountSourceTokenAccount>;
1982
+ sourceSplTokenAccount: Address<TAccountSourceSplTokenAccount>;
1983
+ sourceCtokenTokenAccount: Address<TAccountSourceCtokenTokenAccount>;
2000
1984
  destination: Address<TAccountDestination>;
2001
- destinationTokenAccount: Address<TAccountDestinationTokenAccount>;
1985
+ destinationSplTokenAccount?: Address<TAccountDestinationSplTokenAccount>;
1986
+ destinationCtokenTokenAccount?: Address<TAccountDestinationCtokenTokenAccount>;
2002
1987
  tokenProgram?: Address<TAccountTokenProgram>;
2003
1988
  mint: Address<TAccountMint>;
2004
1989
  systemProgram?: Address<TAccountSystemProgram>;
2005
- associatedTokenProgram?: Address<TAccountAssociatedTokenProgram>;
2006
- amount: TokenTransferIntentInstructionDataArgs["amount"];
2007
- createAtaIfNeeded: TokenTransferIntentInstructionDataArgs["createAtaIfNeeded"];
2008
- secp256r1VerifyArgs: TokenTransferIntentInstructionDataArgs["secp256r1VerifyArgs"];
2009
- remainingAccounts: TokenTransferIntentInstructionExtraArgs["remainingAccounts"];
2010
- };
2011
- declare function getTokenTransferIntentInstruction<TAccountSettings extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceTokenAccount extends string, TAccountDestination extends string, TAccountDestinationTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string, TAccountSystemProgram extends string, TAccountAssociatedTokenProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentInput<TAccountSettings, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceTokenAccount, TAccountDestination, TAccountDestinationTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountAssociatedTokenProgram>, config?: {
1990
+ compressedTokenProgramAuthority?: Address<TAccountCompressedTokenProgramAuthority>;
1991
+ splInterfacePda?: Address<TAccountSplInterfacePda>;
1992
+ compressibleConfig: Address<TAccountCompressibleConfig>;
1993
+ rentSponsor?: Address<TAccountRentSponsor>;
1994
+ compressedTokenProgram?: Address<TAccountCompressedTokenProgram>;
1995
+ amount: TokenTransferIntentInstructionDataArgs['amount'];
1996
+ compressedTokenAccount: TokenTransferIntentInstructionDataArgs['compressedTokenAccount'];
1997
+ compressedProofArgs: TokenTransferIntentInstructionDataArgs['compressedProofArgs'];
1998
+ secp256r1VerifyArgs: TokenTransferIntentInstructionDataArgs['secp256r1VerifyArgs'];
1999
+ remainingAccounts: TokenTransferIntentInstructionExtraArgs['remainingAccounts'];
2000
+ };
2001
+ declare function getTokenTransferIntentInstruction<TAccountSettings extends string, TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceSplTokenAccount extends string, TAccountSourceCtokenTokenAccount extends string, TAccountDestination extends string, TAccountDestinationSplTokenAccount extends string, TAccountDestinationCtokenTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string, TAccountSystemProgram extends string, TAccountCompressedTokenProgramAuthority extends string, TAccountSplInterfacePda extends string, TAccountCompressibleConfig extends string, TAccountRentSponsor extends string, TAccountCompressedTokenProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentInput<TAccountSettings, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>, config?: {
2012
2002
  programAddress?: TProgramAddress;
2013
- }): TokenTransferIntentInstruction<TProgramAddress, TAccountSettings, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceTokenAccount, TAccountDestination, TAccountDestinationTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountAssociatedTokenProgram>;
2003
+ }): TokenTransferIntentInstruction<TProgramAddress, TAccountSettings, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>;
2014
2004
  type ParsedTokenTransferIntentInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
2015
2005
  programAddress: Address<TProgram>;
2016
2006
  accounts: {
2017
2007
  settings: TAccountMetas[0];
2018
- slotHashSysvar?: TAccountMetas[1] | undefined;
2019
- instructionsSysvar: TAccountMetas[2];
2020
- source: TAccountMetas[3];
2021
- sourceTokenAccount: TAccountMetas[4];
2022
- destination: TAccountMetas[5];
2023
- destinationTokenAccount: TAccountMetas[6];
2024
- tokenProgram: TAccountMetas[7];
2025
- mint: TAccountMetas[8];
2026
- systemProgram: TAccountMetas[9];
2027
- associatedTokenProgram: TAccountMetas[10];
2008
+ payer: TAccountMetas[1];
2009
+ slotHashSysvar?: TAccountMetas[2] | undefined;
2010
+ instructionsSysvar: TAccountMetas[3];
2011
+ source: TAccountMetas[4];
2012
+ sourceSplTokenAccount: TAccountMetas[5];
2013
+ sourceCtokenTokenAccount: TAccountMetas[6];
2014
+ destination: TAccountMetas[7];
2015
+ destinationSplTokenAccount?: TAccountMetas[8] | undefined;
2016
+ destinationCtokenTokenAccount?: TAccountMetas[9] | undefined;
2017
+ tokenProgram: TAccountMetas[10];
2018
+ mint: TAccountMetas[11];
2019
+ systemProgram: TAccountMetas[12];
2020
+ compressedTokenProgramAuthority: TAccountMetas[13];
2021
+ splInterfacePda?: TAccountMetas[14] | undefined;
2022
+ compressibleConfig: TAccountMetas[15];
2023
+ rentSponsor?: TAccountMetas[16] | undefined;
2024
+ compressedTokenProgram: TAccountMetas[17];
2028
2025
  };
2029
2026
  data: TokenTransferIntentInstructionData;
2030
2027
  };
@@ -2032,31 +2029,37 @@ declare function parseTokenTransferIntentInstruction<TProgram extends string, TA
2032
2029
 
2033
2030
  declare const TOKEN_TRANSFER_INTENT_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2034
2031
  declare function getTokenTransferIntentCompressedDiscriminatorBytes(): ReadonlyUint8Array;
2035
- type TokenTransferIntentCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountSource extends string | AccountMeta<string> = string, TAccountSourceTokenAccount extends string | AccountMeta<string> = string, TAccountDestination extends string | AccountMeta<string> = string, TAccountDestinationTokenAccount extends string | AccountMeta<string> = string, TAccountTokenProgram extends string | AccountMeta<string> = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA", TAccountMint extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountAssociatedTokenProgram extends string | AccountMeta<string> = "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2032
+ type TokenTransferIntentCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TAccountSource extends string | AccountMeta<string> = string, TAccountSourceSplTokenAccount extends string | AccountMeta<string> = string, TAccountSourceCtokenTokenAccount extends string | AccountMeta<string> = string, TAccountDestination extends string | AccountMeta<string> = string, TAccountDestinationSplTokenAccount extends string | AccountMeta<string> = string, TAccountDestinationCtokenTokenAccount extends string | AccountMeta<string> = string, TAccountTokenProgram extends string | AccountMeta<string> = 'TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA', TAccountMint extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountCompressedTokenProgramAuthority extends string | AccountMeta<string> = 'GXtd2izAiMJPwMEjfgTRH3d7k9mjn4Jq3JrWFv9gySYy', TAccountSplInterfacePda extends string | AccountMeta<string> = string, TAccountCompressibleConfig extends string | AccountMeta<string> = string, TAccountRentSponsor extends string | AccountMeta<string> = string, TAccountCompressedTokenProgram extends string | AccountMeta<string> = 'cTokenmWW8bLPjZEBAUgYy3zKxQZW6VKi7bqNFEVv3m', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2036
2033
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
2037
2034
  TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
2038
2035
  TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
2039
- TAccountSource extends string ? WritableAccount<TAccountSource> : TAccountSource,
2040
- TAccountSourceTokenAccount extends string ? WritableAccount<TAccountSourceTokenAccount> : TAccountSourceTokenAccount,
2036
+ TAccountSource extends string ? ReadonlyAccount<TAccountSource> : TAccountSource,
2037
+ TAccountSourceSplTokenAccount extends string ? WritableAccount<TAccountSourceSplTokenAccount> : TAccountSourceSplTokenAccount,
2038
+ TAccountSourceCtokenTokenAccount extends string ? WritableAccount<TAccountSourceCtokenTokenAccount> : TAccountSourceCtokenTokenAccount,
2041
2039
  TAccountDestination extends string ? ReadonlyAccount<TAccountDestination> : TAccountDestination,
2042
- TAccountDestinationTokenAccount extends string ? WritableAccount<TAccountDestinationTokenAccount> : TAccountDestinationTokenAccount,
2040
+ TAccountDestinationSplTokenAccount extends string ? WritableAccount<TAccountDestinationSplTokenAccount> : TAccountDestinationSplTokenAccount,
2041
+ TAccountDestinationCtokenTokenAccount extends string ? WritableAccount<TAccountDestinationCtokenTokenAccount> : TAccountDestinationCtokenTokenAccount,
2043
2042
  TAccountTokenProgram extends string ? ReadonlyAccount<TAccountTokenProgram> : TAccountTokenProgram,
2044
2043
  TAccountMint extends string ? ReadonlyAccount<TAccountMint> : TAccountMint,
2045
2044
  TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
2046
- TAccountAssociatedTokenProgram extends string ? ReadonlyAccount<TAccountAssociatedTokenProgram> : TAccountAssociatedTokenProgram,
2045
+ TAccountCompressedTokenProgramAuthority extends string ? ReadonlyAccount<TAccountCompressedTokenProgramAuthority> : TAccountCompressedTokenProgramAuthority,
2046
+ TAccountSplInterfacePda extends string ? WritableAccount<TAccountSplInterfacePda> : TAccountSplInterfacePda,
2047
+ TAccountCompressibleConfig extends string ? ReadonlyAccount<TAccountCompressibleConfig> : TAccountCompressibleConfig,
2048
+ TAccountRentSponsor extends string ? WritableAccount<TAccountRentSponsor> : TAccountRentSponsor,
2049
+ TAccountCompressedTokenProgram extends string ? ReadonlyAccount<TAccountCompressedTokenProgram> : TAccountCompressedTokenProgram,
2047
2050
  ...TRemainingAccounts
2048
2051
  ]>;
2049
2052
  type TokenTransferIntentCompressedInstructionData = {
2050
2053
  discriminator: ReadonlyUint8Array;
2051
2054
  amount: bigint;
2052
- createAtaIfNeeded: boolean;
2055
+ compressedTokenAccount: Option<CompressedTokenArgs>;
2053
2056
  secp256r1VerifyArgs: Array<Secp256r1VerifyArgsWithDomainAddress>;
2054
2057
  settingsMutArgs: SettingsMutArgs;
2055
2058
  compressedProofArgs: ProofArgs;
2056
2059
  };
2057
2060
  type TokenTransferIntentCompressedInstructionDataArgs = {
2058
2061
  amount: number | bigint;
2059
- createAtaIfNeeded: boolean;
2062
+ compressedTokenAccount: OptionOrNullable<CompressedTokenArgsArgs>;
2060
2063
  secp256r1VerifyArgs: Array<Secp256r1VerifyArgsWithDomainAddressArgs>;
2061
2064
  settingsMutArgs: SettingsMutArgsArgs;
2062
2065
  compressedProofArgs: ProofArgsArgs;
@@ -2070,50 +2073,62 @@ type TokenTransferIntentCompressedInstructionExtraArgs = {
2070
2073
  role: number;
2071
2074
  }>;
2072
2075
  };
2073
- type TokenTransferIntentCompressedAsyncInput<TAccountPayer extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountSource extends string = string, TAccountSourceTokenAccount extends string = string, TAccountDestination extends string = string, TAccountDestinationTokenAccount extends string = string, TAccountTokenProgram extends string = string, TAccountMint extends string = string, TAccountSystemProgram extends string = string, TAccountAssociatedTokenProgram extends string = string> = {
2076
+ type TokenTransferIntentCompressedAsyncInput<TAccountPayer extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountSource extends string = string, TAccountSourceSplTokenAccount extends string = string, TAccountSourceCtokenTokenAccount extends string = string, TAccountDestination extends string = string, TAccountDestinationSplTokenAccount extends string = string, TAccountDestinationCtokenTokenAccount extends string = string, TAccountTokenProgram extends string = string, TAccountMint extends string = string, TAccountSystemProgram extends string = string, TAccountCompressedTokenProgramAuthority extends string = string, TAccountSplInterfacePda extends string = string, TAccountCompressibleConfig extends string = string, TAccountRentSponsor extends string = string, TAccountCompressedTokenProgram extends string = string> = {
2074
2077
  payer: TransactionSigner<TAccountPayer>;
2075
2078
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
2076
2079
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
2077
2080
  source: Address<TAccountSource>;
2078
- sourceTokenAccount?: Address<TAccountSourceTokenAccount>;
2081
+ sourceSplTokenAccount?: Address<TAccountSourceSplTokenAccount>;
2082
+ sourceCtokenTokenAccount?: Address<TAccountSourceCtokenTokenAccount>;
2079
2083
  destination: Address<TAccountDestination>;
2080
- destinationTokenAccount?: Address<TAccountDestinationTokenAccount>;
2084
+ destinationSplTokenAccount?: Address<TAccountDestinationSplTokenAccount>;
2085
+ destinationCtokenTokenAccount?: Address<TAccountDestinationCtokenTokenAccount>;
2081
2086
  tokenProgram?: Address<TAccountTokenProgram>;
2082
2087
  mint: Address<TAccountMint>;
2083
2088
  systemProgram?: Address<TAccountSystemProgram>;
2084
- associatedTokenProgram?: Address<TAccountAssociatedTokenProgram>;
2085
- amount: TokenTransferIntentCompressedInstructionDataArgs["amount"];
2086
- createAtaIfNeeded: TokenTransferIntentCompressedInstructionDataArgs["createAtaIfNeeded"];
2087
- secp256r1VerifyArgs: TokenTransferIntentCompressedInstructionDataArgs["secp256r1VerifyArgs"];
2088
- settingsMutArgs: TokenTransferIntentCompressedInstructionDataArgs["settingsMutArgs"];
2089
- compressedProofArgs: TokenTransferIntentCompressedInstructionDataArgs["compressedProofArgs"];
2090
- remainingAccounts: TokenTransferIntentCompressedInstructionExtraArgs["remainingAccounts"];
2091
- };
2092
- declare function getTokenTransferIntentCompressedInstructionAsync<TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceTokenAccount extends string, TAccountDestination extends string, TAccountDestinationTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string, TAccountSystemProgram extends string, TAccountAssociatedTokenProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentCompressedAsyncInput<TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceTokenAccount, TAccountDestination, TAccountDestinationTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountAssociatedTokenProgram>, config?: {
2089
+ compressedTokenProgramAuthority?: Address<TAccountCompressedTokenProgramAuthority>;
2090
+ splInterfacePda?: Address<TAccountSplInterfacePda>;
2091
+ compressibleConfig: Address<TAccountCompressibleConfig>;
2092
+ rentSponsor?: Address<TAccountRentSponsor>;
2093
+ compressedTokenProgram?: Address<TAccountCompressedTokenProgram>;
2094
+ amount: TokenTransferIntentCompressedInstructionDataArgs['amount'];
2095
+ compressedTokenAccount: TokenTransferIntentCompressedInstructionDataArgs['compressedTokenAccount'];
2096
+ secp256r1VerifyArgs: TokenTransferIntentCompressedInstructionDataArgs['secp256r1VerifyArgs'];
2097
+ settingsMutArgs: TokenTransferIntentCompressedInstructionDataArgs['settingsMutArgs'];
2098
+ compressedProofArgs: TokenTransferIntentCompressedInstructionDataArgs['compressedProofArgs'];
2099
+ remainingAccounts: TokenTransferIntentCompressedInstructionExtraArgs['remainingAccounts'];
2100
+ };
2101
+ declare function getTokenTransferIntentCompressedInstructionAsync<TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceSplTokenAccount extends string, TAccountSourceCtokenTokenAccount extends string, TAccountDestination extends string, TAccountDestinationSplTokenAccount extends string, TAccountDestinationCtokenTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string, TAccountSystemProgram extends string, TAccountCompressedTokenProgramAuthority extends string, TAccountSplInterfacePda extends string, TAccountCompressibleConfig extends string, TAccountRentSponsor extends string, TAccountCompressedTokenProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentCompressedAsyncInput<TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>, config?: {
2093
2102
  programAddress?: TProgramAddress;
2094
- }): Promise<TokenTransferIntentCompressedInstruction<TProgramAddress, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceTokenAccount, TAccountDestination, TAccountDestinationTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountAssociatedTokenProgram>>;
2095
- type TokenTransferIntentCompressedInput<TAccountPayer extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountSource extends string = string, TAccountSourceTokenAccount extends string = string, TAccountDestination extends string = string, TAccountDestinationTokenAccount extends string = string, TAccountTokenProgram extends string = string, TAccountMint extends string = string, TAccountSystemProgram extends string = string, TAccountAssociatedTokenProgram extends string = string> = {
2103
+ }): Promise<TokenTransferIntentCompressedInstruction<TProgramAddress, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>>;
2104
+ type TokenTransferIntentCompressedInput<TAccountPayer extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string, TAccountSource extends string = string, TAccountSourceSplTokenAccount extends string = string, TAccountSourceCtokenTokenAccount extends string = string, TAccountDestination extends string = string, TAccountDestinationSplTokenAccount extends string = string, TAccountDestinationCtokenTokenAccount extends string = string, TAccountTokenProgram extends string = string, TAccountMint extends string = string, TAccountSystemProgram extends string = string, TAccountCompressedTokenProgramAuthority extends string = string, TAccountSplInterfacePda extends string = string, TAccountCompressibleConfig extends string = string, TAccountRentSponsor extends string = string, TAccountCompressedTokenProgram extends string = string> = {
2096
2105
  payer: TransactionSigner<TAccountPayer>;
2097
2106
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
2098
2107
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
2099
2108
  source: Address<TAccountSource>;
2100
- sourceTokenAccount: Address<TAccountSourceTokenAccount>;
2109
+ sourceSplTokenAccount: Address<TAccountSourceSplTokenAccount>;
2110
+ sourceCtokenTokenAccount: Address<TAccountSourceCtokenTokenAccount>;
2101
2111
  destination: Address<TAccountDestination>;
2102
- destinationTokenAccount: Address<TAccountDestinationTokenAccount>;
2112
+ destinationSplTokenAccount?: Address<TAccountDestinationSplTokenAccount>;
2113
+ destinationCtokenTokenAccount?: Address<TAccountDestinationCtokenTokenAccount>;
2103
2114
  tokenProgram?: Address<TAccountTokenProgram>;
2104
2115
  mint: Address<TAccountMint>;
2105
2116
  systemProgram?: Address<TAccountSystemProgram>;
2106
- associatedTokenProgram?: Address<TAccountAssociatedTokenProgram>;
2107
- amount: TokenTransferIntentCompressedInstructionDataArgs["amount"];
2108
- createAtaIfNeeded: TokenTransferIntentCompressedInstructionDataArgs["createAtaIfNeeded"];
2109
- secp256r1VerifyArgs: TokenTransferIntentCompressedInstructionDataArgs["secp256r1VerifyArgs"];
2110
- settingsMutArgs: TokenTransferIntentCompressedInstructionDataArgs["settingsMutArgs"];
2111
- compressedProofArgs: TokenTransferIntentCompressedInstructionDataArgs["compressedProofArgs"];
2112
- remainingAccounts: TokenTransferIntentCompressedInstructionExtraArgs["remainingAccounts"];
2113
- };
2114
- declare function getTokenTransferIntentCompressedInstruction<TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceTokenAccount extends string, TAccountDestination extends string, TAccountDestinationTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string, TAccountSystemProgram extends string, TAccountAssociatedTokenProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentCompressedInput<TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceTokenAccount, TAccountDestination, TAccountDestinationTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountAssociatedTokenProgram>, config?: {
2117
+ compressedTokenProgramAuthority?: Address<TAccountCompressedTokenProgramAuthority>;
2118
+ splInterfacePda?: Address<TAccountSplInterfacePda>;
2119
+ compressibleConfig: Address<TAccountCompressibleConfig>;
2120
+ rentSponsor?: Address<TAccountRentSponsor>;
2121
+ compressedTokenProgram?: Address<TAccountCompressedTokenProgram>;
2122
+ amount: TokenTransferIntentCompressedInstructionDataArgs['amount'];
2123
+ compressedTokenAccount: TokenTransferIntentCompressedInstructionDataArgs['compressedTokenAccount'];
2124
+ secp256r1VerifyArgs: TokenTransferIntentCompressedInstructionDataArgs['secp256r1VerifyArgs'];
2125
+ settingsMutArgs: TokenTransferIntentCompressedInstructionDataArgs['settingsMutArgs'];
2126
+ compressedProofArgs: TokenTransferIntentCompressedInstructionDataArgs['compressedProofArgs'];
2127
+ remainingAccounts: TokenTransferIntentCompressedInstructionExtraArgs['remainingAccounts'];
2128
+ };
2129
+ declare function getTokenTransferIntentCompressedInstruction<TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceSplTokenAccount extends string, TAccountSourceCtokenTokenAccount extends string, TAccountDestination extends string, TAccountDestinationSplTokenAccount extends string, TAccountDestinationCtokenTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string, TAccountSystemProgram extends string, TAccountCompressedTokenProgramAuthority extends string, TAccountSplInterfacePda extends string, TAccountCompressibleConfig extends string, TAccountRentSponsor extends string, TAccountCompressedTokenProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentCompressedInput<TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>, config?: {
2115
2130
  programAddress?: TProgramAddress;
2116
- }): TokenTransferIntentCompressedInstruction<TProgramAddress, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceTokenAccount, TAccountDestination, TAccountDestinationTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountAssociatedTokenProgram>;
2131
+ }): TokenTransferIntentCompressedInstruction<TProgramAddress, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>;
2117
2132
  type ParsedTokenTransferIntentCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
2118
2133
  programAddress: Address<TProgram>;
2119
2134
  accounts: {
@@ -2121,13 +2136,19 @@ type ParsedTokenTransferIntentCompressedInstruction<TProgram extends string = ty
2121
2136
  slotHashSysvar?: TAccountMetas[1] | undefined;
2122
2137
  instructionsSysvar: TAccountMetas[2];
2123
2138
  source: TAccountMetas[3];
2124
- sourceTokenAccount: TAccountMetas[4];
2125
- destination: TAccountMetas[5];
2126
- destinationTokenAccount: TAccountMetas[6];
2127
- tokenProgram: TAccountMetas[7];
2128
- mint: TAccountMetas[8];
2129
- systemProgram: TAccountMetas[9];
2130
- associatedTokenProgram: TAccountMetas[10];
2139
+ sourceSplTokenAccount: TAccountMetas[4];
2140
+ sourceCtokenTokenAccount: TAccountMetas[5];
2141
+ destination: TAccountMetas[6];
2142
+ destinationSplTokenAccount?: TAccountMetas[7] | undefined;
2143
+ destinationCtokenTokenAccount?: TAccountMetas[8] | undefined;
2144
+ tokenProgram: TAccountMetas[9];
2145
+ mint: TAccountMetas[10];
2146
+ systemProgram: TAccountMetas[11];
2147
+ compressedTokenProgramAuthority: TAccountMetas[12];
2148
+ splInterfacePda?: TAccountMetas[13] | undefined;
2149
+ compressibleConfig: TAccountMetas[14];
2150
+ rentSponsor?: TAccountMetas[15] | undefined;
2151
+ compressedTokenProgram: TAccountMetas[16];
2131
2152
  };
2132
2153
  data: TokenTransferIntentCompressedInstructionData;
2133
2154
  };
@@ -2135,7 +2156,7 @@ declare function parseTokenTransferIntentCompressedInstruction<TProgram extends
2135
2156
 
2136
2157
  declare const TRANSACTION_BUFFER_CLOSE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2137
2158
  declare function getTransactionBufferCloseDiscriminatorBytes(): ReadonlyUint8Array;
2138
- type TransactionBufferCloseInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCloser extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2159
+ type TransactionBufferCloseInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCloser extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2139
2160
  TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
2140
2161
  TAccountPayer extends string ? WritableAccount<TAccountPayer> : TAccountPayer,
2141
2162
  TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
@@ -2169,8 +2190,8 @@ type TransactionBufferCloseInput<TAccountSettings extends string = string, TAcco
2169
2190
  closer?: TransactionSigner<TAccountCloser>;
2170
2191
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
2171
2192
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
2172
- secp256r1VerifyArgs: TransactionBufferCloseInstructionDataArgs["secp256r1VerifyArgs"];
2173
- remainingAccounts: TransactionBufferCloseInstructionExtraArgs["remainingAccounts"];
2193
+ secp256r1VerifyArgs: TransactionBufferCloseInstructionDataArgs['secp256r1VerifyArgs'];
2194
+ remainingAccounts: TransactionBufferCloseInstructionExtraArgs['remainingAccounts'];
2174
2195
  };
2175
2196
  declare function getTransactionBufferCloseInstruction<TAccountSettings extends string, TAccountPayer extends string, TAccountDomainConfig extends string, TAccountTransactionBuffer extends string, TAccountCloser extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferCloseInput<TAccountSettings, TAccountPayer, TAccountDomainConfig, TAccountTransactionBuffer, TAccountCloser, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
2176
2197
  programAddress?: TProgramAddress;
@@ -2192,7 +2213,7 @@ declare function parseTransactionBufferCloseInstruction<TProgram extends string,
2192
2213
 
2193
2214
  declare const TRANSACTION_BUFFER_CLOSE_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2194
2215
  declare function getTransactionBufferCloseCompressedDiscriminatorBytes(): ReadonlyUint8Array;
2195
- type TransactionBufferCloseCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountRentCollector extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCloser extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2216
+ type TransactionBufferCloseCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountRentCollector extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCloser extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2196
2217
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
2197
2218
  TAccountRentCollector extends string ? WritableAccount<TAccountRentCollector> : TAccountRentCollector,
2198
2219
  TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
@@ -2230,10 +2251,10 @@ type TransactionBufferCloseCompressedInput<TAccountPayer extends string = string
2230
2251
  closer?: TransactionSigner<TAccountCloser>;
2231
2252
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
2232
2253
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
2233
- secp256r1VerifyArgs: TransactionBufferCloseCompressedInstructionDataArgs["secp256r1VerifyArgs"];
2234
- settingsMutArgs: TransactionBufferCloseCompressedInstructionDataArgs["settingsMutArgs"];
2235
- compressedProofArgs: TransactionBufferCloseCompressedInstructionDataArgs["compressedProofArgs"];
2236
- remainingAccounts: TransactionBufferCloseCompressedInstructionExtraArgs["remainingAccounts"];
2254
+ secp256r1VerifyArgs: TransactionBufferCloseCompressedInstructionDataArgs['secp256r1VerifyArgs'];
2255
+ settingsMutArgs: TransactionBufferCloseCompressedInstructionDataArgs['settingsMutArgs'];
2256
+ compressedProofArgs: TransactionBufferCloseCompressedInstructionDataArgs['compressedProofArgs'];
2257
+ remainingAccounts: TransactionBufferCloseCompressedInstructionExtraArgs['remainingAccounts'];
2237
2258
  };
2238
2259
  declare function getTransactionBufferCloseCompressedInstruction<TAccountPayer extends string, TAccountRentCollector extends string, TAccountDomainConfig extends string, TAccountTransactionBuffer extends string, TAccountCloser extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferCloseCompressedInput<TAccountPayer, TAccountRentCollector, TAccountDomainConfig, TAccountTransactionBuffer, TAccountCloser, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
2239
2260
  programAddress?: TProgramAddress;
@@ -2255,7 +2276,7 @@ declare function parseTransactionBufferCloseCompressedInstruction<TProgram exten
2255
2276
 
2256
2277
  declare const TRANSACTION_BUFFER_CREATE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2257
2278
  declare function getTransactionBufferCreateDiscriminatorBytes(): ReadonlyUint8Array;
2258
- type TransactionBufferCreateInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCreator extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2279
+ type TransactionBufferCreateInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCreator extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2259
2280
  TAccountSettings extends string ? ReadonlyAccount<TAccountSettings> : TAccountSettings,
2260
2281
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
2261
2282
  TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
@@ -2293,9 +2314,9 @@ type TransactionBufferCreateInput<TAccountSettings extends string = string, TAcc
2293
2314
  systemProgram?: Address<TAccountSystemProgram>;
2294
2315
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
2295
2316
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
2296
- args: TransactionBufferCreateInstructionDataArgs["args"];
2297
- secp256r1VerifyArgs: TransactionBufferCreateInstructionDataArgs["secp256r1VerifyArgs"];
2298
- remainingAccounts: TransactionBufferCreateInstructionExtraArgs["remainingAccounts"];
2317
+ args: TransactionBufferCreateInstructionDataArgs['args'];
2318
+ secp256r1VerifyArgs: TransactionBufferCreateInstructionDataArgs['secp256r1VerifyArgs'];
2319
+ remainingAccounts: TransactionBufferCreateInstructionExtraArgs['remainingAccounts'];
2299
2320
  };
2300
2321
  declare function getTransactionBufferCreateInstruction<TAccountSettings extends string, TAccountPayer extends string, TAccountDomainConfig extends string, TAccountTransactionBuffer extends string, TAccountCreator extends string, TAccountSystemProgram extends string, TAccountInstructionsSysvar extends string, TAccountSlotHashSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferCreateInput<TAccountSettings, TAccountPayer, TAccountDomainConfig, TAccountTransactionBuffer, TAccountCreator, TAccountSystemProgram, TAccountInstructionsSysvar, TAccountSlotHashSysvar>, config?: {
2301
2322
  programAddress?: TProgramAddress;
@@ -2318,7 +2339,7 @@ declare function parseTransactionBufferCreateInstruction<TProgram extends string
2318
2339
 
2319
2340
  declare const TRANSACTION_BUFFER_CREATE_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2320
2341
  declare function getTransactionBufferCreateCompressedDiscriminatorBytes(): ReadonlyUint8Array;
2321
- type TransactionBufferCreateCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCreator extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2342
+ type TransactionBufferCreateCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCreator extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2322
2343
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
2323
2344
  TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
2324
2345
  TAccountTransactionBuffer extends string ? WritableAccount<TAccountTransactionBuffer> : TAccountTransactionBuffer,
@@ -2358,11 +2379,11 @@ type TransactionBufferCreateCompressedInput<TAccountPayer extends string = strin
2358
2379
  systemProgram?: Address<TAccountSystemProgram>;
2359
2380
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
2360
2381
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
2361
- args: TransactionBufferCreateCompressedInstructionDataArgs["args"];
2362
- secp256r1VerifyArgs: TransactionBufferCreateCompressedInstructionDataArgs["secp256r1VerifyArgs"];
2363
- settingsReadonlyArgs: TransactionBufferCreateCompressedInstructionDataArgs["settingsReadonlyArgs"];
2364
- compressedProofArgs: TransactionBufferCreateCompressedInstructionDataArgs["compressedProofArgs"];
2365
- remainingAccounts: TransactionBufferCreateCompressedInstructionExtraArgs["remainingAccounts"];
2382
+ args: TransactionBufferCreateCompressedInstructionDataArgs['args'];
2383
+ secp256r1VerifyArgs: TransactionBufferCreateCompressedInstructionDataArgs['secp256r1VerifyArgs'];
2384
+ settingsReadonlyArgs: TransactionBufferCreateCompressedInstructionDataArgs['settingsReadonlyArgs'];
2385
+ compressedProofArgs: TransactionBufferCreateCompressedInstructionDataArgs['compressedProofArgs'];
2386
+ remainingAccounts: TransactionBufferCreateCompressedInstructionExtraArgs['remainingAccounts'];
2366
2387
  };
2367
2388
  declare function getTransactionBufferCreateCompressedInstruction<TAccountPayer extends string, TAccountDomainConfig extends string, TAccountTransactionBuffer extends string, TAccountCreator extends string, TAccountSystemProgram extends string, TAccountInstructionsSysvar extends string, TAccountSlotHashSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferCreateCompressedInput<TAccountPayer, TAccountDomainConfig, TAccountTransactionBuffer, TAccountCreator, TAccountSystemProgram, TAccountInstructionsSysvar, TAccountSlotHashSysvar>, config?: {
2368
2389
  programAddress?: TProgramAddress;
@@ -2384,7 +2405,7 @@ declare function parseTransactionBufferCreateCompressedInstruction<TProgram exte
2384
2405
 
2385
2406
  declare const TRANSACTION_BUFFER_EXECUTE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2386
2407
  declare function getTransactionBufferExecuteDiscriminatorBytes(): ReadonlyUint8Array;
2387
- type TransactionBufferExecuteInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountExecutor extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2408
+ type TransactionBufferExecuteInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountExecutor extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2388
2409
  TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
2389
2410
  TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
2390
2411
  TAccountExecutor extends string ? ReadonlySignerAccount<TAccountExecutor> & AccountSignerMeta<TAccountExecutor> : TAccountExecutor,
@@ -2416,8 +2437,8 @@ type TransactionBufferExecuteInput<TAccountSettings extends string = string, TAc
2416
2437
  transactionBuffer: Address<TAccountTransactionBuffer>;
2417
2438
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
2418
2439
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
2419
- secp256r1VerifyArgs: TransactionBufferExecuteInstructionDataArgs["secp256r1VerifyArgs"];
2420
- remainingAccounts: TransactionBufferExecuteInstructionExtraArgs["remainingAccounts"];
2440
+ secp256r1VerifyArgs: TransactionBufferExecuteInstructionDataArgs['secp256r1VerifyArgs'];
2441
+ remainingAccounts: TransactionBufferExecuteInstructionExtraArgs['remainingAccounts'];
2421
2442
  };
2422
2443
  declare function getTransactionBufferExecuteInstruction<TAccountSettings extends string, TAccountDomainConfig extends string, TAccountExecutor extends string, TAccountTransactionBuffer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferExecuteInput<TAccountSettings, TAccountDomainConfig, TAccountExecutor, TAccountTransactionBuffer, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
2423
2444
  programAddress?: TProgramAddress;
@@ -2438,7 +2459,7 @@ declare function parseTransactionBufferExecuteInstruction<TProgram extends strin
2438
2459
 
2439
2460
  declare const TRANSACTION_BUFFER_EXECUTE_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2440
2461
  declare function getTransactionBufferExecuteCompressedDiscriminatorBytes(): ReadonlyUint8Array;
2441
- type TransactionBufferExecuteCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountExecutor extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2462
+ type TransactionBufferExecuteCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountExecutor extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2442
2463
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
2443
2464
  TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
2444
2465
  TAccountExecutor extends string ? ReadonlySignerAccount<TAccountExecutor> & AccountSignerMeta<TAccountExecutor> : TAccountExecutor,
@@ -2474,10 +2495,10 @@ type TransactionBufferExecuteCompressedInput<TAccountPayer extends string = stri
2474
2495
  transactionBuffer: Address<TAccountTransactionBuffer>;
2475
2496
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
2476
2497
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
2477
- secp256r1VerifyArgs: TransactionBufferExecuteCompressedInstructionDataArgs["secp256r1VerifyArgs"];
2478
- settingsMutArgs: TransactionBufferExecuteCompressedInstructionDataArgs["settingsMutArgs"];
2479
- compressedProofArgs: TransactionBufferExecuteCompressedInstructionDataArgs["compressedProofArgs"];
2480
- remainingAccounts: TransactionBufferExecuteCompressedInstructionExtraArgs["remainingAccounts"];
2498
+ secp256r1VerifyArgs: TransactionBufferExecuteCompressedInstructionDataArgs['secp256r1VerifyArgs'];
2499
+ settingsMutArgs: TransactionBufferExecuteCompressedInstructionDataArgs['settingsMutArgs'];
2500
+ compressedProofArgs: TransactionBufferExecuteCompressedInstructionDataArgs['compressedProofArgs'];
2501
+ remainingAccounts: TransactionBufferExecuteCompressedInstructionExtraArgs['remainingAccounts'];
2481
2502
  };
2482
2503
  declare function getTransactionBufferExecuteCompressedInstruction<TAccountPayer extends string, TAccountDomainConfig extends string, TAccountExecutor extends string, TAccountTransactionBuffer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferExecuteCompressedInput<TAccountPayer, TAccountDomainConfig, TAccountExecutor, TAccountTransactionBuffer, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
2483
2504
  programAddress?: TProgramAddress;
@@ -2522,8 +2543,8 @@ type TransactionBufferExtendInstructionExtraArgs = {
2522
2543
  type TransactionBufferExtendInput<TAccountSettings extends string = string, TAccountTransactionBuffer extends string = string> = {
2523
2544
  settings: Address<TAccountSettings>;
2524
2545
  transactionBuffer: Address<TAccountTransactionBuffer>;
2525
- buffer: TransactionBufferExtendInstructionDataArgs["buffer"];
2526
- remainingAccounts: TransactionBufferExtendInstructionExtraArgs["remainingAccounts"];
2546
+ buffer: TransactionBufferExtendInstructionDataArgs['buffer'];
2547
+ remainingAccounts: TransactionBufferExtendInstructionExtraArgs['remainingAccounts'];
2527
2548
  };
2528
2549
  declare function getTransactionBufferExtendInstruction<TAccountSettings extends string, TAccountTransactionBuffer extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferExtendInput<TAccountSettings, TAccountTransactionBuffer>, config?: {
2529
2550
  programAddress?: TProgramAddress;
@@ -2564,9 +2585,9 @@ type TransactionBufferExtendCompressedInstructionExtraArgs = {
2564
2585
  };
2565
2586
  type TransactionBufferExtendCompressedInput<TAccountTransactionBuffer extends string = string> = {
2566
2587
  transactionBuffer: Address<TAccountTransactionBuffer>;
2567
- buffer: TransactionBufferExtendCompressedInstructionDataArgs["buffer"];
2568
- settingsKey: TransactionBufferExtendCompressedInstructionDataArgs["settingsKey"];
2569
- remainingAccounts: TransactionBufferExtendCompressedInstructionExtraArgs["remainingAccounts"];
2588
+ buffer: TransactionBufferExtendCompressedInstructionDataArgs['buffer'];
2589
+ settingsKey: TransactionBufferExtendCompressedInstructionDataArgs['settingsKey'];
2590
+ remainingAccounts: TransactionBufferExtendCompressedInstructionExtraArgs['remainingAccounts'];
2570
2591
  };
2571
2592
  declare function getTransactionBufferExtendCompressedInstruction<TAccountTransactionBuffer extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferExtendCompressedInput<TAccountTransactionBuffer>, config?: {
2572
2593
  programAddress?: TProgramAddress;
@@ -2582,7 +2603,7 @@ declare function parseTransactionBufferExtendCompressedInstruction<TProgram exte
2582
2603
 
2583
2604
  declare const TRANSACTION_BUFFER_VOTE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2584
2605
  declare function getTransactionBufferVoteDiscriminatorBytes(): ReadonlyUint8Array;
2585
- type TransactionBufferVoteInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountVoter extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2606
+ type TransactionBufferVoteInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountVoter extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2586
2607
  TAccountSettings extends string ? ReadonlyAccount<TAccountSettings> : TAccountSettings,
2587
2608
  TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
2588
2609
  TAccountTransactionBuffer extends string ? WritableAccount<TAccountTransactionBuffer> : TAccountTransactionBuffer,
@@ -2616,8 +2637,8 @@ type TransactionBufferVoteInput<TAccountSettings extends string = string, TAccou
2616
2637
  systemProgram?: Address<TAccountSystemProgram>;
2617
2638
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
2618
2639
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
2619
- secp256r1VerifyArgs: TransactionBufferVoteInstructionDataArgs["secp256r1VerifyArgs"];
2620
- remainingAccounts: TransactionBufferVoteInstructionExtraArgs["remainingAccounts"];
2640
+ secp256r1VerifyArgs: TransactionBufferVoteInstructionDataArgs['secp256r1VerifyArgs'];
2641
+ remainingAccounts: TransactionBufferVoteInstructionExtraArgs['remainingAccounts'];
2621
2642
  };
2622
2643
  declare function getTransactionBufferVoteInstruction<TAccountSettings extends string, TAccountDomainConfig extends string, TAccountTransactionBuffer extends string, TAccountVoter extends string, TAccountSystemProgram extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferVoteInput<TAccountSettings, TAccountDomainConfig, TAccountTransactionBuffer, TAccountVoter, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
2623
2644
  programAddress?: TProgramAddress;
@@ -2639,7 +2660,7 @@ declare function parseTransactionBufferVoteInstruction<TProgram extends string,
2639
2660
 
2640
2661
  declare const TRANSACTION_BUFFER_VOTE_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2641
2662
  declare function getTransactionBufferVoteCompressedDiscriminatorBytes(): ReadonlyUint8Array;
2642
- type TransactionBufferVoteCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountVoter extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2663
+ type TransactionBufferVoteCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountVoter extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2643
2664
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
2644
2665
  TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
2645
2666
  TAccountTransactionBuffer extends string ? WritableAccount<TAccountTransactionBuffer> : TAccountTransactionBuffer,
@@ -2677,10 +2698,10 @@ type TransactionBufferVoteCompressedInput<TAccountPayer extends string = string,
2677
2698
  systemProgram?: Address<TAccountSystemProgram>;
2678
2699
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
2679
2700
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
2680
- secp256r1VerifyArgs: TransactionBufferVoteCompressedInstructionDataArgs["secp256r1VerifyArgs"];
2681
- settingsReadonlyArgs: TransactionBufferVoteCompressedInstructionDataArgs["settingsReadonlyArgs"];
2682
- compressedProofArgs: TransactionBufferVoteCompressedInstructionDataArgs["compressedProofArgs"];
2683
- remainingAccounts: TransactionBufferVoteCompressedInstructionExtraArgs["remainingAccounts"];
2701
+ secp256r1VerifyArgs: TransactionBufferVoteCompressedInstructionDataArgs['secp256r1VerifyArgs'];
2702
+ settingsReadonlyArgs: TransactionBufferVoteCompressedInstructionDataArgs['settingsReadonlyArgs'];
2703
+ compressedProofArgs: TransactionBufferVoteCompressedInstructionDataArgs['compressedProofArgs'];
2704
+ remainingAccounts: TransactionBufferVoteCompressedInstructionExtraArgs['remainingAccounts'];
2684
2705
  };
2685
2706
  declare function getTransactionBufferVoteCompressedInstruction<TAccountPayer extends string, TAccountDomainConfig extends string, TAccountTransactionBuffer extends string, TAccountVoter extends string, TAccountSystemProgram extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferVoteCompressedInput<TAccountPayer, TAccountDomainConfig, TAccountTransactionBuffer, TAccountVoter, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
2686
2707
  programAddress?: TProgramAddress;
@@ -2725,7 +2746,7 @@ type TransactionExecuteInput<TAccountSettings extends string = string, TAccountP
2725
2746
  settings: Address<TAccountSettings>;
2726
2747
  payer: Address<TAccountPayer>;
2727
2748
  transactionBuffer: Address<TAccountTransactionBuffer>;
2728
- remainingAccounts: TransactionExecuteInstructionExtraArgs["remainingAccounts"];
2749
+ remainingAccounts: TransactionExecuteInstructionExtraArgs['remainingAccounts'];
2729
2750
  };
2730
2751
  declare function getTransactionExecuteInstruction<TAccountSettings extends string, TAccountPayer extends string, TAccountTransactionBuffer extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionExecuteInput<TAccountSettings, TAccountPayer, TAccountTransactionBuffer>, config?: {
2731
2752
  programAddress?: TProgramAddress;
@@ -2767,8 +2788,8 @@ type TransactionExecuteCompressedInstructionExtraArgs = {
2767
2788
  type TransactionExecuteCompressedInput<TAccountPayer extends string = string, TAccountTransactionBuffer extends string = string> = {
2768
2789
  payer: Address<TAccountPayer>;
2769
2790
  transactionBuffer: Address<TAccountTransactionBuffer>;
2770
- settingsKey: TransactionExecuteCompressedInstructionDataArgs["settingsKey"];
2771
- remainingAccounts: TransactionExecuteCompressedInstructionExtraArgs["remainingAccounts"];
2791
+ settingsKey: TransactionExecuteCompressedInstructionDataArgs['settingsKey'];
2792
+ remainingAccounts: TransactionExecuteCompressedInstructionExtraArgs['remainingAccounts'];
2772
2793
  };
2773
2794
  declare function getTransactionExecuteCompressedInstruction<TAccountPayer extends string, TAccountTransactionBuffer extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionExecuteCompressedInput<TAccountPayer, TAccountTransactionBuffer>, config?: {
2774
2795
  programAddress?: TProgramAddress;
@@ -2785,7 +2806,7 @@ declare function parseTransactionExecuteCompressedInstruction<TProgram extends s
2785
2806
 
2786
2807
  declare const TRANSACTION_EXECUTE_SYNC_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2787
2808
  declare function getTransactionExecuteSyncDiscriminatorBytes(): ReadonlyUint8Array;
2788
- type TransactionExecuteSyncInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2809
+ type TransactionExecuteSyncInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2789
2810
  TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
2790
2811
  TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
2791
2812
  TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
@@ -2813,9 +2834,9 @@ type TransactionExecuteSyncInput<TAccountSettings extends string = string, TAcco
2813
2834
  settings: Address<TAccountSettings>;
2814
2835
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
2815
2836
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
2816
- transactionMessage: TransactionExecuteSyncInstructionDataArgs["transactionMessage"];
2817
- secp256r1VerifyArgs: TransactionExecuteSyncInstructionDataArgs["secp256r1VerifyArgs"];
2818
- remainingAccounts: TransactionExecuteSyncInstructionExtraArgs["remainingAccounts"];
2837
+ transactionMessage: TransactionExecuteSyncInstructionDataArgs['transactionMessage'];
2838
+ secp256r1VerifyArgs: TransactionExecuteSyncInstructionDataArgs['secp256r1VerifyArgs'];
2839
+ remainingAccounts: TransactionExecuteSyncInstructionExtraArgs['remainingAccounts'];
2819
2840
  };
2820
2841
  declare function getTransactionExecuteSyncInstruction<TAccountSettings extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionExecuteSyncInput<TAccountSettings, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
2821
2842
  programAddress?: TProgramAddress;
@@ -2833,7 +2854,7 @@ declare function parseTransactionExecuteSyncInstruction<TProgram extends string,
2833
2854
 
2834
2855
  declare const TRANSACTION_EXECUTE_SYNC_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2835
2856
  declare function getTransactionExecuteSyncCompressedDiscriminatorBytes(): ReadonlyUint8Array;
2836
- type TransactionExecuteSyncCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2857
+ type TransactionExecuteSyncCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = 'SysvarS1otHashes111111111111111111111111111', TAccountInstructionsSysvar extends string | AccountMeta<string> = 'Sysvar1nstructions1111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2837
2858
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
2838
2859
  TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
2839
2860
  TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
@@ -2865,11 +2886,11 @@ type TransactionExecuteSyncCompressedInput<TAccountPayer extends string = string
2865
2886
  payer: TransactionSigner<TAccountPayer>;
2866
2887
  slotHashSysvar?: Address<TAccountSlotHashSysvar>;
2867
2888
  instructionsSysvar?: Address<TAccountInstructionsSysvar>;
2868
- transactionMessage: TransactionExecuteSyncCompressedInstructionDataArgs["transactionMessage"];
2869
- secp256r1VerifyArgs: TransactionExecuteSyncCompressedInstructionDataArgs["secp256r1VerifyArgs"];
2870
- settingsMutArgs: TransactionExecuteSyncCompressedInstructionDataArgs["settingsMutArgs"];
2871
- compressedProofArgs: TransactionExecuteSyncCompressedInstructionDataArgs["compressedProofArgs"];
2872
- remainingAccounts: TransactionExecuteSyncCompressedInstructionExtraArgs["remainingAccounts"];
2889
+ transactionMessage: TransactionExecuteSyncCompressedInstructionDataArgs['transactionMessage'];
2890
+ secp256r1VerifyArgs: TransactionExecuteSyncCompressedInstructionDataArgs['secp256r1VerifyArgs'];
2891
+ settingsMutArgs: TransactionExecuteSyncCompressedInstructionDataArgs['settingsMutArgs'];
2892
+ compressedProofArgs: TransactionExecuteSyncCompressedInstructionDataArgs['compressedProofArgs'];
2893
+ remainingAccounts: TransactionExecuteSyncCompressedInstructionExtraArgs['remainingAccounts'];
2873
2894
  };
2874
2895
  declare function getTransactionExecuteSyncCompressedInstruction<TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionExecuteSyncCompressedInput<TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
2875
2896
  programAddress?: TProgramAddress;
@@ -3177,13 +3198,60 @@ type ParsedSecp256r1VerifyInstruction<TProgram extends string = typeof SECP256R1
3177
3198
  };
3178
3199
  declare function parseSecp256r1VerifyInstruction<TProgram extends string>(instruction: Instruction<TProgram> & InstructionWithData<Uint8Array>): ParsedSecp256r1VerifyInstruction<TProgram>;
3179
3200
 
3180
- declare function compressSettingsAccount({ index, settingsAddressTreeIndex, payer, signers, cachedAccounts, }: {
3201
+ declare function executeTransaction({ settings, transactionBufferAddress, transactionMessageBytes, payer, addressesByLookupTableAddress, secp256r1VerifyInput, additionalSigners, jitoBundlesTipAmount, compressed, }: {
3202
+ settings: Address;
3203
+ payer: TransactionSigner;
3204
+ transactionBufferAddress: Address;
3205
+ transactionMessageBytes: ReadonlyUint8Array;
3206
+ addressesByLookupTableAddress?: AddressesByLookupTableAddress;
3207
+ secp256r1VerifyInput?: Secp256r1VerifyInput;
3208
+ additionalSigners?: TransactionSigner[];
3209
+ jitoBundlesTipAmount?: number;
3210
+ compressed?: boolean;
3211
+ }): Promise<{
3212
+ instructions: Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[];
3213
+ addressLookupTableAccounts: AddressesByLookupTableAddress;
3214
+ }>;
3215
+
3216
+ declare function executeTransactionSync({ index, settingsAddressTreeIndex, transactionMessageBytes, signers, payer, addressesByLookupTableAddress, secp256r1VerifyInput, compressed, simulateProof, cachedAccounts, }: {
3217
+ index: number | bigint;
3218
+ settingsAddressTreeIndex?: number;
3219
+ signers: (TransactionSigner | SignedSecp256r1Key)[];
3220
+ transactionMessageBytes: ReadonlyUint8Array;
3221
+ secp256r1VerifyInput?: Secp256r1VerifyInput;
3222
+ compressed?: boolean;
3223
+ addressesByLookupTableAddress?: AddressesByLookupTableAddress;
3224
+ payer?: TransactionSigner;
3225
+ simulateProof?: boolean;
3226
+ cachedAccounts?: Map<string, any>;
3227
+ }): Promise<{
3228
+ instructions: Instruction<string, readonly (AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[];
3229
+ addressLookupTableAccounts: AddressesByLookupTableAddress;
3230
+ }>;
3231
+
3232
+ declare function nativeTransferIntent({ index, settingsAddressTreeIndex, destination, signers, cachedAccounts, amount, payer, compressed, }: {
3233
+ index: number | bigint;
3234
+ settingsAddressTreeIndex?: number;
3235
+ destination: Address;
3236
+ amount: number | bigint;
3237
+ signers: (TransactionSigner | SignedSecp256r1Key)[];
3238
+ payer?: TransactionSigner;
3239
+ compressed?: boolean;
3240
+ cachedAccounts?: Map<string, any>;
3241
+ }): Promise<Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[]>;
3242
+
3243
+ declare function tokenTransferIntent({ index, settingsAddressTreeIndex, destination, mint, signers, cachedAccounts, amount, payer, tokenProgram, compressed, }: {
3181
3244
  index: number | bigint;
3182
3245
  settingsAddressTreeIndex?: number;
3246
+ destination: Address;
3247
+ mint: Address;
3248
+ amount: number | bigint;
3249
+ signers: (TransactionSigner | SignedSecp256r1Key)[];
3250
+ tokenProgram: Address;
3183
3251
  payer: TransactionSigner;
3184
- signers: (SignedSecp256r1Key | TransactionSigner)[];
3252
+ compressed?: boolean;
3185
3253
  cachedAccounts?: Map<string, any>;
3186
- }): Promise<(Secp256r1VerifyInstruction<gill.Address<"Secp256r1SigVerify1111111111111111111111111">> | CompressSettingsAccountInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, []>)[]>;
3254
+ }): Promise<Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[]>;
3187
3255
 
3188
3256
  interface MapData {
3189
3257
  index: number;
@@ -3239,27 +3307,6 @@ declare function createUserAccounts({ createUserArgs, payer, }: {
3239
3307
  createUserArgs: UserCreationArgs[];
3240
3308
  }): Promise<CreateUserAccountsInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, []>>;
3241
3309
 
3242
- declare function editDomainConfig({ authority, domainConfig, newAuthority, newOrigins, }: {
3243
- domainConfig: Address;
3244
- authority: TransactionSigner;
3245
- newAuthority?: TransactionSigner;
3246
- newOrigins?: string[];
3247
- }): Promise<EditDomainConfigInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, string, []>>;
3248
-
3249
- declare function editTransactionManagerUrl({ authority, userAddressTreeIndex, transactionManagerUrl, }: {
3250
- authority: TransactionSigner;
3251
- userAddressTreeIndex?: number;
3252
- transactionManagerUrl: string;
3253
- }): Promise<EditTransactionManagerUrlInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, []>>;
3254
-
3255
- declare function editUserDelegate({ payer, user, userAddressTreeIndex, newDelegate, cachedAccounts, }: {
3256
- payer: TransactionSigner;
3257
- user: TransactionSigner | SignedSecp256r1Key;
3258
- userAddressTreeIndex?: number;
3259
- cachedAccounts?: Map<string, any>;
3260
- newDelegate?: SettingsIndexWithAddress;
3261
- }): Promise<Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[]>;
3262
-
3263
3310
  type CreateWalletArgs = {
3264
3311
  index: number | bigint;
3265
3312
  payer: TransactionSigner;
@@ -3267,7 +3314,7 @@ type CreateWalletArgs = {
3267
3314
  initialMember: TransactionSigner;
3268
3315
  userAddressTreeIndex?: number;
3269
3316
  };
3270
- declare function createWallet({ index, payer, initialMember, userAddressTreeIndex, cachedAccounts, }: CreateWalletArgs): Promise<Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[]>;
3317
+ declare function createWallet({ index, payer, initialMember, userAddressTreeIndex, cachedAccounts, }: CreateWalletArgs): Promise<CreateCompressedWalletInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, string, []>>;
3271
3318
 
3272
3319
  declare function decompressSettingsAccount({ index, settingsAddressTreeIndex, payer, signers, cachedAccounts, }: {
3273
3320
  index: number | bigint;
@@ -3277,60 +3324,25 @@ declare function decompressSettingsAccount({ index, settingsAddressTreeIndex, pa
3277
3324
  cachedAccounts?: Map<string, any>;
3278
3325
  }): Promise<(Secp256r1VerifyInstruction<gill.Address<"Secp256r1SigVerify1111111111111111111111111">> | DecompressSettingsAccountInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, string, []>)[]>;
3279
3326
 
3280
- declare function executeTransaction({ settings, transactionBufferAddress, transactionMessageBytes, payer, addressesByLookupTableAddress, secp256r1VerifyInput, additionalSigners, jitoBundlesTipAmount, compressed, }: {
3281
- settings: Address;
3282
- payer: TransactionSigner;
3283
- transactionBufferAddress: Address;
3284
- transactionMessageBytes: ReadonlyUint8Array;
3285
- addressesByLookupTableAddress?: AddressesByLookupTableAddress;
3286
- secp256r1VerifyInput?: Secp256r1VerifyInput;
3287
- additionalSigners?: TransactionSigner[];
3288
- jitoBundlesTipAmount?: number;
3289
- compressed?: boolean;
3290
- }): Promise<{
3291
- instructions: Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[];
3292
- addressLookupTableAccounts: AddressesByLookupTableAddress;
3293
- }>;
3294
-
3295
- declare function executeTransactionSync({ index, settingsAddressTreeIndex, transactionMessageBytes, signers, payer, addressesByLookupTableAddress, secp256r1VerifyInput, compressed, simulateProof, cachedAccounts, }: {
3296
- index: number | bigint;
3297
- settingsAddressTreeIndex?: number;
3298
- signers: (TransactionSigner | SignedSecp256r1Key)[];
3299
- transactionMessageBytes: ReadonlyUint8Array;
3300
- secp256r1VerifyInput?: Secp256r1VerifyInput;
3301
- compressed?: boolean;
3302
- addressesByLookupTableAddress?: AddressesByLookupTableAddress;
3303
- payer?: TransactionSigner;
3304
- simulateProof?: boolean;
3305
- cachedAccounts?: Map<string, any>;
3306
- }): Promise<{
3307
- instructions: Instruction<string, readonly (AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[];
3308
- addressLookupTableAccounts: AddressesByLookupTableAddress;
3309
- }>;
3327
+ declare function editDomainConfig({ authority, domainConfig, newAuthority, newOrigins, }: {
3328
+ domainConfig: Address;
3329
+ authority: TransactionSigner;
3330
+ newAuthority?: TransactionSigner;
3331
+ newOrigins?: string[];
3332
+ }): Promise<EditDomainConfigInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, string, []>>;
3310
3333
 
3311
- declare function nativeTransferIntent({ index, settingsAddressTreeIndex, destination, signers, cachedAccounts, amount, payer, compressed, }: {
3312
- index: number | bigint;
3313
- settingsAddressTreeIndex?: number;
3314
- destination: Address;
3315
- amount: number | bigint;
3316
- signers: (TransactionSigner | SignedSecp256r1Key)[];
3317
- payer?: TransactionSigner;
3318
- compressed?: boolean;
3319
- cachedAccounts?: Map<string, any>;
3320
- }): Promise<Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[]>;
3334
+ declare function editTransactionManagerUrl({ authority, userAddressTreeIndex, transactionManagerUrl, }: {
3335
+ authority: TransactionSigner;
3336
+ userAddressTreeIndex?: number;
3337
+ transactionManagerUrl: string;
3338
+ }): Promise<EditTransactionManagerUrlInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, []>>;
3321
3339
 
3322
- declare function tokenTransferIntent({ index, settingsAddressTreeIndex, destination, mint, signers, cachedAccounts, amount, payer, tokenProgram, createAtaIfNeeded, compressed, }: {
3323
- index: number | bigint;
3324
- settingsAddressTreeIndex?: number;
3325
- destination: Address;
3326
- mint: Address;
3327
- amount: number | bigint;
3328
- signers: (TransactionSigner | SignedSecp256r1Key)[];
3329
- tokenProgram: Address;
3330
- createAtaIfNeeded?: boolean;
3331
- payer?: TransactionSigner;
3332
- compressed?: boolean;
3340
+ declare function editUserDelegate({ payer, user, userAddressTreeIndex, newDelegate, cachedAccounts, }: {
3341
+ payer: TransactionSigner;
3342
+ user: TransactionSigner | SignedSecp256r1Key;
3343
+ userAddressTreeIndex?: number;
3333
3344
  cachedAccounts?: Map<string, any>;
3345
+ newDelegate?: SettingsIndexWithAddress;
3334
3346
  }): Promise<Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[]>;
3335
3347
 
3336
3348
  declare function closeTransactionBuffer({ index, settingsAddressTreeIndex, closer, transactionBufferAddress, payer, compressed, cachedAccounts, }: {
@@ -3545,4 +3557,4 @@ declare function convertMemberKeyToString(memberKey: MemberKey): string;
3545
3557
  declare function serializeConfigActions(configActions: ConfigAction[]): Uint8Array<ArrayBuffer>;
3546
3558
  declare function deserializeConfigActions(bytes: Uint8Array): ConfigAction[];
3547
3559
 
3548
- 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, 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 CompleteMessageRequest, type CompleteTransactionRequest, 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_SLOT_NUMBER, 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_MUTATION_USER_ARGS, MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY, 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 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, SignedSecp256r1Key, type StartMessageRequest, type StartTransactionRequest, 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 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 TransactionPayloadWithBase64MessageBytes, type User, type UserArgs, type UserCreationArgs$2 as UserCreationArgs, type UserCreationArgsArgs, type UserMutArgs, type UserMutArgsArgs, type UserReadOnlyArgs, type UserReadOnlyArgsArgs, type UserReadOnlyOrMutateArgs, type UserReadOnlyOrMutateArgsArgs, UserRole, type UserRoleArgs, WHITELISTED_ADDRESS_TREE_DISCRIMINATOR, type WhitelistedAddressTree, type WhitelistedAddressTreeArgs, addWhitelistedAddressTrees, base64URLStringToBuffer, bufferToBase64URLString, changeConfig, closeTransactionBuffer, compressSettingsAccount, configAction, convertMemberKeyToString, convertPubkeyCompressedToCose, convertPubkeyCoseToCompressed, createClientAuthorizationCompleteRequestChallenge, createClientAuthorizationStartRequestChallenge, createDomainConfig, createDomainUserAccounts, createGlobalCounter, createMessageChallenge, createTransactionBuffer, createTransactionChallenge, createTransactionManagerSigner, createUserAccounts, createWallet, decodeDomainConfig, decodeGlobalCounter, decodeSettings, decodeTransactionBuffer, decodeWhitelistedAddressTree, decompressSettingsAccount, deserializeConfigActions, disableDomainConfig, editDomainConfig, editTransactionManagerUrl, editUserDelegate, executeTransaction, executeTransactionBuffer, executeTransactionSync, extendTransactionBuffer, fetchAllDomainConfig, fetchAllGlobalCounter, fetchAllMaybeDomainConfig, fetchAllMaybeGlobalCounter, fetchAllMaybeSettings, fetchAllMaybeTransactionBuffer, fetchAllMaybeWhitelistedAddressTree, fetchAllSettings, fetchAllTransactionBuffer, fetchAllWhitelistedAddressTree, fetchDomainConfig, fetchGlobalCounter, fetchMaybeDomainConfig, fetchMaybeGlobalCounter, fetchMaybeSettings, fetchMaybeSettingsAccountData, fetchMaybeTransactionBuffer, fetchMaybeUserAccountData, fetchMaybeWhitelistedAddressTree, fetchSettings, fetchSettingsAccountData, fetchTransactionBuffer, fetchUserAccountData, fetchWhitelistedAddressTree, getAddMemberArgsCodec, getAddMemberArgsDecoder, getAddMemberArgsEncoder, getAddWhitelistedAddressTreesDiscriminatorBytes, getAddWhitelistedAddressTreesInstruction, getAddWhitelistedAddressTreesInstructionAsync, getAddWhitelistedAddressTreesInstructionDataCodec, getAddWhitelistedAddressTreesInstructionDataDecoder, getAddWhitelistedAddressTreesInstructionDataEncoder, getChangeConfigCompressedDiscriminatorBytes, getChangeConfigCompressedInstruction, getChangeConfigCompressedInstructionDataCodec, getChangeConfigCompressedInstructionDataDecoder, getChangeConfigCompressedInstructionDataEncoder, getChangeConfigDiscriminatorBytes, getChangeConfigInstruction, getChangeConfigInstructionAsync, getChangeConfigInstructionDataCodec, getChangeConfigInstructionDataDecoder, getChangeConfigInstructionDataEncoder, getClientAndDeviceHash, 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, 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, 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, parseEditUserDelegateInstruction, parseMigrateCompressedSettingsInstruction, parseMigrateCompressedUsersInstruction, parseNativeTransferIntentCompressedInstruction, parseNativeTransferIntentInstruction, parseSecp256r1VerifyInstruction, parseTokenTransferIntentCompressedInstruction, parseTokenTransferIntentInstruction, parseTransactionBufferCloseCompressedInstruction, parseTransactionBufferCloseInstruction, parseTransactionBufferCreateCompressedInstruction, parseTransactionBufferCreateInstruction, parseTransactionBufferExecuteCompressedInstruction, parseTransactionBufferExecuteInstruction, parseTransactionBufferExtendCompressedInstruction, parseTransactionBufferExtendInstruction, parseTransactionBufferVoteCompressedInstruction, parseTransactionBufferVoteInstruction, parseTransactionExecuteCompressedInstruction, parseTransactionExecuteInstruction, parseTransactionExecuteSyncCompressedInstruction, parseTransactionExecuteSyncInstruction, pollJitoBundleConfirmation, prepareChangeConfigArgs, prepareTransactionBundle, prepareTransactionMessage, prepareTransactionSync, retrieveTransactionManager, sendJitoBundle, serializeConfigActions, signAndSendBundledTransactions, signAndSendTransaction, tokenTransferIntent, uninitialize, userReadOnlyOrMutateArgs, vaultTransactionMessageDeserialize, vaultTransactionMessageSerialize, voteTransactionBuffer };
3560
+ 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, CHANGE_CONFIG_COMPRESSED_DISCRIMINATOR, CHANGE_CONFIG_DISCRIMINATOR, CREATE_COMPRESSED_WALLET_DISCRIMINATOR, CREATE_DOMAIN_CONFIG_DISCRIMINATOR, CREATE_DOMAIN_USER_ACCOUNT_DISCRIMINATOR, CREATE_GLOBAL_COUNTER_DISCRIMINATOR, CREATE_USER_ACCOUNTS_DISCRIMINATOR, type ChangeConfigAsyncInput, type ChangeConfigCompressedInput, type ChangeConfigCompressedInstruction, type ChangeConfigCompressedInstructionData, type ChangeConfigCompressedInstructionDataArgs, type ChangeConfigCompressedInstructionExtraArgs, type ChangeConfigInput, type ChangeConfigInstruction, type ChangeConfigInstructionData, type ChangeConfigInstructionDataArgs, type ChangeConfigInstructionExtraArgs, type CompiledInstruction, type CompiledInstructionArgs, type CompleteMessageRequest, type CompleteTransactionRequest, type CompressedAccountMeta, type CompressedAccountMetaArgs, type CompressedAccountMetaReadOnly, type CompressedAccountMetaReadOnlyArgs, type CompressedProof, type CompressedProofArgs, type CompressedSettings, type CompressedSettingsArgs, type CompressedSettingsData, type CompressedSettingsDataArgs, type CompressedTokenArgs, type CompressedTokenArgsArgs, type ConfigAction, type ConfigActionArgs, type ConfigurationArgs, type CreateCompressedWalletAsyncInput, type CreateCompressedWalletInput, type CreateCompressedWalletInstruction, type CreateCompressedWalletInstructionData, type CreateCompressedWalletInstructionDataArgs, type CreateCompressedWalletInstructionExtraArgs, type CreateDomainConfigAsyncInput, type CreateDomainConfigInput, type CreateDomainConfigInstruction, type CreateDomainConfigInstructionData, type CreateDomainConfigInstructionDataArgs, type CreateDomainConfigInstructionExtraArgs, type CreateDomainUserAccountAsyncInput, type CreateDomainUserAccountInput, type CreateDomainUserAccountInstruction, type CreateDomainUserAccountInstructionData, type CreateDomainUserAccountInstructionDataArgs, type CreateDomainUserAccountInstructionExtraArgs, type CreateGlobalCounterAsyncInput, type CreateGlobalCounterInput, type CreateGlobalCounterInstruction, type CreateGlobalCounterInstructionData, type CreateGlobalCounterInstructionDataArgs, type CreateGlobalCounterInstructionExtraArgs, type CreateUserAccountArgs, type CreateUserAccountArgsArgs, type CreateUserAccountsAsyncInput, type CreateUserAccountsInput, type CreateUserAccountsInstruction, type CreateUserAccountsInstructionData, type CreateUserAccountsInstructionDataArgs, type CreateUserAccountsInstructionExtraArgs, DECOMPRESS_SETTINGS_ACCOUNT_DISCRIMINATOR, DISABLE_DOMAIN_CONFIG_DISCRIMINATOR, DOMAIN_CONFIG_DISCRIMINATOR, type DecompressSettingsAccountInput, type DecompressSettingsAccountInstruction, type DecompressSettingsAccountInstructionData, type DecompressSettingsAccountInstructionDataArgs, type DecompressSettingsAccountInstructionExtraArgs, type DisableDomainConfigInput, type DisableDomainConfigInstruction, type DisableDomainConfigInstructionData, type DisableDomainConfigInstructionDataArgs, type DisableDomainConfigInstructionExtraArgs, type DomainConfig, type DomainConfigArgs, EDIT_DOMAIN_CONFIG_DISCRIMINATOR, EDIT_TRANSACTION_MANAGER_URL_DISCRIMINATOR, EDIT_USER_DELEGATE_DISCRIMINATOR, type EditDomainConfigAsyncInput, type EditDomainConfigInput, type EditDomainConfigInstruction, type EditDomainConfigInstructionData, type EditDomainConfigInstructionDataArgs, type EditDomainConfigInstructionExtraArgs, type EditMemberArgs$1 as EditMemberArgs, type EditMemberArgsArgs, type EditTransactionManagerUrlInput, type EditTransactionManagerUrlInstruction, type EditTransactionManagerUrlInstructionData, type EditTransactionManagerUrlInstructionDataArgs, type EditTransactionManagerUrlInstructionExtraArgs, type EditUserDelegateInput, type EditUserDelegateInstruction, type EditUserDelegateInstructionData, type EditUserDelegateInstructionDataArgs, type EditUserDelegateInstructionExtraArgs, type ExpectedSecp256r1Signers, type ExpectedSecp256r1SignersArgs, 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_SLOT_NUMBER, 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_MUTATION_USER_ARGS, MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY, 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 MigrateCompressedSettingsInput, type MigrateCompressedSettingsInstruction, type MigrateCompressedSettingsInstructionData, type MigrateCompressedSettingsInstructionDataArgs, type MigrateCompressedSettingsInstructionExtraArgs, type MigrateCompressedUsersInput, type MigrateCompressedUsersInstruction, type MigrateCompressedUsersInstructionData, type MigrateCompressedUsersInstructionDataArgs, type MigrateCompressedUsersInstructionExtraArgs, MultiWalletAccount, type MultiWalletError, MultiWalletInstruction, NATIVE_TRANSFER_INTENT_COMPRESSED_DISCRIMINATOR, NATIVE_TRANSFER_INTENT_DISCRIMINATOR, type NativeTransferIntentAsyncInput, type NativeTransferIntentCompressedInput, type NativeTransferIntentCompressedInstruction, type NativeTransferIntentCompressedInstructionData, type NativeTransferIntentCompressedInstructionDataArgs, type NativeTransferIntentCompressedInstructionExtraArgs, type NativeTransferIntentInput, type NativeTransferIntentInstruction, type NativeTransferIntentInstructionData, type NativeTransferIntentInstructionDataArgs, type NativeTransferIntentInstructionExtraArgs, type NewAuthorityArgs, type NewAuthorityArgsArgs, type PackedAddressTreeInfo, type PackedAddressTreeInfoArgs, type PackedMerkleContext, type PackedMerkleContextArgs, type PackedStateTreeInfo, type PackedStateTreeInfoArgs, type ParsedAddWhitelistedAddressTreesInstruction, type ParsedChangeConfigCompressedInstruction, type ParsedChangeConfigInstruction, type ParsedCreateCompressedWalletInstruction, type ParsedCreateDomainConfigInstruction, type ParsedCreateDomainUserAccountInstruction, type ParsedCreateGlobalCounterInstruction, type ParsedCreateUserAccountsInstruction, type ParsedDecompressSettingsAccountInstruction, type ParsedDisableDomainConfigInstruction, type ParsedEditDomainConfigInstruction, type ParsedEditTransactionManagerUrlInstruction, type ParsedEditUserDelegateInstruction, type ParsedMigrateCompressedSettingsInstruction, type ParsedMigrateCompressedUsersInstruction, type ParsedMultiWalletInstruction, type ParsedNativeTransferIntentCompressedInstruction, type ParsedNativeTransferIntentInstruction, type ParsedSecp256r1VerifyInstruction, type ParsedTokenTransferIntentCompressedInstruction, type ParsedTokenTransferIntentInstruction, type ParsedTransactionBufferCloseCompressedInstruction, type ParsedTransactionBufferCloseInstruction, type ParsedTransactionBufferCreateCompressedInstruction, type ParsedTransactionBufferCreateInstruction, type ParsedTransactionBufferExecuteCompressedInstruction, type ParsedTransactionBufferExecuteInstruction, type ParsedTransactionBufferExtendCompressedInstruction, type ParsedTransactionBufferExtendInstruction, type ParsedTransactionBufferVoteCompressedInstruction, type ParsedTransactionBufferVoteInstruction, type ParsedTransactionExecuteCompressedInstruction, type ParsedTransactionExecuteInstruction, type ParsedTransactionExecuteSyncCompressedInstruction, type ParsedTransactionExecuteSyncInstruction, Permission, type PermissionArgs, Permissions, type PermissionsArgs, type ProofArgs, type ProofArgsArgs, type RemoveMemberArgs$1 as RemoveMemberArgs, type RemoveMemberArgsArgs, SETTINGS_DISCRIMINATOR, Secp256r1Key, type Secp256r1Pubkey, type Secp256r1PubkeyArgs, type Secp256r1SignatureOffsetsDataArgs, type Secp256r1VerifyArgs, type Secp256r1VerifyArgsArgs, type Secp256r1VerifyArgsWithDomainAddress, type Secp256r1VerifyArgsWithDomainAddressArgs, type Secp256r1VerifyInput, type Secp256r1VerifyInstruction, type Secp256r1VerifyInstructionData, type Secp256r1VerifyInstructionDataArgs, type Settings, type SettingsArgs, type SettingsCreationArgs, type SettingsCreationArgsArgs, type SettingsIndexWithAddress, type SettingsIndexWithAddressArgs, type SettingsMutArgs, type SettingsMutArgsArgs, type SettingsReadonlyArgs, type SettingsReadonlyArgsArgs, SignedSecp256r1Key, type StartMessageRequest, type StartTransactionRequest, 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 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 TransactionPayloadWithBase64MessageBytes, type User, type UserArgs, type UserCreationArgs$2 as UserCreationArgs, type UserCreationArgsArgs, type UserMutArgs, type UserMutArgsArgs, type UserReadOnlyArgs, type UserReadOnlyArgsArgs, type UserReadOnlyOrMutateArgs, type UserReadOnlyOrMutateArgsArgs, UserRole, type UserRoleArgs, WHITELISTED_ADDRESS_TREE_DISCRIMINATOR, type WhitelistedAddressTree, type WhitelistedAddressTreeArgs, addWhitelistedAddressTrees, base64URLStringToBuffer, bufferToBase64URLString, changeConfig, closeTransactionBuffer, configAction, convertMemberKeyToString, convertPubkeyCompressedToCose, convertPubkeyCoseToCompressed, createClientAuthorizationCompleteRequestChallenge, createClientAuthorizationStartRequestChallenge, createDomainConfig, createDomainUserAccounts, createGlobalCounter, createMessageChallenge, createTransactionBuffer, createTransactionChallenge, createTransactionManagerSigner, createUserAccounts, createWallet, decodeDomainConfig, decodeGlobalCounter, decodeSettings, decodeTransactionBuffer, decodeWhitelistedAddressTree, decompressSettingsAccount, deserializeConfigActions, disableDomainConfig, editDomainConfig, editTransactionManagerUrl, editUserDelegate, executeTransaction, executeTransactionBuffer, executeTransactionSync, extendTransactionBuffer, fetchAllDomainConfig, fetchAllGlobalCounter, fetchAllMaybeDomainConfig, fetchAllMaybeGlobalCounter, fetchAllMaybeSettings, fetchAllMaybeTransactionBuffer, fetchAllMaybeWhitelistedAddressTree, fetchAllSettings, fetchAllTransactionBuffer, fetchAllWhitelistedAddressTree, fetchDomainConfig, fetchGlobalCounter, fetchMaybeDomainConfig, fetchMaybeGlobalCounter, fetchMaybeSettings, fetchMaybeSettingsAccountData, fetchMaybeTransactionBuffer, fetchMaybeUserAccountData, fetchMaybeWhitelistedAddressTree, fetchSettings, fetchSettingsAccountData, fetchTransactionBuffer, fetchUserAccountData, fetchWhitelistedAddressTree, getAddMemberArgsCodec, getAddMemberArgsDecoder, getAddMemberArgsEncoder, getAddWhitelistedAddressTreesDiscriminatorBytes, getAddWhitelistedAddressTreesInstruction, getAddWhitelistedAddressTreesInstructionAsync, getAddWhitelistedAddressTreesInstructionDataCodec, getAddWhitelistedAddressTreesInstructionDataDecoder, getAddWhitelistedAddressTreesInstructionDataEncoder, getChangeConfigCompressedDiscriminatorBytes, getChangeConfigCompressedInstruction, getChangeConfigCompressedInstructionDataCodec, getChangeConfigCompressedInstructionDataDecoder, getChangeConfigCompressedInstructionDataEncoder, getChangeConfigDiscriminatorBytes, getChangeConfigInstruction, getChangeConfigInstructionAsync, getChangeConfigInstructionDataCodec, getChangeConfigInstructionDataDecoder, getChangeConfigInstructionDataEncoder, getClientAndDeviceHash, getCompiledInstructionCodec, getCompiledInstructionDecoder, getCompiledInstructionEncoder, getCompressedAccountMetaCodec, getCompressedAccountMetaDecoder, getCompressedAccountMetaEncoder, getCompressedAccountMetaReadOnlyCodec, getCompressedAccountMetaReadOnlyDecoder, getCompressedAccountMetaReadOnlyEncoder, getCompressedProofCodec, getCompressedProofDecoder, getCompressedProofEncoder, getCompressedSettingsAddressFromIndex, getCompressedSettingsCodec, getCompressedSettingsDataCodec, getCompressedSettingsDataDecoder, getCompressedSettingsDataEncoder, getCompressedSettingsDecoder, getCompressedSettingsEncoder, getCompressedTokenArgsCodec, getCompressedTokenArgsDecoder, getCompressedTokenArgsEncoder, getComputeBudgetEstimate, getConfigActionCodec, getConfigActionDecoder, getConfigActionEncoder, getCreateCompressedWalletDiscriminatorBytes, getCreateCompressedWalletInstruction, getCreateCompressedWalletInstructionAsync, getCreateCompressedWalletInstructionDataCodec, getCreateCompressedWalletInstructionDataDecoder, getCreateCompressedWalletInstructionDataEncoder, getCreateDomainConfigDiscriminatorBytes, getCreateDomainConfigInstruction, getCreateDomainConfigInstructionAsync, getCreateDomainConfigInstructionDataCodec, getCreateDomainConfigInstructionDataDecoder, getCreateDomainConfigInstructionDataEncoder, getCreateDomainUserAccountDiscriminatorBytes, getCreateDomainUserAccountInstruction, getCreateDomainUserAccountInstructionAsync, getCreateDomainUserAccountInstructionDataCodec, getCreateDomainUserAccountInstructionDataDecoder, getCreateDomainUserAccountInstructionDataEncoder, getCreateGlobalCounterDiscriminatorBytes, getCreateGlobalCounterInstruction, getCreateGlobalCounterInstructionAsync, getCreateGlobalCounterInstructionDataCodec, getCreateGlobalCounterInstructionDataDecoder, getCreateGlobalCounterInstructionDataEncoder, getCreateUserAccountArgsCodec, getCreateUserAccountArgsDecoder, getCreateUserAccountArgsEncoder, getCreateUserAccountsDiscriminatorBytes, getCreateUserAccountsInstruction, getCreateUserAccountsInstructionAsync, getCreateUserAccountsInstructionDataCodec, getCreateUserAccountsInstructionDataDecoder, getCreateUserAccountsInstructionDataEncoder, getDecompressSettingsAccountDiscriminatorBytes, getDecompressSettingsAccountInstruction, getDecompressSettingsAccountInstructionDataCodec, getDecompressSettingsAccountInstructionDataDecoder, getDecompressSettingsAccountInstructionDataEncoder, getDisableDomainConfigDiscriminatorBytes, getDisableDomainConfigInstruction, getDisableDomainConfigInstructionDataCodec, getDisableDomainConfigInstructionDataDecoder, getDisableDomainConfigInstructionDataEncoder, getDomainConfigAddress, getDomainConfigCodec, getDomainConfigDecoder, getDomainConfigDiscriminatorBytes, getDomainConfigEncoder, getDomainConfigSize, getEditDomainConfigDiscriminatorBytes, getEditDomainConfigInstruction, getEditDomainConfigInstructionAsync, getEditDomainConfigInstructionDataCodec, getEditDomainConfigInstructionDataDecoder, getEditDomainConfigInstructionDataEncoder, getEditMemberArgsCodec, getEditMemberArgsDecoder, getEditMemberArgsEncoder, getEditTransactionManagerUrlDiscriminatorBytes, getEditTransactionManagerUrlInstruction, getEditTransactionManagerUrlInstructionDataCodec, getEditTransactionManagerUrlInstructionDataDecoder, getEditTransactionManagerUrlInstructionDataEncoder, getEditUserDelegateDiscriminatorBytes, getEditUserDelegateInstruction, getEditUserDelegateInstructionDataCodec, getEditUserDelegateInstructionDataDecoder, getEditUserDelegateInstructionDataEncoder, getExpectedSecp256r1SignersCodec, getExpectedSecp256r1SignersDecoder, getExpectedSecp256r1SignersEncoder, getGlobalCounterAddress, getGlobalCounterCodec, getGlobalCounterDecoder, getGlobalCounterDiscriminatorBytes, getGlobalCounterEncoder, getGlobalCounterSize, getJitoTipsConfig, getLightCpiSigner, getLightProtocolRpc, getLinkWalletArgsCodec, getLinkWalletArgsDecoder, getLinkWalletArgsEncoder, getMemberCodec, getMemberDecoder, getMemberEncoder, getMemberKeyCodec, getMemberKeyDecoder, getMemberKeyEncoder, getMigrateCompressedSettingsDiscriminatorBytes, getMigrateCompressedSettingsInstruction, getMigrateCompressedSettingsInstructionDataCodec, getMigrateCompressedSettingsInstructionDataDecoder, getMigrateCompressedSettingsInstructionDataEncoder, getMigrateCompressedUsersDiscriminatorBytes, getMigrateCompressedUsersInstruction, getMigrateCompressedUsersInstructionDataCodec, getMigrateCompressedUsersInstructionDataDecoder, getMigrateCompressedUsersInstructionDataEncoder, getMultiWalletErrorMessage, getNativeTransferIntentCompressedDiscriminatorBytes, getNativeTransferIntentCompressedInstruction, getNativeTransferIntentCompressedInstructionDataCodec, getNativeTransferIntentCompressedInstructionDataDecoder, getNativeTransferIntentCompressedInstructionDataEncoder, getNativeTransferIntentDiscriminatorBytes, getNativeTransferIntentInstruction, getNativeTransferIntentInstructionAsync, getNativeTransferIntentInstructionDataCodec, getNativeTransferIntentInstructionDataDecoder, getNativeTransferIntentInstructionDataEncoder, getNewAuthorityArgsCodec, getNewAuthorityArgsDecoder, getNewAuthorityArgsEncoder, getOriginIndex, getPackedAddressTreeInfoCodec, getPackedAddressTreeInfoDecoder, getPackedAddressTreeInfoEncoder, getPackedMerkleContextCodec, getPackedMerkleContextDecoder, getPackedMerkleContextEncoder, getPackedStateTreeInfoCodec, getPackedStateTreeInfoDecoder, getPackedStateTreeInfoEncoder, getPermissionsCodec, getPermissionsDecoder, getPermissionsEncoder, getProofArgsCodec, getProofArgsDecoder, getProofArgsEncoder, getRemoveMemberArgsCodec, getRemoveMemberArgsDecoder, getRemoveMemberArgsEncoder, 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, 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, parseCreateCompressedWalletInstruction, parseCreateDomainConfigInstruction, parseCreateDomainUserAccountInstruction, parseCreateGlobalCounterInstruction, parseCreateUserAccountsInstruction, parseDecompressSettingsAccountInstruction, parseDisableDomainConfigInstruction, parseEditDomainConfigInstruction, parseEditTransactionManagerUrlInstruction, parseEditUserDelegateInstruction, parseMigrateCompressedSettingsInstruction, parseMigrateCompressedUsersInstruction, parseNativeTransferIntentCompressedInstruction, parseNativeTransferIntentInstruction, parseSecp256r1VerifyInstruction, parseTokenTransferIntentCompressedInstruction, parseTokenTransferIntentInstruction, parseTransactionBufferCloseCompressedInstruction, parseTransactionBufferCloseInstruction, parseTransactionBufferCreateCompressedInstruction, parseTransactionBufferCreateInstruction, parseTransactionBufferExecuteCompressedInstruction, parseTransactionBufferExecuteInstruction, parseTransactionBufferExtendCompressedInstruction, parseTransactionBufferExtendInstruction, parseTransactionBufferVoteCompressedInstruction, parseTransactionBufferVoteInstruction, parseTransactionExecuteCompressedInstruction, parseTransactionExecuteInstruction, parseTransactionExecuteSyncCompressedInstruction, parseTransactionExecuteSyncInstruction, pollJitoBundleConfirmation, prepareChangeConfigArgs, prepareTransactionBundle, prepareTransactionMessage, prepareTransactionSync, retrieveTransactionManager, sendJitoBundle, serializeConfigActions, signAndSendBundledTransactions, signAndSendTransaction, tokenTransferIntent, uninitialize, userReadOnlyOrMutateArgs, vaultTransactionMessageDeserialize, vaultTransactionMessageSerialize, voteTransactionBuffer };