@opendatalabs/vana-sdk 0.1.0-alpha.7ee7635 → 0.1.0-alpha.80df35f

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 (633) hide show
  1. package/dist/__tests__/waitForTransactionEvents.test.d.ts +1 -0
  2. package/dist/browser.d.ts +4 -2
  3. package/dist/chains/definitions.cjs +9 -6
  4. package/dist/chains/definitions.cjs.map +1 -1
  5. package/dist/chains/definitions.d.ts +9 -11
  6. package/dist/chains/definitions.js +9 -6
  7. package/dist/chains/definitions.js.map +1 -1
  8. package/dist/chains/index.d.ts +5 -2
  9. package/dist/chains.browser.d.ts +8 -2
  10. package/dist/chains.d.ts +8 -2
  11. package/dist/chains.node.d.ts +8 -2
  12. package/dist/config/addresses.d.ts +8 -45
  13. package/dist/config/chains.d.ts +9 -13
  14. package/dist/config/default-services.cjs +60 -0
  15. package/dist/config/default-services.cjs.map +1 -0
  16. package/dist/config/default-services.d.ts +46 -0
  17. package/dist/config/default-services.js +33 -0
  18. package/dist/config/default-services.js.map +1 -0
  19. package/dist/config/default-services.test.d.ts +1 -0
  20. package/dist/config/features.d.ts +1 -3
  21. package/dist/config/tests/addresses.test.d.ts +1 -0
  22. package/dist/contracts/contractController.cjs +3 -3
  23. package/dist/contracts/contractController.cjs.map +1 -1
  24. package/dist/contracts/contractController.d.ts +11 -49
  25. package/dist/contracts/contractController.js +4 -7
  26. package/dist/contracts/contractController.js.map +1 -1
  27. package/dist/contracts/tests/contractController.test.d.ts +1 -0
  28. package/dist/controllers/__tests__/schemas-edge-cases.test.d.ts +1 -0
  29. package/dist/controllers/base.cjs +83 -0
  30. package/dist/controllers/base.cjs.map +1 -0
  31. package/dist/controllers/base.d.ts +84 -0
  32. package/dist/controllers/base.js +59 -0
  33. package/dist/controllers/base.js.map +1 -0
  34. package/dist/controllers/data-error-handling.test.d.ts +1 -0
  35. package/dist/controllers/data.cjs +338 -107
  36. package/dist/controllers/data.cjs.map +1 -1
  37. package/dist/controllers/data.d.ts +145 -46
  38. package/dist/controllers/data.js +338 -107
  39. package/dist/controllers/data.js.map +1 -1
  40. package/dist/controllers/permissions.cjs +162 -223
  41. package/dist/controllers/permissions.cjs.map +1 -1
  42. package/dist/controllers/permissions.d.ts +24 -78
  43. package/dist/controllers/permissions.js +162 -223
  44. package/dist/controllers/permissions.js.map +1 -1
  45. package/dist/controllers/protocol.cjs +15 -11
  46. package/dist/controllers/protocol.cjs.map +1 -1
  47. package/dist/controllers/protocol.d.ts +7 -56
  48. package/dist/controllers/protocol.js +15 -14
  49. package/dist/controllers/protocol.js.map +1 -1
  50. package/dist/controllers/schemas.cjs +29 -36
  51. package/dist/controllers/schemas.cjs.map +1 -1
  52. package/dist/controllers/schemas.d.ts +8 -23
  53. package/dist/controllers/schemas.js +29 -36
  54. package/dist/controllers/schemas.js.map +1 -1
  55. package/dist/controllers/server-additional.test.d.ts +1 -0
  56. package/dist/controllers/server.cjs +15 -10
  57. package/dist/controllers/server.cjs.map +1 -1
  58. package/dist/controllers/server.d.ts +7 -20
  59. package/dist/controllers/server.js +15 -10
  60. package/dist/controllers/server.js.map +1 -1
  61. package/dist/core/apiClient.cjs +15 -12
  62. package/dist/core/apiClient.cjs.map +1 -1
  63. package/dist/core/apiClient.d.ts +5 -9
  64. package/dist/core/apiClient.js +19 -19
  65. package/dist/core/apiClient.js.map +1 -1
  66. package/dist/core/client.cjs +7 -7
  67. package/dist/core/client.cjs.map +1 -1
  68. package/dist/core/client.d.ts +6 -9
  69. package/dist/core/client.js +7 -7
  70. package/dist/core/client.js.map +1 -1
  71. package/dist/core/core.test.d.ts +1 -0
  72. package/dist/core/generics.cjs +11 -9
  73. package/dist/core/generics.cjs.map +1 -1
  74. package/dist/core/generics.d.ts +9 -13
  75. package/dist/core/generics.js +22 -29
  76. package/dist/core/generics.js.map +1 -1
  77. package/dist/core/tests/apiClient.test.d.ts +1 -0
  78. package/dist/core/tests/client.test.d.ts +1 -0
  79. package/dist/core/tests/generics.test.d.ts +1 -0
  80. package/dist/core.cjs +82 -34
  81. package/dist/core.cjs.map +1 -1
  82. package/dist/core.d.ts +21 -73
  83. package/dist/core.js +105 -60
  84. package/dist/core.js.map +1 -1
  85. package/dist/crypto/ecies/__tests__/base.test.d.ts +4 -0
  86. package/dist/crypto/ecies/__tests__/compatibility.test.d.ts +8 -0
  87. package/dist/crypto/ecies/__tests__/constants.test.d.ts +4 -0
  88. package/dist/crypto/ecies/__tests__/native-parity.test.d.ts +7 -0
  89. package/dist/crypto/ecies/__tests__/normalization.test.d.ts +1 -0
  90. package/dist/crypto/ecies/__tests__/test-vectors.d.ts +2 -4
  91. package/dist/crypto/ecies/base.cjs +4 -3
  92. package/dist/crypto/ecies/base.cjs.map +1 -1
  93. package/dist/crypto/ecies/base.d.ts +2 -5
  94. package/dist/crypto/ecies/base.js +12 -15
  95. package/dist/crypto/ecies/base.js.map +1 -1
  96. package/dist/crypto/ecies/browser.cjs +2 -1
  97. package/dist/crypto/ecies/browser.cjs.map +1 -1
  98. package/dist/crypto/ecies/browser.d.ts +2 -7
  99. package/dist/crypto/ecies/browser.js +2 -1
  100. package/dist/crypto/ecies/browser.js.map +1 -1
  101. package/dist/crypto/ecies/constants.d.ts +7 -9
  102. package/dist/crypto/ecies/index.d.ts +8 -1
  103. package/dist/crypto/ecies/interface.cjs +4 -5
  104. package/dist/crypto/ecies/interface.cjs.map +1 -1
  105. package/dist/crypto/ecies/interface.d.ts +9 -11
  106. package/dist/crypto/ecies/interface.js +4 -5
  107. package/dist/crypto/ecies/interface.js.map +1 -1
  108. package/dist/crypto/ecies/node.cjs +3 -2
  109. package/dist/crypto/ecies/node.cjs.map +1 -1
  110. package/dist/crypto/ecies/node.d.ts +2 -7
  111. package/dist/crypto/ecies/node.js +11 -16
  112. package/dist/crypto/ecies/node.js.map +1 -1
  113. package/dist/crypto/ecies/utils.cjs +2 -41
  114. package/dist/crypto/ecies/utils.cjs.map +1 -1
  115. package/dist/crypto/ecies/utils.d.ts +3 -40
  116. package/dist/crypto/ecies/utils.js +1 -35
  117. package/dist/crypto/ecies/utils.js.map +1 -1
  118. package/dist/crypto/services/WalletKeyEncryptionService.cjs +2 -2
  119. package/dist/crypto/services/WalletKeyEncryptionService.cjs.map +1 -1
  120. package/dist/crypto/services/WalletKeyEncryptionService.d.ts +3 -7
  121. package/dist/crypto/services/WalletKeyEncryptionService.js +5 -9
  122. package/dist/crypto/services/WalletKeyEncryptionService.js.map +1 -1
  123. package/dist/crypto/services/WalletKeyEncryptionService.test.d.ts +1 -0
  124. package/dist/diagnostics.d.ts +1 -3
  125. package/dist/diagnostics.test.d.ts +1 -0
  126. package/dist/errors.cjs +16 -0
  127. package/dist/errors.cjs.map +1 -1
  128. package/dist/errors.d.ts +53 -15
  129. package/dist/errors.js +18 -6
  130. package/dist/errors.js.map +1 -1
  131. package/dist/generated/abi/ComputeEngineImplementation.d.ts +2 -3
  132. package/dist/generated/abi/ComputeInstructionRegistryImplementation.cjs.map +1 -1
  133. package/dist/generated/abi/ComputeInstructionRegistryImplementation.d.ts +2 -3
  134. package/dist/generated/abi/ComputeInstructionRegistryImplementation.js.map +1 -1
  135. package/dist/generated/abi/DATFactoryImplementation.d.ts +2 -3
  136. package/dist/generated/abi/DATImplementation.d.ts +2 -3
  137. package/dist/generated/abi/DATPausableImplementation.d.ts +2 -3
  138. package/dist/generated/abi/DATVotesImplementation.d.ts +2 -3
  139. package/dist/generated/abi/DLPPerformanceImplementation.d.ts +2 -3
  140. package/dist/generated/abi/DLPRegistryImplementation.d.ts +2 -3
  141. package/dist/generated/abi/DLPRegistryTreasuryImplementation.d.ts +2 -3
  142. package/dist/generated/abi/DLPRewardDeployerImplementation.d.ts +2 -3
  143. package/dist/generated/abi/DLPRewardDeployerTreasuryImplementation.d.ts +2 -3
  144. package/dist/generated/abi/DLPRewardSwapImplementation.d.ts +2 -3
  145. package/dist/generated/abi/DLPRootImplementation.d.ts +1 -3
  146. package/dist/generated/abi/DLPTreasuryImplementation.d.ts +2 -3
  147. package/dist/generated/abi/DataLiquidityPoolImplementation.d.ts +1 -3
  148. package/dist/generated/abi/DataPortabilityGranteesImplementation.d.ts +2 -3
  149. package/dist/generated/abi/DataPortabilityPermissionsImplementation.cjs.map +1 -1
  150. package/dist/generated/abi/DataPortabilityPermissionsImplementation.d.ts +2 -3
  151. package/dist/generated/abi/DataPortabilityPermissionsImplementation.js.map +1 -1
  152. package/dist/generated/abi/DataPortabilityServersImplementation.cjs.map +1 -1
  153. package/dist/generated/abi/DataPortabilityServersImplementation.d.ts +2 -3
  154. package/dist/generated/abi/DataPortabilityServersImplementation.js.map +1 -1
  155. package/dist/generated/abi/DataRefinerRegistryImplementation.d.ts +2 -3
  156. package/dist/generated/abi/DataRegistryImplementation.d.ts +2 -3
  157. package/dist/generated/abi/QueryEngineImplementation.d.ts +2 -3
  158. package/dist/generated/abi/SwapHelperImplementation.d.ts +2 -3
  159. package/dist/generated/abi/TeePoolDedicatedGpuImplementation.d.ts +2 -3
  160. package/dist/generated/abi/TeePoolDedicatedStandardImplementation.d.ts +2 -3
  161. package/dist/generated/abi/TeePoolEphemeralStandardImplementation.d.ts +2 -3
  162. package/dist/generated/abi/TeePoolImplementation.d.ts +2 -3
  163. package/dist/generated/abi/TeePoolPersistentGpuImplementation.d.ts +2 -3
  164. package/dist/generated/abi/TeePoolPersistentStandardImplementation.d.ts +2 -3
  165. package/dist/generated/abi/TeePoolPhalaImplementation.d.ts +2 -3
  166. package/dist/generated/abi/VanaEpochImplementation.d.ts +2 -3
  167. package/dist/generated/abi/VanaPoolEntityImplementation.d.ts +2 -3
  168. package/dist/generated/abi/VanaPoolStakingImplementation.d.ts +2 -3
  169. package/dist/generated/abi/VanaPoolTreasuryImplementation.d.ts +2 -3
  170. package/dist/generated/abi/index.d.ts +37 -39
  171. package/dist/generated/event-types.d.ts +9 -10
  172. package/dist/generated/eventRegistry.d.ts +3 -7
  173. package/dist/generated/server/server-exports.d.ts +19 -21
  174. package/dist/generated/server/server.cjs.map +1 -1
  175. package/dist/generated/server/server.d.ts +113 -87
  176. package/dist/generated/subgraph.d.ts +329 -332
  177. package/dist/index.browser.d.ts +47 -96
  178. package/dist/index.browser.js +12 -0
  179. package/dist/index.browser.js.map +1 -1
  180. package/dist/index.cjs +3 -1
  181. package/dist/index.cjs.map +1 -1
  182. package/dist/index.d.ts +0 -2
  183. package/dist/index.js +3 -1
  184. package/dist/index.js.map +1 -1
  185. package/dist/index.node.cjs +9 -0
  186. package/dist/index.node.cjs.map +1 -1
  187. package/dist/index.node.d.ts +181 -87
  188. package/dist/index.node.js +10 -0
  189. package/dist/index.node.js.map +1 -1
  190. package/dist/node.d.ts +4 -2
  191. package/dist/platform/browser-only.d.ts +5 -8
  192. package/dist/platform/browser-only.test.d.ts +1 -0
  193. package/dist/platform/browser-safe.d.ts +6 -9
  194. package/dist/platform/browser-safe.test.d.ts +1 -0
  195. package/dist/platform/browser.cjs +7 -6
  196. package/dist/platform/browser.cjs.map +1 -1
  197. package/dist/platform/browser.d.ts +3 -6
  198. package/dist/platform/browser.js +19 -27
  199. package/dist/platform/browser.js.map +1 -1
  200. package/dist/platform/browser.test.d.ts +1 -0
  201. package/dist/platform/index.d.ts +11 -5
  202. package/dist/platform/interface.d.ts +6 -8
  203. package/dist/platform/node.d.ts +3 -7
  204. package/dist/platform/node.js +12 -19
  205. package/dist/platform/node.js.map +1 -1
  206. package/dist/platform/ports/openpgp-port.cjs +74 -0
  207. package/dist/platform/ports/openpgp-port.cjs.map +1 -0
  208. package/dist/platform/ports/openpgp-port.d.ts +13 -0
  209. package/dist/platform/ports/openpgp-port.js +59 -0
  210. package/dist/platform/ports/openpgp-port.js.map +1 -0
  211. package/dist/platform/ports/pgp-port.cjs +17 -0
  212. package/dist/platform/ports/pgp-port.cjs.map +1 -0
  213. package/dist/platform/ports/pgp-port.d.ts +35 -0
  214. package/dist/platform/ports/pgp-port.js +1 -0
  215. package/dist/platform/ports/pgp-port.js.map +1 -0
  216. package/dist/platform/shared/error-utils.d.ts +2 -4
  217. package/dist/platform/shared/pgp-utils.cjs +2 -2
  218. package/dist/platform/shared/pgp-utils.cjs.map +1 -1
  219. package/dist/platform/shared/pgp-utils.d.ts +3 -5
  220. package/dist/platform/shared/pgp-utils.js +2 -2
  221. package/dist/platform/shared/pgp-utils.js.map +1 -1
  222. package/dist/platform/shared/stream-utils.d.ts +1 -3
  223. package/dist/platform/utils.d.ts +6 -10
  224. package/dist/platform/utils.test.d.ts +1 -0
  225. package/dist/platform.browser.d.ts +9 -4
  226. package/dist/platform.d.ts +11 -5
  227. package/dist/platform.node.d.ts +10 -5
  228. package/dist/server/handler.cjs.map +1 -1
  229. package/dist/server/handler.d.ts +8 -227
  230. package/dist/server/handler.js.map +1 -1
  231. package/dist/storage/index.d.ts +56 -10
  232. package/dist/storage/manager.cjs +2 -2
  233. package/dist/storage/manager.cjs.map +1 -1
  234. package/dist/storage/manager.d.ts +2 -5
  235. package/dist/storage/manager.js +5 -12
  236. package/dist/storage/manager.js.map +1 -1
  237. package/dist/storage/providers/callback-storage.cjs +3 -3
  238. package/dist/storage/providers/callback-storage.cjs.map +1 -1
  239. package/dist/storage/providers/callback-storage.d.ts +3 -9
  240. package/dist/storage/providers/callback-storage.js +3 -3
  241. package/dist/storage/providers/callback-storage.js.map +1 -1
  242. package/dist/storage/providers/google-drive.cjs +2 -2
  243. package/dist/storage/providers/google-drive.cjs.map +1 -1
  244. package/dist/storage/providers/google-drive.d.ts +3 -7
  245. package/dist/storage/providers/google-drive.js +4 -7
  246. package/dist/storage/providers/google-drive.js.map +1 -1
  247. package/dist/storage/providers/google-drive.test.d.ts +1 -0
  248. package/dist/storage/providers/ipfs.cjs +5 -5
  249. package/dist/storage/providers/ipfs.cjs.map +1 -1
  250. package/dist/storage/providers/ipfs.d.ts +3 -6
  251. package/dist/storage/providers/ipfs.js +7 -10
  252. package/dist/storage/providers/ipfs.js.map +1 -1
  253. package/dist/storage/providers/pinata.cjs +6 -6
  254. package/dist/storage/providers/pinata.cjs.map +1 -1
  255. package/dist/storage/providers/pinata.d.ts +5 -8
  256. package/dist/storage/providers/pinata.js +8 -11
  257. package/dist/storage/providers/pinata.js.map +1 -1
  258. package/dist/storage/tests/callbackStorage.test.d.ts +1 -0
  259. package/dist/storage/tests/googleDriveStorage.test.d.ts +1 -0
  260. package/dist/storage/tests/ipfsStorage.test.d.ts +1 -0
  261. package/dist/storage/tests/pinataStorage.test.d.ts +1 -0
  262. package/dist/storage/tests/storageManager.test.d.ts +1 -0
  263. package/dist/tests/abi.test.d.ts +1 -0
  264. package/dist/tests/chains-definitions.test.d.ts +1 -0
  265. package/dist/tests/core-encryption.test.d.ts +1 -0
  266. package/dist/tests/core-extended.test.d.ts +1 -0
  267. package/dist/tests/core-generics-coverage.test.d.ts +1 -0
  268. package/dist/tests/coverage-boost.test.d.ts +1 -0
  269. package/dist/tests/crypto-cross-platform-compatibility.test.d.ts +1 -0
  270. package/dist/tests/data-addfile-permissions-schema.test.d.ts +1 -0
  271. package/dist/tests/data-additional-methods.test.d.ts +1 -0
  272. package/dist/tests/data-controller-edge-cases.test.d.ts +1 -0
  273. package/dist/tests/data-ipfs-gateways.test.d.ts +1 -0
  274. package/dist/tests/data-relayer.test.d.ts +1 -0
  275. package/dist/tests/data-schema-validation.test.d.ts +1 -0
  276. package/dist/tests/data-simple-methods.test.d.ts +1 -0
  277. package/dist/tests/data.test.d.ts +1 -0
  278. package/dist/tests/demo-integration.test.d.ts +1 -0
  279. package/dist/tests/demo-trusted-server-integration.test.d.ts +1 -0
  280. package/dist/tests/download-relayer.test.d.ts +1 -0
  281. package/dist/tests/dual-mode-permissions.test.d.ts +1 -0
  282. package/dist/tests/dual-mode-trusted-servers.test.d.ts +1 -0
  283. package/dist/tests/encryption-correct-implementation.test.d.ts +1 -0
  284. package/dist/tests/encryption-coverage.test.d.ts +1 -0
  285. package/dist/tests/encryption-edge-cases.test.d.ts +1 -0
  286. package/dist/tests/encryption-utils-updated.test.d.ts +1 -0
  287. package/dist/tests/errors-coverage.test.d.ts +1 -0
  288. package/dist/tests/errors.test.d.ts +1 -0
  289. package/dist/tests/factories/mockFactory.d.ts +316 -0
  290. package/dist/tests/fakes/FakeStorageManager.d.ts +200 -0
  291. package/dist/tests/fakes/FakeStorageManager.test.d.ts +1 -0
  292. package/dist/tests/fakes/FakeWaitForTransactionEvents.d.ts +170 -0
  293. package/dist/tests/fakes/FakeWaitForTransactionEvents.test.d.ts +1 -0
  294. package/dist/tests/fakes/fake-pgp-port.d.ts +13 -0
  295. package/dist/tests/grantValidation-edge-cases.test.d.ts +1 -0
  296. package/dist/tests/grantValidation-unreachable-branch.test.d.ts +1 -0
  297. package/dist/tests/helper-methods.test.d.ts +1 -0
  298. package/dist/tests/helpers/platformTestHelpers.d.ts +106 -0
  299. package/dist/tests/helpers/typedMocks.d.ts +64 -0
  300. package/dist/tests/index-browser.test.d.ts +1 -0
  301. package/dist/tests/index-node.test.d.ts +1 -0
  302. package/dist/tests/index.test.d.ts +1 -0
  303. package/dist/tests/mocks/platformAdapter.d.ts +12 -0
  304. package/dist/tests/new-permissions-methods.test.d.ts +1 -0
  305. package/dist/tests/no-buffer-browser.test.d.ts +1 -0
  306. package/dist/tests/permissions-grantee.test.d.ts +1 -0
  307. package/dist/tests/permissions-schema-validation.test.d.ts +1 -0
  308. package/dist/tests/permissions-server-files.test.d.ts +1 -0
  309. package/dist/tests/permissions-trust-servers.test.d.ts +1 -0
  310. package/dist/tests/permissions.test.d.ts +1 -0
  311. package/dist/tests/personal.test.d.ts +1 -0
  312. package/dist/tests/platform-browser.test.d.ts +1 -0
  313. package/dist/tests/platform-crypto-expanded.test.d.ts +1 -0
  314. package/dist/tests/platform-crypto.test.d.ts +1 -0
  315. package/dist/tests/platform-index.test.d.ts +1 -0
  316. package/dist/tests/platform-node.test.d.ts +1 -0
  317. package/dist/tests/platform-shared-utils.test.d.ts +1 -0
  318. package/dist/tests/platform-updated.test.d.ts +1 -0
  319. package/dist/tests/protocol-additional-methods.test.d.ts +1 -0
  320. package/dist/tests/protocol.test.d.ts +1 -0
  321. package/dist/tests/read-only-mode.test.d.ts +1 -0
  322. package/dist/tests/schemas.test.d.ts +1 -0
  323. package/dist/tests/server-handler.test.d.ts +1 -0
  324. package/dist/tests/setup.d.ts +7 -0
  325. package/dist/tests/signatureFormatter.test.d.ts +1 -0
  326. package/dist/tests/trusted-server-queries.test.d.ts +1 -0
  327. package/dist/tests/typedDataConverter.test.d.ts +1 -0
  328. package/dist/tests/types-contracts.test.d.ts +1 -0
  329. package/dist/tests/types-data.test.d.ts +1 -0
  330. package/dist/tests/types-external-apis.test.d.ts +1 -0
  331. package/dist/tests/types-generics.test.d.ts +1 -0
  332. package/dist/tests/types-permissions.test.d.ts +1 -0
  333. package/dist/tests/types-upload-params.test.d.ts +1 -0
  334. package/dist/tests/types.test.d.ts +1 -0
  335. package/dist/tests/utils-formatters.test.d.ts +1 -0
  336. package/dist/tests/utils-grantFiles-edge-cases.test.d.ts +1 -0
  337. package/dist/tests/utils-grantFiles-validation.test.d.ts +1 -0
  338. package/dist/tests/utils-grantFiles.test.d.ts +1 -0
  339. package/dist/tests/utils-grantValidation-consolidated.test.d.ts +1 -0
  340. package/dist/tests/utils-grants.test.d.ts +1 -0
  341. package/dist/tests/utils-ipfs-additional.test.d.ts +1 -0
  342. package/dist/tests/utils-ipfs.test.d.ts +4 -0
  343. package/dist/tests/utils-schemaValidation.test.d.ts +1 -0
  344. package/dist/tests/vana.test.d.ts +1 -0
  345. package/dist/tests/wallet-crypto-compatibility.test.d.ts +1 -0
  346. package/dist/types/blockchain.cjs.map +1 -1
  347. package/dist/types/blockchain.d.ts +13 -8
  348. package/dist/types/chains-additional.test.d.ts +1 -0
  349. package/dist/types/chains.d.ts +6 -9
  350. package/dist/types/config.cjs +10 -0
  351. package/dist/types/config.cjs.map +1 -1
  352. package/dist/types/config.d.ts +161 -54
  353. package/dist/types/config.js +8 -0
  354. package/dist/types/config.js.map +1 -1
  355. package/dist/types/contracts.cjs.map +1 -1
  356. package/dist/types/contracts.d.ts +8 -11
  357. package/dist/types/controller-context.cjs.map +1 -1
  358. package/dist/types/controller-context.d.ts +13 -20
  359. package/dist/types/data.cjs.map +1 -1
  360. package/dist/types/data.d.ts +107 -39
  361. package/dist/types/external-apis.d.ts +10 -12
  362. package/dist/types/generics.d.ts +35 -38
  363. package/dist/types/index.cjs +5 -4
  364. package/dist/types/index.cjs.map +1 -1
  365. package/dist/types/index.d.ts +20 -22
  366. package/dist/types/index.js +9 -2
  367. package/dist/types/index.js.map +1 -1
  368. package/dist/types/operations.cjs +2 -2
  369. package/dist/types/operations.cjs.map +1 -1
  370. package/dist/types/operations.d.ts +13 -17
  371. package/dist/types/operations.js +2 -2
  372. package/dist/types/operations.js.map +1 -1
  373. package/dist/types/permissions.d.ts +55 -58
  374. package/dist/types/personal.cjs.map +1 -1
  375. package/dist/types/personal.d.ts +6 -8
  376. package/dist/types/relayer.d.ts +15 -18
  377. package/dist/types/storage.d.ts +6 -8
  378. package/dist/types/storage.js +2 -5
  379. package/dist/types/storage.js.map +1 -1
  380. package/dist/types/transactionResults.d.ts +16 -18
  381. package/dist/types/utils.d.ts +21 -24
  382. package/dist/types.d.ts +4 -28
  383. package/dist/utils/__tests__/parseTransaction.test.d.ts +1 -0
  384. package/dist/utils/__tests__/pojo-serialization.test.d.ts +1 -0
  385. package/dist/utils/__tests__/signatureCache.test.d.ts +1 -0
  386. package/dist/utils/__tests__/transaction-edge-cases.test.d.ts +1 -0
  387. package/dist/utils/__tests__/transactionHelpers.test.d.ts +1 -0
  388. package/dist/utils/__tests__/urlResolver.test.d.ts +4 -0
  389. package/dist/utils/blockchain/registry.cjs +2 -2
  390. package/dist/utils/blockchain/registry.cjs.map +1 -1
  391. package/dist/utils/blockchain/registry.d.ts +6 -8
  392. package/dist/utils/blockchain/registry.js +2 -2
  393. package/dist/utils/blockchain/registry.js.map +1 -1
  394. package/dist/utils/blockchain/registry.test.d.ts +1 -0
  395. package/dist/utils/crypto-utils.cjs +0 -12
  396. package/dist/utils/crypto-utils.cjs.map +1 -1
  397. package/dist/utils/crypto-utils.d.ts +9 -27
  398. package/dist/utils/crypto-utils.js +0 -11
  399. package/dist/utils/crypto-utils.js.map +1 -1
  400. package/dist/utils/crypto-utils.test.d.ts +1 -0
  401. package/dist/utils/download.cjs +3 -3
  402. package/dist/utils/download.cjs.map +1 -1
  403. package/dist/utils/download.d.ts +13 -14
  404. package/dist/utils/download.js +2 -2
  405. package/dist/utils/download.js.map +1 -1
  406. package/dist/utils/encoding.cjs +1 -1
  407. package/dist/utils/encoding.cjs.map +1 -1
  408. package/dist/utils/encoding.d.ts +4 -6
  409. package/dist/utils/encoding.js +1 -1
  410. package/dist/utils/encoding.js.map +1 -1
  411. package/dist/utils/encoding.test.d.ts +1 -0
  412. package/dist/utils/encryption.cjs +16 -10
  413. package/dist/utils/encryption.cjs.map +1 -1
  414. package/dist/utils/encryption.d.ts +13 -17
  415. package/dist/utils/encryption.js +16 -10
  416. package/dist/utils/encryption.js.map +1 -1
  417. package/dist/utils/formatters.cjs +4 -2
  418. package/dist/utils/formatters.cjs.map +1 -1
  419. package/dist/utils/formatters.d.ts +4 -6
  420. package/dist/utils/formatters.js +4 -2
  421. package/dist/utils/formatters.js.map +1 -1
  422. package/dist/utils/grantFiles.cjs +7 -4
  423. package/dist/utils/grantFiles.cjs.map +1 -1
  424. package/dist/utils/grantFiles.d.ts +6 -10
  425. package/dist/utils/grantFiles.js +7 -4
  426. package/dist/utils/grantFiles.js.map +1 -1
  427. package/dist/utils/grantValidation.cjs +1 -1
  428. package/dist/utils/grantValidation.cjs.map +1 -1
  429. package/dist/utils/grantValidation.d.ts +14 -17
  430. package/dist/utils/grantValidation.js +1 -1
  431. package/dist/utils/grantValidation.js.map +1 -1
  432. package/dist/utils/grants.cjs +1 -1
  433. package/dist/utils/grants.cjs.map +1 -1
  434. package/dist/utils/grants.d.ts +10 -13
  435. package/dist/utils/grants.js +1 -1
  436. package/dist/utils/grants.js.map +1 -1
  437. package/dist/utils/ipfs.d.ts +8 -10
  438. package/dist/utils/lazy-import.cjs +4 -6
  439. package/dist/utils/lazy-import.cjs.map +1 -1
  440. package/dist/utils/lazy-import.d.ts +1 -3
  441. package/dist/utils/lazy-import.js +4 -6
  442. package/dist/utils/lazy-import.js.map +1 -1
  443. package/dist/utils/multicall.cjs +4 -2
  444. package/dist/utils/multicall.cjs.map +1 -1
  445. package/dist/utils/multicall.d.ts +5 -8
  446. package/dist/utils/multicall.js +4 -2
  447. package/dist/utils/multicall.js.map +1 -1
  448. package/dist/utils/parseTransactionPojo.cjs.map +1 -1
  449. package/dist/utils/parseTransactionPojo.d.ts +4 -10
  450. package/dist/utils/parseTransactionPojo.js.map +1 -1
  451. package/dist/utils/schemaValidation.cjs +5 -5
  452. package/dist/utils/schemaValidation.cjs.map +1 -1
  453. package/dist/utils/schemaValidation.d.ts +8 -12
  454. package/dist/utils/schemaValidation.js +7 -10
  455. package/dist/utils/schemaValidation.js.map +1 -1
  456. package/dist/utils/signatureCache.cjs +1 -2
  457. package/dist/utils/signatureCache.cjs.map +1 -1
  458. package/dist/utils/signatureCache.d.ts +4 -7
  459. package/dist/utils/signatureCache.js +4 -8
  460. package/dist/utils/signatureCache.js.map +1 -1
  461. package/dist/utils/signatureFormatter.cjs +6 -9
  462. package/dist/utils/signatureFormatter.cjs.map +1 -1
  463. package/dist/utils/signatureFormatter.d.ts +2 -5
  464. package/dist/utils/signatureFormatter.js +6 -9
  465. package/dist/utils/signatureFormatter.js.map +1 -1
  466. package/dist/utils/tests/multicall.test.d.ts +1 -0
  467. package/dist/utils/transactionHelpers.cjs.map +1 -1
  468. package/dist/utils/transactionHelpers.d.ts +5 -11
  469. package/dist/utils/transactionHelpers.js.map +1 -1
  470. package/dist/utils/typeGuards.cjs +109 -0
  471. package/dist/utils/typeGuards.cjs.map +1 -0
  472. package/dist/utils/typeGuards.d.ts +138 -0
  473. package/dist/utils/typeGuards.js +74 -0
  474. package/dist/utils/typeGuards.js.map +1 -0
  475. package/dist/utils/typedDataConverter.d.ts +3 -6
  476. package/dist/utils/urlResolver.cjs +1 -1
  477. package/dist/utils/urlResolver.cjs.map +1 -1
  478. package/dist/utils/urlResolver.d.ts +2 -4
  479. package/dist/utils/urlResolver.js +2 -2
  480. package/dist/utils/urlResolver.js.map +1 -1
  481. package/dist/utils/wallet.cjs +62 -0
  482. package/dist/utils/wallet.cjs.map +1 -0
  483. package/dist/utils/wallet.d.ts +32 -0
  484. package/dist/utils/wallet.js +36 -0
  485. package/dist/utils/wallet.js.map +1 -0
  486. package/dist/utils/withEvents.cjs.map +1 -1
  487. package/dist/utils/withEvents.d.ts +5 -12
  488. package/dist/utils/withEvents.js.map +1 -1
  489. package/package.json +22 -16
  490. package/dist/browser.d.cts +0 -2
  491. package/dist/chains/definitions.d.cts +0 -53
  492. package/dist/chains/index.d.cts +0 -2
  493. package/dist/chains.browser.cjs +0 -37
  494. package/dist/chains.browser.cjs.map +0 -1
  495. package/dist/chains.browser.d.cts +0 -2
  496. package/dist/chains.d.cts +0 -2
  497. package/dist/chains.node.d.cts +0 -2
  498. package/dist/config/addresses.d.cts +0 -401
  499. package/dist/config/chains.d.cts +0 -85
  500. package/dist/config/features.d.cts +0 -64
  501. package/dist/contracts/contractController.d.cts +0 -117
  502. package/dist/controllers/data.d.cts +0 -915
  503. package/dist/controllers/permissions.d.cts +0 -1383
  504. package/dist/controllers/protocol.d.cts +0 -188
  505. package/dist/controllers/schemas.d.cts +0 -260
  506. package/dist/controllers/server.d.cts +0 -230
  507. package/dist/core/apiClient.d.cts +0 -165
  508. package/dist/core/client.d.cts +0 -92
  509. package/dist/core/generics.d.cts +0 -120
  510. package/dist/core.d.cts +0 -493
  511. package/dist/crypto/ecies/__tests__/test-vectors.d.cts +0 -40
  512. package/dist/crypto/ecies/base.d.cts +0 -143
  513. package/dist/crypto/ecies/browser.d.cts +0 -48
  514. package/dist/crypto/ecies/constants.d.cts +0 -122
  515. package/dist/crypto/ecies/index.d.cts +0 -1
  516. package/dist/crypto/ecies/interface.d.cts +0 -176
  517. package/dist/crypto/ecies/node.d.cts +0 -50
  518. package/dist/crypto/ecies/test-vectors/eccrypto-vectors.d.cts +0 -76
  519. package/dist/crypto/ecies/test-vectors/eccrypto-vectors.d.ts +0 -76
  520. package/dist/crypto/ecies/utils.d.cts +0 -67
  521. package/dist/crypto/services/WalletKeyEncryptionService.d.cts +0 -92
  522. package/dist/diagnostics.d.cts +0 -26
  523. package/dist/errors.d.cts +0 -350
  524. package/dist/generated/abi/ComputeEngineImplementation.d.cts +0 -996
  525. package/dist/generated/abi/ComputeInstructionRegistryImplementation.d.cts +0 -545
  526. package/dist/generated/abi/DATFactoryImplementation.d.cts +0 -661
  527. package/dist/generated/abi/DATImplementation.d.cts +0 -693
  528. package/dist/generated/abi/DATPausableImplementation.d.cts +0 -1145
  529. package/dist/generated/abi/DATVotesImplementation.d.cts +0 -1095
  530. package/dist/generated/abi/DLPPerformanceImplementation.d.cts +0 -883
  531. package/dist/generated/abi/DLPRegistryImplementation.d.cts +0 -1123
  532. package/dist/generated/abi/DLPRegistryTreasuryImplementation.d.cts +0 -452
  533. package/dist/generated/abi/DLPRewardDeployerImplementation.d.cts +0 -714
  534. package/dist/generated/abi/DLPRewardDeployerTreasuryImplementation.d.cts +0 -452
  535. package/dist/generated/abi/DLPRewardSwapImplementation.d.cts +0 -706
  536. package/dist/generated/abi/DLPRootImplementation.d.cts +0 -1248
  537. package/dist/generated/abi/DLPTreasuryImplementation.d.cts +0 -452
  538. package/dist/generated/abi/DataLiquidityPoolImplementation.d.cts +0 -737
  539. package/dist/generated/abi/DataPortabilityGranteesImplementation.d.cts +0 -661
  540. package/dist/generated/abi/DataPortabilityPermissionsImplementation.d.cts +0 -989
  541. package/dist/generated/abi/DataPortabilityServersImplementation.d.cts +0 -1086
  542. package/dist/generated/abi/DataRefinerRegistryImplementation.d.cts +0 -737
  543. package/dist/generated/abi/DataRegistryImplementation.d.cts +0 -1014
  544. package/dist/generated/abi/QueryEngineImplementation.d.cts +0 -1001
  545. package/dist/generated/abi/SwapHelperImplementation.d.cts +0 -764
  546. package/dist/generated/abi/TeePoolDedicatedGpuImplementation.d.cts +0 -701
  547. package/dist/generated/abi/TeePoolDedicatedStandardImplementation.d.cts +0 -701
  548. package/dist/generated/abi/TeePoolEphemeralStandardImplementation.d.cts +0 -701
  549. package/dist/generated/abi/TeePoolImplementation.d.cts +0 -993
  550. package/dist/generated/abi/TeePoolPersistentGpuImplementation.d.cts +0 -701
  551. package/dist/generated/abi/TeePoolPersistentStandardImplementation.d.cts +0 -701
  552. package/dist/generated/abi/TeePoolPhalaImplementation.d.cts +0 -993
  553. package/dist/generated/abi/VanaEpochImplementation.d.cts +0 -900
  554. package/dist/generated/abi/VanaPoolEntityImplementation.d.cts +0 -934
  555. package/dist/generated/abi/VanaPoolStakingImplementation.d.cts +0 -693
  556. package/dist/generated/abi/VanaPoolTreasuryImplementation.d.cts +0 -394
  557. package/dist/generated/abi/index.d.cts +0 -26547
  558. package/dist/generated/event-types.d.cts +0 -855
  559. package/dist/generated/eventRegistry.d.cts +0 -18
  560. package/dist/generated/server/server-exports.d.cts +0 -21
  561. package/dist/generated/server/server.d.cts +0 -512
  562. package/dist/generated/subgraph.d.cts +0 -5981
  563. package/dist/index.browser.cjs +0 -151
  564. package/dist/index.browser.cjs.map +0 -1
  565. package/dist/index.browser.d.cts +0 -201
  566. package/dist/index.d.cts +0 -2
  567. package/dist/index.node.d.cts +0 -87
  568. package/dist/node.d.cts +0 -2
  569. package/dist/platform/browser-only.d.cts +0 -25
  570. package/dist/platform/browser-safe.d.cts +0 -32
  571. package/dist/platform/browser.d.cts +0 -74
  572. package/dist/platform/index.d.cts +0 -5
  573. package/dist/platform/interface.d.cts +0 -218
  574. package/dist/platform/node.d.cts +0 -27
  575. package/dist/platform/shared/error-utils.d.cts +0 -25
  576. package/dist/platform/shared/pgp-utils.d.cts +0 -61
  577. package/dist/platform/shared/stream-utils.d.cts +0 -16
  578. package/dist/platform/utils.d.cts +0 -53
  579. package/dist/platform.browser.cjs +0 -41
  580. package/dist/platform.browser.cjs.map +0 -1
  581. package/dist/platform.browser.d.cts +0 -4
  582. package/dist/platform.d.cts +0 -5
  583. package/dist/platform.node.d.cts +0 -5
  584. package/dist/schemas/dataSchema.schema.d.cts +0 -88
  585. package/dist/schemas/dataSchema.schema.d.ts +0 -88
  586. package/dist/schemas/grantFile.schema.d.cts +0 -57
  587. package/dist/schemas/grantFile.schema.d.ts +0 -57
  588. package/dist/server/handler.d.cts +0 -306
  589. package/dist/storage/index.d.cts +0 -10
  590. package/dist/storage/manager.d.cts +0 -150
  591. package/dist/storage/providers/callback-storage.d.cts +0 -100
  592. package/dist/storage/providers/google-drive.d.cts +0 -156
  593. package/dist/storage/providers/ipfs.d.cts +0 -163
  594. package/dist/storage/providers/pinata.d.cts +0 -173
  595. package/dist/types/blockchain.d.cts +0 -52
  596. package/dist/types/chains.d.cts +0 -34
  597. package/dist/types/config.d.cts +0 -726
  598. package/dist/types/contracts.d.cts +0 -68
  599. package/dist/types/controller-context.d.cts +0 -71
  600. package/dist/types/data.d.cts +0 -694
  601. package/dist/types/eccrypto-js.d.d.cts +0 -13
  602. package/dist/types/eccrypto-js.d.d.ts +0 -13
  603. package/dist/types/external-apis.d.cts +0 -186
  604. package/dist/types/generics.d.cts +0 -450
  605. package/dist/types/index.d.cts +0 -22
  606. package/dist/types/operations.d.cts +0 -116
  607. package/dist/types/permissions.d.cts +0 -957
  608. package/dist/types/personal.d.cts +0 -40
  609. package/dist/types/relayer.d.cts +0 -284
  610. package/dist/types/storage.d.cts +0 -131
  611. package/dist/types/transactionResults.d.cts +0 -195
  612. package/dist/types/utils.d.cts +0 -819
  613. package/dist/types.d.cts +0 -54
  614. package/dist/utils/blockchain/registry.d.cts +0 -34
  615. package/dist/utils/crypto-utils.d.cts +0 -118
  616. package/dist/utils/download.d.cts +0 -41
  617. package/dist/utils/encoding.d.cts +0 -54
  618. package/dist/utils/encryption.d.cts +0 -275
  619. package/dist/utils/formatters.d.cts +0 -120
  620. package/dist/utils/grantFiles.d.cts +0 -186
  621. package/dist/utils/grantValidation.d.cts +0 -150
  622. package/dist/utils/grants.d.cts +0 -70
  623. package/dist/utils/ipfs.d.cts +0 -90
  624. package/dist/utils/lazy-import.d.cts +0 -20
  625. package/dist/utils/multicall.d.cts +0 -129
  626. package/dist/utils/parseTransactionPojo.d.cts +0 -37
  627. package/dist/utils/schemaValidation.d.cts +0 -172
  628. package/dist/utils/signatureCache.d.cts +0 -134
  629. package/dist/utils/signatureFormatter.d.cts +0 -39
  630. package/dist/utils/transactionHelpers.d.cts +0 -86
  631. package/dist/utils/typedDataConverter.d.cts +0 -13
  632. package/dist/utils/urlResolver.d.cts +0 -40
  633. package/dist/utils/withEvents.d.cts +0 -63
@@ -1,129 +0,0 @@
1
- import { Address, Abi, PublicClient, MulticallParameters, MulticallReturnType } from 'viem';
2
-
3
- /**
4
- * Type for a contract function configuration used in multicall
5
- */
6
- interface ContractFunctionConfig {
7
- address: Address;
8
- abi: Abi;
9
- functionName: string;
10
- args?: readonly unknown[];
11
- }
12
- /**
13
- * Configuration options for gas-aware multicall batching.
14
- *
15
- * @remarks
16
- * These options control how the multicall utility splits large batches
17
- * to stay within gas and calldata limits. The defaults are conservative
18
- * to ensure compatibility across different chains and RPC providers.
19
- */
20
- interface GasAwareMulticallOptions {
21
- /**
22
- * Maximum gas per batch. Defaults to 10M (conservative for most chains).
23
- *
24
- * @remarks
25
- * This should be set below the block gas limit of your target chain.
26
- * Common values:
27
- * - Vana mainnet: 30M (use 25M for safety)
28
- * - Vana moksha: 30M (use 25M for safety)
29
- * - Ethereum mainnet: 30M (use 25M for safety)
30
- * - Arbitrum: 32M (use 25M for safety)
31
- */
32
- maxGasPerBatch?: bigint;
33
- /**
34
- * Maximum calldata size per batch in bytes. Defaults to 100KB.
35
- *
36
- * @remarks
37
- * This is particularly important for L2 chains where calldata is expensive.
38
- * Some RPC providers also have limits on request size.
39
- */
40
- maxCalldataBytes?: number;
41
- /**
42
- * How often to checkpoint gas estimates. Defaults to every 32 calls or 8KB.
43
- *
44
- * @remarks
45
- * More frequent checkpoints give more accurate batching but require more
46
- * RPC calls for gas estimation. The default balances accuracy vs performance.
47
- */
48
- checkpointFrequency?: {
49
- /** Checkpoint after this many calls */
50
- calls: number;
51
- /** Checkpoint after this many bytes of calldata */
52
- bytes: number;
53
- };
54
- /**
55
- * Whether to allow partial batch failures. Defaults to false.
56
- *
57
- * @remarks
58
- * When true, individual call failures won't fail the entire batch.
59
- * This matches viem's multicall behavior with allowFailure option.
60
- */
61
- allowFailure?: boolean;
62
- /**
63
- * Optional multicall3 contract address override.
64
- *
65
- * @remarks
66
- * By default, uses the standard multicall3 address deployed on most chains:
67
- * 0xcA11bde05977b3631167028862bE2a173976CA11
68
- */
69
- multicallAddress?: Address;
70
- /**
71
- * Optional callback for tracking batching progress.
72
- *
73
- * @remarks
74
- * Useful for showing progress in UI or debugging batch performance.
75
- */
76
- onProgress?: (completed: number, total: number) => void;
77
- }
78
- /**
79
- * A gas-aware multicall function that automatically batches calls to stay within limits.
80
- *
81
- * @remarks
82
- * This function extends viem's multicall with intelligent batching based on:
83
- * - Actual gas costs (via periodic estimateGas calls)
84
- * - Calldata size limits
85
- * - Chain-specific constraints
86
- *
87
- * It uses a greedy algorithm with periodic checkpoints to efficiently determine
88
- * optimal batch sizes without making excessive RPC calls.
89
- *
90
- * @param client - The viem public client to use for RPC calls
91
- * @param parameters - The multicall parameters (same as viem's multicall)
92
- * @param options - Optional configuration for gas-aware batching
93
- * @returns The aggregated results from all batches
94
- *
95
- * @example
96
- * ```typescript
97
- * // Basic usage - drop-in replacement for viem's multicall
98
- * const results = await gasAwareMulticall(publicClient, {
99
- * contracts: [
100
- * { address: '0x...', abi: erc20Abi, functionName: 'balanceOf', args: [address1] },
101
- * { address: '0x...', abi: erc20Abi, functionName: 'balanceOf', args: [address2] },
102
- * // ... hundreds more calls
103
- * ]
104
- * });
105
- *
106
- * // With custom limits for a specific chain
107
- * const results = await gasAwareMulticall(publicClient, {
108
- * contracts: calls,
109
- * }, {
110
- * maxGasPerBatch: 25_000_000n, // 25M for mainnet
111
- * maxCalldataBytes: 128_000, // 128KB
112
- * onProgress: (done, total) => console.log(`Progress: ${done}/${total}`)
113
- * });
114
- * ```
115
- */
116
- declare function gasAwareMulticall<TContracts extends readonly ContractFunctionConfig[], TAllowFailure extends boolean = false>(client: PublicClient, parameters: MulticallParameters<TContracts, TAllowFailure>, options?: GasAwareMulticallOptions): Promise<MulticallReturnType<TContracts, TAllowFailure>>;
117
- /**
118
- * Utility function to analyze calls and predict optimal batch configuration
119
- *
120
- * @remarks
121
- * This function helps determine the best configuration for a specific set of calls
122
- * by analyzing their characteristics. Useful for optimizing repeated operations.
123
- *
124
- * @param contracts - The calls to analyze
125
- * @returns Suggested configuration based on call analysis
126
- */
127
- declare function analyzeCallsForOptimalConfig(contracts: readonly ContractFunctionConfig[]): Pick<GasAwareMulticallOptions, "checkpointFrequency" | "maxCalldataBytes">;
128
-
129
- export { type ContractFunctionConfig, type GasAwareMulticallOptions, analyzeCallsForOptimalConfig, gasAwareMulticall };
@@ -1,37 +0,0 @@
1
- import { TransactionReceipt } from 'viem';
2
- import { TransactionResult } from '../types/operations.cjs';
3
- import { Contract, Fn, TypedTransactionResult } from '../generated/event-types.cjs';
4
- import '../generated/server/server-exports.cjs';
5
- import '../generated/server/server.cjs';
6
-
7
- /**
8
- * Transaction parsing with POJO support and NO heuristics.
9
- *
10
- * @remarks
11
- * This is the new POJO-based parser that works with TransactionResult objects.
12
- * Principle: Explicit over implicit, guarantees over guesses.
13
- */
14
-
15
- /**
16
- * Parses a transaction using TransactionResult POJO with ZERO heuristics.
17
- *
18
- * @remarks
19
- * - Uses function-scoped event registry for O(1) lookups
20
- * - Only expects events explicitly mapped for this contract.function
21
- * - Returns typed events matching the exact TypedTransactionResult interface
22
- *
23
- * @param transactionResult - The TransactionResult POJO with context
24
- * @param transactionResult.hash - Transaction hash
25
- * @param transactionResult.from - Transaction sender address
26
- * @param transactionResult.contract - Contract name
27
- * @param transactionResult.fn - Function name
28
- * @param transactionResult.chainId - Optional chain ID
29
- * @param transactionResult.value - Optional transaction value
30
- * @param transactionResult.nonce - Optional nonce
31
- * @param transactionResult.to - Optional recipient address
32
- * @param receipt - The transaction receipt from the blockchain
33
- * @returns Typed transaction result with parsed events
34
- */
35
- declare function parseTransaction<C extends Contract, F extends Fn<C>>(transactionResult: TransactionResult<C, F>, receipt: TransactionReceipt): TypedTransactionResult<C, F>;
36
-
37
- export { parseTransaction };
@@ -1,172 +0,0 @@
1
- import { Schema } from '../types/data.cjs';
2
- import 'viem';
3
-
4
- /**
5
- * Data schema interface following the Vana schema specification
6
- *
7
- * @category Configuration
8
- */
9
- interface DataSchema {
10
- /** The name of the data schema */
11
- name: string;
12
- /** The version of the data schema */
13
- version: string;
14
- /** Optional description of the data schema */
15
- description?: string;
16
- /** The dialect type - either SQLite or JSON */
17
- dialect: "sqlite" | "json";
18
- /** Optional version of the dialect */
19
- dialectVersion?: string;
20
- /** The actual schema definition as string or object */
21
- schema: string | object;
22
- }
23
- /**
24
- * Error thrown when schema validation fails
25
- */
26
- declare class SchemaValidationError extends Error {
27
- errors: Array<{
28
- instancePath: string;
29
- schemaPath: string;
30
- keyword: string;
31
- params: Record<string, unknown>;
32
- message?: string;
33
- }>;
34
- constructor(message: string, errors: Array<{
35
- instancePath: string;
36
- schemaPath: string;
37
- keyword: string;
38
- params: Record<string, unknown>;
39
- message?: string;
40
- }>);
41
- }
42
- /**
43
- * Data schema validation utility class
44
- */
45
- declare class SchemaValidator {
46
- private ajv;
47
- private dataSchemaValidator;
48
- constructor();
49
- /**
50
- * Validates a data schema definition against the Vana meta-schema
51
- *
52
- * @param schema - The data schema definition to validate
53
- * @throws SchemaValidationError if invalid
54
- * @example
55
- * ```typescript
56
- * const validator = new SchemaValidator();
57
- *
58
- * const schema = {
59
- * name: "User Profile",
60
- * version: "1.0.0",
61
- * dialect: "json",
62
- * schema: {
63
- * type: "object",
64
- * properties: {
65
- * name: { type: "string" },
66
- * age: { type: "number" }
67
- * }
68
- * }
69
- * };
70
- *
71
- * validator.validateDataSchemaAgainstMetaSchema(schema); // throws if invalid
72
- * ```
73
- */
74
- validateDataSchemaAgainstMetaSchema(schema: unknown): asserts schema is DataSchema;
75
- /**
76
- * Validates data against a JSON Schema
77
- *
78
- * @param data - The data to validate
79
- * @param schema - The schema containing the validation rules (must have been validated or fetched from chain)
80
- * @throws SchemaValidationError if invalid
81
- * @example
82
- * ```typescript
83
- * const validator = new SchemaValidator();
84
- *
85
- * // Works with Schema from schemas.get()
86
- * const schema = await vana.schemas.get(1);
87
- * validator.validateDataAgainstSchema(userData, schema);
88
- *
89
- * // Also works with pre-validated DataSchema object
90
- * const dataSchema = validator.validateDataSchemaAgainstMetaSchema({
91
- * name: "User Profile",
92
- * version: "1.0.0",
93
- * dialect: "json",
94
- * schema: { type: "object", properties: { name: { type: "string" } } }
95
- * });
96
- * validator.validateDataAgainstSchema(userData, dataSchema);
97
- * ```
98
- */
99
- validateDataAgainstSchema(data: unknown, schema: DataSchema | Schema): void;
100
- /**
101
- * Validates a SQLite DDL string for basic syntax
102
- * Note: This is a basic validation, full SQL parsing would require a proper SQL parser
103
- *
104
- * @param ddl - The DDL string to validate
105
- * @param dialectVersion - Optional SQLite version (e.g., "3" for SQLite v3)
106
- * @throws SchemaValidationError if invalid
107
- */
108
- validateSQLiteDDL(ddl: string, dialectVersion?: string): void;
109
- /**
110
- * Fetches and validates a data schema from a URL
111
- *
112
- * @param url - The URL to fetch the data schema from
113
- * @param downloadRelayer - Optional download relayer for CORS bypass
114
- * @param downloadRelayer.proxyDownload - Function to proxy downloads through application server
115
- * @returns The validated data schema
116
- * @throws SchemaValidationError if invalid or fetch fails
117
- * @example
118
- * ```typescript
119
- * const validator = new SchemaValidator();
120
- * const schema = await validator.fetchAndValidateSchema("https://example.com/schema.json");
121
- * ```
122
- */
123
- fetchAndValidateSchema(url: string, downloadRelayer?: {
124
- proxyDownload: (url: string) => Promise<Blob>;
125
- }): Promise<DataSchema>;
126
- }
127
- /**
128
- * Global schema validator instance
129
- */
130
- declare const schemaValidator: SchemaValidator;
131
- /**
132
- * Convenience function to validate a data schema definition against the Vana meta-schema
133
- *
134
- * @param schema - The data schema definition to validate
135
- * @returns The validated DataSchema
136
- * @throws SchemaValidationError if invalid
137
- * @example
138
- * ```typescript
139
- * const schemaDefinition = {
140
- * name: "User Profile",
141
- * version: "1.0.0",
142
- * dialect: "json",
143
- * schema: { type: "object", properties: { name: { type: "string" } } }
144
- * };
145
- *
146
- * const validatedSchema = validateDataSchemaAgainstMetaSchema(schemaDefinition);
147
- * ```
148
- */
149
- declare function validateDataSchemaAgainstMetaSchema(schema: unknown): DataSchema;
150
- /**
151
- * Convenience function to validate data against a schema
152
- *
153
- * @param data - The data to validate
154
- * @param schema - The data schema containing the schema
155
- * @returns void - Function doesn't return a value
156
- * @throws SchemaValidationError if invalid
157
- */
158
- declare function validateDataAgainstSchema(data: unknown, schema: DataSchema | Schema): void;
159
- /**
160
- * Convenience function to fetch and validate a data schema from a URL
161
- *
162
- * @param url - The URL to fetch the data schema from
163
- * @param downloadRelayer - Optional download relayer for CORS bypass
164
- * @param downloadRelayer.proxyDownload - Function to proxy downloads through application server
165
- * @returns The validated data schema
166
- * @throws SchemaValidationError if invalid or fetch fails
167
- */
168
- declare function fetchAndValidateSchema(url: string, downloadRelayer?: {
169
- proxyDownload: (url: string) => Promise<Blob>;
170
- }): Promise<DataSchema>;
171
-
172
- export { type DataSchema, SchemaValidationError, SchemaValidator, fetchAndValidateSchema, schemaValidator, validateDataAgainstSchema, validateDataSchemaAgainstMetaSchema };
@@ -1,134 +0,0 @@
1
- import { Hash } from 'viem';
2
- import { VanaCacheAdapter } from '../platform/interface.cjs';
3
-
4
- /**
5
- * Simple signature cache using platform cache adapter to avoid repeated signing of identical messages.
6
- *
7
- * @remarks
8
- * This cache significantly improves UX by avoiding repeated wallet signature prompts
9
- * for identical operations. It's particularly useful for operations that may be
10
- * retried or called multiple times with the same parameters.
11
- *
12
- * Features:
13
- * - Platform-appropriate storage (sessionStorage in browser, memory in Node.js)
14
- * - Configurable TTL (default 2 hours)
15
- * - Automatic cleanup of expired entries
16
- * - Cache keys based on wallet address + message hash
17
- *
18
- * @example
19
- * ```typescript
20
- * // Check cache before requesting signature
21
- * const cached = SignatureCache.get(cache, walletAddress, messageHash);
22
- * if (cached) {
23
- * return cached;
24
- * }
25
- *
26
- * // Request signature and cache it
27
- * const signature = await wallet.signTypedData(typedData);
28
- * SignatureCache.set(cache, walletAddress, messageHash, signature);
29
- * ```
30
- * @category Utilities
31
- */
32
- declare class SignatureCache {
33
- private static readonly PREFIX;
34
- private static readonly DEFAULT_TTL_HOURS;
35
- /**
36
- * Get a cached signature if it exists and hasn't expired
37
- *
38
- * @param cache - Platform cache adapter instance
39
- * @param walletAddress - Wallet address that created the signature
40
- * @param messageHash - Hash of the message that was signed
41
- * @returns The cached signature if valid, null if expired or not found
42
- * @example
43
- * ```typescript
44
- * const messageHash = SignatureCache.hashMessage(typedData);
45
- * const cached = SignatureCache.get(cache, '0x123...', messageHash);
46
- * if (cached) {
47
- * console.log('Using cached signature:', cached);
48
- * }
49
- * ```
50
- */
51
- static get(cache: VanaCacheAdapter, walletAddress: string, messageHash: string): Hash | null;
52
- /**
53
- * Store a signature in the cache with configurable TTL
54
- *
55
- * @param cache - Platform cache adapter instance
56
- * @param walletAddress - Wallet address that created the signature
57
- * @param messageHash - Hash of the message that was signed
58
- * @param signature - The signature to cache
59
- * @param ttlHours - Time to live in hours (default: 2)
60
- * @example
61
- * ```typescript
62
- * const signature = await wallet.signTypedData(typedData);
63
- * const messageHash = SignatureCache.hashMessage(typedData);
64
- *
65
- * // Cache for default 2 hours
66
- * SignatureCache.set(cache, walletAddress, messageHash, signature);
67
- *
68
- * // Cache for 24 hours
69
- * SignatureCache.set(cache, walletAddress, messageHash, signature, 24);
70
- * ```
71
- */
72
- static set(cache: VanaCacheAdapter, walletAddress: string, messageHash: string, signature: Hash, ttlHours?: number): void;
73
- /**
74
- * Clear all cached signatures (useful for testing or explicit cleanup)
75
- *
76
- * @param cache - Platform cache adapter instance
77
- * @example
78
- * ```typescript
79
- * // Clear all signatures when user logs out
80
- * SignatureCache.clear(cache);
81
- *
82
- * // Clear before running tests
83
- * beforeEach(() => {
84
- * SignatureCache.clear(cache);
85
- * });
86
- * ```
87
- */
88
- static clear(cache: VanaCacheAdapter): void;
89
- private static getCacheKey;
90
- /**
91
- * Generate a deterministic hash of a message object for cache key generation
92
- *
93
- * @remarks
94
- * Creates a cryptographically secure hash from complex objects including EIP-712 typed data.
95
- * Uses SHA-256 for collision resistance and deterministic key generation.
96
- * Handles BigInt serialization and sorts object keys for consistency.
97
- *
98
- * @param message - The message object to hash (typically EIP-712 typed data)
99
- * @returns A hex string hash (SHA-256) suitable for cache keys
100
- * @example
101
- * ```typescript
102
- * const typedData = {
103
- * domain: { name: 'Vana', version: '1' },
104
- * message: { nonce: 123n, grant: '...' }
105
- * };
106
- *
107
- * const hash = SignatureCache.hashMessage(typedData);
108
- * // Returns SHA-256 hash like: "a1b2c3d4e5f6..."
109
- * ```
110
- */
111
- static hashMessage(message: object): string;
112
- /**
113
- * Deterministic JSON replacer that handles BigInt values and sorts object keys
114
- * This ensures consistent cache key generation for EIP-712 typed data
115
- *
116
- * @param _key - The object key being serialized (unused)
117
- * @param value - The value to serialize
118
- * @returns The serialized value with sorted keys for objects
119
- */
120
- private static deterministicReplacer;
121
- }
122
- /**
123
- * Wrapper function to cache signature operations
124
- *
125
- * @param cache - The cache adapter to use for storage
126
- * @param walletAddress - The wallet address signing the message
127
- * @param typedData - The EIP-712 typed data being signed
128
- * @param signFn - Function that performs the actual signing
129
- * @param ttlHours - Cache TTL in hours (default 2)
130
- * @returns The signature (cached or newly generated)
131
- */
132
- declare function withSignatureCache(cache: VanaCacheAdapter, walletAddress: string, typedData: Record<string, unknown>, signFn: () => Promise<Hash>, ttlHours?: number): Promise<Hash>;
133
-
134
- export { SignatureCache, withSignatureCache };
@@ -1,39 +0,0 @@
1
- import { Hash } from 'viem';
2
-
3
- /**
4
- * Formats a signature for Ethereum smart contract compatibility by adjusting the v-value.
5
- *
6
- * @remarks
7
- * This function ensures signature compatibility with Ethereum smart contracts by adjusting
8
- * the v-value component of ECDSA signatures. Some wallet implementations and signing methods
9
- * produce signatures with v-values in the range [0, 1], while Ethereum smart contracts
10
- * expect v-values in the range [27, 28] for proper signature verification.
11
- *
12
- * The function automatically detects signatures with low v-values and applies the standard
13
- * Ethereum offset (+27) to ensure compatibility. This is particularly important for gasless
14
- * transactions and EIP-712 signature verification in smart contracts.
15
- *
16
- * **Technical Details:**
17
- * - Ethereum signatures consist of r (32 bytes) + s (32 bytes) + v (1 byte) = 65 bytes total
18
- * - Valid v-values for Ethereum are 27 or 28 (or 0/1 + chain-specific offset for EIP-155)
19
- * - This function handles the common case where v ∈ [0, 1] needs adjustment to [27, 28]
20
- *
21
- * @param signature - The ECDSA signature hash to format (65 bytes as hex string)
22
- * @returns The formatted signature with correct v-value for Ethereum contract verification
23
- * @example
24
- * ```typescript
25
- * // Signature with v-value that needs adjustment
26
- * const rawSignature = "0x1234...5600"; // v = 0 (last byte)
27
- * const formatted = formatSignatureForContract(rawSignature);
28
- * // Result: "0x1234...561b" // v = 27 (0x1b)
29
- *
30
- * // Already properly formatted signature remains unchanged
31
- * const goodSignature = "0x1234...561b"; // v = 27
32
- * const unchanged = formatSignatureForContract(goodSignature);
33
- * // Result: "0x1234...561b" (no change needed)
34
- * ```
35
- * @category Cryptography
36
- */
37
- declare function formatSignatureForContract(signature: Hash): Hash;
38
-
39
- export { formatSignatureForContract };
@@ -1,86 +0,0 @@
1
- import { Hash, Address } from 'viem';
2
- import { TransactionResult } from '../types/operations.cjs';
3
- import { Contract, Fn } from '../generated/event-types.cjs';
4
- import '../generated/server/server-exports.cjs';
5
- import '../generated/server/server.cjs';
6
-
7
- /**
8
- * Helper functions for creating typed transaction POJOs
9
- */
10
-
11
- /**
12
- * Creates a strongly-typed TransactionResult POJO.
13
- *
14
- * @remarks
15
- * This helper ensures all required fields are present and typed correctly,
16
- * reducing boilerplate and preventing mistakes.
17
- *
18
- * @param input - Transaction details
19
- * @param input.hash - Transaction hash
20
- * @param input.from - Transaction sender address
21
- * @param input.contract - Contract name
22
- * @param input.fn - Function name
23
- * @param input.chainId - Optional chain ID
24
- * @param input.value - Optional transaction value
25
- * @param input.nonce - Optional nonce
26
- * @param input.to - Optional recipient address
27
- * @returns Typed TransactionResult
28
- *
29
- * @example
30
- * ```typescript
31
- * return tx({
32
- * hash,
33
- * from: account.address,
34
- * contract: "DataPortabilityPermissions",
35
- * fn: "revokePermission",
36
- * });
37
- * ```
38
- */
39
- declare function tx<C extends Contract, F extends Fn<C>>(input: {
40
- hash: Hash;
41
- from: Address;
42
- contract: C;
43
- fn: F;
44
- chainId?: number;
45
- value?: bigint;
46
- nonce?: number;
47
- to?: Address;
48
- }): TransactionResult<C, F>;
49
- /**
50
- * Creates a transaction result with literal type inference.
51
- * Use this when you need TypeScript to preserve exact string literals.
52
- *
53
- * @param input - Transaction details
54
- * @param input.hash - Transaction hash
55
- * @param input.from - Transaction sender address
56
- * @param input.contract - Contract name
57
- * @param input.fn - Function name
58
- * @param input.chainId - Optional chain ID
59
- * @param input.value - Optional transaction value
60
- * @param input.nonce - Optional nonce
61
- * @param input.to - Optional recipient address
62
- * @returns Typed TransactionResult
63
- *
64
- * @example
65
- * ```typescript
66
- * const transaction = txLiteral({
67
- * hash: '0x...',
68
- * from: '0x...',
69
- * contract: "DataPortabilityPermissions",
70
- * fn: "revokePermission",
71
- * });
72
- * // TypeScript knows exactly: DataPortabilityPermissions + revokePermission
73
- * ```
74
- */
75
- declare function txLiteral<const C extends Contract, const F extends Fn<C>>(input: {
76
- hash: Hash;
77
- from: Address;
78
- contract: C;
79
- fn: F;
80
- chainId?: number;
81
- value?: bigint;
82
- nonce?: number;
83
- to?: Address;
84
- }): TransactionResult<C, F>;
85
-
86
- export { tx, txLiteral };
@@ -1,13 +0,0 @@
1
- import { TypedDataDefinition } from 'viem';
2
- import { GenericTypedData } from '../types/permissions.cjs';
3
-
4
- /**
5
- * Converts a GenericTypedData object to a Viem-compatible TypedDataDefinition.
6
- * This function ensures type safety when passing typed data to viem's signTypedData method.
7
- *
8
- * @param typedData - The typed data object to convert
9
- * @returns A properly typed TypedDataDefinition for use with viem
10
- */
11
- declare function toViemTypedDataDefinition(typedData: GenericTypedData): TypedDataDefinition;
12
-
13
- export { toViemTypedDataDefinition };
@@ -1,40 +0,0 @@
1
- /**
2
- * Universal URL resolver for the Vana SDK
3
- *
4
- * Handles fetching data from various protocols (IPFS, HTTP, Arweave, etc.)
5
- * in a consistent, reliable way.
6
- */
7
- /**
8
- * Error thrown when URL resolution fails
9
- */
10
- declare class UrlResolutionError extends Error {
11
- readonly url: string;
12
- readonly cause?: Error | undefined;
13
- constructor(message: string, url: string, cause?: Error | undefined);
14
- }
15
- /**
16
- * Fetches and parses JSON data from any supported URL protocol
17
- *
18
- * @param url - The URL to fetch from (supports ipfs://, https://, http://, ar://)
19
- * @param downloadRelayer - Optional download relayer for CORS bypass
20
- * @param downloadRelayer.proxyDownload - Function to proxy downloads through application server
21
- * @returns Promise resolving to the parsed JSON data
22
- * @throws {UrlResolutionError} When the URL cannot be resolved or parsed
23
- *
24
- * @example
25
- * ```typescript
26
- * // Fetch from IPFS
27
- * const data = await fetchFromUrl("ipfs://QmXxx...");
28
- *
29
- * // Fetch from HTTPS
30
- * const data = await fetchFromUrl("https://example.com/data.json");
31
- *
32
- * // Handles protocol conversion internally
33
- * const schema = await fetchFromUrl(schemaDefinitionUrl);
34
- * ```
35
- */
36
- declare function fetchFromUrl(url: string, downloadRelayer?: {
37
- proxyDownload: (url: string) => Promise<Blob>;
38
- }): Promise<unknown>;
39
-
40
- export { UrlResolutionError, fetchFromUrl };