@revibase/core 0.7.2 → 0.7.3

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.
Files changed (389) hide show
  1. package/README.md +10 -12
  2. package/dist/constants.d.ts +1 -0
  3. package/dist/constants.js +11 -0
  4. package/dist/constants.js.map +1 -0
  5. package/dist/errors/index.d.ts +29 -0
  6. package/dist/errors/index.js +56 -0
  7. package/dist/errors/index.js.map +1 -0
  8. package/dist/generated/accounts/domainConfig.d.ts +34 -0
  9. package/dist/generated/accounts/domainConfig.js +61 -0
  10. package/dist/generated/accounts/domainConfig.js.map +1 -0
  11. package/dist/generated/accounts/globalCounter.d.ts +20 -0
  12. package/dist/generated/accounts/globalCounter.js +47 -0
  13. package/dist/generated/accounts/globalCounter.js.map +1 -0
  14. package/dist/generated/accounts/index.d.ts +5 -0
  15. package/dist/generated/accounts/index.js +6 -0
  16. package/dist/generated/accounts/index.js.map +1 -0
  17. package/dist/generated/accounts/settings.d.ts +32 -0
  18. package/dist/generated/accounts/settings.js +57 -0
  19. package/dist/generated/accounts/settings.js.map +1 -0
  20. package/dist/generated/accounts/transactionBuffer.d.ts +50 -0
  21. package/dist/generated/accounts/transactionBuffer.js +81 -0
  22. package/dist/generated/accounts/transactionBuffer.js.map +1 -0
  23. package/dist/generated/accounts/user.d.ts +34 -0
  24. package/dist/generated/accounts/user.js +71 -0
  25. package/dist/generated/accounts/user.js.map +1 -0
  26. package/dist/generated/errors/index.d.ts +1 -0
  27. package/dist/generated/errors/index.js +2 -0
  28. package/dist/generated/errors/index.js.map +1 -0
  29. package/dist/generated/errors/multiWallet.d.ts +87 -0
  30. package/dist/generated/errors/multiWallet.js +167 -0
  31. package/dist/generated/errors/multiWallet.js.map +1 -0
  32. package/dist/generated/index.d.ts +5 -0
  33. package/dist/generated/index.js +6 -0
  34. package/dist/generated/index.js.map +1 -0
  35. package/dist/generated/instructions/changeConfig.d.ts +56 -0
  36. package/dist/generated/instructions/changeConfig.js +97 -0
  37. package/dist/generated/instructions/changeConfig.js.map +1 -0
  38. package/dist/generated/instructions/createDomainConfig.d.ts +68 -0
  39. package/dist/generated/instructions/createDomainConfig.js +128 -0
  40. package/dist/generated/instructions/createDomainConfig.js.map +1 -0
  41. package/dist/generated/instructions/createDomainUserAccount.d.ts +68 -0
  42. package/dist/generated/instructions/createDomainUserAccount.js +105 -0
  43. package/dist/generated/instructions/createDomainUserAccount.js.map +1 -0
  44. package/dist/generated/instructions/createGlobalCounter.d.ts +51 -0
  45. package/dist/generated/instructions/createGlobalCounter.js +105 -0
  46. package/dist/generated/instructions/createGlobalCounter.js.map +1 -0
  47. package/dist/generated/instructions/createUserAccount.d.ts +65 -0
  48. package/dist/generated/instructions/createUserAccount.js +121 -0
  49. package/dist/generated/instructions/createUserAccount.js.map +1 -0
  50. package/dist/generated/instructions/createWallet.d.ts +68 -0
  51. package/dist/generated/instructions/createWallet.js +143 -0
  52. package/dist/generated/instructions/createWallet.js.map +1 -0
  53. package/dist/generated/instructions/disableDomainConfig.d.ts +43 -0
  54. package/dist/generated/instructions/disableDomainConfig.js +64 -0
  55. package/dist/generated/instructions/disableDomainConfig.js.map +1 -0
  56. package/dist/generated/instructions/editDomainConfig.d.ts +52 -0
  57. package/dist/generated/instructions/editDomainConfig.js +89 -0
  58. package/dist/generated/instructions/editDomainConfig.js.map +1 -0
  59. package/dist/generated/instructions/editTransactionManagerUrl.d.ts +52 -0
  60. package/dist/generated/instructions/editTransactionManagerUrl.js +109 -0
  61. package/dist/generated/instructions/editTransactionManagerUrl.js.map +1 -0
  62. package/dist/generated/instructions/editUserDelegate.d.ts +65 -0
  63. package/dist/generated/instructions/editUserDelegate.js +105 -0
  64. package/dist/generated/instructions/editUserDelegate.js.map +1 -0
  65. package/dist/generated/instructions/index.d.ts +19 -0
  66. package/dist/generated/instructions/index.js +20 -0
  67. package/dist/generated/instructions/index.js.map +1 -0
  68. package/dist/generated/instructions/nativeTransferIntent.d.ts +73 -0
  69. package/dist/generated/instructions/nativeTransferIntent.js +159 -0
  70. package/dist/generated/instructions/nativeTransferIntent.js.map +1 -0
  71. package/dist/generated/instructions/tokenTransferIntent.d.ts +133 -0
  72. package/dist/generated/instructions/tokenTransferIntent.js +349 -0
  73. package/dist/generated/instructions/tokenTransferIntent.js.map +1 -0
  74. package/dist/generated/instructions/transactionBufferClose.d.ts +59 -0
  75. package/dist/generated/instructions/transactionBufferClose.js +106 -0
  76. package/dist/generated/instructions/transactionBufferClose.js.map +1 -0
  77. package/dist/generated/instructions/transactionBufferCreate.d.ts +80 -0
  78. package/dist/generated/instructions/transactionBufferCreate.js +131 -0
  79. package/dist/generated/instructions/transactionBufferCreate.js.map +1 -0
  80. package/dist/generated/instructions/transactionBufferExecute.d.ts +56 -0
  81. package/dist/generated/instructions/transactionBufferExecute.js +103 -0
  82. package/dist/generated/instructions/transactionBufferExecute.js.map +1 -0
  83. package/dist/generated/instructions/transactionBufferExtend.d.ts +43 -0
  84. package/dist/generated/instructions/transactionBufferExtend.js +70 -0
  85. package/dist/generated/instructions/transactionBufferExtend.js.map +1 -0
  86. package/dist/generated/instructions/transactionBufferVote.d.ts +59 -0
  87. package/dist/generated/instructions/transactionBufferVote.js +110 -0
  88. package/dist/generated/instructions/transactionBufferVote.js.map +1 -0
  89. package/dist/generated/instructions/transactionExecute.d.ts +42 -0
  90. package/dist/generated/instructions/transactionExecute.js +66 -0
  91. package/dist/generated/instructions/transactionExecute.js.map +1 -0
  92. package/dist/generated/instructions/transactionExecuteSync.d.ts +65 -0
  93. package/dist/generated/instructions/transactionExecuteSync.js +106 -0
  94. package/dist/generated/instructions/transactionExecuteSync.js.map +1 -0
  95. package/dist/generated/programs/index.d.ts +1 -0
  96. package/dist/generated/programs/index.js +2 -0
  97. package/dist/generated/programs/index.js.map +1 -0
  98. package/dist/generated/programs/multiWallet.d.ts +76 -0
  99. package/dist/generated/programs/multiWallet.js +114 -0
  100. package/dist/generated/programs/multiWallet.js.map +1 -0
  101. package/dist/generated/shared/index.d.ts +14 -0
  102. package/dist/generated/shared/index.js +60 -0
  103. package/dist/generated/shared/index.js.map +1 -0
  104. package/dist/generated/types/accountState.d.ts +9 -0
  105. package/dist/generated/types/accountState.js +16 -0
  106. package/dist/generated/types/accountState.js.map +1 -0
  107. package/dist/generated/types/addMemberArgs.d.ts +13 -0
  108. package/dist/generated/types/addMemberArgs.js +18 -0
  109. package/dist/generated/types/addMemberArgs.js.map +1 -0
  110. package/dist/generated/types/additionalMetadata.d.ts +9 -0
  111. package/dist/generated/types/additionalMetadata.js +17 -0
  112. package/dist/generated/types/additionalMetadata.js.map +1 -0
  113. package/dist/generated/types/compiledInstruction.d.ts +10 -0
  114. package/dist/generated/types/compiledInstruction.js +25 -0
  115. package/dist/generated/types/compiledInstruction.js.map +1 -0
  116. package/dist/generated/types/compressedOnlyExtension.d.ts +14 -0
  117. package/dist/generated/types/compressedOnlyExtension.js +19 -0
  118. package/dist/generated/types/compressedOnlyExtension.js.map +1 -0
  119. package/dist/generated/types/compressedProof.d.ts +10 -0
  120. package/dist/generated/types/compressedProof.js +19 -0
  121. package/dist/generated/types/compressedProof.js.map +1 -0
  122. package/dist/generated/types/compressedTokenArgs.d.ts +21 -0
  123. package/dist/generated/types/compressedTokenArgs.js +26 -0
  124. package/dist/generated/types/compressedTokenArgs.js.map +1 -0
  125. package/dist/generated/types/compressibleExtension.d.ts +19 -0
  126. package/dist/generated/types/compressibleExtension.js +24 -0
  127. package/dist/generated/types/compressibleExtension.js.map +1 -0
  128. package/dist/generated/types/compressionInfo.d.ts +29 -0
  129. package/dist/generated/types/compressionInfo.js +34 -0
  130. package/dist/generated/types/compressionInfo.js.map +1 -0
  131. package/dist/generated/types/configAction.d.ts +38 -0
  132. package/dist/generated/types/configAction.js +84 -0
  133. package/dist/generated/types/configAction.js.map +1 -0
  134. package/dist/generated/types/editMemberArgs.d.ts +13 -0
  135. package/dist/generated/types/editMemberArgs.js +18 -0
  136. package/dist/generated/types/editMemberArgs.js.map +1 -0
  137. package/dist/generated/types/expectedSigner.d.ts +13 -0
  138. package/dist/generated/types/expectedSigner.js +18 -0
  139. package/dist/generated/types/expectedSigner.js.map +1 -0
  140. package/dist/generated/types/extensionStruct.d.ts +189 -0
  141. package/dist/generated/types/extensionStruct.js +164 -0
  142. package/dist/generated/types/extensionStruct.js.map +1 -0
  143. package/dist/generated/types/index.d.ts +34 -0
  144. package/dist/generated/types/index.js +35 -0
  145. package/dist/generated/types/index.js.map +1 -0
  146. package/dist/generated/types/member.d.ts +19 -0
  147. package/dist/generated/types/member.js +24 -0
  148. package/dist/generated/types/member.js.map +1 -0
  149. package/dist/generated/types/memberKey.d.ts +9 -0
  150. package/dist/generated/types/memberKey.js +17 -0
  151. package/dist/generated/types/memberKey.js.map +1 -0
  152. package/dist/generated/types/packedMerkleContext.d.ts +11 -0
  153. package/dist/generated/types/packedMerkleContext.js +21 -0
  154. package/dist/generated/types/packedMerkleContext.js.map +1 -0
  155. package/dist/generated/types/pausableAccountExtension.d.ts +6 -0
  156. package/dist/generated/types/pausableAccountExtension.js +11 -0
  157. package/dist/generated/types/pausableAccountExtension.js.map +1 -0
  158. package/dist/generated/types/permanentDelegateAccountExtension.d.ts +6 -0
  159. package/dist/generated/types/permanentDelegateAccountExtension.js +11 -0
  160. package/dist/generated/types/permanentDelegateAccountExtension.js.map +1 -0
  161. package/dist/generated/types/permissions.d.ts +8 -0
  162. package/dist/generated/types/permissions.js +11 -0
  163. package/dist/generated/types/permissions.js.map +1 -0
  164. package/dist/generated/types/proofArgs.d.ts +13 -0
  165. package/dist/generated/types/proofArgs.js +18 -0
  166. package/dist/generated/types/proofArgs.js.map +1 -0
  167. package/dist/generated/types/removeMemberArgs.d.ts +11 -0
  168. package/dist/generated/types/removeMemberArgs.js +12 -0
  169. package/dist/generated/types/removeMemberArgs.js.map +1 -0
  170. package/dist/generated/types/rentConfig.d.ts +12 -0
  171. package/dist/generated/types/rentConfig.js +23 -0
  172. package/dist/generated/types/rentConfig.js.map +1 -0
  173. package/dist/generated/types/secp256r1Pubkey.d.ts +6 -0
  174. package/dist/generated/types/secp256r1Pubkey.js +11 -0
  175. package/dist/generated/types/secp256r1Pubkey.js.map +1 -0
  176. package/dist/generated/types/secp256r1VerifyArgs.d.ts +20 -0
  177. package/dist/generated/types/secp256r1VerifyArgs.js +31 -0
  178. package/dist/generated/types/secp256r1VerifyArgs.js.map +1 -0
  179. package/dist/generated/types/secp256r1VerifyArgsWithDomainConfigIndex.d.ts +13 -0
  180. package/dist/generated/types/secp256r1VerifyArgsWithDomainConfigIndex.js +18 -0
  181. package/dist/generated/types/secp256r1VerifyArgsWithDomainConfigIndex.js.map +1 -0
  182. package/dist/generated/types/settingsIndexWithDelegateInfo.d.ts +12 -0
  183. package/dist/generated/types/settingsIndexWithDelegateInfo.js +17 -0
  184. package/dist/generated/types/settingsIndexWithDelegateInfo.js.map +1 -0
  185. package/dist/generated/types/splInterfacePdaArgs.d.ts +9 -0
  186. package/dist/generated/types/splInterfacePdaArgs.js +17 -0
  187. package/dist/generated/types/splInterfacePdaArgs.js.map +1 -0
  188. package/dist/generated/types/tokenMetadata.d.ts +21 -0
  189. package/dist/generated/types/tokenMetadata.js +26 -0
  190. package/dist/generated/types/tokenMetadata.js.map +1 -0
  191. package/dist/generated/types/transactionMessageAddressTableLookup.d.ts +10 -0
  192. package/dist/generated/types/transactionMessageAddressTableLookup.js +31 -0
  193. package/dist/generated/types/transactionMessageAddressTableLookup.js.map +1 -0
  194. package/dist/generated/types/transactionSyncSigners.d.ts +24 -0
  195. package/dist/generated/types/transactionSyncSigners.js +52 -0
  196. package/dist/generated/types/transactionSyncSigners.js.map +1 -0
  197. package/dist/generated/types/transferFeeAccountExtension.d.ts +10 -0
  198. package/dist/generated/types/transferFeeAccountExtension.js +11 -0
  199. package/dist/generated/types/transferFeeAccountExtension.js.map +1 -0
  200. package/dist/generated/types/transferHookAccountExtension.d.ts +8 -0
  201. package/dist/generated/types/transferHookAccountExtension.js +11 -0
  202. package/dist/generated/types/transferHookAccountExtension.js.map +1 -0
  203. package/dist/generated/types/transports.d.ts +14 -0
  204. package/dist/generated/types/transports.js +21 -0
  205. package/dist/generated/types/transports.js.map +1 -0
  206. package/dist/generated/types/userRole.d.ts +11 -0
  207. package/dist/generated/types/userRole.js +18 -0
  208. package/dist/generated/types/userRole.js.map +1 -0
  209. package/dist/hooked/index.d.ts +12 -0
  210. package/dist/hooked/index.js +15 -0
  211. package/dist/hooked/index.js.map +1 -0
  212. package/dist/index.cjs +2 -2
  213. package/dist/index.cjs.map +1 -1
  214. package/dist/index.d.cts +88 -42
  215. package/dist/index.d.ts +5 -3058
  216. package/dist/index.js +5 -2
  217. package/dist/index.js.map +1 -1
  218. package/dist/instructions/admin/createDomainConfig.d.ts +7 -0
  219. package/dist/instructions/admin/createDomainConfig.js +16 -0
  220. package/dist/instructions/admin/createDomainConfig.js.map +1 -0
  221. package/dist/instructions/admin/createGlobalCounter.d.ts +4 -0
  222. package/dist/instructions/admin/createGlobalCounter.js +11 -0
  223. package/dist/instructions/admin/createGlobalCounter.js.map +1 -0
  224. package/dist/instructions/admin/disableDomainConfig.d.ts +6 -0
  225. package/dist/instructions/admin/disableDomainConfig.js +12 -0
  226. package/dist/instructions/admin/disableDomainConfig.js.map +1 -0
  227. package/dist/instructions/admin/index.d.ts +3 -0
  228. package/dist/instructions/admin/index.js +4 -0
  229. package/dist/instructions/admin/index.js.map +1 -0
  230. package/dist/instructions/executeTransaction.d.ts +15 -0
  231. package/dist/instructions/executeTransaction.js +32 -0
  232. package/dist/instructions/executeTransaction.js.map +1 -0
  233. package/dist/instructions/executeTransactionSync.d.ts +14 -0
  234. package/dist/instructions/executeTransactionSync.js +61 -0
  235. package/dist/instructions/executeTransactionSync.js.map +1 -0
  236. package/dist/instructions/index.d.ts +7 -0
  237. package/dist/instructions/index.js +8 -0
  238. package/dist/instructions/index.js.map +1 -0
  239. package/dist/instructions/intents/index.d.ts +2 -0
  240. package/dist/instructions/intents/index.js +3 -0
  241. package/dist/instructions/intents/index.js.map +1 -0
  242. package/dist/instructions/intents/nativeTransferIntent.d.ts +9 -0
  243. package/dist/instructions/intents/nativeTransferIntent.js +35 -0
  244. package/dist/instructions/intents/nativeTransferIntent.js.map +1 -0
  245. package/dist/instructions/intents/tokenTransferIntent.d.ts +15 -0
  246. package/dist/instructions/intents/tokenTransferIntent.js +318 -0
  247. package/dist/instructions/intents/tokenTransferIntent.js.map +1 -0
  248. package/dist/instructions/secp256r1Verify.d.ts +44 -0
  249. package/dist/instructions/secp256r1Verify.js +140 -0
  250. package/dist/instructions/secp256r1Verify.js.map +1 -0
  251. package/dist/instructions/shared/changeConfig.d.ts +13 -0
  252. package/dist/instructions/shared/changeConfig.js +60 -0
  253. package/dist/instructions/shared/changeConfig.js.map +1 -0
  254. package/dist/instructions/shared/createDomainUserAccounts.d.ts +18 -0
  255. package/dist/instructions/shared/createDomainUserAccounts.js +20 -0
  256. package/dist/instructions/shared/createDomainUserAccounts.js.map +1 -0
  257. package/dist/instructions/shared/createUserAccounts.d.ts +15 -0
  258. package/dist/instructions/shared/createUserAccounts.js +16 -0
  259. package/dist/instructions/shared/createUserAccounts.js.map +1 -0
  260. package/dist/instructions/shared/createWallet.d.ts +8 -0
  261. package/dist/instructions/shared/createWallet.js +15 -0
  262. package/dist/instructions/shared/createWallet.js.map +1 -0
  263. package/dist/instructions/shared/editDomainConfig.d.ts +7 -0
  264. package/dist/instructions/shared/editDomainConfig.js +16 -0
  265. package/dist/instructions/shared/editDomainConfig.js.map +1 -0
  266. package/dist/instructions/shared/editTransactionManagerUrl.d.ts +5 -0
  267. package/dist/instructions/shared/editTransactionManagerUrl.js +11 -0
  268. package/dist/instructions/shared/editTransactionManagerUrl.js.map +1 -0
  269. package/dist/instructions/shared/editUserDelegate.d.ts +8 -0
  270. package/dist/instructions/shared/editUserDelegate.js +42 -0
  271. package/dist/instructions/shared/editUserDelegate.js.map +1 -0
  272. package/dist/instructions/shared/index.d.ts +7 -0
  273. package/dist/instructions/shared/index.js +8 -0
  274. package/dist/instructions/shared/index.js.map +1 -0
  275. package/dist/instructions/transactionBuffers/closeTransactionBuffer.d.ts +8 -0
  276. package/dist/instructions/transactionBuffers/closeTransactionBuffer.js +28 -0
  277. package/dist/instructions/transactionBuffers/closeTransactionBuffer.js.map +1 -0
  278. package/dist/instructions/transactionBuffers/createTransactionBuffer.d.ts +15 -0
  279. package/dist/instructions/transactionBuffers/createTransactionBuffer.js +34 -0
  280. package/dist/instructions/transactionBuffers/createTransactionBuffer.js.map +1 -0
  281. package/dist/instructions/transactionBuffers/executeTransactionBuffer.d.ts +7 -0
  282. package/dist/instructions/transactionBuffers/executeTransactionBuffer.js +27 -0
  283. package/dist/instructions/transactionBuffers/executeTransactionBuffer.js.map +1 -0
  284. package/dist/instructions/transactionBuffers/extendTransactionBuffer.d.ts +6 -0
  285. package/dist/instructions/transactionBuffers/extendTransactionBuffer.js +10 -0
  286. package/dist/instructions/transactionBuffers/extendTransactionBuffer.js.map +1 -0
  287. package/dist/instructions/transactionBuffers/index.d.ts +5 -0
  288. package/dist/instructions/transactionBuffers/index.js +6 -0
  289. package/dist/instructions/transactionBuffers/index.js.map +1 -0
  290. package/dist/instructions/transactionBuffers/voteTransactionBuffer.d.ts +7 -0
  291. package/dist/instructions/transactionBuffers/voteTransactionBuffer.js +27 -0
  292. package/dist/instructions/transactionBuffers/voteTransactionBuffer.js.map +1 -0
  293. package/dist/transaction/index.d.ts +4 -0
  294. package/dist/transaction/index.js +5 -0
  295. package/dist/transaction/index.js.map +1 -0
  296. package/dist/transaction/prepareChangeConfig.d.ts +12 -0
  297. package/dist/transaction/prepareChangeConfig.js +96 -0
  298. package/dist/transaction/prepareChangeConfig.js.map +1 -0
  299. package/dist/transaction/prepareTransactionBundle.d.ts +19 -0
  300. package/dist/transaction/prepareTransactionBundle.js +78 -0
  301. package/dist/transaction/prepareTransactionBundle.js.map +1 -0
  302. package/dist/transaction/prepareTransactionMessage.d.ts +8 -0
  303. package/dist/transaction/prepareTransactionMessage.js +14 -0
  304. package/dist/transaction/prepareTransactionMessage.js.map +1 -0
  305. package/dist/transaction/prepareTransactionSync.d.ts +14 -0
  306. package/dist/transaction/prepareTransactionSync.js +18 -0
  307. package/dist/transaction/prepareTransactionSync.js.map +1 -0
  308. package/dist/types/configurationArgs.d.ts +32 -0
  309. package/dist/types/configurationArgs.js +2 -0
  310. package/dist/types/configurationArgs.js.map +1 -0
  311. package/dist/types/index.d.ts +7 -0
  312. package/dist/types/index.js +8 -0
  313. package/dist/types/index.js.map +1 -0
  314. package/dist/types/keyType.d.ts +8 -0
  315. package/dist/types/keyType.js +5 -0
  316. package/dist/types/keyType.js.map +1 -0
  317. package/dist/types/passkeys.d.ts +506 -0
  318. package/dist/types/passkeys.js +211 -0
  319. package/dist/types/passkeys.js.map +1 -0
  320. package/dist/types/permissions.d.ts +14 -0
  321. package/dist/types/permissions.js +21 -0
  322. package/dist/types/permissions.js.map +1 -0
  323. package/dist/types/secp256r1.d.ts +41 -0
  324. package/dist/types/secp256r1.js +70 -0
  325. package/dist/types/secp256r1.js.map +1 -0
  326. package/dist/types/transaction.d.ts +7 -0
  327. package/dist/types/transaction.js +2 -0
  328. package/dist/types/transaction.js.map +1 -0
  329. package/dist/types/vaultTransactionMessage.d.ts +7 -0
  330. package/dist/types/vaultTransactionMessage.js +79 -0
  331. package/dist/types/vaultTransactionMessage.js.map +1 -0
  332. package/dist/utils/addresses/index.d.ts +13 -0
  333. package/dist/utils/addresses/index.js +90 -0
  334. package/dist/utils/addresses/index.js.map +1 -0
  335. package/dist/utils/codama.d.ts +1 -0
  336. package/dist/utils/codama.js +56 -0
  337. package/dist/utils/codama.js.map +1 -0
  338. package/dist/utils/index.d.ts +5 -0
  339. package/dist/utils/index.js +6 -0
  340. package/dist/utils/index.js.map +1 -0
  341. package/dist/utils/initialize.d.ts +10 -0
  342. package/dist/utils/initialize.js +30 -0
  343. package/dist/utils/initialize.js.map +1 -0
  344. package/dist/utils/passkeys/helper.d.ts +39 -0
  345. package/dist/utils/passkeys/helper.js +156 -0
  346. package/dist/utils/passkeys/helper.js.map +1 -0
  347. package/dist/utils/passkeys/index.d.ts +1 -0
  348. package/dist/utils/passkeys/index.js +2 -0
  349. package/dist/utils/passkeys/index.js.map +1 -0
  350. package/dist/utils/passkeys/internal.d.ts +8 -0
  351. package/dist/utils/passkeys/internal.js +93 -0
  352. package/dist/utils/passkeys/internal.js.map +1 -0
  353. package/dist/utils/retry.d.ts +11 -0
  354. package/dist/utils/retry.js +44 -0
  355. package/dist/utils/retry.js.map +1 -0
  356. package/dist/utils/transaction/helper.d.ts +22 -0
  357. package/dist/utils/transaction/helper.js +247 -0
  358. package/dist/utils/transaction/helper.js.map +1 -0
  359. package/dist/utils/transaction/index.d.ts +1 -0
  360. package/dist/utils/transaction/index.js +2 -0
  361. package/dist/utils/transaction/index.js.map +1 -0
  362. package/dist/utils/transaction/internal.d.ts +22 -0
  363. package/dist/utils/transaction/internal.js +128 -0
  364. package/dist/utils/transaction/internal.js.map +1 -0
  365. package/dist/utils/transaction/packedAccounts.d.ts +30 -0
  366. package/dist/utils/transaction/packedAccounts.js +135 -0
  367. package/dist/utils/transaction/packedAccounts.js.map +1 -0
  368. package/dist/utils/transactionMessage/compileToWrappedMessageV0.d.ts +9 -0
  369. package/dist/utils/transactionMessage/compileToWrappedMessageV0.js +39 -0
  370. package/dist/utils/transactionMessage/compileToWrappedMessageV0.js.map +1 -0
  371. package/dist/utils/transactionMessage/compiled-keys.d.ts +34 -0
  372. package/dist/utils/transactionMessage/compiled-keys.js +107 -0
  373. package/dist/utils/transactionMessage/compiled-keys.js.map +1 -0
  374. package/dist/utils/transactionMessage/internal.d.ts +33 -0
  375. package/dist/utils/transactionMessage/internal.js +121 -0
  376. package/dist/utils/transactionMessage/internal.js.map +1 -0
  377. package/dist/utils/transactionMessage/message-account-keys.d.ts +17 -0
  378. package/dist/utils/transactionMessage/message-account-keys.js +56 -0
  379. package/dist/utils/transactionMessage/message-account-keys.js.map +1 -0
  380. package/dist/utils/user/helper.d.ts +8 -0
  381. package/dist/utils/user/helper.js +87 -0
  382. package/dist/utils/user/helper.js.map +1 -0
  383. package/dist/utils/user/index.d.ts +1 -0
  384. package/dist/utils/user/index.js +2 -0
  385. package/dist/utils/user/index.js.map +1 -0
  386. package/dist/utils/validation.d.ts +4 -0
  387. package/dist/utils/validation.js +22 -0
  388. package/dist/utils/validation.js.map +1 -0
  389. package/package.json +7 -4
package/dist/index.d.cts CHANGED
@@ -1,11 +1,12 @@
1
- import * as gill from 'gill';
2
- import { ReadonlyUint8Array, Address, FixedSizeEncoder, FixedSizeDecoder, FixedSizeCodec, EncodedAccount, Account, MaybeEncodedAccount, MaybeAccount, fetchEncodedAccount, FetchAccountConfig, fetchEncodedAccounts, FetchAccountsConfig, Encoder, Decoder, Codec, Option, OptionOrNullable, GetDiscriminatedUnionVariantContent, GetDiscriminatedUnionVariant, SolanaError, SOLANA_ERROR__INSTRUCTION_ERROR__CUSTOM, AccountMeta, Instruction, InstructionWithData, InstructionWithAccounts, WritableAccount, WritableSignerAccount, AccountSignerMeta, ReadonlyAccount, TransactionSigner, ReadonlySignerAccount, AddressesByLookupTableAddress, CompiledTransactionMessage, CompiledTransactionMessageWithLifetime, AccountRole, Rpc as Rpc$1, SendAndConfirmTransactionWithSignersFunction } from 'gill';
1
+ import * as _solana_kit from '@solana/kit';
2
+ import { ReadonlyUint8Array, Address, FixedSizeEncoder, FixedSizeDecoder, FixedSizeCodec, EncodedAccount, Account, MaybeEncodedAccount, MaybeAccount, fetchEncodedAccount, FetchAccountConfig, fetchEncodedAccounts, FetchAccountsConfig, Encoder, Decoder, Codec, Option, OptionOrNullable, GetDiscriminatedUnionVariantContent, GetDiscriminatedUnionVariant, SolanaError, SOLANA_ERROR__INSTRUCTION_ERROR__CUSTOM, AccountMeta, Instruction, InstructionWithData, InstructionWithAccounts, WritableAccount, WritableSignerAccount, AccountSignerMeta, ReadonlyAccount, TransactionSigner, ReadonlySignerAccount, AddressesByLookupTableAddress, CompiledTransactionMessage, CompiledTransactionMessageWithLifetime, AccountRole, Rpc as Rpc$1 } from '@solana/kit';
3
3
  import { AuthenticationResponseJSON } from '@simplewebauthn/browser';
4
4
  import { TreeInfo, AccountProofInput, NewAddressProofInput, PackedTreeInfos, Rpc } from '@lightprotocol/stateless.js';
5
5
  import z from 'zod';
6
+ import * as _solana_rpc from '@solana/rpc';
6
7
 
7
8
  declare const DOMAIN_CONFIG_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
8
- declare function getDomainConfigDiscriminatorBytes(): ReadonlyUint8Array;
9
+ declare function getDomainConfigDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
9
10
  type DomainConfig = {
10
11
  discriminator: ReadonlyUint8Array;
11
12
  authority: Address;
@@ -39,7 +40,7 @@ declare function fetchAllMaybeDomainConfig(rpc: Parameters<typeof fetchEncodedAc
39
40
  declare function getDomainConfigSize(): number;
40
41
 
41
42
  declare const GLOBAL_COUNTER_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
42
- declare function getGlobalCounterDiscriminatorBytes(): ReadonlyUint8Array;
43
+ declare function getGlobalCounterDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
43
44
  type GlobalCounter = {
44
45
  discriminator: ReadonlyUint8Array;
45
46
  index: bigint;
@@ -685,7 +686,7 @@ declare function getUserRoleDecoder(): FixedSizeDecoder<UserRole>;
685
686
  declare function getUserRoleCodec(): FixedSizeCodec<UserRoleArgs, UserRole>;
686
687
 
687
688
  declare const SETTINGS_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
688
- declare function getSettingsDiscriminatorBytes(): ReadonlyUint8Array;
689
+ declare function getSettingsDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
689
690
  type Settings = {
690
691
  discriminator: ReadonlyUint8Array;
691
692
  index: bigint;
@@ -716,7 +717,7 @@ declare function fetchAllSettings(rpc: Parameters<typeof fetchEncodedAccounts>[0
716
717
  declare function fetchAllMaybeSettings(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Array<Address>, config?: FetchAccountsConfig): Promise<MaybeAccount<Settings>[]>;
717
718
 
718
719
  declare const TRANSACTION_BUFFER_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
719
- declare function getTransactionBufferDiscriminatorBytes(): ReadonlyUint8Array;
720
+ declare function getTransactionBufferDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
720
721
  type TransactionBuffer = {
721
722
  discriminator: ReadonlyUint8Array;
722
723
  multiWalletSettings: Address;
@@ -765,7 +766,7 @@ declare function fetchAllTransactionBuffer(rpc: Parameters<typeof fetchEncodedAc
765
766
  declare function fetchAllMaybeTransactionBuffer(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Array<Address>, config?: FetchAccountsConfig): Promise<MaybeAccount<TransactionBuffer>[]>;
766
767
 
767
768
  declare const USER_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
768
- declare function getUserDiscriminatorBytes(): ReadonlyUint8Array;
769
+ declare function getUserDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
769
770
  type User = {
770
771
  discriminator: ReadonlyUint8Array;
771
772
  domainConfig: Option<Address>;
@@ -960,7 +961,7 @@ type ParsedMultiWalletInstruction<TProgram extends string = "reviR1xysEChySVSWGa
960
961
  } & ParsedTransactionExecuteSyncInstruction<TProgram>);
961
962
 
962
963
  declare const CHANGE_CONFIG_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
963
- declare function getChangeConfigDiscriminatorBytes(): ReadonlyUint8Array;
964
+ declare function getChangeConfigDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
964
965
  type ChangeConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
965
966
  TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
966
967
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
@@ -1014,7 +1015,7 @@ type ParsedChangeConfigInstruction<TProgram extends string = typeof MULTI_WALLET
1014
1015
  declare function parseChangeConfigInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedChangeConfigInstruction<TProgram, TAccountMetas>;
1015
1016
 
1016
1017
  declare const CREATE_DOMAIN_CONFIG_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1017
- declare function getCreateDomainConfigDiscriminatorBytes(): ReadonlyUint8Array;
1018
+ declare function getCreateDomainConfigDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
1018
1019
  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", TAccountUserAccount extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1019
1020
  TAccountDomainConfig extends string ? WritableAccount<TAccountDomainConfig> : TAccountDomainConfig,
1020
1021
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
@@ -1081,7 +1082,7 @@ type ParsedCreateDomainConfigInstruction<TProgram extends string = typeof MULTI_
1081
1082
  declare function parseCreateDomainConfigInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedCreateDomainConfigInstruction<TProgram, TAccountMetas>;
1082
1083
 
1083
1084
  declare const CREATE_DOMAIN_USER_ACCOUNT_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1084
- declare function getCreateDomainUserAccountDiscriminatorBytes(): ReadonlyUint8Array;
1085
+ declare function getCreateDomainUserAccountDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
1085
1086
  type CreateDomainUserAccountInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountAuthority extends string | AccountMeta<string> = string, TAccountUserAccount extends string | AccountMeta<string> = string, TAccountTransactionManagerAccount extends string | AccountMeta<string> = string, TAccountSettings extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1086
1087
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1087
1088
  TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
@@ -1147,7 +1148,7 @@ type ParsedCreateDomainUserAccountInstruction<TProgram extends string = typeof M
1147
1148
  declare function parseCreateDomainUserAccountInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedCreateDomainUserAccountInstruction<TProgram, TAccountMetas>;
1148
1149
 
1149
1150
  declare const CREATE_GLOBAL_COUNTER_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1150
- declare function getCreateGlobalCounterDiscriminatorBytes(): ReadonlyUint8Array;
1151
+ declare function getCreateGlobalCounterDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
1151
1152
  type CreateGlobalCounterInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountGlobalCounter extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1152
1153
  TAccountGlobalCounter extends string ? WritableAccount<TAccountGlobalCounter> : TAccountGlobalCounter,
1153
1154
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
@@ -1197,7 +1198,7 @@ type ParsedCreateGlobalCounterInstruction<TProgram extends string = typeof MULTI
1197
1198
  declare function parseCreateGlobalCounterInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedCreateGlobalCounterInstruction<TProgram, TAccountMetas>;
1198
1199
 
1199
1200
  declare const CREATE_USER_ACCOUNT_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1200
- declare function getCreateUserAccountDiscriminatorBytes(): ReadonlyUint8Array;
1201
+ declare function getCreateUserAccountDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
1201
1202
  type CreateUserAccountInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountMember extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountUserAccount extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1202
1203
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1203
1204
  TAccountMember extends string ? ReadonlySignerAccount<TAccountMember> & AccountSignerMeta<TAccountMember> : TAccountMember,
@@ -1260,7 +1261,7 @@ type ParsedCreateUserAccountInstruction<TProgram extends string = typeof MULTI_W
1260
1261
  declare function parseCreateUserAccountInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedCreateUserAccountInstruction<TProgram, TAccountMetas>;
1261
1262
 
1262
1263
  declare const CREATE_WALLET_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1263
- declare function getCreateWalletDiscriminatorBytes(): ReadonlyUint8Array;
1264
+ declare function getCreateWalletDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
1264
1265
  type CreateWalletInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountInitialMember extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountGlobalCounter extends string | AccountMeta<string> = string, TAccountUserAccount extends string | AccountMeta<string> = string, TAccountSettings extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1265
1266
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
1266
1267
  TAccountInitialMember extends string ? ReadonlySignerAccount<TAccountInitialMember> & AccountSignerMeta<TAccountInitialMember> : TAccountInitialMember,
@@ -1327,7 +1328,7 @@ type ParsedCreateWalletInstruction<TProgram extends string = typeof MULTI_WALLET
1327
1328
  declare function parseCreateWalletInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedCreateWalletInstruction<TProgram, TAccountMetas>;
1328
1329
 
1329
1330
  declare const DISABLE_DOMAIN_CONFIG_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1330
- declare function getDisableDomainConfigDiscriminatorBytes(): ReadonlyUint8Array;
1331
+ declare function getDisableDomainConfigDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
1331
1332
  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<[
1332
1333
  TAccountDomainConfig extends string ? WritableAccount<TAccountDomainConfig> : TAccountDomainConfig,
1333
1334
  TAccountAdmin extends string ? ReadonlySignerAccount<TAccountAdmin> & AccountSignerMeta<TAccountAdmin> : TAccountAdmin,
@@ -1369,7 +1370,7 @@ type ParsedDisableDomainConfigInstruction<TProgram extends string = typeof MULTI
1369
1370
  declare function parseDisableDomainConfigInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedDisableDomainConfigInstruction<TProgram, TAccountMetas>;
1370
1371
 
1371
1372
  declare const EDIT_DOMAIN_CONFIG_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1372
- declare function getEditDomainConfigDiscriminatorBytes(): ReadonlyUint8Array;
1373
+ declare function getEditDomainConfigDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
1373
1374
  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, TAccountUserAccount extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1374
1375
  TAccountDomainConfig extends string ? WritableAccount<TAccountDomainConfig> : TAccountDomainConfig,
1375
1376
  TAccountAuthority extends string ? WritableSignerAccount<TAccountAuthority> & AccountSignerMeta<TAccountAuthority> : TAccountAuthority,
@@ -1420,7 +1421,7 @@ type ParsedEditDomainConfigInstruction<TProgram extends string = typeof MULTI_WA
1420
1421
  declare function parseEditDomainConfigInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedEditDomainConfigInstruction<TProgram, TAccountMetas>;
1421
1422
 
1422
1423
  declare const EDIT_TRANSACTION_MANAGER_URL_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1423
- declare function getEditTransactionManagerUrlDiscriminatorBytes(): ReadonlyUint8Array;
1424
+ declare function getEditTransactionManagerUrlDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
1424
1425
  type EditTransactionManagerUrlInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSigner extends string | AccountMeta<string> = string, TAccountTransactionManagerAccount extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1425
1426
  TAccountSigner extends string ? ReadonlySignerAccount<TAccountSigner> & AccountSignerMeta<TAccountSigner> : TAccountSigner,
1426
1427
  TAccountTransactionManagerAccount extends string ? WritableAccount<TAccountTransactionManagerAccount> : TAccountTransactionManagerAccount,
@@ -1471,7 +1472,7 @@ type ParsedEditTransactionManagerUrlInstruction<TProgram extends string = typeof
1471
1472
  declare function parseEditTransactionManagerUrlInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedEditTransactionManagerUrlInstruction<TProgram, TAccountMetas>;
1472
1473
 
1473
1474
  declare const EDIT_USER_DELEGATE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1474
- declare function getEditUserDelegateDiscriminatorBytes(): ReadonlyUint8Array;
1475
+ declare function getEditUserDelegateDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
1475
1476
  type EditUserDelegateInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountFeePayer extends string | AccountMeta<string> = string, TAccountSigner extends string | AccountMeta<string> = string, TAccountUserAccount extends string | AccountMeta<string> = string, TAccountOldSettings extends string | AccountMeta<string> = string, TAccountNewSettings extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountDomainConfig extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1476
1477
  TAccountFeePayer extends string ? WritableSignerAccount<TAccountFeePayer> & AccountSignerMeta<TAccountFeePayer> : TAccountFeePayer,
1477
1478
  TAccountSigner extends string ? ReadonlySignerAccount<TAccountSigner> & AccountSignerMeta<TAccountSigner> : TAccountSigner,
@@ -1534,7 +1535,7 @@ type ParsedEditUserDelegateInstruction<TProgram extends string = typeof MULTI_WA
1534
1535
  declare function parseEditUserDelegateInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedEditUserDelegateInstruction<TProgram, TAccountMetas>;
1535
1536
 
1536
1537
  declare const NATIVE_TRANSFER_INTENT_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1537
- declare function getNativeTransferIntentDiscriminatorBytes(): ReadonlyUint8Array;
1538
+ declare function getNativeTransferIntentDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
1538
1539
  type NativeTransferIntentInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountSource extends string | AccountMeta<string> = string, TAccountDestination extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1539
1540
  TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
1540
1541
  TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
@@ -1605,7 +1606,7 @@ type ParsedNativeTransferIntentInstruction<TProgram extends string = typeof MULT
1605
1606
  declare function parseNativeTransferIntentInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedNativeTransferIntentInstruction<TProgram, TAccountMetas>;
1606
1607
 
1607
1608
  declare const TOKEN_TRANSFER_INTENT_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1608
- declare function getTokenTransferIntentDiscriminatorBytes(): ReadonlyUint8Array;
1609
+ declare function getTokenTransferIntentDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
1609
1610
  type TokenTransferIntentInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountSource extends string | AccountMeta<string> = string, TAccountSourceSplTokenAccount extends string | AccountMeta<string> = string, TAccountSourceCtokenTokenAccount extends string | AccountMeta<string> = string, TAccountDestination extends string | AccountMeta<string> = string, TAccountDestinationSplTokenAccount extends string | AccountMeta<string> = string, TAccountDestinationCtokenTokenAccount extends string | AccountMeta<string> = string, TAccountTokenProgram extends string | AccountMeta<string> = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA", TAccountMint extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountCompressedTokenProgramAuthority extends string | AccountMeta<string> = "GXtd2izAiMJPwMEjfgTRH3d7k9mjn4Jq3JrWFv9gySYy", TAccountSplInterfacePda extends string | AccountMeta<string> = string, TAccountCompressibleConfig extends string | AccountMeta<string> = string, TAccountRentSponsor extends string | AccountMeta<string> = string, TAccountCompressedTokenProgram extends string | AccountMeta<string> = "cTokenmWW8bLPjZEBAUgYy3zKxQZW6VKi7bqNFEVv3m", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1610
1611
  TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
1611
1612
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
@@ -1736,7 +1737,7 @@ type ParsedTokenTransferIntentInstruction<TProgram extends string = typeof MULTI
1736
1737
  declare function parseTokenTransferIntentInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedTokenTransferIntentInstruction<TProgram, TAccountMetas>;
1737
1738
 
1738
1739
  declare const TRANSACTION_BUFFER_CLOSE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1739
- declare function getTransactionBufferCloseDiscriminatorBytes(): ReadonlyUint8Array;
1740
+ declare function getTransactionBufferCloseDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
1740
1741
  type TransactionBufferCloseInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCloser extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1741
1742
  TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
1742
1743
  TAccountPayer extends string ? WritableAccount<TAccountPayer> : TAccountPayer,
@@ -1793,7 +1794,7 @@ type ParsedTransactionBufferCloseInstruction<TProgram extends string = typeof MU
1793
1794
  declare function parseTransactionBufferCloseInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedTransactionBufferCloseInstruction<TProgram, TAccountMetas>;
1794
1795
 
1795
1796
  declare const TRANSACTION_BUFFER_CREATE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1796
- declare function getTransactionBufferCreateDiscriminatorBytes(): ReadonlyUint8Array;
1797
+ declare function getTransactionBufferCreateDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
1797
1798
  type TransactionBufferCreateInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCreator extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1798
1799
  TAccountSettings extends string ? ReadonlyAccount<TAccountSettings> : TAccountSettings,
1799
1800
  TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
@@ -1871,7 +1872,7 @@ type ParsedTransactionBufferCreateInstruction<TProgram extends string = typeof M
1871
1872
  declare function parseTransactionBufferCreateInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedTransactionBufferCreateInstruction<TProgram, TAccountMetas>;
1872
1873
 
1873
1874
  declare const TRANSACTION_BUFFER_EXECUTE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1874
- declare function getTransactionBufferExecuteDiscriminatorBytes(): ReadonlyUint8Array;
1875
+ declare function getTransactionBufferExecuteDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
1875
1876
  type TransactionBufferExecuteInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountExecutor extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1876
1877
  TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
1877
1878
  TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
@@ -1925,7 +1926,7 @@ type ParsedTransactionBufferExecuteInstruction<TProgram extends string = typeof
1925
1926
  declare function parseTransactionBufferExecuteInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedTransactionBufferExecuteInstruction<TProgram, TAccountMetas>;
1926
1927
 
1927
1928
  declare const TRANSACTION_BUFFER_EXTEND_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1928
- declare function getTransactionBufferExtendDiscriminatorBytes(): ReadonlyUint8Array;
1929
+ declare function getTransactionBufferExtendDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
1929
1930
  type TransactionBufferExtendInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1930
1931
  TAccountSettings extends string ? ReadonlyAccount<TAccountSettings> : TAccountSettings,
1931
1932
  TAccountTransactionBuffer extends string ? WritableAccount<TAccountTransactionBuffer> : TAccountTransactionBuffer,
@@ -1967,7 +1968,7 @@ type ParsedTransactionBufferExtendInstruction<TProgram extends string = typeof M
1967
1968
  declare function parseTransactionBufferExtendInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedTransactionBufferExtendInstruction<TProgram, TAccountMetas>;
1968
1969
 
1969
1970
  declare const TRANSACTION_BUFFER_VOTE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
1970
- declare function getTransactionBufferVoteDiscriminatorBytes(): ReadonlyUint8Array;
1971
+ declare function getTransactionBufferVoteDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
1971
1972
  type TransactionBufferVoteInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountVoter extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
1972
1973
  TAccountSettings extends string ? ReadonlyAccount<TAccountSettings> : TAccountSettings,
1973
1974
  TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
@@ -2024,7 +2025,7 @@ type ParsedTransactionBufferVoteInstruction<TProgram extends string = typeof MUL
2024
2025
  declare function parseTransactionBufferVoteInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedTransactionBufferVoteInstruction<TProgram, TAccountMetas>;
2025
2026
 
2026
2027
  declare const TRANSACTION_EXECUTE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2027
- declare function getTransactionExecuteDiscriminatorBytes(): ReadonlyUint8Array;
2028
+ declare function getTransactionExecuteDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
2028
2029
  type TransactionExecuteInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2029
2030
  TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
2030
2031
  TAccountPayer extends string ? WritableAccount<TAccountPayer> : TAccountPayer,
@@ -2065,7 +2066,7 @@ type ParsedTransactionExecuteInstruction<TProgram extends string = typeof MULTI_
2065
2066
  declare function parseTransactionExecuteInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedTransactionExecuteInstruction<TProgram, TAccountMetas>;
2066
2067
 
2067
2068
  declare const TRANSACTION_EXECUTE_SYNC_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
2068
- declare function getTransactionExecuteSyncDiscriminatorBytes(): ReadonlyUint8Array;
2069
+ declare function getTransactionExecuteSyncDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
2069
2070
  type TransactionExecuteSyncInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
2070
2071
  TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
2071
2072
  TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
@@ -2132,17 +2133,17 @@ declare function createDomainConfig({ payer, rpId, origins, authority, }: {
2132
2133
  rpId: string;
2133
2134
  origins: string[];
2134
2135
  authority: TransactionSigner;
2135
- }): Promise<CreateDomainConfigInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, string, []>>;
2136
+ }): Promise<CreateDomainConfigInstruction<_solana_kit.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, string, []>>;
2136
2137
 
2137
2138
  declare function createGlobalCounter({ payer, }: {
2138
2139
  payer: TransactionSigner;
2139
- }): Promise<CreateGlobalCounterInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, []>>;
2140
+ }): Promise<CreateGlobalCounterInstruction<_solana_kit.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, []>>;
2140
2141
 
2141
2142
  declare function disableDomainConfig({ admin, rpId, disable, }: {
2142
2143
  admin: TransactionSigner;
2143
2144
  disable: boolean;
2144
2145
  rpId: string;
2145
- }): Promise<DisableDomainConfigInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, []>>;
2146
+ }): Promise<DisableDomainConfigInstruction<_solana_kit.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, []>>;
2146
2147
 
2147
2148
  declare const SECP256R1_PROGRAM_ADDRESS: Address<"Secp256r1SigVerify1111111111111111111111111">;
2148
2149
  type Secp256r1VerifyInput = {
@@ -2197,7 +2198,7 @@ declare function executeTransaction({ settings, transactionBufferAddress, transa
2197
2198
  additionalSigners?: TransactionSigner[];
2198
2199
  jitoBundlesTipAmount?: number;
2199
2200
  }): Promise<{
2200
- instructions: Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[];
2201
+ instructions: Instruction<string, readonly (_solana_kit.AccountMeta<string> | _solana_kit.AccountLookupMeta<string, string>)[]>[];
2201
2202
  addressLookupTableAccounts: AddressesByLookupTableAddress;
2202
2203
  }>;
2203
2204
 
@@ -2491,6 +2492,13 @@ declare const AuthenticationContextSchema: z.ZodObject<{
2491
2492
  createdAt: z.ZodOptional<z.ZodISODateTime>;
2492
2493
  }, z.core.$strict>;
2493
2494
  }, z.core.$strict>;
2495
+ user: z.ZodObject<{
2496
+ publicKey: z.ZodString;
2497
+ walletAddress: z.ZodString;
2498
+ settingsIndexWithAddress: z.ZodObject<{
2499
+ index: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt]>;
2500
+ }, z.core.$strip>;
2501
+ }, z.core.$loose>;
2494
2502
  }, z.core.$strict>;
2495
2503
  declare const BaseResponseSchema: z.ZodObject<{
2496
2504
  signer: z.ZodString;
@@ -2502,6 +2510,8 @@ declare const TransactionDetailsSchema: z.ZodObject<{
2502
2510
  estimatedSlotHashExpiry: z.ZodNumber;
2503
2511
  originIndex: z.ZodNumber;
2504
2512
  crossOrigin: z.ZodBoolean;
2513
+ transactionManagerAddress: z.ZodOptional<z.ZodString>;
2514
+ unitsConsumed: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt]>>>;
2505
2515
  }, z.core.$strict>;
2506
2516
  declare const CompleteMessageRequestSchema: z.ZodObject<{
2507
2517
  phase: z.ZodLiteral<"complete">;
@@ -2575,6 +2585,13 @@ declare const CompleteMessageRequestSchema: z.ZodObject<{
2575
2585
  createdAt: z.ZodOptional<z.ZodISODateTime>;
2576
2586
  }, z.core.$strict>;
2577
2587
  }, z.core.$strict>;
2588
+ user: z.ZodObject<{
2589
+ publicKey: z.ZodString;
2590
+ walletAddress: z.ZodString;
2591
+ settingsIndexWithAddress: z.ZodObject<{
2592
+ index: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt]>;
2593
+ }, z.core.$strip>;
2594
+ }, z.core.$loose>;
2578
2595
  startRequest: z.ZodObject<{
2579
2596
  phase: z.ZodLiteral<"start">;
2580
2597
  clientOrigin: z.ZodURL;
@@ -2668,11 +2685,20 @@ declare const CompleteTransactionRequestSchema: z.ZodObject<{
2668
2685
  createdAt: z.ZodOptional<z.ZodISODateTime>;
2669
2686
  }, z.core.$strict>;
2670
2687
  }, z.core.$strict>;
2688
+ user: z.ZodObject<{
2689
+ publicKey: z.ZodString;
2690
+ walletAddress: z.ZodString;
2691
+ settingsIndexWithAddress: z.ZodObject<{
2692
+ index: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt]>;
2693
+ }, z.core.$strip>;
2694
+ }, z.core.$loose>;
2671
2695
  slotHash: z.ZodString;
2672
2696
  slotNumber: z.ZodString;
2673
2697
  estimatedSlotHashExpiry: z.ZodNumber;
2674
2698
  originIndex: z.ZodNumber;
2675
2699
  crossOrigin: z.ZodBoolean;
2700
+ transactionManagerAddress: z.ZodOptional<z.ZodString>;
2701
+ unitsConsumed: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt]>>>;
2676
2702
  startRequest: z.ZodObject<{
2677
2703
  phase: z.ZodLiteral<"start">;
2678
2704
  clientOrigin: z.ZodURL;
@@ -2776,10 +2802,15 @@ type TransactionDetails = {
2776
2802
  payer: TransactionSigner;
2777
2803
  instructions: Instruction[];
2778
2804
  addressesByLookupTableAddress?: AddressesByLookupTableAddress;
2805
+ unitsConsumed?: bigint | number;
2779
2806
  };
2780
2807
 
2781
- declare function vaultTransactionMessageSerialize(compiledMessage: CompiledTransactionMessage): ReadonlyUint8Array;
2782
- declare function vaultTransactionMessageDeserialize(transactionMessageBytes: ReadonlyUint8Array): CompiledTransactionMessage & CompiledTransactionMessageWithLifetime;
2808
+ declare function vaultTransactionMessageSerialize(compiledMessage: CompiledTransactionMessage & {
2809
+ version: 0;
2810
+ }): ReadonlyUint8Array<ArrayBuffer>;
2811
+ declare function vaultTransactionMessageDeserialize(transactionMessageBytes: ReadonlyUint8Array): CompiledTransactionMessage & {
2812
+ version: 0;
2813
+ } & CompiledTransactionMessageWithLifetime;
2783
2814
 
2784
2815
  declare function executeTransactionSync({ settings, transactionMessageBytes, additionalSigners, signers, addressesByLookupTableAddress, secp256r1VerifyInput, }: {
2785
2816
  settings: Address;
@@ -2789,7 +2820,7 @@ declare function executeTransactionSync({ settings, transactionMessageBytes, add
2789
2820
  secp256r1VerifyInput?: Secp256r1VerifyInput;
2790
2821
  addressesByLookupTableAddress?: AddressesByLookupTableAddress;
2791
2822
  }): Promise<{
2792
- instructions: Instruction<string, readonly (AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[];
2823
+ instructions: Instruction<string, readonly (AccountMeta<string> | _solana_kit.AccountLookupMeta<string, string>)[]>[];
2793
2824
  addressLookupTableAccounts: AddressesByLookupTableAddress;
2794
2825
  }>;
2795
2826
 
@@ -2878,14 +2909,14 @@ type UserCreationArgs = {
2878
2909
  declare function createUserAccounts({ createUserArgs, payer, }: {
2879
2910
  payer: TransactionSigner;
2880
2911
  createUserArgs: UserCreationArgs;
2881
- }): Promise<CreateUserAccountInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, []>>;
2912
+ }): Promise<CreateUserAccountInstruction<_solana_kit.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, []>>;
2882
2913
 
2883
2914
  type CreateWalletArgs = {
2884
2915
  index: number | bigint;
2885
2916
  payer: TransactionSigner;
2886
2917
  initialMember: TransactionSigner;
2887
2918
  };
2888
- declare function createWallet({ index, payer, initialMember, }: CreateWalletArgs): Promise<CreateWalletInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, string, string, []>>;
2919
+ declare function createWallet({ index, payer, initialMember, }: CreateWalletArgs): Promise<CreateWalletInstruction<_solana_kit.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, string, string, []>>;
2889
2920
 
2890
2921
  declare function editDomainConfig({ authority, domainConfig, newAuthority, newOrigins, }: {
2891
2922
  domainConfig: Address;
@@ -2897,14 +2928,14 @@ declare function editDomainConfig({ authority, domainConfig, newAuthority, newOr
2897
2928
  declare function editTransactionManagerUrl({ signer, transactionManagerUrl, }: {
2898
2929
  signer: TransactionSigner;
2899
2930
  transactionManagerUrl: string;
2900
- }): Promise<EditTransactionManagerUrlInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, []>>;
2931
+ }): Promise<EditTransactionManagerUrlInstruction<_solana_kit.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, []>>;
2901
2932
 
2902
2933
  declare function editUserDelegate({ payer, user, oldDelegate, newDelegate, }: {
2903
2934
  payer: TransactionSigner;
2904
2935
  user: TransactionSigner | SignedSecp256r1Key;
2905
2936
  oldDelegate?: number;
2906
2937
  newDelegate?: number;
2907
- }): Promise<Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[]>;
2938
+ }): Promise<Instruction<string, readonly (_solana_kit.AccountMeta<string> | _solana_kit.AccountLookupMeta<string, string>)[]>[]>;
2908
2939
 
2909
2940
  declare function closeTransactionBuffer({ closer, payer, settings, transactionBufferAddress, }: {
2910
2941
  closer: TransactionSigner | SignedSecp256r1Key;
@@ -2942,7 +2973,7 @@ declare function voteTransactionBuffer({ settings, voter, transactionBufferAddre
2942
2973
  settings: Address;
2943
2974
  voter: TransactionSigner | SignedSecp256r1Key;
2944
2975
  transactionBufferAddress: Address;
2945
- }): Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[];
2976
+ }): Instruction<string, readonly (_solana_kit.AccountMeta<string> | _solana_kit.AccountLookupMeta<string, string>)[]>[];
2946
2977
 
2947
2978
  declare function prepareChangeConfigArgs({ settings, configActionsArgs, }: {
2948
2979
  settings: Address;
@@ -3000,8 +3031,7 @@ declare function getLightCpiSigner(): Promise<Address<string>>;
3000
3031
 
3001
3032
  declare function getSolanaRpcEndpoint(): string;
3002
3033
  declare function getLightProtocolRpc(): Rpc;
3003
- 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>;
3004
- declare function getSendAndConfirmTransaction(): SendAndConfirmTransactionWithSignersFunction;
3034
+ declare function getSolanaRpc(): Rpc$1<_solana_rpc.RequestAirdropApi & _solana_rpc.GetAccountInfoApi & _solana_rpc.GetBalanceApi & _solana_rpc.GetBlockApi & _solana_rpc.GetBlockCommitmentApi & _solana_rpc.GetBlockHeightApi & _solana_rpc.GetBlockProductionApi & _solana_rpc.GetBlocksApi & _solana_rpc.GetBlocksWithLimitApi & _solana_rpc.GetBlockTimeApi & _solana_rpc.GetClusterNodesApi & _solana_rpc.GetEpochInfoApi & _solana_rpc.GetEpochScheduleApi & _solana_rpc.GetFeeForMessageApi & _solana_rpc.GetFirstAvailableBlockApi & _solana_rpc.GetGenesisHashApi & _solana_rpc.GetHealthApi & _solana_rpc.GetHighestSnapshotSlotApi & _solana_rpc.GetIdentityApi & _solana_rpc.GetInflationGovernorApi & _solana_rpc.GetInflationRateApi & _solana_rpc.GetInflationRewardApi & _solana_rpc.GetLargestAccountsApi & _solana_rpc.GetLatestBlockhashApi & _solana_rpc.GetLeaderScheduleApi & _solana_rpc.GetMaxRetransmitSlotApi & _solana_rpc.GetMaxShredInsertSlotApi & _solana_rpc.GetMinimumBalanceForRentExemptionApi & _solana_rpc.GetMultipleAccountsApi & _solana_rpc.GetProgramAccountsApi & _solana_rpc.GetRecentPerformanceSamplesApi & _solana_rpc.GetRecentPrioritizationFeesApi & _solana_rpc.GetSignaturesForAddressApi & _solana_rpc.GetSignatureStatusesApi & _solana_rpc.GetSlotApi & _solana_rpc.GetSlotLeaderApi & _solana_rpc.GetSlotLeadersApi & _solana_rpc.GetStakeMinimumDelegationApi & _solana_rpc.GetSupplyApi & _solana_rpc.GetTokenAccountBalanceApi & _solana_rpc.GetTokenAccountsByDelegateApi & _solana_rpc.GetTokenAccountsByOwnerApi & _solana_rpc.GetTokenLargestAccountsApi & _solana_rpc.GetTokenSupplyApi & _solana_rpc.GetTransactionApi & _solana_rpc.GetTransactionCountApi & _solana_rpc.GetVersionApi & _solana_rpc.GetVoteAccountsApi & _solana_rpc.IsBlockhashValidApi & _solana_rpc.MinimumLedgerSlotApi & _solana_rpc.SendTransactionApi & _solana_rpc.SimulateTransactionApi>;
3005
3035
  declare function initialize({ rpcEndpoint, proverEndpoint, compressionApiEndpoint, }: {
3006
3036
  rpcEndpoint: string;
3007
3037
  proverEndpoint?: string;
@@ -3010,7 +3040,23 @@ declare function initialize({ rpcEndpoint, proverEndpoint, compressionApiEndpoin
3010
3040
 
3011
3041
  declare function convertPubkeyCoseToCompressed(publicKey: Uint8Array<ArrayBuffer>): string;
3012
3042
  declare function convertPubkeyCompressedToCose(publicKey: string): Uint8Array<ArrayBuffer>;
3013
- declare function getSignedSecp256r1Key(payload: TransactionAuthenticationResponse): Promise<SignedSecp256r1Key>;
3043
+ declare function getSignedSecp256r1Key(payload: {
3044
+ authResponse: AuthenticationResponseJSON;
3045
+ signer: string;
3046
+ slotNumber: string;
3047
+ slotHash: string;
3048
+ client: {
3049
+ clientOrigin: string;
3050
+ } & Record<string, unknown>;
3051
+ device: {
3052
+ jwk: string;
3053
+ } & Record<string, unknown>;
3054
+ startRequest: {
3055
+ rid: string;
3056
+ } & Record<string, unknown>;
3057
+ originIndex: number;
3058
+ crossOrigin: boolean;
3059
+ } & Record<string, unknown>): Promise<SignedSecp256r1Key>;
3014
3060
  declare function getClientAndDeviceHash(clientOrigin: string, deviceJwk: string, nonce: string): Uint8Array<ArrayBuffer>;
3015
3061
  declare function createClientAuthorizationStartRequestChallenge(payload: StartTransactionRequest | StartMessageRequest): Uint8Array<ArrayBuffer>;
3016
3062
  declare function createClientAuthorizationCompleteRequestChallenge(payload: CompleteTransactionRequest | CompleteMessageRequest): Uint8Array<ArrayBuffer>;
@@ -3055,4 +3101,4 @@ declare function fetchUserAccountByFilters(domainConfigAddress: Address, { membe
3055
3101
  }): Promise<User | null>;
3056
3102
  declare function fetchAllSettingsAccountByMember(member: Address | Secp256r1Key): Promise<Settings[]>;
3057
3103
 
3058
- export { AccountState, type AccountStateArgs, type AddMemberArgs$1 as AddMemberArgs, type AddMemberArgsArgs, type AdditionalMetadata, type AdditionalMetadataArgs, AuthenticationContextSchema, BaseResponseSchema, CHANGE_CONFIG_DISCRIMINATOR, CREATE_DOMAIN_CONFIG_DISCRIMINATOR, CREATE_DOMAIN_USER_ACCOUNT_DISCRIMINATOR, CREATE_GLOBAL_COUNTER_DISCRIMINATOR, CREATE_USER_ACCOUNT_DISCRIMINATOR, CREATE_WALLET_DISCRIMINATOR, type ChangeConfigInput, type ChangeConfigInstruction, type ChangeConfigInstructionData, type ChangeConfigInstructionDataArgs, type ChangeConfigInstructionExtraArgs, type CompiledInstruction, type CompiledInstructionArgs, type CompleteMessageRequest, CompleteMessageRequestSchema, type CompleteTransactionRequest, CompleteTransactionRequestSchema, type CompressedOnlyExtension, type CompressedOnlyExtensionArgs, type CompressedProof, type CompressedProofArgs, type CompressedTokenArgs, type CompressedTokenArgsArgs, type CompressibleExtension, type CompressibleExtensionArgs, type CompressionInfo, type CompressionInfoArgs, type ConfigAction, type ConfigActionArgs, type ConfigurationArgs, type CreateDomainConfigAsyncInput, type CreateDomainConfigInput, type CreateDomainConfigInstruction, type CreateDomainConfigInstructionData, type CreateDomainConfigInstructionDataArgs, type CreateDomainConfigInstructionExtraArgs, type CreateDomainUserAccountInput, type CreateDomainUserAccountInstruction, type CreateDomainUserAccountInstructionData, type CreateDomainUserAccountInstructionDataArgs, type CreateDomainUserAccountInstructionExtraArgs, type CreateGlobalCounterAsyncInput, type CreateGlobalCounterInput, type CreateGlobalCounterInstruction, type CreateGlobalCounterInstructionData, type CreateGlobalCounterInstructionDataArgs, type CreateGlobalCounterInstructionExtraArgs, type CreateUserAccountAsyncInput, type CreateUserAccountInput, type CreateUserAccountInstruction, type CreateUserAccountInstructionData, type CreateUserAccountInstructionDataArgs, type CreateUserAccountInstructionExtraArgs, type CreateWalletAsyncInput, type CreateWalletInput, type CreateWalletInstruction, type CreateWalletInstructionData, type CreateWalletInstructionDataArgs, type CreateWalletInstructionExtraArgs, DISABLE_DOMAIN_CONFIG_DISCRIMINATOR, DOMAIN_CONFIG_DISCRIMINATOR, type DeviceProfile, DeviceProfileSchema, type DisableDomainConfigInput, type DisableDomainConfigInstruction, type DisableDomainConfigInstructionData, type DisableDomainConfigInstructionDataArgs, type DisableDomainConfigInstructionExtraArgs, type DomainConfig, type DomainConfigArgs, EDIT_DOMAIN_CONFIG_DISCRIMINATOR, EDIT_TRANSACTION_MANAGER_URL_DISCRIMINATOR, EDIT_USER_DELEGATE_DISCRIMINATOR, type EditDomainConfigInput, type EditDomainConfigInstruction, type EditDomainConfigInstructionData, type EditDomainConfigInstructionDataArgs, type EditDomainConfigInstructionExtraArgs, type EditMemberArgs$1 as EditMemberArgs, type EditMemberArgsArgs, type EditTransactionManagerUrlAsyncInput, type EditTransactionManagerUrlInput, type EditTransactionManagerUrlInstruction, type EditTransactionManagerUrlInstructionData, type EditTransactionManagerUrlInstructionDataArgs, type EditTransactionManagerUrlInstructionExtraArgs, type EditUserDelegateInput, type EditUserDelegateInstruction, type EditUserDelegateInstructionData, type EditUserDelegateInstructionDataArgs, type EditUserDelegateInstructionExtraArgs, type ExpectedSigner, type ExpectedSignerArgs, type ExtensionStruct, type ExtensionStructArgs, GLOBAL_COUNTER_DISCRIMINATOR, type GlobalCounter, type GlobalCounterArgs, type IKeyType, type IPermission, type IPermissions, KeyType, MULTI_WALLET_ERROR__ALREADY_DELEGATED, MULTI_WALLET_ERROR__CLIENT_DATA_HASH_MISMATCH, MULTI_WALLET_ERROR__CREDENTIAL_ID_IS_MISSING, MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_DISABLED, MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_MISSING, MULTI_WALLET_ERROR__DOMAIN_CONFIG_KEY_MISMATCH, 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__HASH_COMPUTATION_FAILED, 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_ACCOUNT_INDEX, MULTI_WALLET_ERROR__INVALID_ADMINISTRATOR_CONFIG, MULTI_WALLET_ERROR__INVALID_ARGUMENTS, MULTI_WALLET_ERROR__INVALID_BUFFER, MULTI_WALLET_ERROR__INVALID_MEMBER_KEY_FORMAT, MULTI_WALLET_ERROR__INVALID_NON_DELEGATED_SIGNERS, MULTI_WALLET_ERROR__INVALID_NUMBER_OF_ACCOUNTS, MULTI_WALLET_ERROR__INVALID_PERMANENT_MEMBER_CONFIG, MULTI_WALLET_ERROR__INVALID_SECP256R1_INSTRUCTION, MULTI_WALLET_ERROR__INVALID_SECP256R1_PUBLIC_KEY, MULTI_WALLET_ERROR__INVALID_SECP256R1_VERIFY_ARG, MULTI_WALLET_ERROR__INVALID_SIGNATURE_OFFSETS, MULTI_WALLET_ERROR__INVALID_SLOT_NUMBER, MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT, MULTI_WALLET_ERROR__INVALID_THRESHOLD, MULTI_WALLET_ERROR__INVALID_TOKEN_SOURCE_TYPE, 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_ED25519_CONFIG, MULTI_WALLET_ERROR__INVALID_USER_ROLE, MULTI_WALLET_ERROR__INVALID_USER_TRANSACTION_MANAGER_CONFIG, MULTI_WALLET_ERROR__LIGHT_CPI_ACCOUNT_ERROR, MULTI_WALLET_ERROR__MALFORMED_SIGNED_MESSAGE, MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED, MULTI_WALLET_ERROR__MEMBER_NOT_FOUND, MULTI_WALLET_ERROR__MISSING_ACCOUNT, MULTI_WALLET_ERROR__MISSING_COMPRESSED_PROOF_ARGS, MULTI_WALLET_ERROR__MISSING_COMPRESSED_TOKEN_ACCOUNT, MULTI_WALLET_ERROR__MISSING_DESTINATION_TOKEN_ACCOUNT, MULTI_WALLET_ERROR__MISSING_INSTRUCTIONS_SYSVAR, MULTI_WALLET_ERROR__MISSING_LIGHT_CPI_ACCOUNTS, MULTI_WALLET_ERROR__MISSING_NEW_AUTHORITY, MULTI_WALLET_ERROR__MISSING_SETTINGS_ACCOUNT_FOR_DELEGATE, MULTI_WALLET_ERROR__MISSING_SPL_INTERFACE_PDA, MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY, MULTI_WALLET_ERROR__NO_SIGNER_FOUND, MULTI_WALLET_ERROR__ONLY_ONE_ADMINISTRATOR_ALLOWED, 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__PAYER_MISMATCH, MULTI_WALLET_ERROR__PERMANENT_MEMBER, MULTI_WALLET_ERROR__PROTECTED_ACCOUNT, MULTI_WALLET_ERROR__RP_ID_HASH_MISMATCH, MULTI_WALLET_ERROR__SETTINGS_KEY_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__TRANSPORTS_IS_MISSING, MULTI_WALLET_ERROR__UNAUTHORISED_TO_CLOSE_TRANSACTION_BUFFER, MULTI_WALLET_ERROR__UNAUTHORIZED_ADMIN_ONLY, MULTI_WALLET_ERROR__UNEXPECTED_SIGNER, MULTI_WALLET_PROGRAM_ADDRESS, type Member, type MemberArgs, type MemberKey, type MemberKeyArgs, type MessageAuthenticationResponse, MultiWalletAccount, type MultiWalletError, MultiWalletInstruction, NATIVE_TRANSFER_INTENT_DISCRIMINATOR, type NativeTransferIntentAsyncInput, type NativeTransferIntentInput, type NativeTransferIntentInstruction, type NativeTransferIntentInstructionData, type NativeTransferIntentInstructionDataArgs, type NativeTransferIntentInstructionExtraArgs, type NativeTransferIntentParams, type PackedMerkleContext, type PackedMerkleContextArgs, type ParsedChangeConfigInstruction, type ParsedCreateDomainConfigInstruction, type ParsedCreateDomainUserAccountInstruction, type ParsedCreateGlobalCounterInstruction, type ParsedCreateUserAccountInstruction, type ParsedCreateWalletInstruction, type ParsedDisableDomainConfigInstruction, type ParsedEditDomainConfigInstruction, type ParsedEditTransactionManagerUrlInstruction, type ParsedEditUserDelegateInstruction, type ParsedMultiWalletInstruction, type ParsedNativeTransferIntentInstruction, type ParsedSecp256r1VerifyInstruction, type ParsedTokenTransferIntentInstruction, type ParsedTransactionBufferCloseInstruction, type ParsedTransactionBufferCreateInstruction, type ParsedTransactionBufferExecuteInstruction, type ParsedTransactionBufferExtendInstruction, type ParsedTransactionBufferVoteInstruction, type ParsedTransactionExecuteInstruction, type ParsedTransactionExecuteSyncInstruction, type PausableAccountExtension, type PausableAccountExtensionArgs, type PermanentDelegateAccountExtension, type PermanentDelegateAccountExtensionArgs, Permission, type PermissionArgs, Permissions, type PermissionsArgs, type ProofArgs, type ProofArgsArgs, type RemoveMemberArgs$1 as RemoveMemberArgs, type RemoveMemberArgsArgs, type RentConfig, type RentConfigArgs, SETTINGS_DISCRIMINATOR, Secp256r1Key, type Secp256r1Pubkey, type Secp256r1PubkeyArgs, type Secp256r1SignatureOffsetsDataArgs, type Secp256r1VerifyArgs, type Secp256r1VerifyArgsArgs, type Secp256r1VerifyArgsWithDomainConfigIndex, type Secp256r1VerifyArgsWithDomainConfigIndexArgs, type Secp256r1VerifyInput, type Secp256r1VerifyInstruction, type Secp256r1VerifyInstructionData, type Secp256r1VerifyInstructionDataArgs, type Settings, type SettingsArgs, type SettingsIndexWithDelegateInfo, type SettingsIndexWithDelegateInfoArgs, SignedSecp256r1Key, type SplInterfacePdaArgs, type SplInterfacePdaArgsArgs, type StartMessageRequest, StartMessageRequestSchema, type StartTransactionRequest, StartTransactionRequestSchema, TOKEN_TRANSFER_INTENT_DISCRIMINATOR, TRANSACTION_BUFFER_CLOSE_DISCRIMINATOR, TRANSACTION_BUFFER_CREATE_DISCRIMINATOR, TRANSACTION_BUFFER_DISCRIMINATOR, TRANSACTION_BUFFER_EXECUTE_DISCRIMINATOR, TRANSACTION_BUFFER_EXTEND_DISCRIMINATOR, TRANSACTION_BUFFER_VOTE_DISCRIMINATOR, TRANSACTION_EXECUTE_DISCRIMINATOR, TRANSACTION_EXECUTE_SYNC_DISCRIMINATOR, type TokenMetadata, type TokenMetadataArgs, type TokenTransferIntentAsyncInput, type TokenTransferIntentInput, type TokenTransferIntentInstruction, type TokenTransferIntentInstructionData, type TokenTransferIntentInstructionDataArgs, type TokenTransferIntentInstructionExtraArgs, type TokenTransferIntentParams, type TransactionActionType, TransactionActionTypeSchema, type TransactionAuthDetails, type TransactionAuthenticationResponse, type TransactionBuffer, type TransactionBufferArgs, type TransactionBufferCloseInput, type TransactionBufferCloseInstruction, type TransactionBufferCloseInstructionData, type TransactionBufferCloseInstructionDataArgs, type TransactionBufferCloseInstructionExtraArgs, type TransactionBufferCreateInput, type TransactionBufferCreateInstruction, type TransactionBufferCreateInstructionData, type TransactionBufferCreateInstructionDataArgs, type TransactionBufferCreateInstructionExtraArgs, type TransactionBufferExecuteInput, type TransactionBufferExecuteInstruction, type TransactionBufferExecuteInstructionData, type TransactionBufferExecuteInstructionDataArgs, type TransactionBufferExecuteInstructionExtraArgs, type TransactionBufferExtendInput, type TransactionBufferExtendInstruction, type TransactionBufferExtendInstructionData, type TransactionBufferExtendInstructionDataArgs, type TransactionBufferExtendInstructionExtraArgs, type TransactionBufferVoteInput, type TransactionBufferVoteInstruction, type TransactionBufferVoteInstructionData, type TransactionBufferVoteInstructionDataArgs, type TransactionBufferVoteInstructionExtraArgs, type TransactionDetails, TransactionDetailsSchema, type TransactionExecuteInput, type TransactionExecuteInstruction, type TransactionExecuteInstructionData, type TransactionExecuteInstructionDataArgs, type TransactionExecuteInstructionExtraArgs, type TransactionExecuteSyncInput, type TransactionExecuteSyncInstruction, type TransactionExecuteSyncInstructionData, type TransactionExecuteSyncInstructionDataArgs, type TransactionExecuteSyncInstructionExtraArgs, type TransactionMessageAddressTableLookup, type TransactionMessageAddressTableLookupArgs, type TransactionPayload, TransactionPayloadSchema, type TransactionPayloadWithBase64MessageBytes, TransactionPayloadWithBase64MessageBytesSchema, type TransactionSyncSigners, type TransactionSyncSignersArgs, type TransferFeeAccountExtension, type TransferFeeAccountExtensionArgs, type TransferHookAccountExtension, type TransferHookAccountExtensionArgs, Transports, type TransportsArgs, USER_DISCRIMINATOR, type User, type UserArgs, type UserInfo, UserInfoSchema, UserRole, type UserRoleArgs, base64URLStringToBuffer, bufferToBase64URLString, changeConfig, closeTransactionBuffer, configAction, convertBase64StringToJWK, convertJWKToBase64String, convertMemberKeyToString, convertPubkeyCompressedToCose, convertPubkeyCoseToCompressed, createClientAuthorizationCompleteRequestChallenge, createClientAuthorizationStartRequestChallenge, createDomainConfig, createDomainUserAccounts, createGlobalCounter, createMessageChallenge, createTransactionBuffer, createTransactionChallenge, createTransactionManagerSigner, createUserAccounts, createWallet, decodeDomainConfig, decodeGlobalCounter, decodeSettings, decodeTransactionBuffer, decodeUser, deserializeConfigActions, disableDomainConfig, editDomainConfig, editTransactionManagerUrl, editUserDelegate, executeTransaction, executeTransactionBuffer, executeTransactionSync, extendTransactionBuffer, extensionStruct, fetchAllDomainConfig, fetchAllGlobalCounter, fetchAllMaybeDomainConfig, fetchAllMaybeGlobalCounter, fetchAllMaybeSettings, fetchAllMaybeTransactionBuffer, fetchAllMaybeUser, fetchAllSettings, fetchAllSettingsAccountByMember, fetchAllTransactionBuffer, fetchAllUser, fetchDomainConfig, fetchGlobalCounter, fetchMaybeDomainConfig, fetchMaybeGlobalCounter, fetchMaybeSettings, fetchMaybeTransactionBuffer, fetchMaybeUser, fetchSettings, fetchTransactionBuffer, fetchUser, fetchUserAccountByFilters, getAccountStateCodec, getAccountStateDecoder, getAccountStateEncoder, getAddMemberArgsCodec, getAddMemberArgsDecoder, getAddMemberArgsEncoder, getAdditionalMetadataCodec, getAdditionalMetadataDecoder, getAdditionalMetadataEncoder, getChangeConfigDiscriminatorBytes, getChangeConfigInstruction, getChangeConfigInstructionDataCodec, getChangeConfigInstructionDataDecoder, getChangeConfigInstructionDataEncoder, getClientAndDeviceHash, getCompiledInstructionCodec, getCompiledInstructionDecoder, getCompiledInstructionEncoder, getCompressedOnlyExtensionCodec, getCompressedOnlyExtensionDecoder, getCompressedOnlyExtensionEncoder, getCompressedProofCodec, getCompressedProofDecoder, getCompressedProofEncoder, getCompressedTokenArgsCodec, getCompressedTokenArgsDecoder, getCompressedTokenArgsEncoder, getCompressibleExtensionCodec, getCompressibleExtensionDecoder, getCompressibleExtensionEncoder, getCompressionInfoCodec, getCompressionInfoDecoder, getCompressionInfoEncoder, getConfigActionCodec, getConfigActionDecoder, getConfigActionEncoder, getCreateDomainConfigDiscriminatorBytes, getCreateDomainConfigInstruction, getCreateDomainConfigInstructionAsync, getCreateDomainConfigInstructionDataCodec, getCreateDomainConfigInstructionDataDecoder, getCreateDomainConfigInstructionDataEncoder, getCreateDomainUserAccountDiscriminatorBytes, getCreateDomainUserAccountInstruction, getCreateDomainUserAccountInstructionDataCodec, getCreateDomainUserAccountInstructionDataDecoder, getCreateDomainUserAccountInstructionDataEncoder, getCreateGlobalCounterDiscriminatorBytes, getCreateGlobalCounterInstruction, getCreateGlobalCounterInstructionAsync, getCreateGlobalCounterInstructionDataCodec, getCreateGlobalCounterInstructionDataDecoder, getCreateGlobalCounterInstructionDataEncoder, getCreateUserAccountDiscriminatorBytes, getCreateUserAccountInstruction, getCreateUserAccountInstructionAsync, getCreateUserAccountInstructionDataCodec, getCreateUserAccountInstructionDataDecoder, getCreateUserAccountInstructionDataEncoder, getCreateWalletDiscriminatorBytes, getCreateWalletInstruction, getCreateWalletInstructionAsync, getCreateWalletInstructionDataCodec, getCreateWalletInstructionDataDecoder, getCreateWalletInstructionDataEncoder, getDeviceMessageHash, getDisableDomainConfigDiscriminatorBytes, getDisableDomainConfigInstruction, getDisableDomainConfigInstructionDataCodec, getDisableDomainConfigInstructionDataDecoder, getDisableDomainConfigInstructionDataEncoder, getDomainConfigAddress, getDomainConfigCodec, getDomainConfigDecoder, getDomainConfigDiscriminatorBytes, getDomainConfigEncoder, getDomainConfigSize, getEditDomainConfigDiscriminatorBytes, getEditDomainConfigInstruction, getEditDomainConfigInstructionDataCodec, getEditDomainConfigInstructionDataDecoder, getEditDomainConfigInstructionDataEncoder, getEditMemberArgsCodec, getEditMemberArgsDecoder, getEditMemberArgsEncoder, getEditTransactionManagerUrlDiscriminatorBytes, getEditTransactionManagerUrlInstruction, getEditTransactionManagerUrlInstructionAsync, getEditTransactionManagerUrlInstructionDataCodec, getEditTransactionManagerUrlInstructionDataDecoder, getEditTransactionManagerUrlInstructionDataEncoder, getEditUserDelegateDiscriminatorBytes, getEditUserDelegateInstruction, getEditUserDelegateInstructionDataCodec, getEditUserDelegateInstructionDataDecoder, getEditUserDelegateInstructionDataEncoder, getExpectedSignerCodec, getExpectedSignerDecoder, getExpectedSignerEncoder, getExtensionStructCodec, getExtensionStructDecoder, getExtensionStructEncoder, getGlobalCounterAddress, getGlobalCounterCodec, getGlobalCounterDecoder, getGlobalCounterDiscriminatorBytes, getGlobalCounterEncoder, getGlobalCounterSize, getLightCpiSigner, getLightProtocolRpc, getMemberCodec, getMemberDecoder, getMemberEncoder, getMemberKeyCodec, getMemberKeyDecoder, getMemberKeyEncoder, getMultiWalletErrorMessage, getNativeTransferIntentDiscriminatorBytes, getNativeTransferIntentInstruction, getNativeTransferIntentInstructionAsync, getNativeTransferIntentInstructionDataCodec, getNativeTransferIntentInstructionDataDecoder, getNativeTransferIntentInstructionDataEncoder, getOriginIndex, getPackedMerkleContextCodec, getPackedMerkleContextDecoder, getPackedMerkleContextEncoder, getPausableAccountExtensionCodec, getPausableAccountExtensionDecoder, getPausableAccountExtensionEncoder, getPermanentDelegateAccountExtensionCodec, getPermanentDelegateAccountExtensionDecoder, getPermanentDelegateAccountExtensionEncoder, getPermissionsCodec, getPermissionsDecoder, getPermissionsEncoder, getProofArgsCodec, getProofArgsDecoder, getProofArgsEncoder, getRemoveMemberArgsCodec, getRemoveMemberArgsDecoder, getRemoveMemberArgsEncoder, getRentConfigCodec, getRentConfigDecoder, getRentConfigEncoder, getSecp256r1MessageHash, getSecp256r1PubkeyCodec, getSecp256r1PubkeyDecoder, getSecp256r1PubkeyEncoder, getSecp256r1SignatureOffsetsDataDecoder, getSecp256r1SignatureOffsetsDataEncoder, getSecp256r1VerifyArgsCodec, getSecp256r1VerifyArgsDecoder, getSecp256r1VerifyArgsEncoder, getSecp256r1VerifyArgsWithDomainConfigIndexCodec, getSecp256r1VerifyArgsWithDomainConfigIndexDecoder, getSecp256r1VerifyArgsWithDomainConfigIndexEncoder, getSecp256r1VerifyInstruction, getSecp256r1VerifyInstructionDataCodec, getSecp256r1VerifyInstructionDataDecoder, getSecp256r1VerifyInstructionDataEncoder, getSendAndConfirmTransaction, getSettingsCodec, getSettingsDecoder, getSettingsDiscriminatorBytes, getSettingsEncoder, getSettingsFromIndex, getSettingsIndexWithDelegateInfoCodec, getSettingsIndexWithDelegateInfoDecoder, getSettingsIndexWithDelegateInfoEncoder, getSignedSecp256r1Key, getSolanaRpc, getSolanaRpcEndpoint, getSplInterfacePdaArgsCodec, getSplInterfacePdaArgsDecoder, getSplInterfacePdaArgsEncoder, getTokenMetadataCodec, getTokenMetadataDecoder, getTokenMetadataEncoder, getTokenTransferIntentDiscriminatorBytes, getTokenTransferIntentInstruction, getTokenTransferIntentInstructionAsync, getTokenTransferIntentInstructionDataCodec, getTokenTransferIntentInstructionDataDecoder, getTokenTransferIntentInstructionDataEncoder, getTransactionBufferAddress, getTransactionBufferCloseDiscriminatorBytes, getTransactionBufferCloseInstruction, getTransactionBufferCloseInstructionDataCodec, getTransactionBufferCloseInstructionDataDecoder, getTransactionBufferCloseInstructionDataEncoder, getTransactionBufferCodec, getTransactionBufferCreateDiscriminatorBytes, getTransactionBufferCreateInstruction, getTransactionBufferCreateInstructionDataCodec, getTransactionBufferCreateInstructionDataDecoder, getTransactionBufferCreateInstructionDataEncoder, getTransactionBufferDecoder, getTransactionBufferDiscriminatorBytes, getTransactionBufferEncoder, getTransactionBufferExecuteDiscriminatorBytes, getTransactionBufferExecuteInstruction, getTransactionBufferExecuteInstructionDataCodec, getTransactionBufferExecuteInstructionDataDecoder, getTransactionBufferExecuteInstructionDataEncoder, getTransactionBufferExtendDiscriminatorBytes, getTransactionBufferExtendInstruction, getTransactionBufferExtendInstructionDataCodec, getTransactionBufferExtendInstructionDataDecoder, getTransactionBufferExtendInstructionDataEncoder, getTransactionBufferVoteDiscriminatorBytes, getTransactionBufferVoteInstruction, getTransactionBufferVoteInstructionDataCodec, getTransactionBufferVoteInstructionDataDecoder, getTransactionBufferVoteInstructionDataEncoder, getTransactionExecuteDiscriminatorBytes, getTransactionExecuteInstruction, getTransactionExecuteInstructionDataCodec, getTransactionExecuteInstructionDataDecoder, getTransactionExecuteInstructionDataEncoder, getTransactionExecuteSyncDiscriminatorBytes, getTransactionExecuteSyncInstruction, getTransactionExecuteSyncInstructionDataCodec, getTransactionExecuteSyncInstructionDataDecoder, getTransactionExecuteSyncInstructionDataEncoder, getTransactionMessageAddressTableLookupCodec, getTransactionMessageAddressTableLookupDecoder, getTransactionMessageAddressTableLookupEncoder, getTransactionSyncSignersCodec, getTransactionSyncSignersDecoder, getTransactionSyncSignersEncoder, getTransferFeeAccountExtensionCodec, getTransferFeeAccountExtensionDecoder, getTransferFeeAccountExtensionEncoder, getTransferHookAccountExtensionCodec, getTransferHookAccountExtensionDecoder, getTransferHookAccountExtensionEncoder, getTransportsCodec, getTransportsDecoder, getTransportsEncoder, getUserAddress, getUserCodec, getUserDecoder, getUserDiscriminatorBytes, getUserEncoder, getUserRoleCodec, getUserRoleDecoder, getUserRoleEncoder, getVersionFromDiscriminator, getWalletAddressFromIndex, getWalletAddressFromSettings, identifyMultiWalletAccount, identifyMultiWalletInstruction, initialize, isConfigAction, isExtensionStruct, isMultiWalletError, isTransactionSyncSigners, nativeTransferIntent, parseChangeConfigInstruction, parseCreateDomainConfigInstruction, parseCreateDomainUserAccountInstruction, parseCreateGlobalCounterInstruction, parseCreateUserAccountInstruction, parseCreateWalletInstruction, parseDisableDomainConfigInstruction, parseEditDomainConfigInstruction, parseEditTransactionManagerUrlInstruction, parseEditUserDelegateInstruction, parseNativeTransferIntentInstruction, parseSecp256r1VerifyInstruction, parseTokenTransferIntentInstruction, parseTransactionBufferCloseInstruction, parseTransactionBufferCreateInstruction, parseTransactionBufferExecuteInstruction, parseTransactionBufferExtendInstruction, parseTransactionBufferVoteInstruction, parseTransactionExecuteInstruction, parseTransactionExecuteSyncInstruction, prepareChangeConfigArgs, prepareTransactionBundle, prepareTransactionMessage, prepareTransactionSync, retrieveTransactionManager, serializeConfigActions, tokenTransferIntent, transactionSyncSigners, vaultTransactionMessageDeserialize, vaultTransactionMessageSerialize, voteTransactionBuffer };
3104
+ export { AccountState, type AccountStateArgs, type AddMemberArgs$1 as AddMemberArgs, type AddMemberArgsArgs, type AdditionalMetadata, type AdditionalMetadataArgs, AuthenticationContextSchema, BaseResponseSchema, CHANGE_CONFIG_DISCRIMINATOR, CREATE_DOMAIN_CONFIG_DISCRIMINATOR, CREATE_DOMAIN_USER_ACCOUNT_DISCRIMINATOR, CREATE_GLOBAL_COUNTER_DISCRIMINATOR, CREATE_USER_ACCOUNT_DISCRIMINATOR, CREATE_WALLET_DISCRIMINATOR, type ChangeConfigInput, type ChangeConfigInstruction, type ChangeConfigInstructionData, type ChangeConfigInstructionDataArgs, type ChangeConfigInstructionExtraArgs, type CompiledInstruction, type CompiledInstructionArgs, type CompleteMessageRequest, CompleteMessageRequestSchema, type CompleteTransactionRequest, CompleteTransactionRequestSchema, type CompressedOnlyExtension, type CompressedOnlyExtensionArgs, type CompressedProof, type CompressedProofArgs, type CompressedTokenArgs, type CompressedTokenArgsArgs, type CompressibleExtension, type CompressibleExtensionArgs, type CompressionInfo, type CompressionInfoArgs, type ConfigAction, type ConfigActionArgs, type ConfigurationArgs, type CreateDomainConfigAsyncInput, type CreateDomainConfigInput, type CreateDomainConfigInstruction, type CreateDomainConfigInstructionData, type CreateDomainConfigInstructionDataArgs, type CreateDomainConfigInstructionExtraArgs, type CreateDomainUserAccountInput, type CreateDomainUserAccountInstruction, type CreateDomainUserAccountInstructionData, type CreateDomainUserAccountInstructionDataArgs, type CreateDomainUserAccountInstructionExtraArgs, type CreateGlobalCounterAsyncInput, type CreateGlobalCounterInput, type CreateGlobalCounterInstruction, type CreateGlobalCounterInstructionData, type CreateGlobalCounterInstructionDataArgs, type CreateGlobalCounterInstructionExtraArgs, type CreateUserAccountAsyncInput, type CreateUserAccountInput, type CreateUserAccountInstruction, type CreateUserAccountInstructionData, type CreateUserAccountInstructionDataArgs, type CreateUserAccountInstructionExtraArgs, type CreateWalletAsyncInput, type CreateWalletInput, type CreateWalletInstruction, type CreateWalletInstructionData, type CreateWalletInstructionDataArgs, type CreateWalletInstructionExtraArgs, DISABLE_DOMAIN_CONFIG_DISCRIMINATOR, DOMAIN_CONFIG_DISCRIMINATOR, type DeviceProfile, DeviceProfileSchema, type DisableDomainConfigInput, type DisableDomainConfigInstruction, type DisableDomainConfigInstructionData, type DisableDomainConfigInstructionDataArgs, type DisableDomainConfigInstructionExtraArgs, type DomainConfig, type DomainConfigArgs, EDIT_DOMAIN_CONFIG_DISCRIMINATOR, EDIT_TRANSACTION_MANAGER_URL_DISCRIMINATOR, EDIT_USER_DELEGATE_DISCRIMINATOR, type EditDomainConfigInput, type EditDomainConfigInstruction, type EditDomainConfigInstructionData, type EditDomainConfigInstructionDataArgs, type EditDomainConfigInstructionExtraArgs, type EditMemberArgs$1 as EditMemberArgs, type EditMemberArgsArgs, type EditTransactionManagerUrlAsyncInput, type EditTransactionManagerUrlInput, type EditTransactionManagerUrlInstruction, type EditTransactionManagerUrlInstructionData, type EditTransactionManagerUrlInstructionDataArgs, type EditTransactionManagerUrlInstructionExtraArgs, type EditUserDelegateInput, type EditUserDelegateInstruction, type EditUserDelegateInstructionData, type EditUserDelegateInstructionDataArgs, type EditUserDelegateInstructionExtraArgs, type ExpectedSigner, type ExpectedSignerArgs, type ExtensionStruct, type ExtensionStructArgs, GLOBAL_COUNTER_DISCRIMINATOR, type GlobalCounter, type GlobalCounterArgs, type IKeyType, type IPermission, type IPermissions, KeyType, MULTI_WALLET_ERROR__ALREADY_DELEGATED, MULTI_WALLET_ERROR__CLIENT_DATA_HASH_MISMATCH, MULTI_WALLET_ERROR__CREDENTIAL_ID_IS_MISSING, MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_DISABLED, MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_MISSING, MULTI_WALLET_ERROR__DOMAIN_CONFIG_KEY_MISMATCH, 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__HASH_COMPUTATION_FAILED, 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_ACCOUNT_INDEX, MULTI_WALLET_ERROR__INVALID_ADMINISTRATOR_CONFIG, MULTI_WALLET_ERROR__INVALID_ARGUMENTS, MULTI_WALLET_ERROR__INVALID_BUFFER, MULTI_WALLET_ERROR__INVALID_MEMBER_KEY_FORMAT, MULTI_WALLET_ERROR__INVALID_NON_DELEGATED_SIGNERS, MULTI_WALLET_ERROR__INVALID_NUMBER_OF_ACCOUNTS, MULTI_WALLET_ERROR__INVALID_PERMANENT_MEMBER_CONFIG, MULTI_WALLET_ERROR__INVALID_SECP256R1_INSTRUCTION, MULTI_WALLET_ERROR__INVALID_SECP256R1_PUBLIC_KEY, MULTI_WALLET_ERROR__INVALID_SECP256R1_VERIFY_ARG, MULTI_WALLET_ERROR__INVALID_SIGNATURE_OFFSETS, MULTI_WALLET_ERROR__INVALID_SLOT_NUMBER, MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT, MULTI_WALLET_ERROR__INVALID_THRESHOLD, MULTI_WALLET_ERROR__INVALID_TOKEN_SOURCE_TYPE, 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_ED25519_CONFIG, MULTI_WALLET_ERROR__INVALID_USER_ROLE, MULTI_WALLET_ERROR__INVALID_USER_TRANSACTION_MANAGER_CONFIG, MULTI_WALLET_ERROR__LIGHT_CPI_ACCOUNT_ERROR, MULTI_WALLET_ERROR__MALFORMED_SIGNED_MESSAGE, MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED, MULTI_WALLET_ERROR__MEMBER_NOT_FOUND, MULTI_WALLET_ERROR__MISSING_ACCOUNT, MULTI_WALLET_ERROR__MISSING_COMPRESSED_PROOF_ARGS, MULTI_WALLET_ERROR__MISSING_COMPRESSED_TOKEN_ACCOUNT, MULTI_WALLET_ERROR__MISSING_DESTINATION_TOKEN_ACCOUNT, MULTI_WALLET_ERROR__MISSING_INSTRUCTIONS_SYSVAR, MULTI_WALLET_ERROR__MISSING_LIGHT_CPI_ACCOUNTS, MULTI_WALLET_ERROR__MISSING_NEW_AUTHORITY, MULTI_WALLET_ERROR__MISSING_SETTINGS_ACCOUNT_FOR_DELEGATE, MULTI_WALLET_ERROR__MISSING_SPL_INTERFACE_PDA, MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY, MULTI_WALLET_ERROR__NO_SIGNER_FOUND, MULTI_WALLET_ERROR__ONLY_ONE_ADMINISTRATOR_ALLOWED, 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__PAYER_MISMATCH, MULTI_WALLET_ERROR__PERMANENT_MEMBER, MULTI_WALLET_ERROR__PROTECTED_ACCOUNT, MULTI_WALLET_ERROR__RP_ID_HASH_MISMATCH, MULTI_WALLET_ERROR__SETTINGS_KEY_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__TRANSPORTS_IS_MISSING, MULTI_WALLET_ERROR__UNAUTHORISED_TO_CLOSE_TRANSACTION_BUFFER, MULTI_WALLET_ERROR__UNAUTHORIZED_ADMIN_ONLY, MULTI_WALLET_ERROR__UNEXPECTED_SIGNER, MULTI_WALLET_PROGRAM_ADDRESS, type Member, type MemberArgs, type MemberKey, type MemberKeyArgs, type MessageAuthenticationResponse, MultiWalletAccount, type MultiWalletError, MultiWalletInstruction, NATIVE_TRANSFER_INTENT_DISCRIMINATOR, type NativeTransferIntentAsyncInput, type NativeTransferIntentInput, type NativeTransferIntentInstruction, type NativeTransferIntentInstructionData, type NativeTransferIntentInstructionDataArgs, type NativeTransferIntentInstructionExtraArgs, type NativeTransferIntentParams, type PackedMerkleContext, type PackedMerkleContextArgs, type ParsedChangeConfigInstruction, type ParsedCreateDomainConfigInstruction, type ParsedCreateDomainUserAccountInstruction, type ParsedCreateGlobalCounterInstruction, type ParsedCreateUserAccountInstruction, type ParsedCreateWalletInstruction, type ParsedDisableDomainConfigInstruction, type ParsedEditDomainConfigInstruction, type ParsedEditTransactionManagerUrlInstruction, type ParsedEditUserDelegateInstruction, type ParsedMultiWalletInstruction, type ParsedNativeTransferIntentInstruction, type ParsedSecp256r1VerifyInstruction, type ParsedTokenTransferIntentInstruction, type ParsedTransactionBufferCloseInstruction, type ParsedTransactionBufferCreateInstruction, type ParsedTransactionBufferExecuteInstruction, type ParsedTransactionBufferExtendInstruction, type ParsedTransactionBufferVoteInstruction, type ParsedTransactionExecuteInstruction, type ParsedTransactionExecuteSyncInstruction, type PausableAccountExtension, type PausableAccountExtensionArgs, type PermanentDelegateAccountExtension, type PermanentDelegateAccountExtensionArgs, Permission, type PermissionArgs, Permissions, type PermissionsArgs, type ProofArgs, type ProofArgsArgs, type RemoveMemberArgs$1 as RemoveMemberArgs, type RemoveMemberArgsArgs, type RentConfig, type RentConfigArgs, SETTINGS_DISCRIMINATOR, Secp256r1Key, type Secp256r1Pubkey, type Secp256r1PubkeyArgs, type Secp256r1SignatureOffsetsDataArgs, type Secp256r1VerifyArgs, type Secp256r1VerifyArgsArgs, type Secp256r1VerifyArgsWithDomainConfigIndex, type Secp256r1VerifyArgsWithDomainConfigIndexArgs, type Secp256r1VerifyInput, type Secp256r1VerifyInstruction, type Secp256r1VerifyInstructionData, type Secp256r1VerifyInstructionDataArgs, type Settings, type SettingsArgs, type SettingsIndexWithDelegateInfo, type SettingsIndexWithDelegateInfoArgs, SignedSecp256r1Key, type SplInterfacePdaArgs, type SplInterfacePdaArgsArgs, type StartMessageRequest, StartMessageRequestSchema, type StartTransactionRequest, StartTransactionRequestSchema, TOKEN_TRANSFER_INTENT_DISCRIMINATOR, TRANSACTION_BUFFER_CLOSE_DISCRIMINATOR, TRANSACTION_BUFFER_CREATE_DISCRIMINATOR, TRANSACTION_BUFFER_DISCRIMINATOR, TRANSACTION_BUFFER_EXECUTE_DISCRIMINATOR, TRANSACTION_BUFFER_EXTEND_DISCRIMINATOR, TRANSACTION_BUFFER_VOTE_DISCRIMINATOR, TRANSACTION_EXECUTE_DISCRIMINATOR, TRANSACTION_EXECUTE_SYNC_DISCRIMINATOR, type TokenMetadata, type TokenMetadataArgs, type TokenTransferIntentAsyncInput, type TokenTransferIntentInput, type TokenTransferIntentInstruction, type TokenTransferIntentInstructionData, type TokenTransferIntentInstructionDataArgs, type TokenTransferIntentInstructionExtraArgs, type TokenTransferIntentParams, type TransactionActionType, TransactionActionTypeSchema, type TransactionAuthDetails, type TransactionAuthenticationResponse, type TransactionBuffer, type TransactionBufferArgs, type TransactionBufferCloseInput, type TransactionBufferCloseInstruction, type TransactionBufferCloseInstructionData, type TransactionBufferCloseInstructionDataArgs, type TransactionBufferCloseInstructionExtraArgs, type TransactionBufferCreateInput, type TransactionBufferCreateInstruction, type TransactionBufferCreateInstructionData, type TransactionBufferCreateInstructionDataArgs, type TransactionBufferCreateInstructionExtraArgs, type TransactionBufferExecuteInput, type TransactionBufferExecuteInstruction, type TransactionBufferExecuteInstructionData, type TransactionBufferExecuteInstructionDataArgs, type TransactionBufferExecuteInstructionExtraArgs, type TransactionBufferExtendInput, type TransactionBufferExtendInstruction, type TransactionBufferExtendInstructionData, type TransactionBufferExtendInstructionDataArgs, type TransactionBufferExtendInstructionExtraArgs, type TransactionBufferVoteInput, type TransactionBufferVoteInstruction, type TransactionBufferVoteInstructionData, type TransactionBufferVoteInstructionDataArgs, type TransactionBufferVoteInstructionExtraArgs, type TransactionDetails, TransactionDetailsSchema, type TransactionExecuteInput, type TransactionExecuteInstruction, type TransactionExecuteInstructionData, type TransactionExecuteInstructionDataArgs, type TransactionExecuteInstructionExtraArgs, type TransactionExecuteSyncInput, type TransactionExecuteSyncInstruction, type TransactionExecuteSyncInstructionData, type TransactionExecuteSyncInstructionDataArgs, type TransactionExecuteSyncInstructionExtraArgs, type TransactionMessageAddressTableLookup, type TransactionMessageAddressTableLookupArgs, type TransactionPayload, TransactionPayloadSchema, type TransactionPayloadWithBase64MessageBytes, TransactionPayloadWithBase64MessageBytesSchema, type TransactionSyncSigners, type TransactionSyncSignersArgs, type TransferFeeAccountExtension, type TransferFeeAccountExtensionArgs, type TransferHookAccountExtension, type TransferHookAccountExtensionArgs, Transports, type TransportsArgs, USER_DISCRIMINATOR, type User, type UserArgs, type UserInfo, UserInfoSchema, UserRole, type UserRoleArgs, base64URLStringToBuffer, bufferToBase64URLString, changeConfig, closeTransactionBuffer, configAction, convertBase64StringToJWK, convertJWKToBase64String, convertMemberKeyToString, convertPubkeyCompressedToCose, convertPubkeyCoseToCompressed, createClientAuthorizationCompleteRequestChallenge, createClientAuthorizationStartRequestChallenge, createDomainConfig, createDomainUserAccounts, createGlobalCounter, createMessageChallenge, createTransactionBuffer, createTransactionChallenge, createTransactionManagerSigner, createUserAccounts, createWallet, decodeDomainConfig, decodeGlobalCounter, decodeSettings, decodeTransactionBuffer, decodeUser, deserializeConfigActions, disableDomainConfig, editDomainConfig, editTransactionManagerUrl, editUserDelegate, executeTransaction, executeTransactionBuffer, executeTransactionSync, extendTransactionBuffer, extensionStruct, fetchAllDomainConfig, fetchAllGlobalCounter, fetchAllMaybeDomainConfig, fetchAllMaybeGlobalCounter, fetchAllMaybeSettings, fetchAllMaybeTransactionBuffer, fetchAllMaybeUser, fetchAllSettings, fetchAllSettingsAccountByMember, fetchAllTransactionBuffer, fetchAllUser, fetchDomainConfig, fetchGlobalCounter, fetchMaybeDomainConfig, fetchMaybeGlobalCounter, fetchMaybeSettings, fetchMaybeTransactionBuffer, fetchMaybeUser, fetchSettings, fetchTransactionBuffer, fetchUser, fetchUserAccountByFilters, getAccountStateCodec, getAccountStateDecoder, getAccountStateEncoder, getAddMemberArgsCodec, getAddMemberArgsDecoder, getAddMemberArgsEncoder, getAdditionalMetadataCodec, getAdditionalMetadataDecoder, getAdditionalMetadataEncoder, getChangeConfigDiscriminatorBytes, getChangeConfigInstruction, getChangeConfigInstructionDataCodec, getChangeConfigInstructionDataDecoder, getChangeConfigInstructionDataEncoder, getClientAndDeviceHash, getCompiledInstructionCodec, getCompiledInstructionDecoder, getCompiledInstructionEncoder, getCompressedOnlyExtensionCodec, getCompressedOnlyExtensionDecoder, getCompressedOnlyExtensionEncoder, getCompressedProofCodec, getCompressedProofDecoder, getCompressedProofEncoder, getCompressedTokenArgsCodec, getCompressedTokenArgsDecoder, getCompressedTokenArgsEncoder, getCompressibleExtensionCodec, getCompressibleExtensionDecoder, getCompressibleExtensionEncoder, getCompressionInfoCodec, getCompressionInfoDecoder, getCompressionInfoEncoder, getConfigActionCodec, getConfigActionDecoder, getConfigActionEncoder, getCreateDomainConfigDiscriminatorBytes, getCreateDomainConfigInstruction, getCreateDomainConfigInstructionAsync, getCreateDomainConfigInstructionDataCodec, getCreateDomainConfigInstructionDataDecoder, getCreateDomainConfigInstructionDataEncoder, getCreateDomainUserAccountDiscriminatorBytes, getCreateDomainUserAccountInstruction, getCreateDomainUserAccountInstructionDataCodec, getCreateDomainUserAccountInstructionDataDecoder, getCreateDomainUserAccountInstructionDataEncoder, getCreateGlobalCounterDiscriminatorBytes, getCreateGlobalCounterInstruction, getCreateGlobalCounterInstructionAsync, getCreateGlobalCounterInstructionDataCodec, getCreateGlobalCounterInstructionDataDecoder, getCreateGlobalCounterInstructionDataEncoder, getCreateUserAccountDiscriminatorBytes, getCreateUserAccountInstruction, getCreateUserAccountInstructionAsync, getCreateUserAccountInstructionDataCodec, getCreateUserAccountInstructionDataDecoder, getCreateUserAccountInstructionDataEncoder, getCreateWalletDiscriminatorBytes, getCreateWalletInstruction, getCreateWalletInstructionAsync, getCreateWalletInstructionDataCodec, getCreateWalletInstructionDataDecoder, getCreateWalletInstructionDataEncoder, getDeviceMessageHash, getDisableDomainConfigDiscriminatorBytes, getDisableDomainConfigInstruction, getDisableDomainConfigInstructionDataCodec, getDisableDomainConfigInstructionDataDecoder, getDisableDomainConfigInstructionDataEncoder, getDomainConfigAddress, getDomainConfigCodec, getDomainConfigDecoder, getDomainConfigDiscriminatorBytes, getDomainConfigEncoder, getDomainConfigSize, getEditDomainConfigDiscriminatorBytes, getEditDomainConfigInstruction, getEditDomainConfigInstructionDataCodec, getEditDomainConfigInstructionDataDecoder, getEditDomainConfigInstructionDataEncoder, getEditMemberArgsCodec, getEditMemberArgsDecoder, getEditMemberArgsEncoder, getEditTransactionManagerUrlDiscriminatorBytes, getEditTransactionManagerUrlInstruction, getEditTransactionManagerUrlInstructionAsync, getEditTransactionManagerUrlInstructionDataCodec, getEditTransactionManagerUrlInstructionDataDecoder, getEditTransactionManagerUrlInstructionDataEncoder, getEditUserDelegateDiscriminatorBytes, getEditUserDelegateInstruction, getEditUserDelegateInstructionDataCodec, getEditUserDelegateInstructionDataDecoder, getEditUserDelegateInstructionDataEncoder, getExpectedSignerCodec, getExpectedSignerDecoder, getExpectedSignerEncoder, getExtensionStructCodec, getExtensionStructDecoder, getExtensionStructEncoder, getGlobalCounterAddress, getGlobalCounterCodec, getGlobalCounterDecoder, getGlobalCounterDiscriminatorBytes, getGlobalCounterEncoder, getGlobalCounterSize, getLightCpiSigner, getLightProtocolRpc, getMemberCodec, getMemberDecoder, getMemberEncoder, getMemberKeyCodec, getMemberKeyDecoder, getMemberKeyEncoder, getMultiWalletErrorMessage, getNativeTransferIntentDiscriminatorBytes, getNativeTransferIntentInstruction, getNativeTransferIntentInstructionAsync, getNativeTransferIntentInstructionDataCodec, getNativeTransferIntentInstructionDataDecoder, getNativeTransferIntentInstructionDataEncoder, getOriginIndex, getPackedMerkleContextCodec, getPackedMerkleContextDecoder, getPackedMerkleContextEncoder, getPausableAccountExtensionCodec, getPausableAccountExtensionDecoder, getPausableAccountExtensionEncoder, getPermanentDelegateAccountExtensionCodec, getPermanentDelegateAccountExtensionDecoder, getPermanentDelegateAccountExtensionEncoder, getPermissionsCodec, getPermissionsDecoder, getPermissionsEncoder, getProofArgsCodec, getProofArgsDecoder, getProofArgsEncoder, getRemoveMemberArgsCodec, getRemoveMemberArgsDecoder, getRemoveMemberArgsEncoder, getRentConfigCodec, getRentConfigDecoder, getRentConfigEncoder, getSecp256r1MessageHash, getSecp256r1PubkeyCodec, getSecp256r1PubkeyDecoder, getSecp256r1PubkeyEncoder, getSecp256r1SignatureOffsetsDataDecoder, getSecp256r1SignatureOffsetsDataEncoder, getSecp256r1VerifyArgsCodec, getSecp256r1VerifyArgsDecoder, getSecp256r1VerifyArgsEncoder, getSecp256r1VerifyArgsWithDomainConfigIndexCodec, getSecp256r1VerifyArgsWithDomainConfigIndexDecoder, getSecp256r1VerifyArgsWithDomainConfigIndexEncoder, getSecp256r1VerifyInstruction, getSecp256r1VerifyInstructionDataCodec, getSecp256r1VerifyInstructionDataDecoder, getSecp256r1VerifyInstructionDataEncoder, getSettingsCodec, getSettingsDecoder, getSettingsDiscriminatorBytes, getSettingsEncoder, getSettingsFromIndex, getSettingsIndexWithDelegateInfoCodec, getSettingsIndexWithDelegateInfoDecoder, getSettingsIndexWithDelegateInfoEncoder, getSignedSecp256r1Key, getSolanaRpc, getSolanaRpcEndpoint, getSplInterfacePdaArgsCodec, getSplInterfacePdaArgsDecoder, getSplInterfacePdaArgsEncoder, getTokenMetadataCodec, getTokenMetadataDecoder, getTokenMetadataEncoder, getTokenTransferIntentDiscriminatorBytes, getTokenTransferIntentInstruction, getTokenTransferIntentInstructionAsync, getTokenTransferIntentInstructionDataCodec, getTokenTransferIntentInstructionDataDecoder, getTokenTransferIntentInstructionDataEncoder, getTransactionBufferAddress, getTransactionBufferCloseDiscriminatorBytes, getTransactionBufferCloseInstruction, getTransactionBufferCloseInstructionDataCodec, getTransactionBufferCloseInstructionDataDecoder, getTransactionBufferCloseInstructionDataEncoder, getTransactionBufferCodec, getTransactionBufferCreateDiscriminatorBytes, getTransactionBufferCreateInstruction, getTransactionBufferCreateInstructionDataCodec, getTransactionBufferCreateInstructionDataDecoder, getTransactionBufferCreateInstructionDataEncoder, getTransactionBufferDecoder, getTransactionBufferDiscriminatorBytes, getTransactionBufferEncoder, getTransactionBufferExecuteDiscriminatorBytes, getTransactionBufferExecuteInstruction, getTransactionBufferExecuteInstructionDataCodec, getTransactionBufferExecuteInstructionDataDecoder, getTransactionBufferExecuteInstructionDataEncoder, getTransactionBufferExtendDiscriminatorBytes, getTransactionBufferExtendInstruction, getTransactionBufferExtendInstructionDataCodec, getTransactionBufferExtendInstructionDataDecoder, getTransactionBufferExtendInstructionDataEncoder, getTransactionBufferVoteDiscriminatorBytes, getTransactionBufferVoteInstruction, getTransactionBufferVoteInstructionDataCodec, getTransactionBufferVoteInstructionDataDecoder, getTransactionBufferVoteInstructionDataEncoder, getTransactionExecuteDiscriminatorBytes, getTransactionExecuteInstruction, getTransactionExecuteInstructionDataCodec, getTransactionExecuteInstructionDataDecoder, getTransactionExecuteInstructionDataEncoder, getTransactionExecuteSyncDiscriminatorBytes, getTransactionExecuteSyncInstruction, getTransactionExecuteSyncInstructionDataCodec, getTransactionExecuteSyncInstructionDataDecoder, getTransactionExecuteSyncInstructionDataEncoder, getTransactionMessageAddressTableLookupCodec, getTransactionMessageAddressTableLookupDecoder, getTransactionMessageAddressTableLookupEncoder, getTransactionSyncSignersCodec, getTransactionSyncSignersDecoder, getTransactionSyncSignersEncoder, getTransferFeeAccountExtensionCodec, getTransferFeeAccountExtensionDecoder, getTransferFeeAccountExtensionEncoder, getTransferHookAccountExtensionCodec, getTransferHookAccountExtensionDecoder, getTransferHookAccountExtensionEncoder, getTransportsCodec, getTransportsDecoder, getTransportsEncoder, getUserAddress, getUserCodec, getUserDecoder, getUserDiscriminatorBytes, getUserEncoder, getUserRoleCodec, getUserRoleDecoder, getUserRoleEncoder, getVersionFromDiscriminator, getWalletAddressFromIndex, getWalletAddressFromSettings, identifyMultiWalletAccount, identifyMultiWalletInstruction, initialize, isConfigAction, isExtensionStruct, isMultiWalletError, isTransactionSyncSigners, nativeTransferIntent, parseChangeConfigInstruction, parseCreateDomainConfigInstruction, parseCreateDomainUserAccountInstruction, parseCreateGlobalCounterInstruction, parseCreateUserAccountInstruction, parseCreateWalletInstruction, parseDisableDomainConfigInstruction, parseEditDomainConfigInstruction, parseEditTransactionManagerUrlInstruction, parseEditUserDelegateInstruction, parseNativeTransferIntentInstruction, parseSecp256r1VerifyInstruction, parseTokenTransferIntentInstruction, parseTransactionBufferCloseInstruction, parseTransactionBufferCreateInstruction, parseTransactionBufferExecuteInstruction, parseTransactionBufferExtendInstruction, parseTransactionBufferVoteInstruction, parseTransactionExecuteInstruction, parseTransactionExecuteSyncInstruction, prepareChangeConfigArgs, prepareTransactionBundle, prepareTransactionMessage, prepareTransactionSync, retrieveTransactionManager, serializeConfigActions, tokenTransferIntent, transactionSyncSigners, vaultTransactionMessageDeserialize, vaultTransactionMessageSerialize, voteTransactionBuffer };