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