@revibase/core 0.0.8 → 0.0.9-alpha-2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -9,28 +9,24 @@ declare const DOMAIN_CONFIG_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
9
9
  declare function getDomainConfigDiscriminatorBytes(): ReadonlyUint8Array;
10
10
  type DomainConfig = {
11
11
  discriminator: ReadonlyUint8Array;
12
- numOrigins: number;
13
12
  authority: Address;
14
13
  rpIdHash: ReadonlyUint8Array;
15
14
  bump: number;
16
15
  isDisabled: number;
17
16
  rpIdLength: number;
17
+ numOrigins: number;
18
18
  rpId: ReadonlyUint8Array;
19
19
  origins: ReadonlyUint8Array;
20
- metadataUrlLength: number;
21
- metadataUrl: ReadonlyUint8Array;
22
20
  };
23
21
  type DomainConfigArgs = {
24
- numOrigins: number;
25
22
  authority: Address;
26
23
  rpIdHash: ReadonlyUint8Array;
27
24
  bump: number;
28
25
  isDisabled: number;
29
26
  rpIdLength: number;
27
+ numOrigins: number;
30
28
  rpId: ReadonlyUint8Array;
31
29
  origins: ReadonlyUint8Array;
32
- metadataUrlLength: number;
33
- metadataUrl: ReadonlyUint8Array;
34
30
  };
35
31
  declare function getDomainConfigEncoder(): FixedSizeEncoder<DomainConfigArgs>;
36
32
  declare function getDomainConfigDecoder(): FixedSizeDecoder<DomainConfig>;
@@ -681,49 +677,59 @@ declare function fetchMaybeWhitelistedAddressTree<TAddress extends string = stri
681
677
  declare function fetchAllWhitelistedAddressTree(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Array<Address>, config?: FetchAccountsConfig): Promise<Account<WhitelistedAddressTree>[]>;
682
678
  declare function fetchAllMaybeWhitelistedAddressTree(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Array<Address>, config?: FetchAccountsConfig): Promise<MaybeAccount<WhitelistedAddressTree>[]>;
683
679
 
684
- declare const MULTI_WALLET_ERROR__INVALID_SIGNED_MESSAGE = 6000;
685
- declare const MULTI_WALLET_ERROR__INVALID_SECP256R1_VERIFY_ARG = 6001;
686
- declare const MULTI_WALLET_ERROR__DURABLE_NONCE_DETECTED = 6002;
687
- declare const MULTI_WALLET_ERROR__DUPLICATE_MEMBER = 6003;
688
- declare const MULTI_WALLET_ERROR__PERMANENT_MEMBER = 6004;
689
- declare const MULTI_WALLET_ERROR__PERMANENT_MEMBER_NOT_ALLOWED = 6005;
690
- declare const MULTI_WALLET_ERROR__ONLY_ONE_PERMANENT_MEMBER_ALLOWED = 6006;
691
- declare const MULTI_WALLET_ERROR__ONLY_ONE_TRANSACTION_MANAGER_ALLOWED = 6007;
692
- declare const MULTI_WALLET_ERROR__TRANSACTION_MANAGER_NOT_ALLOWED = 6008;
693
- declare const MULTI_WALLET_ERROR__EMPTY_MEMBERS = 6009;
694
- declare const MULTI_WALLET_ERROR__TOO_MANY_MEMBERS = 6010;
695
- declare const MULTI_WALLET_ERROR__INVALID_THRESHOLD = 6011;
696
- declare const MULTI_WALLET_ERROR__INVALID_TRANSACTION_MESSAGE = 6012;
697
- declare const MULTI_WALLET_ERROR__INVALID_NUMBER_OF_ACCOUNTS = 6013;
698
- declare const MULTI_WALLET_ERROR__INVALID_ACCOUNT = 6014;
699
- declare const MULTI_WALLET_ERROR__INVALID_ARGUMENTS = 6015;
700
- declare const MULTI_WALLET_ERROR__MISSING_ACCOUNT = 6016;
701
- declare const MULTI_WALLET_ERROR__MISSING_USER_ARGS = 6017;
702
- declare const MULTI_WALLET_ERROR__ALREADY_DELEGATED = 6018;
703
- declare const MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_EXECUTE_PERMISSION = 6019;
704
- declare const MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_INITIATE_PERMISSION = 6020;
705
- declare const MULTI_WALLET_ERROR__INSUFFICIENT_SIGNERS_WITH_VOTE_PERMISSION = 6021;
706
- declare const MULTI_WALLET_ERROR__UNEXPECTED_SIGNER = 6022;
707
- declare const MULTI_WALLET_ERROR__NO_SIGNER_FOUND = 6023;
708
- declare const MULTI_WALLET_ERROR__UNAUTHORISED_TO_CLOSE_TRANSACTION_BUFFER = 6024;
709
- declare const MULTI_WALLET_ERROR__INVALID_BUFFER = 6025;
710
- declare const MULTI_WALLET_ERROR__FINAL_BUFFER_HASH_MISMATCH = 6026;
711
- declare const MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_EXCEEDED = 6027;
712
- declare const MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_MISMATCH = 6028;
713
- declare const MULTI_WALLET_ERROR__TRANSACTION_HAS_EXPIRED = 6029;
714
- declare const MULTI_WALLET_ERROR__TRANSACTION_NOT_APPROVED = 6030;
715
- declare const MULTI_WALLET_ERROR__PROTECTED_ACCOUNT = 6031;
716
- declare const MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED = 6032;
717
- declare const MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY = 6033;
718
- declare const MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT = 6034;
719
- declare const MULTI_WALLET_ERROR__SLOT_NUMBER_NOT_FOUND = 6035;
720
- declare const MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_DISABLED = 6036;
721
- declare const MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_MISSING = 6037;
722
- declare const MULTI_WALLET_ERROR__MEMBER_DOES_NOT_BELONG_TO_DOMAIN_CONFIG = 6038;
723
- declare const MULTI_WALLET_ERROR__RP_ID_HASH_MISMATCH = 6039;
724
- declare const MULTI_WALLET_ERROR__ORIGIN_INDEX_OUT_OF_BOUNDS = 6040;
725
- declare const MULTI_WALLET_ERROR__INVALID_ADDRESS_TREE = 6041;
726
- type MultiWalletError = typeof MULTI_WALLET_ERROR__ALREADY_DELEGATED | typeof MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_DISABLED | typeof MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_MISSING | typeof MULTI_WALLET_ERROR__DUPLICATE_MEMBER | typeof MULTI_WALLET_ERROR__DURABLE_NONCE_DETECTED | typeof MULTI_WALLET_ERROR__EMPTY_MEMBERS | typeof MULTI_WALLET_ERROR__FINAL_BUFFER_HASH_MISMATCH | typeof MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_EXCEEDED | typeof MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_MISMATCH | typeof MULTI_WALLET_ERROR__INSUFFICIENT_SIGNERS_WITH_VOTE_PERMISSION | typeof MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_EXECUTE_PERMISSION | typeof MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_INITIATE_PERMISSION | typeof MULTI_WALLET_ERROR__INVALID_ACCOUNT | typeof MULTI_WALLET_ERROR__INVALID_ADDRESS_TREE | typeof MULTI_WALLET_ERROR__INVALID_ARGUMENTS | typeof MULTI_WALLET_ERROR__INVALID_BUFFER | typeof MULTI_WALLET_ERROR__INVALID_NUMBER_OF_ACCOUNTS | typeof MULTI_WALLET_ERROR__INVALID_SECP256R1_VERIFY_ARG | typeof MULTI_WALLET_ERROR__INVALID_SIGNED_MESSAGE | typeof MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT | typeof MULTI_WALLET_ERROR__INVALID_THRESHOLD | typeof MULTI_WALLET_ERROR__INVALID_TRANSACTION_MESSAGE | typeof MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED | typeof MULTI_WALLET_ERROR__MEMBER_DOES_NOT_BELONG_TO_DOMAIN_CONFIG | typeof MULTI_WALLET_ERROR__MISSING_ACCOUNT | typeof MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY | typeof MULTI_WALLET_ERROR__MISSING_USER_ARGS | typeof MULTI_WALLET_ERROR__NO_SIGNER_FOUND | typeof MULTI_WALLET_ERROR__ONLY_ONE_PERMANENT_MEMBER_ALLOWED | typeof MULTI_WALLET_ERROR__ONLY_ONE_TRANSACTION_MANAGER_ALLOWED | typeof MULTI_WALLET_ERROR__ORIGIN_INDEX_OUT_OF_BOUNDS | typeof MULTI_WALLET_ERROR__PERMANENT_MEMBER | typeof MULTI_WALLET_ERROR__PERMANENT_MEMBER_NOT_ALLOWED | typeof MULTI_WALLET_ERROR__PROTECTED_ACCOUNT | typeof MULTI_WALLET_ERROR__RP_ID_HASH_MISMATCH | typeof MULTI_WALLET_ERROR__SLOT_NUMBER_NOT_FOUND | typeof MULTI_WALLET_ERROR__TOO_MANY_MEMBERS | typeof MULTI_WALLET_ERROR__TRANSACTION_HAS_EXPIRED | typeof MULTI_WALLET_ERROR__TRANSACTION_MANAGER_NOT_ALLOWED | typeof MULTI_WALLET_ERROR__TRANSACTION_NOT_APPROVED | typeof MULTI_WALLET_ERROR__UNAUTHORISED_TO_CLOSE_TRANSACTION_BUFFER | typeof MULTI_WALLET_ERROR__UNEXPECTED_SIGNER;
680
+ declare const MULTI_WALLET_ERROR__INVALID_SECP256R1_VERIFY_ARG = 6000;
681
+ declare const MULTI_WALLET_ERROR__INVALID_SECP256R1_INSTRUCTION = 6001;
682
+ declare const MULTI_WALLET_ERROR__SIGNATURE_INDEX_OUT_OF_BOUNDS = 6002;
683
+ declare const MULTI_WALLET_ERROR__INVALID_SIGNATURE_OFFSETS = 6003;
684
+ declare const MULTI_WALLET_ERROR__INVALID_SECP256R1_PUBLIC_KEY = 6004;
685
+ declare const MULTI_WALLET_ERROR__MALFORMED_SIGNED_MESSAGE = 6005;
686
+ declare const MULTI_WALLET_ERROR__RP_ID_HASH_MISMATCH = 6006;
687
+ declare const MULTI_WALLET_ERROR__CLIENT_DATA_HASH_MISMATCH = 6007;
688
+ declare const MULTI_WALLET_ERROR__EXPECTED_MESSAGE_HASH_MISMATCH = 6008;
689
+ declare const MULTI_WALLET_ERROR__DURABLE_NONCE_DETECTED = 6009;
690
+ declare const MULTI_WALLET_ERROR__DUPLICATE_MEMBER = 6010;
691
+ declare const MULTI_WALLET_ERROR__PERMANENT_MEMBER = 6011;
692
+ declare const MULTI_WALLET_ERROR__ONLY_ONE_PERMANENT_MEMBER_ALLOWED = 6012;
693
+ declare const MULTI_WALLET_ERROR__ONLY_ONE_TRANSACTION_MANAGER_ALLOWED = 6013;
694
+ declare const MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_PERMISSION = 6014;
695
+ declare const MULTI_WALLET_ERROR__EXPECTED_TRANSACTION_MANAGER_ROLE_MISMATCH = 6015;
696
+ declare const MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_CONFIG = 6016;
697
+ declare const MULTI_WALLET_ERROR__EXPECTED_ADMINISTRATOR_ROLE_MISMATCH = 6017;
698
+ declare const MULTI_WALLET_ERROR__INVALID_ADMINISTRATOR_CONFIG = 6018;
699
+ declare const MULTI_WALLET_ERROR__EMPTY_MEMBERS = 6019;
700
+ declare const MULTI_WALLET_ERROR__TOO_MANY_MEMBERS = 6020;
701
+ declare const MULTI_WALLET_ERROR__INVALID_THRESHOLD = 6021;
702
+ declare const MULTI_WALLET_ERROR__INVALID_TRANSACTION_MESSAGE = 6022;
703
+ declare const MULTI_WALLET_ERROR__INVALID_NUMBER_OF_ACCOUNTS = 6023;
704
+ declare const MULTI_WALLET_ERROR__INVALID_ACCOUNT = 6024;
705
+ declare const MULTI_WALLET_ERROR__INVALID_USER_ROLE = 6025;
706
+ declare const MULTI_WALLET_ERROR__INVALID_ARGUMENTS = 6026;
707
+ declare const MULTI_WALLET_ERROR__MISSING_ACCOUNT = 6027;
708
+ declare const MULTI_WALLET_ERROR__MISSING_USER_ARGS = 6028;
709
+ declare const MULTI_WALLET_ERROR__ALREADY_DELEGATED = 6029;
710
+ declare const MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_EXECUTE_PERMISSION = 6030;
711
+ declare const MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_INITIATE_PERMISSION = 6031;
712
+ declare const MULTI_WALLET_ERROR__INSUFFICIENT_SIGNERS_WITH_VOTE_PERMISSION = 6032;
713
+ declare const MULTI_WALLET_ERROR__UNEXPECTED_SIGNER = 6033;
714
+ declare const MULTI_WALLET_ERROR__NO_SIGNER_FOUND = 6034;
715
+ declare const MULTI_WALLET_ERROR__UNAUTHORISED_TO_CLOSE_TRANSACTION_BUFFER = 6035;
716
+ declare const MULTI_WALLET_ERROR__INVALID_BUFFER = 6036;
717
+ declare const MULTI_WALLET_ERROR__FINAL_BUFFER_HASH_MISMATCH = 6037;
718
+ declare const MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_EXCEEDED = 6038;
719
+ declare const MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_MISMATCH = 6039;
720
+ declare const MULTI_WALLET_ERROR__TRANSACTION_HAS_EXPIRED = 6040;
721
+ declare const MULTI_WALLET_ERROR__TRANSACTION_NOT_APPROVED = 6041;
722
+ declare const MULTI_WALLET_ERROR__PROTECTED_ACCOUNT = 6042;
723
+ declare const MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED = 6043;
724
+ declare const MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY = 6044;
725
+ declare const MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT = 6045;
726
+ declare const MULTI_WALLET_ERROR__SLOT_NUMBER_NOT_FOUND = 6046;
727
+ declare const MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_DISABLED = 6047;
728
+ declare const MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_MISSING = 6048;
729
+ declare const MULTI_WALLET_ERROR__MEMBER_DOES_NOT_BELONG_TO_DOMAIN_CONFIG = 6049;
730
+ declare const MULTI_WALLET_ERROR__ORIGIN_INDEX_OUT_OF_BOUNDS = 6050;
731
+ declare const MULTI_WALLET_ERROR__INVALID_ADDRESS_TREE = 6051;
732
+ type MultiWalletError = typeof MULTI_WALLET_ERROR__ALREADY_DELEGATED | typeof MULTI_WALLET_ERROR__CLIENT_DATA_HASH_MISMATCH | typeof MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_DISABLED | typeof MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_MISSING | typeof MULTI_WALLET_ERROR__DUPLICATE_MEMBER | typeof MULTI_WALLET_ERROR__DURABLE_NONCE_DETECTED | typeof MULTI_WALLET_ERROR__EMPTY_MEMBERS | typeof MULTI_WALLET_ERROR__EXPECTED_ADMINISTRATOR_ROLE_MISMATCH | typeof MULTI_WALLET_ERROR__EXPECTED_MESSAGE_HASH_MISMATCH | typeof MULTI_WALLET_ERROR__EXPECTED_TRANSACTION_MANAGER_ROLE_MISMATCH | typeof MULTI_WALLET_ERROR__FINAL_BUFFER_HASH_MISMATCH | typeof MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_EXCEEDED | typeof MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_MISMATCH | typeof MULTI_WALLET_ERROR__INSUFFICIENT_SIGNERS_WITH_VOTE_PERMISSION | typeof MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_EXECUTE_PERMISSION | typeof MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_INITIATE_PERMISSION | typeof MULTI_WALLET_ERROR__INVALID_ACCOUNT | typeof MULTI_WALLET_ERROR__INVALID_ADDRESS_TREE | typeof MULTI_WALLET_ERROR__INVALID_ADMINISTRATOR_CONFIG | typeof MULTI_WALLET_ERROR__INVALID_ARGUMENTS | typeof MULTI_WALLET_ERROR__INVALID_BUFFER | typeof MULTI_WALLET_ERROR__INVALID_NUMBER_OF_ACCOUNTS | typeof MULTI_WALLET_ERROR__INVALID_SECP256R1_INSTRUCTION | typeof MULTI_WALLET_ERROR__INVALID_SECP256R1_PUBLIC_KEY | typeof MULTI_WALLET_ERROR__INVALID_SECP256R1_VERIFY_ARG | typeof MULTI_WALLET_ERROR__INVALID_SIGNATURE_OFFSETS | typeof MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT | typeof MULTI_WALLET_ERROR__INVALID_THRESHOLD | typeof MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_CONFIG | typeof MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_PERMISSION | typeof MULTI_WALLET_ERROR__INVALID_TRANSACTION_MESSAGE | typeof MULTI_WALLET_ERROR__INVALID_USER_ROLE | typeof MULTI_WALLET_ERROR__MALFORMED_SIGNED_MESSAGE | typeof MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED | typeof MULTI_WALLET_ERROR__MEMBER_DOES_NOT_BELONG_TO_DOMAIN_CONFIG | typeof MULTI_WALLET_ERROR__MISSING_ACCOUNT | typeof MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY | typeof MULTI_WALLET_ERROR__MISSING_USER_ARGS | typeof MULTI_WALLET_ERROR__NO_SIGNER_FOUND | typeof MULTI_WALLET_ERROR__ONLY_ONE_PERMANENT_MEMBER_ALLOWED | typeof MULTI_WALLET_ERROR__ONLY_ONE_TRANSACTION_MANAGER_ALLOWED | typeof MULTI_WALLET_ERROR__ORIGIN_INDEX_OUT_OF_BOUNDS | typeof MULTI_WALLET_ERROR__PERMANENT_MEMBER | typeof MULTI_WALLET_ERROR__PROTECTED_ACCOUNT | typeof MULTI_WALLET_ERROR__RP_ID_HASH_MISMATCH | typeof MULTI_WALLET_ERROR__SIGNATURE_INDEX_OUT_OF_BOUNDS | typeof MULTI_WALLET_ERROR__SLOT_NUMBER_NOT_FOUND | typeof MULTI_WALLET_ERROR__TOO_MANY_MEMBERS | typeof MULTI_WALLET_ERROR__TRANSACTION_HAS_EXPIRED | typeof MULTI_WALLET_ERROR__TRANSACTION_NOT_APPROVED | typeof MULTI_WALLET_ERROR__UNAUTHORISED_TO_CLOSE_TRANSACTION_BUFFER | typeof MULTI_WALLET_ERROR__UNEXPECTED_SIGNER;
727
733
  declare function getMultiWalletErrorMessage(code: MultiWalletError): string;
728
734
  declare function isMultiWalletError<TProgramErrorCode extends MultiWalletError>(error: unknown, transactionMessage: {
729
735
  instructions: Record<number, {
@@ -1104,14 +1110,12 @@ type CreateDomainConfigInstructionData = {
1104
1110
  discriminator: ReadonlyUint8Array;
1105
1111
  rpId: string;
1106
1112
  origins: Array<string>;
1107
- metadataUrl: string;
1108
1113
  authorityCreationArgs: UserCreationArgs$2;
1109
1114
  compressedProofArgs: ProofArgs;
1110
1115
  };
1111
1116
  type CreateDomainConfigInstructionDataArgs = {
1112
1117
  rpId: string;
1113
1118
  origins: Array<string>;
1114
- metadataUrl: string;
1115
1119
  authorityCreationArgs: UserCreationArgsArgs;
1116
1120
  compressedProofArgs: ProofArgsArgs;
1117
1121
  };
@@ -1132,7 +1136,6 @@ type CreateDomainConfigAsyncInput<TAccountDomainConfig extends string = string,
1132
1136
  whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
1133
1137
  rpId: CreateDomainConfigInstructionDataArgs["rpId"];
1134
1138
  origins: CreateDomainConfigInstructionDataArgs["origins"];
1135
- metadataUrl: CreateDomainConfigInstructionDataArgs["metadataUrl"];
1136
1139
  authorityCreationArgs: CreateDomainConfigInstructionDataArgs["authorityCreationArgs"];
1137
1140
  compressedProofArgs: CreateDomainConfigInstructionDataArgs["compressedProofArgs"];
1138
1141
  remainingAccounts: CreateDomainConfigInstructionExtraArgs["remainingAccounts"];
@@ -1148,7 +1151,6 @@ type CreateDomainConfigInput<TAccountDomainConfig extends string = string, TAcco
1148
1151
  whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
1149
1152
  rpId: CreateDomainConfigInstructionDataArgs["rpId"];
1150
1153
  origins: CreateDomainConfigInstructionDataArgs["origins"];
1151
- metadataUrl: CreateDomainConfigInstructionDataArgs["metadataUrl"];
1152
1154
  authorityCreationArgs: CreateDomainConfigInstructionDataArgs["authorityCreationArgs"];
1153
1155
  compressedProofArgs: CreateDomainConfigInstructionDataArgs["compressedProofArgs"];
1154
1156
  remainingAccounts: CreateDomainConfigInstructionExtraArgs["remainingAccounts"];
@@ -1561,12 +1563,10 @@ type EditDomainConfigInstructionData = {
1561
1563
  discriminator: ReadonlyUint8Array;
1562
1564
  newOrigins: Option<Array<string>>;
1563
1565
  newAuthorityArgs: Option<NewAuthorityArgs>;
1564
- newMetadataUrl: Option<string>;
1565
1566
  };
1566
1567
  type EditDomainConfigInstructionDataArgs = {
1567
1568
  newOrigins: OptionOrNullable<Array<string>>;
1568
1569
  newAuthorityArgs: OptionOrNullable<NewAuthorityArgsArgs>;
1569
- newMetadataUrl: OptionOrNullable<string>;
1570
1570
  };
1571
1571
  declare function getEditDomainConfigInstructionDataEncoder(): Encoder<EditDomainConfigInstructionDataArgs>;
1572
1572
  declare function getEditDomainConfigInstructionDataDecoder(): Decoder<EditDomainConfigInstructionData>;
@@ -1585,7 +1585,6 @@ type EditDomainConfigAsyncInput<TAccountDomainConfig extends string = string, TA
1585
1585
  systemProgram?: Address<TAccountSystemProgram>;
1586
1586
  newOrigins: EditDomainConfigInstructionDataArgs["newOrigins"];
1587
1587
  newAuthorityArgs: EditDomainConfigInstructionDataArgs["newAuthorityArgs"];
1588
- newMetadataUrl: EditDomainConfigInstructionDataArgs["newMetadataUrl"];
1589
1588
  remainingAccounts: EditDomainConfigInstructionExtraArgs["remainingAccounts"];
1590
1589
  };
1591
1590
  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?: {
@@ -1599,7 +1598,6 @@ type EditDomainConfigInput<TAccountDomainConfig extends string = string, TAccoun
1599
1598
  systemProgram?: Address<TAccountSystemProgram>;
1600
1599
  newOrigins: EditDomainConfigInstructionDataArgs["newOrigins"];
1601
1600
  newAuthorityArgs: EditDomainConfigInstructionDataArgs["newAuthorityArgs"];
1602
- newMetadataUrl: EditDomainConfigInstructionDataArgs["newMetadataUrl"];
1603
1601
  remainingAccounts: EditDomainConfigInstructionExtraArgs["remainingAccounts"];
1604
1602
  };
1605
1603
  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?: {
@@ -2921,19 +2919,26 @@ declare class SignedSecp256r1Key extends Secp256r1Key {
2921
2919
  constructor(value: Secp256r1KeyInitData, signed: SignedMessageDetails);
2922
2920
  }
2923
2921
 
2924
- type TransactionAuthenticationResponse = {
2925
- authResponse: AuthenticationResponseJSON;
2922
+ type TransactionAuthenticationResponse = TransactionAuthDetails & {
2926
2923
  signer: Secp256r1Key;
2927
2924
  userAddressTreeIndex?: number;
2928
- transactionPayload: TransactionPayload;
2925
+ slotNumber: string;
2926
+ additionalInfo?: any;
2927
+ };
2928
+ type TransactionAuthDetails = {
2929
+ authResponse: AuthenticationResponseJSON;
2930
+ transactionPayload: TransactionPayloadWithBase64MessageBytes;
2931
+ slotHash: string;
2929
2932
  requestedClient: string;
2930
2933
  deviceSignature: {
2931
2934
  publicKey: string;
2932
2935
  signature: string;
2933
2936
  };
2934
- slotHash: string;
2935
- slotNumber: string;
2936
- additionalInfo?: any;
2937
+ };
2938
+ type TransactionPayloadWithBase64MessageBytes = {
2939
+ transactionActionType: TransactionActionType;
2940
+ transactionAddress: string;
2941
+ transactionMessageBytes: string;
2937
2942
  };
2938
2943
  type MessageAuthenticationResponse = {
2939
2944
  authResponse: AuthenticationResponseJSON;
@@ -3047,8 +3052,7 @@ declare function addWhitelistedAddressTrees({ admin, addressTree, }: {
3047
3052
  addressTree: Address;
3048
3053
  }): Promise<AddWhitelistedAddressTreesInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, []>>;
3049
3054
 
3050
- declare function createDomainConfig({ payer, rpId, origins, authority, metadataUrl, }: {
3051
- metadataUrl: string;
3055
+ declare function createDomainConfig({ payer, rpId, origins, authority, }: {
3052
3056
  payer: TransactionSigner;
3053
3057
  rpId: string;
3054
3058
  origins: string[];
@@ -3096,12 +3100,11 @@ declare function disableDomainConfig({ admin, rpId, disable, }: {
3096
3100
  rpId: string;
3097
3101
  }): Promise<DisableDomainConfigInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, []>>;
3098
3102
 
3099
- declare function editDomainConfig({ authority, domainConfig, newAuthority, newOrigins, newMetadataUrl, }: {
3103
+ declare function editDomainConfig({ authority, domainConfig, newAuthority, newOrigins, }: {
3100
3104
  domainConfig: Address;
3101
3105
  authority: TransactionSigner;
3102
3106
  newAuthority?: TransactionSigner;
3103
3107
  newOrigins?: string[];
3104
- newMetadataUrl?: string;
3105
3108
  }): Promise<EditDomainConfigInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, string, []>>;
3106
3109
 
3107
3110
  declare function editTransactionManagerUrl({ authority, userAddressTreeIndex, transactionManagerUrl, }: {
@@ -3367,7 +3370,7 @@ declare function createPopUp(url?: string): Window | null;
3367
3370
  declare function convertPubkeyCoseToCompressed(publicKey: Uint8Array<ArrayBufferLike>): string;
3368
3371
  declare function convertPubkeyCompressedToCose(publicKey: string): Uint8Array<ArrayBuffer>;
3369
3372
  declare function getSignedSecp256r1Key(payload: TransactionAuthenticationResponse, originIndex?: number, crossOrigin?: boolean): Promise<SignedSecp256r1Key>;
3370
- declare function verifyTransactionAuthResponseWithMessageHash(payload: TransactionAuthenticationResponse, expectedMessageHash: Uint8Array): void;
3373
+ declare function verifyTransactionAuthResponseWithMessageHash(authDetails: TransactionAuthDetails, expectedMessageHash: Uint8Array): void;
3371
3374
  declare function getOriginIndex(domainConfig: Address, origin: string): Promise<number>;
3372
3375
 
3373
3376
  declare function signAndSendBundledTransactions(bundle: TransactionDetails[]): Promise<string>;
@@ -3391,4 +3394,4 @@ declare function getSignedTransactionManager({ authResponses, transactionManager
3391
3394
  declare function createTransactionManagerSigner(address: Address, url: string, authResponses?: TransactionAuthenticationResponse[], transactionMessageBytes?: ReadonlyUint8Array): TransactionSigner;
3392
3395
  declare function convertMemberKeyToString(memberKey: MemberKey): string;
3393
3396
 
3394
- export { ADD_WHITELISTED_ADDRESS_TREES_DISCRIMINATOR, type AddMemberArgs$1 as AddMemberArgs, type AddMemberArgsArgs, type AddWhitelistedAddressTreesAsyncInput, type AddWhitelistedAddressTreesInput, type AddWhitelistedAddressTreesInstruction, type AddWhitelistedAddressTreesInstructionData, type AddWhitelistedAddressTreesInstructionDataArgs, type AddWhitelistedAddressTreesInstructionExtraArgs, type BasePayload, CHANGE_CONFIG_COMPRESSED_DISCRIMINATOR, CHANGE_CONFIG_DISCRIMINATOR, COMPRESS_SETTINGS_ACCOUNT_DISCRIMINATOR, CREATE_DOMAIN_CONFIG_DISCRIMINATOR, CREATE_DOMAIN_USER_ACCOUNT_DISCRIMINATOR, CREATE_GLOBAL_COUNTER_DISCRIMINATOR, CREATE_MULTI_WALLET_COMPRESSED_DISCRIMINATOR, CREATE_USER_ACCOUNTS_DISCRIMINATOR, type ChangeConfigAsyncInput, type ChangeConfigCompressedInput, type ChangeConfigCompressedInstruction, type ChangeConfigCompressedInstructionData, type ChangeConfigCompressedInstructionDataArgs, type ChangeConfigCompressedInstructionExtraArgs, type ChangeConfigInput, type ChangeConfigInstruction, type ChangeConfigInstructionData, type ChangeConfigInstructionDataArgs, type ChangeConfigInstructionExtraArgs, type CompiledInstruction, type CompiledInstructionArgs, type CompressSettingsAccountInput, type CompressSettingsAccountInstruction, type CompressSettingsAccountInstructionData, type CompressSettingsAccountInstructionDataArgs, type CompressSettingsAccountInstructionExtraArgs, type CompressedAccountMeta, type CompressedAccountMetaArgs, type CompressedAccountMetaReadOnly, type CompressedAccountMetaReadOnlyArgs, type CompressedProof, type CompressedProofArgs, type CompressedSettings, type CompressedSettingsArgs, type CompressedSettingsData, type CompressedSettingsDataArgs, type ConfigAction, type ConfigActionArgs, type ConfigurationArgs, type CreateDomainConfigAsyncInput, type CreateDomainConfigInput, type CreateDomainConfigInstruction, type CreateDomainConfigInstructionData, type CreateDomainConfigInstructionDataArgs, type CreateDomainConfigInstructionExtraArgs, type CreateDomainUserAccountAsyncInput, type CreateDomainUserAccountInput, type CreateDomainUserAccountInstruction, type CreateDomainUserAccountInstructionData, type CreateDomainUserAccountInstructionDataArgs, type CreateDomainUserAccountInstructionExtraArgs, type CreateGlobalCounterAsyncInput, type CreateGlobalCounterInput, type CreateGlobalCounterInstruction, type CreateGlobalCounterInstructionData, type CreateGlobalCounterInstructionDataArgs, type CreateGlobalCounterInstructionExtraArgs, type CreateMultiWalletCompressedAsyncInput, type CreateMultiWalletCompressedInput, type CreateMultiWalletCompressedInstruction, type CreateMultiWalletCompressedInstructionData, type CreateMultiWalletCompressedInstructionDataArgs, type CreateMultiWalletCompressedInstructionExtraArgs, type CreateUserAccountArgs, type CreateUserAccountArgsArgs, type CreateUserAccountsAsyncInput, type CreateUserAccountsInput, type CreateUserAccountsInstruction, type CreateUserAccountsInstructionData, type CreateUserAccountsInstructionDataArgs, type CreateUserAccountsInstructionExtraArgs, DECOMPRESS_SETTINGS_ACCOUNT_DISCRIMINATOR, DISABLE_DOMAIN_CONFIG_DISCRIMINATOR, DOMAIN_CONFIG_DISCRIMINATOR, type DecompressSettingsAccountInput, type DecompressSettingsAccountInstruction, type DecompressSettingsAccountInstructionData, type DecompressSettingsAccountInstructionDataArgs, type DecompressSettingsAccountInstructionExtraArgs, DelegateOp, type DelegateOpArgs, type DisableDomainConfigInput, type DisableDomainConfigInstruction, type DisableDomainConfigInstructionData, type DisableDomainConfigInstructionDataArgs, type DisableDomainConfigInstructionExtraArgs, type DomainConfig, type DomainConfigArgs, EDIT_DOMAIN_CONFIG_DISCRIMINATOR, EDIT_TRANSACTION_MANAGER_URL_DISCRIMINATOR, type EditDomainConfigAsyncInput, type EditDomainConfigInput, type EditDomainConfigInstruction, type EditDomainConfigInstructionData, type EditDomainConfigInstructionDataArgs, type EditDomainConfigInstructionExtraArgs, type EditMemberArgs$1 as EditMemberArgs, type EditMemberArgsArgs, type EditTransactionManagerUrlInput, type EditTransactionManagerUrlInstruction, type EditTransactionManagerUrlInstructionData, type EditTransactionManagerUrlInstructionDataArgs, type EditTransactionManagerUrlInstructionExtraArgs, type ExpectedSecp256r1Signers, type ExpectedSecp256r1SignersArgs, GLOBAL_COUNTER_DISCRIMINATOR, type GlobalCounter, type GlobalCounterArgs, type IKeyType, type IPermission, type IPermissions, type JitoTipsConfig, KeyType, type LinkWalletArgs, type LinkWalletArgsArgs, MIGRATE_COMPRESSED_SETTINGS_DISCRIMINATOR, MIGRATE_COMPRESSED_USERS_DISCRIMINATOR, MULTI_WALLET_ERROR__ALREADY_DELEGATED, MULTI_WALLET_ERROR__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, getExpectedSecp256r1SignersCodec, getExpectedSecp256r1SignersDecoder, getExpectedSecp256r1SignersEncoder, getFeePayer, getGlobalAdditonalInfo, 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, getSignedTransactionManager, getSolanaRpc, getSolanaRpcEndpoint, getTokenTransferIntentCompressedDiscriminatorBytes, getTokenTransferIntentCompressedInstruction, getTokenTransferIntentCompressedInstructionAsync, getTokenTransferIntentCompressedInstructionDataCodec, getTokenTransferIntentCompressedInstructionDataDecoder, getTokenTransferIntentCompressedInstructionDataEncoder, getTokenTransferIntentDiscriminatorBytes, getTokenTransferIntentInstruction, getTokenTransferIntentInstructionAsync, getTokenTransferIntentInstructionDataCodec, getTokenTransferIntentInstructionDataDecoder, getTokenTransferIntentInstructionDataEncoder, getTransactionBufferAddress, getTransactionBufferCloseCompressedDiscriminatorBytes, getTransactionBufferCloseCompressedInstruction, getTransactionBufferCloseCompressedInstructionDataCodec, getTransactionBufferCloseCompressedInstructionDataDecoder, getTransactionBufferCloseCompressedInstructionDataEncoder, getTransactionBufferCloseDiscriminatorBytes, getTransactionBufferCloseInstruction, getTransactionBufferCloseInstructionDataCodec, getTransactionBufferCloseInstructionDataDecoder, getTransactionBufferCloseInstructionDataEncoder, getTransactionBufferCodec, getTransactionBufferCreateArgsCodec, getTransactionBufferCreateArgsDecoder, getTransactionBufferCreateArgsEncoder, getTransactionBufferCreateCompressedDiscriminatorBytes, getTransactionBufferCreateCompressedInstruction, getTransactionBufferCreateCompressedInstructionDataCodec, getTransactionBufferCreateCompressedInstructionDataDecoder, getTransactionBufferCreateCompressedInstructionDataEncoder, getTransactionBufferCreateDiscriminatorBytes, getTransactionBufferCreateInstruction, getTransactionBufferCreateInstructionDataCodec, getTransactionBufferCreateInstructionDataDecoder, getTransactionBufferCreateInstructionDataEncoder, getTransactionBufferDecoder, getTransactionBufferDiscriminatorBytes, getTransactionBufferEncoder, getTransactionBufferExecuteCompressedDiscriminatorBytes, getTransactionBufferExecuteCompressedInstruction, getTransactionBufferExecuteCompressedInstructionDataCodec, getTransactionBufferExecuteCompressedInstructionDataDecoder, getTransactionBufferExecuteCompressedInstructionDataEncoder, getTransactionBufferExecuteDiscriminatorBytes, getTransactionBufferExecuteInstruction, getTransactionBufferExecuteInstructionDataCodec, getTransactionBufferExecuteInstructionDataDecoder, getTransactionBufferExecuteInstructionDataEncoder, getTransactionBufferExtendCompressedDiscriminatorBytes, getTransactionBufferExtendCompressedInstruction, getTransactionBufferExtendCompressedInstructionDataCodec, getTransactionBufferExtendCompressedInstructionDataDecoder, getTransactionBufferExtendCompressedInstructionDataEncoder, getTransactionBufferExtendDiscriminatorBytes, getTransactionBufferExtendInstruction, getTransactionBufferExtendInstructionDataCodec, getTransactionBufferExtendInstructionDataDecoder, getTransactionBufferExtendInstructionDataEncoder, getTransactionBufferVoteCompressedDiscriminatorBytes, getTransactionBufferVoteCompressedInstruction, getTransactionBufferVoteCompressedInstructionDataCodec, getTransactionBufferVoteCompressedInstructionDataDecoder, getTransactionBufferVoteCompressedInstructionDataEncoder, getTransactionBufferVoteDiscriminatorBytes, getTransactionBufferVoteInstruction, getTransactionBufferVoteInstructionDataCodec, getTransactionBufferVoteInstructionDataDecoder, getTransactionBufferVoteInstructionDataEncoder, getTransactionExecuteCompressedDiscriminatorBytes, getTransactionExecuteCompressedInstruction, getTransactionExecuteCompressedInstructionDataCodec, getTransactionExecuteCompressedInstructionDataDecoder, getTransactionExecuteCompressedInstructionDataEncoder, getTransactionExecuteDiscriminatorBytes, getTransactionExecuteInstruction, getTransactionExecuteInstructionDataCodec, getTransactionExecuteInstructionDataDecoder, getTransactionExecuteInstructionDataEncoder, getTransactionExecuteSyncCompressedDiscriminatorBytes, getTransactionExecuteSyncCompressedInstruction, getTransactionExecuteSyncCompressedInstructionDataCodec, getTransactionExecuteSyncCompressedInstructionDataDecoder, getTransactionExecuteSyncCompressedInstructionDataEncoder, getTransactionExecuteSyncDiscriminatorBytes, getTransactionExecuteSyncInstruction, getTransactionExecuteSyncInstructionDataCodec, getTransactionExecuteSyncInstructionDataDecoder, getTransactionExecuteSyncInstructionDataEncoder, getTransactionMessageAddressTableLookupCodec, getTransactionMessageAddressTableLookupDecoder, getTransactionMessageAddressTableLookupEncoder, getTransactionMessageCodec, getTransactionMessageDecoder, getTransactionMessageEncoder, getUserAccountAddress, getUserCodec, getUserCreationArgsCodec, getUserCreationArgsDecoder, getUserCreationArgsEncoder, getUserDecoder, getUserEncoder, getUserMutArgsCodec, getUserMutArgsDecoder, getUserMutArgsEncoder, getUserReadOnlyArgsCodec, getUserReadOnlyArgsDecoder, getUserReadOnlyArgsEncoder, getUserReadOnlyOrMutateArgsCodec, getUserReadOnlyOrMutateArgsDecoder, getUserReadOnlyOrMutateArgsEncoder, getUserRoleCodec, getUserRoleDecoder, getUserRoleEncoder, getWalletAddressFromIndex, getWalletAddressFromSettings, getWhitelistedAddressTreeCodec, getWhitelistedAddressTreeDecoder, getWhitelistedAddressTreeDiscriminatorBytes, getWhitelistedAddressTreeEncoder, getWhitelistedAddressTreeFromIndex, getWhitelistedAddressTreeIndexFromAddress, getWhitelistedAddressTreesAddress, identifyMultiWalletAccount, identifyMultiWalletInstruction, initialize, isConfigAction, isMultiWalletError, isUserReadOnlyOrMutateArgs, migrateSettings, migrateUsers, nativeTransferIntent, parseAddWhitelistedAddressTreesInstruction, parseChangeConfigCompressedInstruction, parseChangeConfigInstruction, parseCompressSettingsAccountInstruction, parseCreateDomainConfigInstruction, parseCreateDomainUserAccountInstruction, parseCreateGlobalCounterInstruction, parseCreateMultiWalletCompressedInstruction, parseCreateUserAccountsInstruction, parseDecompressSettingsAccountInstruction, parseDisableDomainConfigInstruction, parseEditDomainConfigInstruction, parseEditTransactionManagerUrlInstruction, parseMigrateCompressedSettingsInstruction, parseMigrateCompressedUsersInstruction, parseNativeTransferIntentCompressedInstruction, parseNativeTransferIntentInstruction, parseSecp256r1VerifyInstruction, parseTokenTransferIntentCompressedInstruction, parseTokenTransferIntentInstruction, parseTransactionBufferCloseCompressedInstruction, parseTransactionBufferCloseInstruction, parseTransactionBufferCreateCompressedInstruction, parseTransactionBufferCreateInstruction, parseTransactionBufferExecuteCompressedInstruction, parseTransactionBufferExecuteInstruction, parseTransactionBufferExtendCompressedInstruction, parseTransactionBufferExtendInstruction, parseTransactionBufferVoteCompressedInstruction, parseTransactionBufferVoteInstruction, parseTransactionExecuteCompressedInstruction, parseTransactionExecuteInstruction, parseTransactionExecuteSyncCompressedInstruction, parseTransactionExecuteSyncInstruction, pollJitoBundleConfirmation, prepareTransactionBundle, prepareTransactionMessage, prepareTransactionSync, retrieveTransactionManager, sendJitoBundle, signAndSendBundledTransactions, signAndSendTransaction, signMessageWithPasskey, signTransactionWithPasskey, tokenTransferIntent, uninitialize, userReadOnlyOrMutateArgs, vaultTransactionMessageDeserialize, vaultTransactionMessageSerialize, verifyMessage, verifyTransactionAuthResponseWithMessageHash, voteTransactionBuffer };
3397
+ export { ADD_WHITELISTED_ADDRESS_TREES_DISCRIMINATOR, type AddMemberArgs$1 as AddMemberArgs, type AddMemberArgsArgs, type AddWhitelistedAddressTreesAsyncInput, type AddWhitelistedAddressTreesInput, type AddWhitelistedAddressTreesInstruction, type AddWhitelistedAddressTreesInstructionData, type AddWhitelistedAddressTreesInstructionDataArgs, type AddWhitelistedAddressTreesInstructionExtraArgs, type BasePayload, CHANGE_CONFIG_COMPRESSED_DISCRIMINATOR, CHANGE_CONFIG_DISCRIMINATOR, COMPRESS_SETTINGS_ACCOUNT_DISCRIMINATOR, CREATE_DOMAIN_CONFIG_DISCRIMINATOR, CREATE_DOMAIN_USER_ACCOUNT_DISCRIMINATOR, CREATE_GLOBAL_COUNTER_DISCRIMINATOR, CREATE_MULTI_WALLET_COMPRESSED_DISCRIMINATOR, CREATE_USER_ACCOUNTS_DISCRIMINATOR, type ChangeConfigAsyncInput, type ChangeConfigCompressedInput, type ChangeConfigCompressedInstruction, type ChangeConfigCompressedInstructionData, type ChangeConfigCompressedInstructionDataArgs, type ChangeConfigCompressedInstructionExtraArgs, type ChangeConfigInput, type ChangeConfigInstruction, type ChangeConfigInstructionData, type ChangeConfigInstructionDataArgs, type ChangeConfigInstructionExtraArgs, type CompiledInstruction, type CompiledInstructionArgs, type CompressSettingsAccountInput, type CompressSettingsAccountInstruction, type CompressSettingsAccountInstructionData, type CompressSettingsAccountInstructionDataArgs, type CompressSettingsAccountInstructionExtraArgs, type CompressedAccountMeta, type CompressedAccountMetaArgs, type CompressedAccountMetaReadOnly, type CompressedAccountMetaReadOnlyArgs, type CompressedProof, type CompressedProofArgs, type CompressedSettings, type CompressedSettingsArgs, type CompressedSettingsData, type CompressedSettingsDataArgs, type ConfigAction, type ConfigActionArgs, type ConfigurationArgs, type CreateDomainConfigAsyncInput, type CreateDomainConfigInput, type CreateDomainConfigInstruction, type CreateDomainConfigInstructionData, type CreateDomainConfigInstructionDataArgs, type CreateDomainConfigInstructionExtraArgs, type CreateDomainUserAccountAsyncInput, type CreateDomainUserAccountInput, type CreateDomainUserAccountInstruction, type CreateDomainUserAccountInstructionData, type CreateDomainUserAccountInstructionDataArgs, type CreateDomainUserAccountInstructionExtraArgs, type CreateGlobalCounterAsyncInput, type CreateGlobalCounterInput, type CreateGlobalCounterInstruction, type CreateGlobalCounterInstructionData, type CreateGlobalCounterInstructionDataArgs, type CreateGlobalCounterInstructionExtraArgs, type CreateMultiWalletCompressedAsyncInput, type CreateMultiWalletCompressedInput, type CreateMultiWalletCompressedInstruction, type CreateMultiWalletCompressedInstructionData, type CreateMultiWalletCompressedInstructionDataArgs, type CreateMultiWalletCompressedInstructionExtraArgs, type CreateUserAccountArgs, type CreateUserAccountArgsArgs, type CreateUserAccountsAsyncInput, type CreateUserAccountsInput, type CreateUserAccountsInstruction, type CreateUserAccountsInstructionData, type CreateUserAccountsInstructionDataArgs, type CreateUserAccountsInstructionExtraArgs, DECOMPRESS_SETTINGS_ACCOUNT_DISCRIMINATOR, DISABLE_DOMAIN_CONFIG_DISCRIMINATOR, DOMAIN_CONFIG_DISCRIMINATOR, type DecompressSettingsAccountInput, type DecompressSettingsAccountInstruction, type DecompressSettingsAccountInstructionData, type DecompressSettingsAccountInstructionDataArgs, type DecompressSettingsAccountInstructionExtraArgs, DelegateOp, type DelegateOpArgs, type DisableDomainConfigInput, type DisableDomainConfigInstruction, type DisableDomainConfigInstructionData, type DisableDomainConfigInstructionDataArgs, type DisableDomainConfigInstructionExtraArgs, type DomainConfig, type DomainConfigArgs, EDIT_DOMAIN_CONFIG_DISCRIMINATOR, EDIT_TRANSACTION_MANAGER_URL_DISCRIMINATOR, type EditDomainConfigAsyncInput, type EditDomainConfigInput, type EditDomainConfigInstruction, type EditDomainConfigInstructionData, type EditDomainConfigInstructionDataArgs, type EditDomainConfigInstructionExtraArgs, type EditMemberArgs$1 as EditMemberArgs, type EditMemberArgsArgs, type EditTransactionManagerUrlInput, type EditTransactionManagerUrlInstruction, type EditTransactionManagerUrlInstructionData, type EditTransactionManagerUrlInstructionDataArgs, type EditTransactionManagerUrlInstructionExtraArgs, type ExpectedSecp256r1Signers, type ExpectedSecp256r1SignersArgs, GLOBAL_COUNTER_DISCRIMINATOR, type GlobalCounter, type GlobalCounterArgs, type IKeyType, type IPermission, type IPermissions, type JitoTipsConfig, KeyType, type LinkWalletArgs, type LinkWalletArgsArgs, MIGRATE_COMPRESSED_SETTINGS_DISCRIMINATOR, MIGRATE_COMPRESSED_USERS_DISCRIMINATOR, MULTI_WALLET_ERROR__ALREADY_DELEGATED, MULTI_WALLET_ERROR__CLIENT_DATA_HASH_MISMATCH, MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_DISABLED, MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_MISSING, MULTI_WALLET_ERROR__DUPLICATE_MEMBER, MULTI_WALLET_ERROR__DURABLE_NONCE_DETECTED, MULTI_WALLET_ERROR__EMPTY_MEMBERS, MULTI_WALLET_ERROR__EXPECTED_ADMINISTRATOR_ROLE_MISMATCH, MULTI_WALLET_ERROR__EXPECTED_MESSAGE_HASH_MISMATCH, MULTI_WALLET_ERROR__EXPECTED_TRANSACTION_MANAGER_ROLE_MISMATCH, MULTI_WALLET_ERROR__FINAL_BUFFER_HASH_MISMATCH, MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_EXCEEDED, MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_MISMATCH, MULTI_WALLET_ERROR__INSUFFICIENT_SIGNERS_WITH_VOTE_PERMISSION, MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_EXECUTE_PERMISSION, MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_INITIATE_PERMISSION, MULTI_WALLET_ERROR__INVALID_ACCOUNT, MULTI_WALLET_ERROR__INVALID_ADDRESS_TREE, MULTI_WALLET_ERROR__INVALID_ADMINISTRATOR_CONFIG, MULTI_WALLET_ERROR__INVALID_ARGUMENTS, MULTI_WALLET_ERROR__INVALID_BUFFER, MULTI_WALLET_ERROR__INVALID_NUMBER_OF_ACCOUNTS, MULTI_WALLET_ERROR__INVALID_SECP256R1_INSTRUCTION, MULTI_WALLET_ERROR__INVALID_SECP256R1_PUBLIC_KEY, MULTI_WALLET_ERROR__INVALID_SECP256R1_VERIFY_ARG, MULTI_WALLET_ERROR__INVALID_SIGNATURE_OFFSETS, MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT, MULTI_WALLET_ERROR__INVALID_THRESHOLD, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_CONFIG, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_PERMISSION, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MESSAGE, MULTI_WALLET_ERROR__INVALID_USER_ROLE, MULTI_WALLET_ERROR__MALFORMED_SIGNED_MESSAGE, MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED, MULTI_WALLET_ERROR__MEMBER_DOES_NOT_BELONG_TO_DOMAIN_CONFIG, MULTI_WALLET_ERROR__MISSING_ACCOUNT, MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY, MULTI_WALLET_ERROR__MISSING_USER_ARGS, MULTI_WALLET_ERROR__NO_SIGNER_FOUND, MULTI_WALLET_ERROR__ONLY_ONE_PERMANENT_MEMBER_ALLOWED, MULTI_WALLET_ERROR__ONLY_ONE_TRANSACTION_MANAGER_ALLOWED, MULTI_WALLET_ERROR__ORIGIN_INDEX_OUT_OF_BOUNDS, MULTI_WALLET_ERROR__PERMANENT_MEMBER, MULTI_WALLET_ERROR__PROTECTED_ACCOUNT, MULTI_WALLET_ERROR__RP_ID_HASH_MISMATCH, MULTI_WALLET_ERROR__SIGNATURE_INDEX_OUT_OF_BOUNDS, MULTI_WALLET_ERROR__SLOT_NUMBER_NOT_FOUND, MULTI_WALLET_ERROR__TOO_MANY_MEMBERS, MULTI_WALLET_ERROR__TRANSACTION_HAS_EXPIRED, MULTI_WALLET_ERROR__TRANSACTION_NOT_APPROVED, MULTI_WALLET_ERROR__UNAUTHORISED_TO_CLOSE_TRANSACTION_BUFFER, MULTI_WALLET_ERROR__UNEXPECTED_SIGNER, MULTI_WALLET_PROGRAM_ADDRESS, type Member, type MemberArgs, type MemberKey, type MemberKeyArgs, type MessageAuthenticationResponse, type MessagePayload, type MigrateCompressedSettingsInput, type MigrateCompressedSettingsInstruction, type MigrateCompressedSettingsInstructionData, type MigrateCompressedSettingsInstructionDataArgs, type MigrateCompressedSettingsInstructionExtraArgs, type MigrateCompressedUsersInput, type MigrateCompressedUsersInstruction, type MigrateCompressedUsersInstructionData, type MigrateCompressedUsersInstructionDataArgs, type MigrateCompressedUsersInstructionExtraArgs, MultiWalletAccount, type MultiWalletError, MultiWalletInstruction, NATIVE_TRANSFER_INTENT_COMPRESSED_DISCRIMINATOR, NATIVE_TRANSFER_INTENT_DISCRIMINATOR, type NativeTransferIntentAsyncInput, type NativeTransferIntentCompressedInput, type NativeTransferIntentCompressedInstruction, type NativeTransferIntentCompressedInstructionData, type NativeTransferIntentCompressedInstructionDataArgs, type NativeTransferIntentCompressedInstructionExtraArgs, type NativeTransferIntentInput, type NativeTransferIntentInstruction, type NativeTransferIntentInstructionData, type NativeTransferIntentInstructionDataArgs, type NativeTransferIntentInstructionExtraArgs, type NewAuthorityArgs, type NewAuthorityArgsArgs, type PackedAddressTreeInfo, type PackedAddressTreeInfoArgs, type PackedStateTreeInfo, type PackedStateTreeInfoArgs, type ParsedAddWhitelistedAddressTreesInstruction, type ParsedChangeConfigCompressedInstruction, type ParsedChangeConfigInstruction, type ParsedCompressSettingsAccountInstruction, type ParsedCreateDomainConfigInstruction, type ParsedCreateDomainUserAccountInstruction, type ParsedCreateGlobalCounterInstruction, type ParsedCreateMultiWalletCompressedInstruction, type ParsedCreateUserAccountsInstruction, type ParsedDecompressSettingsAccountInstruction, type ParsedDisableDomainConfigInstruction, type ParsedEditDomainConfigInstruction, type ParsedEditTransactionManagerUrlInstruction, type ParsedMigrateCompressedSettingsInstruction, type ParsedMigrateCompressedUsersInstruction, type ParsedMultiWalletInstruction, type ParsedNativeTransferIntentCompressedInstruction, type ParsedNativeTransferIntentInstruction, type ParsedSecp256r1VerifyInstruction, type ParsedTokenTransferIntentCompressedInstruction, type ParsedTokenTransferIntentInstruction, type ParsedTransactionBufferCloseCompressedInstruction, type ParsedTransactionBufferCloseInstruction, type ParsedTransactionBufferCreateCompressedInstruction, type ParsedTransactionBufferCreateInstruction, type ParsedTransactionBufferExecuteCompressedInstruction, type ParsedTransactionBufferExecuteInstruction, type ParsedTransactionBufferExtendCompressedInstruction, type ParsedTransactionBufferExtendInstruction, type ParsedTransactionBufferVoteCompressedInstruction, type ParsedTransactionBufferVoteInstruction, type ParsedTransactionExecuteCompressedInstruction, type ParsedTransactionExecuteInstruction, type ParsedTransactionExecuteSyncCompressedInstruction, type ParsedTransactionExecuteSyncInstruction, Permission, type PermissionArgs, Permissions, type PermissionsArgs, type ProofArgs, type ProofArgsArgs, type RemoveMemberArgs$1 as RemoveMemberArgs, type RemoveMemberArgsArgs, SETTINGS_DISCRIMINATOR, Secp256r1Key, type Secp256r1Pubkey, type Secp256r1PubkeyArgs, type Secp256r1SignatureOffsetsDataArgs, type Secp256r1VerifyArgs, type Secp256r1VerifyArgsArgs, type Secp256r1VerifyArgsWithDomainAddress, type Secp256r1VerifyArgsWithDomainAddressArgs, type Secp256r1VerifyInput, type Secp256r1VerifyInstruction, type Secp256r1VerifyInstructionData, type Secp256r1VerifyInstructionDataArgs, type Settings, type SettingsArgs, type SettingsCreationArgs, type SettingsCreationArgsArgs, type SettingsIndexWithAddress, type SettingsIndexWithAddressArgs, type SettingsMutArgs, type SettingsMutArgsArgs, type SettingsReadonlyArgs, type SettingsReadonlyArgsArgs, SignedSecp256r1Key, TOKEN_TRANSFER_INTENT_COMPRESSED_DISCRIMINATOR, TOKEN_TRANSFER_INTENT_DISCRIMINATOR, TRANSACTION_BUFFER_CLOSE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_CLOSE_DISCRIMINATOR, TRANSACTION_BUFFER_CREATE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_CREATE_DISCRIMINATOR, TRANSACTION_BUFFER_DISCRIMINATOR, TRANSACTION_BUFFER_EXECUTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_EXECUTE_DISCRIMINATOR, TRANSACTION_BUFFER_EXTEND_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_EXTEND_DISCRIMINATOR, TRANSACTION_BUFFER_VOTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_VOTE_DISCRIMINATOR, TRANSACTION_EXECUTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_EXECUTE_DISCRIMINATOR, TRANSACTION_EXECUTE_SYNC_COMPRESSED_DISCRIMINATOR, TRANSACTION_EXECUTE_SYNC_DISCRIMINATOR, type TokenTransferIntentAsyncInput, type TokenTransferIntentCompressedAsyncInput, type TokenTransferIntentCompressedInput, type TokenTransferIntentCompressedInstruction, type TokenTransferIntentCompressedInstructionData, type TokenTransferIntentCompressedInstructionDataArgs, type TokenTransferIntentCompressedInstructionExtraArgs, type TokenTransferIntentInput, type TokenTransferIntentInstruction, type TokenTransferIntentInstructionData, type TokenTransferIntentInstructionDataArgs, type TokenTransferIntentInstructionExtraArgs, type TransactionActionType, type TransactionAuthDetails, type 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, getExpectedSecp256r1SignersCodec, getExpectedSecp256r1SignersDecoder, getExpectedSecp256r1SignersEncoder, getFeePayer, getGlobalAdditonalInfo, 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, getSignedTransactionManager, getSolanaRpc, getSolanaRpcEndpoint, getTokenTransferIntentCompressedDiscriminatorBytes, getTokenTransferIntentCompressedInstruction, getTokenTransferIntentCompressedInstructionAsync, getTokenTransferIntentCompressedInstructionDataCodec, getTokenTransferIntentCompressedInstructionDataDecoder, getTokenTransferIntentCompressedInstructionDataEncoder, getTokenTransferIntentDiscriminatorBytes, getTokenTransferIntentInstruction, getTokenTransferIntentInstructionAsync, getTokenTransferIntentInstructionDataCodec, getTokenTransferIntentInstructionDataDecoder, getTokenTransferIntentInstructionDataEncoder, getTransactionBufferAddress, getTransactionBufferCloseCompressedDiscriminatorBytes, getTransactionBufferCloseCompressedInstruction, getTransactionBufferCloseCompressedInstructionDataCodec, getTransactionBufferCloseCompressedInstructionDataDecoder, getTransactionBufferCloseCompressedInstructionDataEncoder, getTransactionBufferCloseDiscriminatorBytes, getTransactionBufferCloseInstruction, getTransactionBufferCloseInstructionDataCodec, getTransactionBufferCloseInstructionDataDecoder, getTransactionBufferCloseInstructionDataEncoder, getTransactionBufferCodec, getTransactionBufferCreateArgsCodec, getTransactionBufferCreateArgsDecoder, getTransactionBufferCreateArgsEncoder, getTransactionBufferCreateCompressedDiscriminatorBytes, getTransactionBufferCreateCompressedInstruction, getTransactionBufferCreateCompressedInstructionDataCodec, getTransactionBufferCreateCompressedInstructionDataDecoder, getTransactionBufferCreateCompressedInstructionDataEncoder, getTransactionBufferCreateDiscriminatorBytes, getTransactionBufferCreateInstruction, getTransactionBufferCreateInstructionDataCodec, getTransactionBufferCreateInstructionDataDecoder, getTransactionBufferCreateInstructionDataEncoder, getTransactionBufferDecoder, getTransactionBufferDiscriminatorBytes, getTransactionBufferEncoder, getTransactionBufferExecuteCompressedDiscriminatorBytes, getTransactionBufferExecuteCompressedInstruction, getTransactionBufferExecuteCompressedInstructionDataCodec, getTransactionBufferExecuteCompressedInstructionDataDecoder, getTransactionBufferExecuteCompressedInstructionDataEncoder, getTransactionBufferExecuteDiscriminatorBytes, getTransactionBufferExecuteInstruction, getTransactionBufferExecuteInstructionDataCodec, getTransactionBufferExecuteInstructionDataDecoder, getTransactionBufferExecuteInstructionDataEncoder, getTransactionBufferExtendCompressedDiscriminatorBytes, getTransactionBufferExtendCompressedInstruction, getTransactionBufferExtendCompressedInstructionDataCodec, getTransactionBufferExtendCompressedInstructionDataDecoder, getTransactionBufferExtendCompressedInstructionDataEncoder, getTransactionBufferExtendDiscriminatorBytes, getTransactionBufferExtendInstruction, getTransactionBufferExtendInstructionDataCodec, getTransactionBufferExtendInstructionDataDecoder, getTransactionBufferExtendInstructionDataEncoder, getTransactionBufferVoteCompressedDiscriminatorBytes, getTransactionBufferVoteCompressedInstruction, getTransactionBufferVoteCompressedInstructionDataCodec, getTransactionBufferVoteCompressedInstructionDataDecoder, getTransactionBufferVoteCompressedInstructionDataEncoder, getTransactionBufferVoteDiscriminatorBytes, getTransactionBufferVoteInstruction, getTransactionBufferVoteInstructionDataCodec, getTransactionBufferVoteInstructionDataDecoder, getTransactionBufferVoteInstructionDataEncoder, getTransactionExecuteCompressedDiscriminatorBytes, getTransactionExecuteCompressedInstruction, getTransactionExecuteCompressedInstructionDataCodec, getTransactionExecuteCompressedInstructionDataDecoder, getTransactionExecuteCompressedInstructionDataEncoder, getTransactionExecuteDiscriminatorBytes, getTransactionExecuteInstruction, getTransactionExecuteInstructionDataCodec, getTransactionExecuteInstructionDataDecoder, getTransactionExecuteInstructionDataEncoder, getTransactionExecuteSyncCompressedDiscriminatorBytes, getTransactionExecuteSyncCompressedInstruction, getTransactionExecuteSyncCompressedInstructionDataCodec, getTransactionExecuteSyncCompressedInstructionDataDecoder, getTransactionExecuteSyncCompressedInstructionDataEncoder, getTransactionExecuteSyncDiscriminatorBytes, getTransactionExecuteSyncInstruction, getTransactionExecuteSyncInstructionDataCodec, getTransactionExecuteSyncInstructionDataDecoder, getTransactionExecuteSyncInstructionDataEncoder, getTransactionMessageAddressTableLookupCodec, getTransactionMessageAddressTableLookupDecoder, getTransactionMessageAddressTableLookupEncoder, getTransactionMessageCodec, getTransactionMessageDecoder, getTransactionMessageEncoder, getUserAccountAddress, getUserCodec, getUserCreationArgsCodec, getUserCreationArgsDecoder, getUserCreationArgsEncoder, getUserDecoder, getUserEncoder, getUserMutArgsCodec, getUserMutArgsDecoder, getUserMutArgsEncoder, getUserReadOnlyArgsCodec, getUserReadOnlyArgsDecoder, getUserReadOnlyArgsEncoder, getUserReadOnlyOrMutateArgsCodec, getUserReadOnlyOrMutateArgsDecoder, getUserReadOnlyOrMutateArgsEncoder, getUserRoleCodec, getUserRoleDecoder, getUserRoleEncoder, getWalletAddressFromIndex, getWalletAddressFromSettings, getWhitelistedAddressTreeCodec, getWhitelistedAddressTreeDecoder, getWhitelistedAddressTreeDiscriminatorBytes, getWhitelistedAddressTreeEncoder, getWhitelistedAddressTreeFromIndex, getWhitelistedAddressTreeIndexFromAddress, getWhitelistedAddressTreesAddress, identifyMultiWalletAccount, identifyMultiWalletInstruction, initialize, isConfigAction, isMultiWalletError, isUserReadOnlyOrMutateArgs, migrateSettings, migrateUsers, nativeTransferIntent, parseAddWhitelistedAddressTreesInstruction, parseChangeConfigCompressedInstruction, parseChangeConfigInstruction, parseCompressSettingsAccountInstruction, parseCreateDomainConfigInstruction, parseCreateDomainUserAccountInstruction, parseCreateGlobalCounterInstruction, parseCreateMultiWalletCompressedInstruction, parseCreateUserAccountsInstruction, parseDecompressSettingsAccountInstruction, parseDisableDomainConfigInstruction, parseEditDomainConfigInstruction, parseEditTransactionManagerUrlInstruction, parseMigrateCompressedSettingsInstruction, parseMigrateCompressedUsersInstruction, parseNativeTransferIntentCompressedInstruction, parseNativeTransferIntentInstruction, parseSecp256r1VerifyInstruction, parseTokenTransferIntentCompressedInstruction, parseTokenTransferIntentInstruction, parseTransactionBufferCloseCompressedInstruction, parseTransactionBufferCloseInstruction, parseTransactionBufferCreateCompressedInstruction, parseTransactionBufferCreateInstruction, parseTransactionBufferExecuteCompressedInstruction, parseTransactionBufferExecuteInstruction, parseTransactionBufferExtendCompressedInstruction, parseTransactionBufferExtendInstruction, parseTransactionBufferVoteCompressedInstruction, parseTransactionBufferVoteInstruction, parseTransactionExecuteCompressedInstruction, parseTransactionExecuteInstruction, parseTransactionExecuteSyncCompressedInstruction, parseTransactionExecuteSyncInstruction, pollJitoBundleConfirmation, prepareTransactionBundle, prepareTransactionMessage, prepareTransactionSync, retrieveTransactionManager, sendJitoBundle, signAndSendBundledTransactions, signAndSendTransaction, signMessageWithPasskey, signTransactionWithPasskey, tokenTransferIntent, uninitialize, userReadOnlyOrMutateArgs, vaultTransactionMessageDeserialize, vaultTransactionMessageSerialize, verifyMessage, verifyTransactionAuthResponseWithMessageHash, voteTransactionBuffer };