@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,28 +1,27 @@
1
- import { TypedDocumentNode } from '@graphql-typed-document-node/core';
2
-
3
- type Maybe<T> = T | null;
4
- type InputMaybe<T> = Maybe<T>;
5
- type Exact<T extends {
1
+ import { TypedDocumentNode as DocumentNode } from "@graphql-typed-document-node/core";
2
+ export type Maybe<T> = T | null;
3
+ export type InputMaybe<T> = Maybe<T>;
4
+ export type Exact<T extends {
6
5
  [key: string]: unknown;
7
6
  }> = {
8
7
  [K in keyof T]: T[K];
9
8
  };
10
- type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
9
+ export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
11
10
  [SubKey in K]?: Maybe<T[SubKey]>;
12
11
  };
13
- type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
12
+ export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
14
13
  [SubKey in K]: Maybe<T[SubKey]>;
15
14
  };
16
- type MakeEmpty<T extends {
15
+ export type MakeEmpty<T extends {
17
16
  [key: string]: unknown;
18
17
  }, K extends keyof T> = {
19
18
  [_ in K]?: never;
20
19
  };
21
- type Incremental<T> = T | {
20
+ export type Incremental<T> = T | {
22
21
  [P in keyof T]?: P extends " $fragmentName" | "__typename" ? T[P] : never;
23
22
  };
24
23
  /** All built-in and custom scalars, mapped to their actual values */
25
- type Scalars = {
24
+ export type Scalars = {
26
25
  ID: {
27
26
  input: string;
28
27
  output: string;
@@ -64,20 +63,20 @@ type Scalars = {
64
63
  output: any;
65
64
  };
66
65
  };
67
- type Aggregation_Interval = "day" | "hour";
68
- type BlockChangedFilter = {
66
+ export type Aggregation_Interval = "day" | "hour";
67
+ export type BlockChangedFilter = {
69
68
  number_gte: Scalars["Int"]["input"];
70
69
  };
71
- type Block_Height = {
70
+ export type Block_Height = {
72
71
  hash?: InputMaybe<Scalars["Bytes"]["input"]>;
73
72
  number?: InputMaybe<Scalars["Int"]["input"]>;
74
73
  number_gte?: InputMaybe<Scalars["Int"]["input"]>;
75
74
  };
76
- type Bundle = {
75
+ export type Bundle = {
77
76
  ethPriceUSD: Scalars["BigDecimal"]["output"];
78
77
  id: Scalars["ID"]["output"];
79
78
  };
80
- type Bundle_Filter = {
79
+ export type Bundle_Filter = {
81
80
  /** Filter for the block changed event. */
82
81
  _change_block?: InputMaybe<BlockChangedFilter>;
83
82
  and?: InputMaybe<Array<InputMaybe<Bundle_Filter>>>;
@@ -99,8 +98,8 @@ type Bundle_Filter = {
99
98
  id_not_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
100
99
  or?: InputMaybe<Array<InputMaybe<Bundle_Filter>>>;
101
100
  };
102
- type Bundle_OrderBy = "ethPriceUSD" | "id";
103
- type Burn = {
101
+ export type Bundle_OrderBy = "ethPriceUSD" | "id";
102
+ export type Burn = {
104
103
  amount: Scalars["BigInt"]["output"];
105
104
  amount0: Scalars["BigDecimal"]["output"];
106
105
  amount1: Scalars["BigDecimal"]["output"];
@@ -117,7 +116,7 @@ type Burn = {
117
116
  token1: Token;
118
117
  transaction: Transaction;
119
118
  };
120
- type Burn_Filter = {
119
+ export type Burn_Filter = {
121
120
  /** Filter for the block changed event. */
122
121
  _change_block?: InputMaybe<BlockChangedFilter>;
123
122
  amount?: InputMaybe<Scalars["BigInt"]["input"]>;
@@ -299,8 +298,8 @@ type Burn_Filter = {
299
298
  transaction_starts_with?: InputMaybe<Scalars["String"]["input"]>;
300
299
  transaction_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
301
300
  };
302
- type Burn_OrderBy = "amount" | "amount0" | "amount1" | "amountUSD" | "id" | "logIndex" | "origin" | "owner" | "pool" | "pool__collectedFeesToken0" | "pool__collectedFeesToken1" | "pool__collectedFeesUSD" | "pool__createdAtBlockNumber" | "pool__createdAtTimestamp" | "pool__feeTier" | "pool__feesUSD" | "pool__id" | "pool__liquidity" | "pool__liquidityProviderCount" | "pool__observationIndex" | "pool__sqrtPrice" | "pool__tick" | "pool__token0Price" | "pool__token1Price" | "pool__totalValueLockedETH" | "pool__totalValueLockedToken0" | "pool__totalValueLockedToken1" | "pool__totalValueLockedUSD" | "pool__totalValueLockedUSDUntracked" | "pool__txCount" | "pool__untrackedVolumeUSD" | "pool__volumeToken0" | "pool__volumeToken1" | "pool__volumeUSD" | "tickLower" | "tickUpper" | "timestamp" | "token0" | "token0__decimals" | "token0__derivedETH" | "token0__feesUSD" | "token0__id" | "token0__name" | "token0__poolCount" | "token0__symbol" | "token0__totalSupply" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token0__txCount" | "token0__untrackedVolumeUSD" | "token0__volume" | "token0__volumeUSD" | "token1" | "token1__decimals" | "token1__derivedETH" | "token1__feesUSD" | "token1__id" | "token1__name" | "token1__poolCount" | "token1__symbol" | "token1__totalSupply" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked" | "token1__txCount" | "token1__untrackedVolumeUSD" | "token1__volume" | "token1__volumeUSD" | "transaction" | "transaction__blockNumber" | "transaction__gasPrice" | "transaction__gasUsed" | "transaction__id" | "transaction__timestamp";
303
- type Collect = {
301
+ export type Burn_OrderBy = "amount" | "amount0" | "amount1" | "amountUSD" | "id" | "logIndex" | "origin" | "owner" | "pool" | "pool__collectedFeesToken0" | "pool__collectedFeesToken1" | "pool__collectedFeesUSD" | "pool__createdAtBlockNumber" | "pool__createdAtTimestamp" | "pool__feeTier" | "pool__feesUSD" | "pool__id" | "pool__liquidity" | "pool__liquidityProviderCount" | "pool__observationIndex" | "pool__sqrtPrice" | "pool__tick" | "pool__token0Price" | "pool__token1Price" | "pool__totalValueLockedETH" | "pool__totalValueLockedToken0" | "pool__totalValueLockedToken1" | "pool__totalValueLockedUSD" | "pool__totalValueLockedUSDUntracked" | "pool__txCount" | "pool__untrackedVolumeUSD" | "pool__volumeToken0" | "pool__volumeToken1" | "pool__volumeUSD" | "tickLower" | "tickUpper" | "timestamp" | "token0" | "token0__decimals" | "token0__derivedETH" | "token0__feesUSD" | "token0__id" | "token0__name" | "token0__poolCount" | "token0__symbol" | "token0__totalSupply" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token0__txCount" | "token0__untrackedVolumeUSD" | "token0__volume" | "token0__volumeUSD" | "token1" | "token1__decimals" | "token1__derivedETH" | "token1__feesUSD" | "token1__id" | "token1__name" | "token1__poolCount" | "token1__symbol" | "token1__totalSupply" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked" | "token1__txCount" | "token1__untrackedVolumeUSD" | "token1__volume" | "token1__volumeUSD" | "transaction" | "transaction__blockNumber" | "transaction__gasPrice" | "transaction__gasUsed" | "transaction__id" | "transaction__timestamp";
302
+ export type Collect = {
304
303
  amount0: Scalars["BigDecimal"]["output"];
305
304
  amount1: Scalars["BigDecimal"]["output"];
306
305
  amountUSD?: Maybe<Scalars["BigDecimal"]["output"]>;
@@ -313,7 +312,7 @@ type Collect = {
313
312
  timestamp: Scalars["BigInt"]["output"];
314
313
  transaction: Transaction;
315
314
  };
316
- type Collect_Filter = {
315
+ export type Collect_Filter = {
317
316
  /** Filter for the block changed event. */
318
317
  _change_block?: InputMaybe<BlockChangedFilter>;
319
318
  amount0?: InputMaybe<Scalars["BigDecimal"]["input"]>;
@@ -435,8 +434,8 @@ type Collect_Filter = {
435
434
  transaction_starts_with?: InputMaybe<Scalars["String"]["input"]>;
436
435
  transaction_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
437
436
  };
438
- type Collect_OrderBy = "amount0" | "amount1" | "amountUSD" | "id" | "logIndex" | "owner" | "pool" | "pool__collectedFeesToken0" | "pool__collectedFeesToken1" | "pool__collectedFeesUSD" | "pool__createdAtBlockNumber" | "pool__createdAtTimestamp" | "pool__feeTier" | "pool__feesUSD" | "pool__id" | "pool__liquidity" | "pool__liquidityProviderCount" | "pool__observationIndex" | "pool__sqrtPrice" | "pool__tick" | "pool__token0Price" | "pool__token1Price" | "pool__totalValueLockedETH" | "pool__totalValueLockedToken0" | "pool__totalValueLockedToken1" | "pool__totalValueLockedUSD" | "pool__totalValueLockedUSDUntracked" | "pool__txCount" | "pool__untrackedVolumeUSD" | "pool__volumeToken0" | "pool__volumeToken1" | "pool__volumeUSD" | "tickLower" | "tickUpper" | "timestamp" | "transaction" | "transaction__blockNumber" | "transaction__gasPrice" | "transaction__gasUsed" | "transaction__id" | "transaction__timestamp";
439
- type DataRegistryProof = {
437
+ export type Collect_OrderBy = "amount0" | "amount1" | "amountUSD" | "id" | "logIndex" | "owner" | "pool" | "pool__collectedFeesToken0" | "pool__collectedFeesToken1" | "pool__collectedFeesUSD" | "pool__createdAtBlockNumber" | "pool__createdAtTimestamp" | "pool__feeTier" | "pool__feesUSD" | "pool__id" | "pool__liquidity" | "pool__liquidityProviderCount" | "pool__observationIndex" | "pool__sqrtPrice" | "pool__tick" | "pool__token0Price" | "pool__token1Price" | "pool__totalValueLockedETH" | "pool__totalValueLockedToken0" | "pool__totalValueLockedToken1" | "pool__totalValueLockedUSD" | "pool__totalValueLockedUSDUntracked" | "pool__txCount" | "pool__untrackedVolumeUSD" | "pool__volumeToken0" | "pool__volumeToken1" | "pool__volumeUSD" | "tickLower" | "tickUpper" | "timestamp" | "transaction" | "transaction__blockNumber" | "transaction__gasPrice" | "transaction__gasUsed" | "transaction__id" | "transaction__timestamp";
438
+ export type DataRegistryProof = {
440
439
  attestor?: Maybe<Scalars["Bytes"]["output"]>;
441
440
  createdAt: Scalars["BigInt"]["output"];
442
441
  createdAtBlock: Scalars["BigInt"]["output"];
@@ -448,7 +447,7 @@ type DataRegistryProof = {
448
447
  proofIndex: Scalars["BigInt"]["output"];
449
448
  user?: Maybe<User>;
450
449
  };
451
- type DataRegistryProof_Filter = {
450
+ export type DataRegistryProof_Filter = {
452
451
  /** Filter for the block changed event. */
453
452
  _change_block?: InputMaybe<BlockChangedFilter>;
454
453
  and?: InputMaybe<Array<InputMaybe<DataRegistryProof_Filter>>>;
@@ -577,8 +576,8 @@ type DataRegistryProof_Filter = {
577
576
  user_starts_with?: InputMaybe<Scalars["String"]["input"]>;
578
577
  user_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
579
578
  };
580
- type DataRegistryProof_OrderBy = "attestor" | "createdAt" | "createdAtBlock" | "createdTxHash" | "dlp" | "dlp__address" | "dlp__createdAt" | "dlp__createdAtBlock" | "dlp__createdTxHash" | "dlp__creator" | "dlp__iconUrl" | "dlp__id" | "dlp__metadata" | "dlp__name" | "dlp__owner" | "dlp__performanceRating" | "dlp__status" | "dlp__token" | "dlp__treasury" | "dlp__verificationBlockNumber" | "dlp__website" | "epoch" | "epoch__createdAt" | "epoch__createdAtBlock" | "epoch__createdTxHash" | "epoch__endBlock" | "epoch__id" | "epoch__isFinalized" | "epoch__logIndex" | "epoch__reward" | "epoch__startBlock" | "fileId" | "id" | "proofIndex" | "user" | "user__id";
581
- type Dlp = {
579
+ export type DataRegistryProof_OrderBy = "attestor" | "createdAt" | "createdAtBlock" | "createdTxHash" | "dlp" | "dlp__address" | "dlp__createdAt" | "dlp__createdAtBlock" | "dlp__createdTxHash" | "dlp__creator" | "dlp__iconUrl" | "dlp__id" | "dlp__metadata" | "dlp__name" | "dlp__owner" | "dlp__performanceRating" | "dlp__status" | "dlp__token" | "dlp__treasury" | "dlp__verificationBlockNumber" | "dlp__website" | "epoch" | "epoch__createdAt" | "epoch__createdAtBlock" | "epoch__createdTxHash" | "epoch__endBlock" | "epoch__id" | "epoch__isFinalized" | "epoch__logIndex" | "epoch__reward" | "epoch__startBlock" | "fileId" | "id" | "proofIndex" | "user" | "user__id";
580
+ export type Dlp = {
582
581
  address?: Maybe<Scalars["Bytes"]["output"]>;
583
582
  createdAt?: Maybe<Scalars["BigInt"]["output"]>;
584
583
  createdAtBlock?: Maybe<Scalars["BigInt"]["output"]>;
@@ -599,25 +598,25 @@ type Dlp = {
599
598
  verificationBlockNumber?: Maybe<Scalars["BigInt"]["output"]>;
600
599
  website?: Maybe<Scalars["String"]["output"]>;
601
600
  };
602
- type DlpPerformancesArgs = {
601
+ export type DlpPerformancesArgs = {
603
602
  first?: InputMaybe<Scalars["Int"]["input"]>;
604
603
  orderBy?: InputMaybe<DlpPerformance_OrderBy>;
605
604
  orderDirection?: InputMaybe<OrderDirection>;
606
605
  skip?: InputMaybe<Scalars["Int"]["input"]>;
607
606
  where?: InputMaybe<DlpPerformance_Filter>;
608
607
  };
609
- type DlpRefinersArgs = {
608
+ export type DlpRefinersArgs = {
610
609
  first?: InputMaybe<Scalars["Int"]["input"]>;
611
610
  orderBy?: InputMaybe<Refiner_OrderBy>;
612
611
  orderDirection?: InputMaybe<OrderDirection>;
613
612
  skip?: InputMaybe<Scalars["Int"]["input"]>;
614
613
  where?: InputMaybe<Refiner_Filter>;
615
614
  };
616
- type DlpList = {
615
+ export type DlpList = {
617
616
  dlpIds: Array<Scalars["String"]["output"]>;
618
617
  id: Scalars["ID"]["output"];
619
618
  };
620
- type DlpList_Filter = {
619
+ export type DlpList_Filter = {
621
620
  /** Filter for the block changed event. */
622
621
  _change_block?: InputMaybe<BlockChangedFilter>;
623
622
  and?: InputMaybe<Array<InputMaybe<DlpList_Filter>>>;
@@ -637,8 +636,8 @@ type DlpList_Filter = {
637
636
  id_not_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
638
637
  or?: InputMaybe<Array<InputMaybe<DlpList_Filter>>>;
639
638
  };
640
- type DlpList_OrderBy = "dlpIds" | "id";
641
- type DlpPerformance = {
639
+ export type DlpList_OrderBy = "dlpIds" | "id";
640
+ export type DlpPerformance = {
642
641
  createdAt: Scalars["BigInt"]["output"];
643
642
  createdAtBlock: Scalars["BigInt"]["output"];
644
643
  createdTxHash: Scalars["Bytes"]["output"];
@@ -650,7 +649,7 @@ type DlpPerformance = {
650
649
  tradingVolume: Scalars["BigInt"]["output"];
651
650
  uniqueContributors: Scalars["BigInt"]["output"];
652
651
  };
653
- type DlpPerformance_Filter = {
652
+ export type DlpPerformance_Filter = {
654
653
  /** Filter for the block changed event. */
655
654
  _change_block?: InputMaybe<BlockChangedFilter>;
656
655
  and?: InputMaybe<Array<InputMaybe<DlpPerformance_Filter>>>;
@@ -764,14 +763,14 @@ type DlpPerformance_Filter = {
764
763
  uniqueContributors_not?: InputMaybe<Scalars["BigInt"]["input"]>;
765
764
  uniqueContributors_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
766
765
  };
767
- type DlpPerformance_OrderBy = "createdAt" | "createdAtBlock" | "createdTxHash" | "dataAccessFees" | "dlp" | "dlp__address" | "dlp__createdAt" | "dlp__createdAtBlock" | "dlp__createdTxHash" | "dlp__creator" | "dlp__iconUrl" | "dlp__id" | "dlp__metadata" | "dlp__name" | "dlp__owner" | "dlp__performanceRating" | "dlp__status" | "dlp__token" | "dlp__treasury" | "dlp__verificationBlockNumber" | "dlp__website" | "epoch" | "epoch__createdAt" | "epoch__createdAtBlock" | "epoch__createdTxHash" | "epoch__endBlock" | "epoch__id" | "epoch__isFinalized" | "epoch__logIndex" | "epoch__reward" | "epoch__startBlock" | "id" | "totalScore" | "tradingVolume" | "uniqueContributors";
768
- type DlpReward = {
766
+ export type DlpPerformance_OrderBy = "createdAt" | "createdAtBlock" | "createdTxHash" | "dataAccessFees" | "dlp" | "dlp__address" | "dlp__createdAt" | "dlp__createdAtBlock" | "dlp__createdTxHash" | "dlp__creator" | "dlp__iconUrl" | "dlp__id" | "dlp__metadata" | "dlp__name" | "dlp__owner" | "dlp__performanceRating" | "dlp__status" | "dlp__token" | "dlp__treasury" | "dlp__verificationBlockNumber" | "dlp__website" | "epoch" | "epoch__createdAt" | "epoch__createdAtBlock" | "epoch__createdTxHash" | "epoch__endBlock" | "epoch__id" | "epoch__isFinalized" | "epoch__logIndex" | "epoch__reward" | "epoch__startBlock" | "id" | "totalScore" | "tradingVolume" | "uniqueContributors";
767
+ export type DlpReward = {
769
768
  amount?: Maybe<Scalars["BigInt"]["output"]>;
770
769
  dlpId?: Maybe<Scalars["BigInt"]["output"]>;
771
770
  epochId?: Maybe<Scalars["BigInt"]["output"]>;
772
771
  id: Scalars["ID"]["output"];
773
772
  };
774
- type DlpReward_Filter = {
773
+ export type DlpReward_Filter = {
775
774
  /** Filter for the block changed event. */
776
775
  _change_block?: InputMaybe<BlockChangedFilter>;
777
776
  amount?: InputMaybe<Scalars["BigInt"]["input"]>;
@@ -809,8 +808,8 @@ type DlpReward_Filter = {
809
808
  id_not_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
810
809
  or?: InputMaybe<Array<InputMaybe<DlpReward_Filter>>>;
811
810
  };
812
- type DlpReward_OrderBy = "amount" | "dlpId" | "epochId" | "id";
813
- type Dlp_Filter = {
811
+ export type DlpReward_OrderBy = "amount" | "dlpId" | "epochId" | "id";
812
+ export type Dlp_Filter = {
814
813
  /** Filter for the block changed event. */
815
814
  _change_block?: InputMaybe<BlockChangedFilter>;
816
815
  address?: InputMaybe<Scalars["Bytes"]["input"]>;
@@ -1027,8 +1026,8 @@ type Dlp_Filter = {
1027
1026
  website_starts_with?: InputMaybe<Scalars["String"]["input"]>;
1028
1027
  website_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
1029
1028
  };
1030
- type Dlp_OrderBy = "address" | "createdAt" | "createdAtBlock" | "createdTxHash" | "creator" | "iconUrl" | "id" | "metadata" | "name" | "owner" | "performanceRating" | "performances" | "refiners" | "status" | "token" | "totals" | "totals__dataAccessFees" | "totals__id" | "totals__totalFileContributions" | "totals__uniqueFileContributors" | "treasury" | "verificationBlockNumber" | "website";
1031
- type Epoch = {
1029
+ export type Dlp_OrderBy = "address" | "createdAt" | "createdAtBlock" | "createdTxHash" | "creator" | "iconUrl" | "id" | "metadata" | "name" | "owner" | "performanceRating" | "performances" | "refiners" | "status" | "token" | "totals" | "totals__dataAccessFees" | "totals__id" | "totals__totalFileContributions" | "totals__uniqueFileContributors" | "treasury" | "verificationBlockNumber" | "website";
1030
+ export type Epoch = {
1032
1031
  createdAt: Scalars["BigInt"]["output"];
1033
1032
  createdAtBlock: Scalars["BigInt"]["output"];
1034
1033
  createdTxHash: Scalars["Bytes"]["output"];
@@ -1041,18 +1040,18 @@ type Epoch = {
1041
1040
  reward: Scalars["BigInt"]["output"];
1042
1041
  startBlock: Scalars["BigInt"]["output"];
1043
1042
  };
1044
- type EpochPerformancesArgs = {
1043
+ export type EpochPerformancesArgs = {
1045
1044
  first?: InputMaybe<Scalars["Int"]["input"]>;
1046
1045
  orderBy?: InputMaybe<DlpPerformance_OrderBy>;
1047
1046
  orderDirection?: InputMaybe<OrderDirection>;
1048
1047
  skip?: InputMaybe<Scalars["Int"]["input"]>;
1049
1048
  where?: InputMaybe<DlpPerformance_Filter>;
1050
1049
  };
1051
- type EpochReference = {
1050
+ export type EpochReference = {
1052
1051
  epoch: Epoch;
1053
1052
  id: Scalars["ID"]["output"];
1054
1053
  };
1055
- type EpochReference_Filter = {
1054
+ export type EpochReference_Filter = {
1056
1055
  /** Filter for the block changed event. */
1057
1056
  _change_block?: InputMaybe<BlockChangedFilter>;
1058
1057
  and?: InputMaybe<Array<InputMaybe<EpochReference_Filter>>>;
@@ -1087,8 +1086,8 @@ type EpochReference_Filter = {
1087
1086
  id_not_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
1088
1087
  or?: InputMaybe<Array<InputMaybe<EpochReference_Filter>>>;
1089
1088
  };
1090
- type EpochReference_OrderBy = "epoch" | "epoch__createdAt" | "epoch__createdAtBlock" | "epoch__createdTxHash" | "epoch__endBlock" | "epoch__id" | "epoch__isFinalized" | "epoch__logIndex" | "epoch__reward" | "epoch__startBlock" | "id";
1091
- type Epoch_Filter = {
1089
+ export type EpochReference_OrderBy = "epoch" | "epoch__createdAt" | "epoch__createdAtBlock" | "epoch__createdTxHash" | "epoch__endBlock" | "epoch__id" | "epoch__isFinalized" | "epoch__logIndex" | "epoch__reward" | "epoch__startBlock" | "id";
1090
+ export type Epoch_Filter = {
1092
1091
  /** Filter for the block changed event. */
1093
1092
  _change_block?: InputMaybe<BlockChangedFilter>;
1094
1093
  and?: InputMaybe<Array<InputMaybe<Epoch_Filter>>>;
@@ -1171,8 +1170,8 @@ type Epoch_Filter = {
1171
1170
  startBlock_not?: InputMaybe<Scalars["BigInt"]["input"]>;
1172
1171
  startBlock_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
1173
1172
  };
1174
- type Epoch_OrderBy = "createdAt" | "createdAtBlock" | "createdTxHash" | "dlpIds" | "endBlock" | "id" | "isFinalized" | "logIndex" | "performances" | "reward" | "startBlock";
1175
- type Factory = {
1173
+ export type Epoch_OrderBy = "createdAt" | "createdAtBlock" | "createdTxHash" | "dlpIds" | "endBlock" | "id" | "isFinalized" | "logIndex" | "performances" | "reward" | "startBlock";
1174
+ export type Factory = {
1176
1175
  id: Scalars["ID"]["output"];
1177
1176
  owner: Scalars["ID"]["output"];
1178
1177
  poolCount: Scalars["BigInt"]["output"];
@@ -1187,7 +1186,7 @@ type Factory = {
1187
1186
  txCount: Scalars["BigInt"]["output"];
1188
1187
  untrackedVolumeUSD: Scalars["BigDecimal"]["output"];
1189
1188
  };
1190
- type Factory_Filter = {
1189
+ export type Factory_Filter = {
1191
1190
  /** Filter for the block changed event. */
1192
1191
  _change_block?: InputMaybe<BlockChangedFilter>;
1193
1192
  and?: InputMaybe<Array<InputMaybe<Factory_Filter>>>;
@@ -1297,8 +1296,8 @@ type Factory_Filter = {
1297
1296
  untrackedVolumeUSD_not?: InputMaybe<Scalars["BigDecimal"]["input"]>;
1298
1297
  untrackedVolumeUSD_not_in?: InputMaybe<Array<Scalars["BigDecimal"]["input"]>>;
1299
1298
  };
1300
- type Factory_OrderBy = "id" | "owner" | "poolCount" | "totalFeesETH" | "totalFeesUSD" | "totalValueLockedETH" | "totalValueLockedETHUntracked" | "totalValueLockedUSD" | "totalValueLockedUSDUntracked" | "totalVolumeETH" | "totalVolumeUSD" | "txCount" | "untrackedVolumeUSD";
1301
- type File = {
1299
+ export type Factory_OrderBy = "id" | "owner" | "poolCount" | "totalFeesETH" | "totalFeesUSD" | "totalValueLockedETH" | "totalValueLockedETHUntracked" | "totalValueLockedUSD" | "totalValueLockedUSDUntracked" | "totalVolumeETH" | "totalVolumeUSD" | "txCount" | "untrackedVolumeUSD";
1300
+ export type File = {
1302
1301
  /** The block number when the file was added. */
1303
1302
  addedAtBlock: Scalars["BigInt"]["output"];
1304
1303
  /** The timestamp when the file was added. */
@@ -1314,7 +1313,7 @@ type File = {
1314
1313
  /** The URL where the file data is stored (e.g., IPFS). */
1315
1314
  url: Scalars["String"]["output"];
1316
1315
  };
1317
- type File_Filter = {
1316
+ export type File_Filter = {
1318
1317
  /** Filter for the block changed event. */
1319
1318
  _change_block?: InputMaybe<BlockChangedFilter>;
1320
1319
  addedAtBlock?: InputMaybe<Scalars["BigInt"]["input"]>;
@@ -1403,8 +1402,8 @@ type File_Filter = {
1403
1402
  url_starts_with?: InputMaybe<Scalars["String"]["input"]>;
1404
1403
  url_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
1405
1404
  };
1406
- type File_OrderBy = "addedAtBlock" | "addedAtTimestamp" | "id" | "owner" | "owner__id" | "schemaId" | "transactionHash" | "url";
1407
- type Flash = {
1405
+ export type File_OrderBy = "addedAtBlock" | "addedAtTimestamp" | "id" | "owner" | "owner__id" | "schemaId" | "transactionHash" | "url";
1406
+ export type Flash = {
1408
1407
  amount0: Scalars["BigDecimal"]["output"];
1409
1408
  amount0Paid: Scalars["BigDecimal"]["output"];
1410
1409
  amount1: Scalars["BigDecimal"]["output"];
@@ -1418,7 +1417,7 @@ type Flash = {
1418
1417
  timestamp: Scalars["BigInt"]["output"];
1419
1418
  transaction: Transaction;
1420
1419
  };
1421
- type Flash_Filter = {
1420
+ export type Flash_Filter = {
1422
1421
  /** Filter for the block changed event. */
1423
1422
  _change_block?: InputMaybe<BlockChangedFilter>;
1424
1423
  amount0?: InputMaybe<Scalars["BigDecimal"]["input"]>;
@@ -1550,8 +1549,8 @@ type Flash_Filter = {
1550
1549
  transaction_starts_with?: InputMaybe<Scalars["String"]["input"]>;
1551
1550
  transaction_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
1552
1551
  };
1553
- type Flash_OrderBy = "amount0" | "amount0Paid" | "amount1" | "amount1Paid" | "amountUSD" | "id" | "logIndex" | "pool" | "pool__collectedFeesToken0" | "pool__collectedFeesToken1" | "pool__collectedFeesUSD" | "pool__createdAtBlockNumber" | "pool__createdAtTimestamp" | "pool__feeTier" | "pool__feesUSD" | "pool__id" | "pool__liquidity" | "pool__liquidityProviderCount" | "pool__observationIndex" | "pool__sqrtPrice" | "pool__tick" | "pool__token0Price" | "pool__token1Price" | "pool__totalValueLockedETH" | "pool__totalValueLockedToken0" | "pool__totalValueLockedToken1" | "pool__totalValueLockedUSD" | "pool__totalValueLockedUSDUntracked" | "pool__txCount" | "pool__untrackedVolumeUSD" | "pool__volumeToken0" | "pool__volumeToken1" | "pool__volumeUSD" | "recipient" | "sender" | "timestamp" | "transaction" | "transaction__blockNumber" | "transaction__gasPrice" | "transaction__gasUsed" | "transaction__id" | "transaction__timestamp";
1554
- type Grantee = {
1552
+ export type Flash_OrderBy = "amount0" | "amount0Paid" | "amount1" | "amount1Paid" | "amountUSD" | "id" | "logIndex" | "pool" | "pool__collectedFeesToken0" | "pool__collectedFeesToken1" | "pool__collectedFeesUSD" | "pool__createdAtBlockNumber" | "pool__createdAtTimestamp" | "pool__feeTier" | "pool__feesUSD" | "pool__id" | "pool__liquidity" | "pool__liquidityProviderCount" | "pool__observationIndex" | "pool__sqrtPrice" | "pool__tick" | "pool__token0Price" | "pool__token1Price" | "pool__totalValueLockedETH" | "pool__totalValueLockedToken0" | "pool__totalValueLockedToken1" | "pool__totalValueLockedUSD" | "pool__totalValueLockedUSDUntracked" | "pool__txCount" | "pool__untrackedVolumeUSD" | "pool__volumeToken0" | "pool__volumeToken1" | "pool__volumeUSD" | "recipient" | "sender" | "timestamp" | "transaction" | "transaction__blockNumber" | "transaction__gasPrice" | "transaction__gasUsed" | "transaction__id" | "transaction__timestamp";
1553
+ export type Grantee = {
1555
1554
  /** The address of the grantee. */
1556
1555
  address: Scalars["Bytes"]["output"];
1557
1556
  /** The unique ID of the grantee, equivalent to the on-chain granteeId. */
@@ -1569,14 +1568,14 @@ type Grantee = {
1569
1568
  /** The transaction hash of the grantee registration. */
1570
1569
  transactionHash: Scalars["Bytes"]["output"];
1571
1570
  };
1572
- type GranteePermissionsArgs = {
1571
+ export type GranteePermissionsArgs = {
1573
1572
  first?: InputMaybe<Scalars["Int"]["input"]>;
1574
1573
  orderBy?: InputMaybe<Permission_OrderBy>;
1575
1574
  orderDirection?: InputMaybe<OrderDirection>;
1576
1575
  skip?: InputMaybe<Scalars["Int"]["input"]>;
1577
1576
  where?: InputMaybe<Permission_Filter>;
1578
1577
  };
1579
- type Grantee_Filter = {
1578
+ export type Grantee_Filter = {
1580
1579
  /** Filter for the block changed event. */
1581
1580
  _change_block?: InputMaybe<BlockChangedFilter>;
1582
1581
  address?: InputMaybe<Scalars["Bytes"]["input"]>;
@@ -1668,8 +1667,8 @@ type Grantee_Filter = {
1668
1667
  transactionHash_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
1669
1668
  transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
1670
1669
  };
1671
- type Grantee_OrderBy = "address" | "id" | "owner" | "owner__id" | "permissions" | "publicKey" | "registeredAtBlock" | "registeredAtTimestamp" | "transactionHash";
1672
- type Mint = {
1670
+ export type Grantee_OrderBy = "address" | "id" | "owner" | "owner__id" | "permissions" | "publicKey" | "registeredAtBlock" | "registeredAtTimestamp" | "transactionHash";
1671
+ export type Mint = {
1673
1672
  amount: Scalars["BigInt"]["output"];
1674
1673
  amount0: Scalars["BigDecimal"]["output"];
1675
1674
  amount1: Scalars["BigDecimal"]["output"];
@@ -1687,7 +1686,7 @@ type Mint = {
1687
1686
  token1: Token;
1688
1687
  transaction: Transaction;
1689
1688
  };
1690
- type Mint_Filter = {
1689
+ export type Mint_Filter = {
1691
1690
  /** Filter for the block changed event. */
1692
1691
  _change_block?: InputMaybe<BlockChangedFilter>;
1693
1692
  amount?: InputMaybe<Scalars["BigInt"]["input"]>;
@@ -1879,16 +1878,16 @@ type Mint_Filter = {
1879
1878
  transaction_starts_with?: InputMaybe<Scalars["String"]["input"]>;
1880
1879
  transaction_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
1881
1880
  };
1882
- type Mint_OrderBy = "amount" | "amount0" | "amount1" | "amountUSD" | "id" | "logIndex" | "origin" | "owner" | "pool" | "pool__collectedFeesToken0" | "pool__collectedFeesToken1" | "pool__collectedFeesUSD" | "pool__createdAtBlockNumber" | "pool__createdAtTimestamp" | "pool__feeTier" | "pool__feesUSD" | "pool__id" | "pool__liquidity" | "pool__liquidityProviderCount" | "pool__observationIndex" | "pool__sqrtPrice" | "pool__tick" | "pool__token0Price" | "pool__token1Price" | "pool__totalValueLockedETH" | "pool__totalValueLockedToken0" | "pool__totalValueLockedToken1" | "pool__totalValueLockedUSD" | "pool__totalValueLockedUSDUntracked" | "pool__txCount" | "pool__untrackedVolumeUSD" | "pool__volumeToken0" | "pool__volumeToken1" | "pool__volumeUSD" | "sender" | "tickLower" | "tickUpper" | "timestamp" | "token0" | "token0__decimals" | "token0__derivedETH" | "token0__feesUSD" | "token0__id" | "token0__name" | "token0__poolCount" | "token0__symbol" | "token0__totalSupply" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token0__txCount" | "token0__untrackedVolumeUSD" | "token0__volume" | "token0__volumeUSD" | "token1" | "token1__decimals" | "token1__derivedETH" | "token1__feesUSD" | "token1__id" | "token1__name" | "token1__poolCount" | "token1__symbol" | "token1__totalSupply" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked" | "token1__txCount" | "token1__untrackedVolumeUSD" | "token1__volume" | "token1__volumeUSD" | "transaction" | "transaction__blockNumber" | "transaction__gasPrice" | "transaction__gasUsed" | "transaction__id" | "transaction__timestamp";
1881
+ export type Mint_OrderBy = "amount" | "amount0" | "amount1" | "amountUSD" | "id" | "logIndex" | "origin" | "owner" | "pool" | "pool__collectedFeesToken0" | "pool__collectedFeesToken1" | "pool__collectedFeesUSD" | "pool__createdAtBlockNumber" | "pool__createdAtTimestamp" | "pool__feeTier" | "pool__feesUSD" | "pool__id" | "pool__liquidity" | "pool__liquidityProviderCount" | "pool__observationIndex" | "pool__sqrtPrice" | "pool__tick" | "pool__token0Price" | "pool__token1Price" | "pool__totalValueLockedETH" | "pool__totalValueLockedToken0" | "pool__totalValueLockedToken1" | "pool__totalValueLockedUSD" | "pool__totalValueLockedUSDUntracked" | "pool__txCount" | "pool__untrackedVolumeUSD" | "pool__volumeToken0" | "pool__volumeToken1" | "pool__volumeUSD" | "sender" | "tickLower" | "tickUpper" | "timestamp" | "token0" | "token0__decimals" | "token0__derivedETH" | "token0__feesUSD" | "token0__id" | "token0__name" | "token0__poolCount" | "token0__symbol" | "token0__totalSupply" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token0__txCount" | "token0__untrackedVolumeUSD" | "token0__volume" | "token0__volumeUSD" | "token1" | "token1__decimals" | "token1__derivedETH" | "token1__feesUSD" | "token1__id" | "token1__name" | "token1__poolCount" | "token1__symbol" | "token1__totalSupply" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked" | "token1__txCount" | "token1__untrackedVolumeUSD" | "token1__volume" | "token1__volumeUSD" | "transaction" | "transaction__blockNumber" | "transaction__gasPrice" | "transaction__gasUsed" | "transaction__id" | "transaction__timestamp";
1883
1882
  /** Defines the order direction, either ascending or descending */
1884
- type OrderDirection = "asc" | "desc";
1885
- type Params = {
1883
+ export type OrderDirection = "asc" | "desc";
1884
+ export type Params = {
1886
1885
  daySize: Scalars["BigInt"]["output"];
1887
1886
  epochRewardAmount: Scalars["BigInt"]["output"];
1888
1887
  epochSize: Scalars["BigInt"]["output"];
1889
1888
  id: Scalars["ID"]["output"];
1890
1889
  };
1891
- type Params_Filter = {
1890
+ export type Params_Filter = {
1892
1891
  /** Filter for the block changed event. */
1893
1892
  _change_block?: InputMaybe<BlockChangedFilter>;
1894
1893
  and?: InputMaybe<Array<InputMaybe<Params_Filter>>>;
@@ -1926,8 +1925,8 @@ type Params_Filter = {
1926
1925
  id_not_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
1927
1926
  or?: InputMaybe<Array<InputMaybe<Params_Filter>>>;
1928
1927
  };
1929
- type Params_OrderBy = "daySize" | "epochRewardAmount" | "epochSize" | "id";
1930
- type PaymentReceived = {
1928
+ export type Params_OrderBy = "daySize" | "epochRewardAmount" | "epochSize" | "id";
1929
+ export type PaymentReceived = {
1931
1930
  amount: Scalars["BigInt"]["output"];
1932
1931
  id: Scalars["ID"]["output"];
1933
1932
  jobId: Scalars["BigInt"]["output"];
@@ -1937,7 +1936,7 @@ type PaymentReceived = {
1937
1936
  refiner: Refiner;
1938
1937
  token: Scalars["Bytes"]["output"];
1939
1938
  };
1940
- type PaymentReceived_Filter = {
1939
+ export type PaymentReceived_Filter = {
1941
1940
  /** Filter for the block changed event. */
1942
1941
  _change_block?: InputMaybe<BlockChangedFilter>;
1943
1942
  amount?: InputMaybe<Scalars["BigInt"]["input"]>;
@@ -2024,11 +2023,11 @@ type PaymentReceived_Filter = {
2024
2023
  token_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
2025
2024
  token_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
2026
2025
  };
2027
- type PaymentReceived_OrderBy = "amount" | "id" | "jobId" | "receivedAt" | "receivedAtBlock" | "receivedTxHash" | "refiner" | "refiner__id" | "refiner__name" | "refiner__owner" | "refiner__refinementInstructionUrl" | "refiner__schemaDefinitionUrl" | "token";
2028
- type PerformanceDlpEpochUser = {
2026
+ export type PaymentReceived_OrderBy = "amount" | "id" | "jobId" | "receivedAt" | "receivedAtBlock" | "receivedTxHash" | "refiner" | "refiner__id" | "refiner__name" | "refiner__owner" | "refiner__refinementInstructionUrl" | "refiner__schemaDefinitionUrl" | "token";
2027
+ export type PerformanceDlpEpochUser = {
2029
2028
  id: Scalars["ID"]["output"];
2030
2029
  };
2031
- type PerformanceDlpEpochUser_Filter = {
2030
+ export type PerformanceDlpEpochUser_Filter = {
2032
2031
  /** Filter for the block changed event. */
2033
2032
  _change_block?: InputMaybe<BlockChangedFilter>;
2034
2033
  and?: InputMaybe<Array<InputMaybe<PerformanceDlpEpochUser_Filter>>>;
@@ -2042,8 +2041,8 @@ type PerformanceDlpEpochUser_Filter = {
2042
2041
  id_not_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2043
2042
  or?: InputMaybe<Array<InputMaybe<PerformanceDlpEpochUser_Filter>>>;
2044
2043
  };
2045
- type PerformanceDlpEpochUser_OrderBy = "id";
2046
- type Permission = {
2044
+ export type PerformanceDlpEpochUser_OrderBy = "id";
2045
+ export type Permission = {
2047
2046
  /** The block number when the permission was granted. */
2048
2047
  addedAtBlock: Scalars["BigInt"]["output"];
2049
2048
  /** The timestamp when the permission was granted. */
@@ -2069,14 +2068,14 @@ type Permission = {
2069
2068
  /** The transaction hash of the permission grant. */
2070
2069
  transactionHash: Scalars["Bytes"]["output"];
2071
2070
  };
2072
- type PermissionFilePermissionsArgs = {
2071
+ export type PermissionFilePermissionsArgs = {
2073
2072
  first?: InputMaybe<Scalars["Int"]["input"]>;
2074
2073
  orderBy?: InputMaybe<PermissionFile_OrderBy>;
2075
2074
  orderDirection?: InputMaybe<OrderDirection>;
2076
2075
  skip?: InputMaybe<Scalars["Int"]["input"]>;
2077
2076
  where?: InputMaybe<PermissionFile_Filter>;
2078
2077
  };
2079
- type PermissionFile = {
2078
+ export type PermissionFile = {
2080
2079
  /** The file. */
2081
2080
  file: File;
2082
2081
  /** Composite ID: permissionId-fileId */
@@ -2084,7 +2083,7 @@ type PermissionFile = {
2084
2083
  /** The permission. */
2085
2084
  permission: Permission;
2086
2085
  };
2087
- type PermissionFile_Filter = {
2086
+ export type PermissionFile_Filter = {
2088
2087
  /** Filter for the block changed event. */
2089
2088
  _change_block?: InputMaybe<BlockChangedFilter>;
2090
2089
  and?: InputMaybe<Array<InputMaybe<PermissionFile_Filter>>>;
@@ -2140,8 +2139,8 @@ type PermissionFile_Filter = {
2140
2139
  permission_starts_with?: InputMaybe<Scalars["String"]["input"]>;
2141
2140
  permission_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
2142
2141
  };
2143
- type PermissionFile_OrderBy = "file" | "file__addedAtBlock" | "file__addedAtTimestamp" | "file__id" | "file__schemaId" | "file__transactionHash" | "file__url" | "id" | "permission" | "permission__addedAtBlock" | "permission__addedAtTimestamp" | "permission__endBlock" | "permission__grant" | "permission__id" | "permission__nonce" | "permission__signature" | "permission__startBlock" | "permission__transactionHash";
2144
- type Permission_Filter = {
2142
+ export type PermissionFile_OrderBy = "file" | "file__addedAtBlock" | "file__addedAtTimestamp" | "file__id" | "file__schemaId" | "file__transactionHash" | "file__url" | "id" | "permission" | "permission__addedAtBlock" | "permission__addedAtTimestamp" | "permission__endBlock" | "permission__grant" | "permission__id" | "permission__nonce" | "permission__signature" | "permission__startBlock" | "permission__transactionHash";
2143
+ export type Permission_Filter = {
2145
2144
  /** Filter for the block changed event. */
2146
2145
  _change_block?: InputMaybe<BlockChangedFilter>;
2147
2146
  addedAtBlock?: InputMaybe<Scalars["BigInt"]["input"]>;
@@ -2278,8 +2277,8 @@ type Permission_Filter = {
2278
2277
  transactionHash_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
2279
2278
  transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
2280
2279
  };
2281
- type Permission_OrderBy = "addedAtBlock" | "addedAtTimestamp" | "endBlock" | "filePermissions" | "grant" | "grantee" | "grantee__address" | "grantee__id" | "grantee__publicKey" | "grantee__registeredAtBlock" | "grantee__registeredAtTimestamp" | "grantee__transactionHash" | "grantor" | "grantor__id" | "id" | "nonce" | "signature" | "startBlock" | "transactionHash";
2282
- type Pool = {
2280
+ export type Permission_OrderBy = "addedAtBlock" | "addedAtTimestamp" | "endBlock" | "filePermissions" | "grant" | "grantee" | "grantee__address" | "grantee__id" | "grantee__publicKey" | "grantee__registeredAtBlock" | "grantee__registeredAtTimestamp" | "grantee__transactionHash" | "grantor" | "grantor__id" | "id" | "nonce" | "signature" | "startBlock" | "transactionHash";
2281
+ export type Pool = {
2283
2282
  burns: Array<Burn>;
2284
2283
  collectedFeesToken0: Scalars["BigDecimal"]["output"];
2285
2284
  collectedFeesToken1: Scalars["BigDecimal"]["output"];
@@ -2315,56 +2314,56 @@ type Pool = {
2315
2314
  volumeToken1: Scalars["BigDecimal"]["output"];
2316
2315
  volumeUSD: Scalars["BigDecimal"]["output"];
2317
2316
  };
2318
- type PoolBurnsArgs = {
2317
+ export type PoolBurnsArgs = {
2319
2318
  first?: InputMaybe<Scalars["Int"]["input"]>;
2320
2319
  orderBy?: InputMaybe<Burn_OrderBy>;
2321
2320
  orderDirection?: InputMaybe<OrderDirection>;
2322
2321
  skip?: InputMaybe<Scalars["Int"]["input"]>;
2323
2322
  where?: InputMaybe<Burn_Filter>;
2324
2323
  };
2325
- type PoolCollectsArgs = {
2324
+ export type PoolCollectsArgs = {
2326
2325
  first?: InputMaybe<Scalars["Int"]["input"]>;
2327
2326
  orderBy?: InputMaybe<Collect_OrderBy>;
2328
2327
  orderDirection?: InputMaybe<OrderDirection>;
2329
2328
  skip?: InputMaybe<Scalars["Int"]["input"]>;
2330
2329
  where?: InputMaybe<Collect_Filter>;
2331
2330
  };
2332
- type PoolMintsArgs = {
2331
+ export type PoolMintsArgs = {
2333
2332
  first?: InputMaybe<Scalars["Int"]["input"]>;
2334
2333
  orderBy?: InputMaybe<Mint_OrderBy>;
2335
2334
  orderDirection?: InputMaybe<OrderDirection>;
2336
2335
  skip?: InputMaybe<Scalars["Int"]["input"]>;
2337
2336
  where?: InputMaybe<Mint_Filter>;
2338
2337
  };
2339
- type PoolPoolDayDataArgs = {
2338
+ export type PoolPoolDayDataArgs = {
2340
2339
  first?: InputMaybe<Scalars["Int"]["input"]>;
2341
2340
  orderBy?: InputMaybe<PoolDayData_OrderBy>;
2342
2341
  orderDirection?: InputMaybe<OrderDirection>;
2343
2342
  skip?: InputMaybe<Scalars["Int"]["input"]>;
2344
2343
  where?: InputMaybe<PoolDayData_Filter>;
2345
2344
  };
2346
- type PoolPoolHourDataArgs = {
2345
+ export type PoolPoolHourDataArgs = {
2347
2346
  first?: InputMaybe<Scalars["Int"]["input"]>;
2348
2347
  orderBy?: InputMaybe<PoolHourData_OrderBy>;
2349
2348
  orderDirection?: InputMaybe<OrderDirection>;
2350
2349
  skip?: InputMaybe<Scalars["Int"]["input"]>;
2351
2350
  where?: InputMaybe<PoolHourData_Filter>;
2352
2351
  };
2353
- type PoolSwapsArgs = {
2352
+ export type PoolSwapsArgs = {
2354
2353
  first?: InputMaybe<Scalars["Int"]["input"]>;
2355
2354
  orderBy?: InputMaybe<Swap_OrderBy>;
2356
2355
  orderDirection?: InputMaybe<OrderDirection>;
2357
2356
  skip?: InputMaybe<Scalars["Int"]["input"]>;
2358
2357
  where?: InputMaybe<Swap_Filter>;
2359
2358
  };
2360
- type PoolTicksArgs = {
2359
+ export type PoolTicksArgs = {
2361
2360
  first?: InputMaybe<Scalars["Int"]["input"]>;
2362
2361
  orderBy?: InputMaybe<Tick_OrderBy>;
2363
2362
  orderDirection?: InputMaybe<OrderDirection>;
2364
2363
  skip?: InputMaybe<Scalars["Int"]["input"]>;
2365
2364
  where?: InputMaybe<Tick_Filter>;
2366
2365
  };
2367
- type PoolDayData = {
2366
+ export type PoolDayData = {
2368
2367
  close: Scalars["BigDecimal"]["output"];
2369
2368
  date: Scalars["Int"]["output"];
2370
2369
  feesUSD: Scalars["BigDecimal"]["output"];
@@ -2384,7 +2383,7 @@ type PoolDayData = {
2384
2383
  volumeToken1: Scalars["BigDecimal"]["output"];
2385
2384
  volumeUSD: Scalars["BigDecimal"]["output"];
2386
2385
  };
2387
- type PoolDayData_Filter = {
2386
+ export type PoolDayData_Filter = {
2388
2387
  /** Filter for the block changed event. */
2389
2388
  _change_block?: InputMaybe<BlockChangedFilter>;
2390
2389
  and?: InputMaybe<Array<InputMaybe<PoolDayData_Filter>>>;
@@ -2547,8 +2546,8 @@ type PoolDayData_Filter = {
2547
2546
  volumeUSD_not?: InputMaybe<Scalars["BigDecimal"]["input"]>;
2548
2547
  volumeUSD_not_in?: InputMaybe<Array<Scalars["BigDecimal"]["input"]>>;
2549
2548
  };
2550
- type PoolDayData_OrderBy = "close" | "date" | "feesUSD" | "high" | "id" | "liquidity" | "low" | "open" | "pool" | "pool__collectedFeesToken0" | "pool__collectedFeesToken1" | "pool__collectedFeesUSD" | "pool__createdAtBlockNumber" | "pool__createdAtTimestamp" | "pool__feeTier" | "pool__feesUSD" | "pool__id" | "pool__liquidity" | "pool__liquidityProviderCount" | "pool__observationIndex" | "pool__sqrtPrice" | "pool__tick" | "pool__token0Price" | "pool__token1Price" | "pool__totalValueLockedETH" | "pool__totalValueLockedToken0" | "pool__totalValueLockedToken1" | "pool__totalValueLockedUSD" | "pool__totalValueLockedUSDUntracked" | "pool__txCount" | "pool__untrackedVolumeUSD" | "pool__volumeToken0" | "pool__volumeToken1" | "pool__volumeUSD" | "sqrtPrice" | "tick" | "token0Price" | "token1Price" | "tvlUSD" | "txCount" | "volumeToken0" | "volumeToken1" | "volumeUSD";
2551
- type PoolHourData = {
2549
+ export type PoolDayData_OrderBy = "close" | "date" | "feesUSD" | "high" | "id" | "liquidity" | "low" | "open" | "pool" | "pool__collectedFeesToken0" | "pool__collectedFeesToken1" | "pool__collectedFeesUSD" | "pool__createdAtBlockNumber" | "pool__createdAtTimestamp" | "pool__feeTier" | "pool__feesUSD" | "pool__id" | "pool__liquidity" | "pool__liquidityProviderCount" | "pool__observationIndex" | "pool__sqrtPrice" | "pool__tick" | "pool__token0Price" | "pool__token1Price" | "pool__totalValueLockedETH" | "pool__totalValueLockedToken0" | "pool__totalValueLockedToken1" | "pool__totalValueLockedUSD" | "pool__totalValueLockedUSDUntracked" | "pool__txCount" | "pool__untrackedVolumeUSD" | "pool__volumeToken0" | "pool__volumeToken1" | "pool__volumeUSD" | "sqrtPrice" | "tick" | "token0Price" | "token1Price" | "tvlUSD" | "txCount" | "volumeToken0" | "volumeToken1" | "volumeUSD";
2550
+ export type PoolHourData = {
2552
2551
  close: Scalars["BigDecimal"]["output"];
2553
2552
  feesUSD: Scalars["BigDecimal"]["output"];
2554
2553
  high: Scalars["BigDecimal"]["output"];
@@ -2568,7 +2567,7 @@ type PoolHourData = {
2568
2567
  volumeToken1: Scalars["BigDecimal"]["output"];
2569
2568
  volumeUSD: Scalars["BigDecimal"]["output"];
2570
2569
  };
2571
- type PoolHourData_Filter = {
2570
+ export type PoolHourData_Filter = {
2572
2571
  /** Filter for the block changed event. */
2573
2572
  _change_block?: InputMaybe<BlockChangedFilter>;
2574
2573
  and?: InputMaybe<Array<InputMaybe<PoolHourData_Filter>>>;
@@ -2731,8 +2730,8 @@ type PoolHourData_Filter = {
2731
2730
  volumeUSD_not?: InputMaybe<Scalars["BigDecimal"]["input"]>;
2732
2731
  volumeUSD_not_in?: InputMaybe<Array<Scalars["BigDecimal"]["input"]>>;
2733
2732
  };
2734
- type PoolHourData_OrderBy = "close" | "feesUSD" | "high" | "id" | "liquidity" | "low" | "open" | "periodStartUnix" | "pool" | "pool__collectedFeesToken0" | "pool__collectedFeesToken1" | "pool__collectedFeesUSD" | "pool__createdAtBlockNumber" | "pool__createdAtTimestamp" | "pool__feeTier" | "pool__feesUSD" | "pool__id" | "pool__liquidity" | "pool__liquidityProviderCount" | "pool__observationIndex" | "pool__sqrtPrice" | "pool__tick" | "pool__token0Price" | "pool__token1Price" | "pool__totalValueLockedETH" | "pool__totalValueLockedToken0" | "pool__totalValueLockedToken1" | "pool__totalValueLockedUSD" | "pool__totalValueLockedUSDUntracked" | "pool__txCount" | "pool__untrackedVolumeUSD" | "pool__volumeToken0" | "pool__volumeToken1" | "pool__volumeUSD" | "sqrtPrice" | "tick" | "token0Price" | "token1Price" | "tvlUSD" | "txCount" | "volumeToken0" | "volumeToken1" | "volumeUSD";
2735
- type Pool_Filter = {
2733
+ export type PoolHourData_OrderBy = "close" | "feesUSD" | "high" | "id" | "liquidity" | "low" | "open" | "periodStartUnix" | "pool" | "pool__collectedFeesToken0" | "pool__collectedFeesToken1" | "pool__collectedFeesUSD" | "pool__createdAtBlockNumber" | "pool__createdAtTimestamp" | "pool__feeTier" | "pool__feesUSD" | "pool__id" | "pool__liquidity" | "pool__liquidityProviderCount" | "pool__observationIndex" | "pool__sqrtPrice" | "pool__tick" | "pool__token0Price" | "pool__token1Price" | "pool__totalValueLockedETH" | "pool__totalValueLockedToken0" | "pool__totalValueLockedToken1" | "pool__totalValueLockedUSD" | "pool__totalValueLockedUSDUntracked" | "pool__txCount" | "pool__untrackedVolumeUSD" | "pool__volumeToken0" | "pool__volumeToken1" | "pool__volumeUSD" | "sqrtPrice" | "tick" | "token0Price" | "token1Price" | "tvlUSD" | "txCount" | "volumeToken0" | "volumeToken1" | "volumeUSD";
2734
+ export type Pool_Filter = {
2736
2735
  /** Filter for the block changed event. */
2737
2736
  _change_block?: InputMaybe<BlockChangedFilter>;
2738
2737
  and?: InputMaybe<Array<InputMaybe<Pool_Filter>>>;
@@ -2989,8 +2988,8 @@ type Pool_Filter = {
2989
2988
  volumeUSD_not?: InputMaybe<Scalars["BigDecimal"]["input"]>;
2990
2989
  volumeUSD_not_in?: InputMaybe<Array<Scalars["BigDecimal"]["input"]>>;
2991
2990
  };
2992
- type Pool_OrderBy = "burns" | "collectedFeesToken0" | "collectedFeesToken1" | "collectedFeesUSD" | "collects" | "createdAtBlockNumber" | "createdAtTimestamp" | "feeTier" | "feesUSD" | "id" | "liquidity" | "liquidityProviderCount" | "mints" | "observationIndex" | "poolDayData" | "poolHourData" | "sqrtPrice" | "swaps" | "tick" | "ticks" | "token0" | "token0Price" | "token0__decimals" | "token0__derivedETH" | "token0__feesUSD" | "token0__id" | "token0__name" | "token0__poolCount" | "token0__symbol" | "token0__totalSupply" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token0__txCount" | "token0__untrackedVolumeUSD" | "token0__volume" | "token0__volumeUSD" | "token1" | "token1Price" | "token1__decimals" | "token1__derivedETH" | "token1__feesUSD" | "token1__id" | "token1__name" | "token1__poolCount" | "token1__symbol" | "token1__totalSupply" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked" | "token1__txCount" | "token1__untrackedVolumeUSD" | "token1__volume" | "token1__volumeUSD" | "totalValueLockedETH" | "totalValueLockedToken0" | "totalValueLockedToken1" | "totalValueLockedUSD" | "totalValueLockedUSDUntracked" | "txCount" | "untrackedVolumeUSD" | "volumeToken0" | "volumeToken1" | "volumeUSD";
2993
- type Query = {
2991
+ export type Pool_OrderBy = "burns" | "collectedFeesToken0" | "collectedFeesToken1" | "collectedFeesUSD" | "collects" | "createdAtBlockNumber" | "createdAtTimestamp" | "feeTier" | "feesUSD" | "id" | "liquidity" | "liquidityProviderCount" | "mints" | "observationIndex" | "poolDayData" | "poolHourData" | "sqrtPrice" | "swaps" | "tick" | "ticks" | "token0" | "token0Price" | "token0__decimals" | "token0__derivedETH" | "token0__feesUSD" | "token0__id" | "token0__name" | "token0__poolCount" | "token0__symbol" | "token0__totalSupply" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token0__txCount" | "token0__untrackedVolumeUSD" | "token0__volume" | "token0__volumeUSD" | "token1" | "token1Price" | "token1__decimals" | "token1__derivedETH" | "token1__feesUSD" | "token1__id" | "token1__name" | "token1__poolCount" | "token1__symbol" | "token1__totalSupply" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked" | "token1__txCount" | "token1__untrackedVolumeUSD" | "token1__volume" | "token1__volumeUSD" | "totalValueLockedETH" | "totalValueLockedToken0" | "totalValueLockedToken1" | "totalValueLockedUSD" | "totalValueLockedUSDUntracked" | "txCount" | "untrackedVolumeUSD" | "volumeToken0" | "volumeToken1" | "volumeUSD";
2992
+ export type Query = {
2994
2993
  /** Access to subgraph metadata */
2995
2994
  _meta?: Maybe<_Meta_>;
2996
2995
  bundle?: Maybe<Bundle>;
@@ -3068,15 +3067,15 @@ type Query = {
3068
3067
  userTotals_collection: Array<UserTotals>;
3069
3068
  users: Array<User>;
3070
3069
  };
3071
- type Query_MetaArgs = {
3070
+ export type Query_MetaArgs = {
3072
3071
  block?: InputMaybe<Block_Height>;
3073
3072
  };
3074
- type QueryBundleArgs = {
3073
+ export type QueryBundleArgs = {
3075
3074
  block?: InputMaybe<Block_Height>;
3076
3075
  id: Scalars["ID"]["input"];
3077
3076
  subgraphError?: _SubgraphErrorPolicy_;
3078
3077
  };
3079
- type QueryBundlesArgs = {
3078
+ export type QueryBundlesArgs = {
3080
3079
  block?: InputMaybe<Block_Height>;
3081
3080
  first?: InputMaybe<Scalars["Int"]["input"]>;
3082
3081
  orderBy?: InputMaybe<Bundle_OrderBy>;
@@ -3085,12 +3084,12 @@ type QueryBundlesArgs = {
3085
3084
  subgraphError?: _SubgraphErrorPolicy_;
3086
3085
  where?: InputMaybe<Bundle_Filter>;
3087
3086
  };
3088
- type QueryBurnArgs = {
3087
+ export type QueryBurnArgs = {
3089
3088
  block?: InputMaybe<Block_Height>;
3090
3089
  id: Scalars["ID"]["input"];
3091
3090
  subgraphError?: _SubgraphErrorPolicy_;
3092
3091
  };
3093
- type QueryBurnsArgs = {
3092
+ export type QueryBurnsArgs = {
3094
3093
  block?: InputMaybe<Block_Height>;
3095
3094
  first?: InputMaybe<Scalars["Int"]["input"]>;
3096
3095
  orderBy?: InputMaybe<Burn_OrderBy>;
@@ -3099,12 +3098,12 @@ type QueryBurnsArgs = {
3099
3098
  subgraphError?: _SubgraphErrorPolicy_;
3100
3099
  where?: InputMaybe<Burn_Filter>;
3101
3100
  };
3102
- type QueryCollectArgs = {
3101
+ export type QueryCollectArgs = {
3103
3102
  block?: InputMaybe<Block_Height>;
3104
3103
  id: Scalars["ID"]["input"];
3105
3104
  subgraphError?: _SubgraphErrorPolicy_;
3106
3105
  };
3107
- type QueryCollectsArgs = {
3106
+ export type QueryCollectsArgs = {
3108
3107
  block?: InputMaybe<Block_Height>;
3109
3108
  first?: InputMaybe<Scalars["Int"]["input"]>;
3110
3109
  orderBy?: InputMaybe<Collect_OrderBy>;
@@ -3113,12 +3112,12 @@ type QueryCollectsArgs = {
3113
3112
  subgraphError?: _SubgraphErrorPolicy_;
3114
3113
  where?: InputMaybe<Collect_Filter>;
3115
3114
  };
3116
- type QueryDataRegistryProofArgs = {
3115
+ export type QueryDataRegistryProofArgs = {
3117
3116
  block?: InputMaybe<Block_Height>;
3118
3117
  id: Scalars["ID"]["input"];
3119
3118
  subgraphError?: _SubgraphErrorPolicy_;
3120
3119
  };
3121
- type QueryDataRegistryProofsArgs = {
3120
+ export type QueryDataRegistryProofsArgs = {
3122
3121
  block?: InputMaybe<Block_Height>;
3123
3122
  first?: InputMaybe<Scalars["Int"]["input"]>;
3124
3123
  orderBy?: InputMaybe<DataRegistryProof_OrderBy>;
@@ -3127,17 +3126,17 @@ type QueryDataRegistryProofsArgs = {
3127
3126
  subgraphError?: _SubgraphErrorPolicy_;
3128
3127
  where?: InputMaybe<DataRegistryProof_Filter>;
3129
3128
  };
3130
- type QueryDlpArgs = {
3129
+ export type QueryDlpArgs = {
3131
3130
  block?: InputMaybe<Block_Height>;
3132
3131
  id: Scalars["ID"]["input"];
3133
3132
  subgraphError?: _SubgraphErrorPolicy_;
3134
3133
  };
3135
- type QueryDlpListArgs = {
3134
+ export type QueryDlpListArgs = {
3136
3135
  block?: InputMaybe<Block_Height>;
3137
3136
  id: Scalars["ID"]["input"];
3138
3137
  subgraphError?: _SubgraphErrorPolicy_;
3139
3138
  };
3140
- type QueryDlpListsArgs = {
3139
+ export type QueryDlpListsArgs = {
3141
3140
  block?: InputMaybe<Block_Height>;
3142
3141
  first?: InputMaybe<Scalars["Int"]["input"]>;
3143
3142
  orderBy?: InputMaybe<DlpList_OrderBy>;
@@ -3146,12 +3145,12 @@ type QueryDlpListsArgs = {
3146
3145
  subgraphError?: _SubgraphErrorPolicy_;
3147
3146
  where?: InputMaybe<DlpList_Filter>;
3148
3147
  };
3149
- type QueryDlpPerformanceArgs = {
3148
+ export type QueryDlpPerformanceArgs = {
3150
3149
  block?: InputMaybe<Block_Height>;
3151
3150
  id: Scalars["ID"]["input"];
3152
3151
  subgraphError?: _SubgraphErrorPolicy_;
3153
3152
  };
3154
- type QueryDlpPerformancesArgs = {
3153
+ export type QueryDlpPerformancesArgs = {
3155
3154
  block?: InputMaybe<Block_Height>;
3156
3155
  first?: InputMaybe<Scalars["Int"]["input"]>;
3157
3156
  orderBy?: InputMaybe<DlpPerformance_OrderBy>;
@@ -3160,12 +3159,12 @@ type QueryDlpPerformancesArgs = {
3160
3159
  subgraphError?: _SubgraphErrorPolicy_;
3161
3160
  where?: InputMaybe<DlpPerformance_Filter>;
3162
3161
  };
3163
- type QueryDlpRewardArgs = {
3162
+ export type QueryDlpRewardArgs = {
3164
3163
  block?: InputMaybe<Block_Height>;
3165
3164
  id: Scalars["ID"]["input"];
3166
3165
  subgraphError?: _SubgraphErrorPolicy_;
3167
3166
  };
3168
- type QueryDlpRewardsArgs = {
3167
+ export type QueryDlpRewardsArgs = {
3169
3168
  block?: InputMaybe<Block_Height>;
3170
3169
  first?: InputMaybe<Scalars["Int"]["input"]>;
3171
3170
  orderBy?: InputMaybe<DlpReward_OrderBy>;
@@ -3174,7 +3173,7 @@ type QueryDlpRewardsArgs = {
3174
3173
  subgraphError?: _SubgraphErrorPolicy_;
3175
3174
  where?: InputMaybe<DlpReward_Filter>;
3176
3175
  };
3177
- type QueryDlpsArgs = {
3176
+ export type QueryDlpsArgs = {
3178
3177
  block?: InputMaybe<Block_Height>;
3179
3178
  first?: InputMaybe<Scalars["Int"]["input"]>;
3180
3179
  orderBy?: InputMaybe<Dlp_OrderBy>;
@@ -3183,17 +3182,17 @@ type QueryDlpsArgs = {
3183
3182
  subgraphError?: _SubgraphErrorPolicy_;
3184
3183
  where?: InputMaybe<Dlp_Filter>;
3185
3184
  };
3186
- type QueryEpochArgs = {
3185
+ export type QueryEpochArgs = {
3187
3186
  block?: InputMaybe<Block_Height>;
3188
3187
  id: Scalars["ID"]["input"];
3189
3188
  subgraphError?: _SubgraphErrorPolicy_;
3190
3189
  };
3191
- type QueryEpochReferenceArgs = {
3190
+ export type QueryEpochReferenceArgs = {
3192
3191
  block?: InputMaybe<Block_Height>;
3193
3192
  id: Scalars["ID"]["input"];
3194
3193
  subgraphError?: _SubgraphErrorPolicy_;
3195
3194
  };
3196
- type QueryEpochReferencesArgs = {
3195
+ export type QueryEpochReferencesArgs = {
3197
3196
  block?: InputMaybe<Block_Height>;
3198
3197
  first?: InputMaybe<Scalars["Int"]["input"]>;
3199
3198
  orderBy?: InputMaybe<EpochReference_OrderBy>;
@@ -3202,7 +3201,7 @@ type QueryEpochReferencesArgs = {
3202
3201
  subgraphError?: _SubgraphErrorPolicy_;
3203
3202
  where?: InputMaybe<EpochReference_Filter>;
3204
3203
  };
3205
- type QueryEpochesArgs = {
3204
+ export type QueryEpochesArgs = {
3206
3205
  block?: InputMaybe<Block_Height>;
3207
3206
  first?: InputMaybe<Scalars["Int"]["input"]>;
3208
3207
  orderBy?: InputMaybe<Epoch_OrderBy>;
@@ -3211,7 +3210,7 @@ type QueryEpochesArgs = {
3211
3210
  subgraphError?: _SubgraphErrorPolicy_;
3212
3211
  where?: InputMaybe<Epoch_Filter>;
3213
3212
  };
3214
- type QueryFactoriesArgs = {
3213
+ export type QueryFactoriesArgs = {
3215
3214
  block?: InputMaybe<Block_Height>;
3216
3215
  first?: InputMaybe<Scalars["Int"]["input"]>;
3217
3216
  orderBy?: InputMaybe<Factory_OrderBy>;
@@ -3220,17 +3219,17 @@ type QueryFactoriesArgs = {
3220
3219
  subgraphError?: _SubgraphErrorPolicy_;
3221
3220
  where?: InputMaybe<Factory_Filter>;
3222
3221
  };
3223
- type QueryFactoryArgs = {
3222
+ export type QueryFactoryArgs = {
3224
3223
  block?: InputMaybe<Block_Height>;
3225
3224
  id: Scalars["ID"]["input"];
3226
3225
  subgraphError?: _SubgraphErrorPolicy_;
3227
3226
  };
3228
- type QueryFileArgs = {
3227
+ export type QueryFileArgs = {
3229
3228
  block?: InputMaybe<Block_Height>;
3230
3229
  id: Scalars["ID"]["input"];
3231
3230
  subgraphError?: _SubgraphErrorPolicy_;
3232
3231
  };
3233
- type QueryFilesArgs = {
3232
+ export type QueryFilesArgs = {
3234
3233
  block?: InputMaybe<Block_Height>;
3235
3234
  first?: InputMaybe<Scalars["Int"]["input"]>;
3236
3235
  orderBy?: InputMaybe<File_OrderBy>;
@@ -3239,12 +3238,12 @@ type QueryFilesArgs = {
3239
3238
  subgraphError?: _SubgraphErrorPolicy_;
3240
3239
  where?: InputMaybe<File_Filter>;
3241
3240
  };
3242
- type QueryFlashArgs = {
3241
+ export type QueryFlashArgs = {
3243
3242
  block?: InputMaybe<Block_Height>;
3244
3243
  id: Scalars["ID"]["input"];
3245
3244
  subgraphError?: _SubgraphErrorPolicy_;
3246
3245
  };
3247
- type QueryFlashesArgs = {
3246
+ export type QueryFlashesArgs = {
3248
3247
  block?: InputMaybe<Block_Height>;
3249
3248
  first?: InputMaybe<Scalars["Int"]["input"]>;
3250
3249
  orderBy?: InputMaybe<Flash_OrderBy>;
@@ -3253,12 +3252,12 @@ type QueryFlashesArgs = {
3253
3252
  subgraphError?: _SubgraphErrorPolicy_;
3254
3253
  where?: InputMaybe<Flash_Filter>;
3255
3254
  };
3256
- type QueryGranteeArgs = {
3255
+ export type QueryGranteeArgs = {
3257
3256
  block?: InputMaybe<Block_Height>;
3258
3257
  id: Scalars["ID"]["input"];
3259
3258
  subgraphError?: _SubgraphErrorPolicy_;
3260
3259
  };
3261
- type QueryGranteesArgs = {
3260
+ export type QueryGranteesArgs = {
3262
3261
  block?: InputMaybe<Block_Height>;
3263
3262
  first?: InputMaybe<Scalars["Int"]["input"]>;
3264
3263
  orderBy?: InputMaybe<Grantee_OrderBy>;
@@ -3267,12 +3266,12 @@ type QueryGranteesArgs = {
3267
3266
  subgraphError?: _SubgraphErrorPolicy_;
3268
3267
  where?: InputMaybe<Grantee_Filter>;
3269
3268
  };
3270
- type QueryMintArgs = {
3269
+ export type QueryMintArgs = {
3271
3270
  block?: InputMaybe<Block_Height>;
3272
3271
  id: Scalars["ID"]["input"];
3273
3272
  subgraphError?: _SubgraphErrorPolicy_;
3274
3273
  };
3275
- type QueryMintsArgs = {
3274
+ export type QueryMintsArgs = {
3276
3275
  block?: InputMaybe<Block_Height>;
3277
3276
  first?: InputMaybe<Scalars["Int"]["input"]>;
3278
3277
  orderBy?: InputMaybe<Mint_OrderBy>;
@@ -3281,12 +3280,12 @@ type QueryMintsArgs = {
3281
3280
  subgraphError?: _SubgraphErrorPolicy_;
3282
3281
  where?: InputMaybe<Mint_Filter>;
3283
3282
  };
3284
- type QueryParamsArgs = {
3283
+ export type QueryParamsArgs = {
3285
3284
  block?: InputMaybe<Block_Height>;
3286
3285
  id: Scalars["ID"]["input"];
3287
3286
  subgraphError?: _SubgraphErrorPolicy_;
3288
3287
  };
3289
- type QueryParams_CollectionArgs = {
3288
+ export type QueryParams_CollectionArgs = {
3290
3289
  block?: InputMaybe<Block_Height>;
3291
3290
  first?: InputMaybe<Scalars["Int"]["input"]>;
3292
3291
  orderBy?: InputMaybe<Params_OrderBy>;
@@ -3295,12 +3294,12 @@ type QueryParams_CollectionArgs = {
3295
3294
  subgraphError?: _SubgraphErrorPolicy_;
3296
3295
  where?: InputMaybe<Params_Filter>;
3297
3296
  };
3298
- type QueryPaymentReceivedArgs = {
3297
+ export type QueryPaymentReceivedArgs = {
3299
3298
  block?: InputMaybe<Block_Height>;
3300
3299
  id: Scalars["ID"]["input"];
3301
3300
  subgraphError?: _SubgraphErrorPolicy_;
3302
3301
  };
3303
- type QueryPaymentReceivedsArgs = {
3302
+ export type QueryPaymentReceivedsArgs = {
3304
3303
  block?: InputMaybe<Block_Height>;
3305
3304
  first?: InputMaybe<Scalars["Int"]["input"]>;
3306
3305
  orderBy?: InputMaybe<PaymentReceived_OrderBy>;
@@ -3309,12 +3308,12 @@ type QueryPaymentReceivedsArgs = {
3309
3308
  subgraphError?: _SubgraphErrorPolicy_;
3310
3309
  where?: InputMaybe<PaymentReceived_Filter>;
3311
3310
  };
3312
- type QueryPerformanceDlpEpochUserArgs = {
3311
+ export type QueryPerformanceDlpEpochUserArgs = {
3313
3312
  block?: InputMaybe<Block_Height>;
3314
3313
  id: Scalars["ID"]["input"];
3315
3314
  subgraphError?: _SubgraphErrorPolicy_;
3316
3315
  };
3317
- type QueryPerformanceDlpEpochUsersArgs = {
3316
+ export type QueryPerformanceDlpEpochUsersArgs = {
3318
3317
  block?: InputMaybe<Block_Height>;
3319
3318
  first?: InputMaybe<Scalars["Int"]["input"]>;
3320
3319
  orderBy?: InputMaybe<PerformanceDlpEpochUser_OrderBy>;
@@ -3323,17 +3322,17 @@ type QueryPerformanceDlpEpochUsersArgs = {
3323
3322
  subgraphError?: _SubgraphErrorPolicy_;
3324
3323
  where?: InputMaybe<PerformanceDlpEpochUser_Filter>;
3325
3324
  };
3326
- type QueryPermissionArgs = {
3325
+ export type QueryPermissionArgs = {
3327
3326
  block?: InputMaybe<Block_Height>;
3328
3327
  id: Scalars["ID"]["input"];
3329
3328
  subgraphError?: _SubgraphErrorPolicy_;
3330
3329
  };
3331
- type QueryPermissionFileArgs = {
3330
+ export type QueryPermissionFileArgs = {
3332
3331
  block?: InputMaybe<Block_Height>;
3333
3332
  id: Scalars["ID"]["input"];
3334
3333
  subgraphError?: _SubgraphErrorPolicy_;
3335
3334
  };
3336
- type QueryPermissionFilesArgs = {
3335
+ export type QueryPermissionFilesArgs = {
3337
3336
  block?: InputMaybe<Block_Height>;
3338
3337
  first?: InputMaybe<Scalars["Int"]["input"]>;
3339
3338
  orderBy?: InputMaybe<PermissionFile_OrderBy>;
@@ -3342,7 +3341,7 @@ type QueryPermissionFilesArgs = {
3342
3341
  subgraphError?: _SubgraphErrorPolicy_;
3343
3342
  where?: InputMaybe<PermissionFile_Filter>;
3344
3343
  };
3345
- type QueryPermissionsArgs = {
3344
+ export type QueryPermissionsArgs = {
3346
3345
  block?: InputMaybe<Block_Height>;
3347
3346
  first?: InputMaybe<Scalars["Int"]["input"]>;
3348
3347
  orderBy?: InputMaybe<Permission_OrderBy>;
@@ -3351,17 +3350,17 @@ type QueryPermissionsArgs = {
3351
3350
  subgraphError?: _SubgraphErrorPolicy_;
3352
3351
  where?: InputMaybe<Permission_Filter>;
3353
3352
  };
3354
- type QueryPoolArgs = {
3353
+ export type QueryPoolArgs = {
3355
3354
  block?: InputMaybe<Block_Height>;
3356
3355
  id: Scalars["ID"]["input"];
3357
3356
  subgraphError?: _SubgraphErrorPolicy_;
3358
3357
  };
3359
- type QueryPoolDayDataArgs = {
3358
+ export type QueryPoolDayDataArgs = {
3360
3359
  block?: InputMaybe<Block_Height>;
3361
3360
  id: Scalars["ID"]["input"];
3362
3361
  subgraphError?: _SubgraphErrorPolicy_;
3363
3362
  };
3364
- type QueryPoolDayDatasArgs = {
3363
+ export type QueryPoolDayDatasArgs = {
3365
3364
  block?: InputMaybe<Block_Height>;
3366
3365
  first?: InputMaybe<Scalars["Int"]["input"]>;
3367
3366
  orderBy?: InputMaybe<PoolDayData_OrderBy>;
@@ -3370,12 +3369,12 @@ type QueryPoolDayDatasArgs = {
3370
3369
  subgraphError?: _SubgraphErrorPolicy_;
3371
3370
  where?: InputMaybe<PoolDayData_Filter>;
3372
3371
  };
3373
- type QueryPoolHourDataArgs = {
3372
+ export type QueryPoolHourDataArgs = {
3374
3373
  block?: InputMaybe<Block_Height>;
3375
3374
  id: Scalars["ID"]["input"];
3376
3375
  subgraphError?: _SubgraphErrorPolicy_;
3377
3376
  };
3378
- type QueryPoolHourDatasArgs = {
3377
+ export type QueryPoolHourDatasArgs = {
3379
3378
  block?: InputMaybe<Block_Height>;
3380
3379
  first?: InputMaybe<Scalars["Int"]["input"]>;
3381
3380
  orderBy?: InputMaybe<PoolHourData_OrderBy>;
@@ -3384,7 +3383,7 @@ type QueryPoolHourDatasArgs = {
3384
3383
  subgraphError?: _SubgraphErrorPolicy_;
3385
3384
  where?: InputMaybe<PoolHourData_Filter>;
3386
3385
  };
3387
- type QueryPoolsArgs = {
3386
+ export type QueryPoolsArgs = {
3388
3387
  block?: InputMaybe<Block_Height>;
3389
3388
  first?: InputMaybe<Scalars["Int"]["input"]>;
3390
3389
  orderBy?: InputMaybe<Pool_OrderBy>;
@@ -3393,12 +3392,12 @@ type QueryPoolsArgs = {
3393
3392
  subgraphError?: _SubgraphErrorPolicy_;
3394
3393
  where?: InputMaybe<Pool_Filter>;
3395
3394
  };
3396
- type QueryRefinerArgs = {
3395
+ export type QueryRefinerArgs = {
3397
3396
  block?: InputMaybe<Block_Height>;
3398
3397
  id: Scalars["ID"]["input"];
3399
3398
  subgraphError?: _SubgraphErrorPolicy_;
3400
3399
  };
3401
- type QueryRefinersArgs = {
3400
+ export type QueryRefinersArgs = {
3402
3401
  block?: InputMaybe<Block_Height>;
3403
3402
  first?: InputMaybe<Scalars["Int"]["input"]>;
3404
3403
  orderBy?: InputMaybe<Refiner_OrderBy>;
@@ -3407,12 +3406,12 @@ type QueryRefinersArgs = {
3407
3406
  subgraphError?: _SubgraphErrorPolicy_;
3408
3407
  where?: InputMaybe<Refiner_Filter>;
3409
3408
  };
3410
- type QuerySchemaArgs = {
3409
+ export type QuerySchemaArgs = {
3411
3410
  block?: InputMaybe<Block_Height>;
3412
3411
  id: Scalars["ID"]["input"];
3413
3412
  subgraphError?: _SubgraphErrorPolicy_;
3414
3413
  };
3415
- type QuerySchemasArgs = {
3414
+ export type QuerySchemasArgs = {
3416
3415
  block?: InputMaybe<Block_Height>;
3417
3416
  first?: InputMaybe<Scalars["Int"]["input"]>;
3418
3417
  orderBy?: InputMaybe<Schema_OrderBy>;
@@ -3421,12 +3420,12 @@ type QuerySchemasArgs = {
3421
3420
  subgraphError?: _SubgraphErrorPolicy_;
3422
3421
  where?: InputMaybe<Schema_Filter>;
3423
3422
  };
3424
- type QueryServerArgs = {
3423
+ export type QueryServerArgs = {
3425
3424
  block?: InputMaybe<Block_Height>;
3426
3425
  id: Scalars["ID"]["input"];
3427
3426
  subgraphError?: _SubgraphErrorPolicy_;
3428
3427
  };
3429
- type QueryServersArgs = {
3428
+ export type QueryServersArgs = {
3430
3429
  block?: InputMaybe<Block_Height>;
3431
3430
  first?: InputMaybe<Scalars["Int"]["input"]>;
3432
3431
  orderBy?: InputMaybe<Server_OrderBy>;
@@ -3435,12 +3434,12 @@ type QueryServersArgs = {
3435
3434
  subgraphError?: _SubgraphErrorPolicy_;
3436
3435
  where?: InputMaybe<Server_Filter>;
3437
3436
  };
3438
- type QuerySwapArgs = {
3437
+ export type QuerySwapArgs = {
3439
3438
  block?: InputMaybe<Block_Height>;
3440
3439
  id: Scalars["ID"]["input"];
3441
3440
  subgraphError?: _SubgraphErrorPolicy_;
3442
3441
  };
3443
- type QuerySwapsArgs = {
3442
+ export type QuerySwapsArgs = {
3444
3443
  block?: InputMaybe<Block_Height>;
3445
3444
  first?: InputMaybe<Scalars["Int"]["input"]>;
3446
3445
  orderBy?: InputMaybe<Swap_OrderBy>;
@@ -3449,12 +3448,12 @@ type QuerySwapsArgs = {
3449
3448
  subgraphError?: _SubgraphErrorPolicy_;
3450
3449
  where?: InputMaybe<Swap_Filter>;
3451
3450
  };
3452
- type QueryTickArgs = {
3451
+ export type QueryTickArgs = {
3453
3452
  block?: InputMaybe<Block_Height>;
3454
3453
  id: Scalars["ID"]["input"];
3455
3454
  subgraphError?: _SubgraphErrorPolicy_;
3456
3455
  };
3457
- type QueryTicksArgs = {
3456
+ export type QueryTicksArgs = {
3458
3457
  block?: InputMaybe<Block_Height>;
3459
3458
  first?: InputMaybe<Scalars["Int"]["input"]>;
3460
3459
  orderBy?: InputMaybe<Tick_OrderBy>;
@@ -3463,17 +3462,17 @@ type QueryTicksArgs = {
3463
3462
  subgraphError?: _SubgraphErrorPolicy_;
3464
3463
  where?: InputMaybe<Tick_Filter>;
3465
3464
  };
3466
- type QueryTokenArgs = {
3465
+ export type QueryTokenArgs = {
3467
3466
  block?: InputMaybe<Block_Height>;
3468
3467
  id: Scalars["ID"]["input"];
3469
3468
  subgraphError?: _SubgraphErrorPolicy_;
3470
3469
  };
3471
- type QueryTokenDayDataArgs = {
3470
+ export type QueryTokenDayDataArgs = {
3472
3471
  block?: InputMaybe<Block_Height>;
3473
3472
  id: Scalars["ID"]["input"];
3474
3473
  subgraphError?: _SubgraphErrorPolicy_;
3475
3474
  };
3476
- type QueryTokenDayDatasArgs = {
3475
+ export type QueryTokenDayDatasArgs = {
3477
3476
  block?: InputMaybe<Block_Height>;
3478
3477
  first?: InputMaybe<Scalars["Int"]["input"]>;
3479
3478
  orderBy?: InputMaybe<TokenDayData_OrderBy>;
@@ -3482,12 +3481,12 @@ type QueryTokenDayDatasArgs = {
3482
3481
  subgraphError?: _SubgraphErrorPolicy_;
3483
3482
  where?: InputMaybe<TokenDayData_Filter>;
3484
3483
  };
3485
- type QueryTokenHourDataArgs = {
3484
+ export type QueryTokenHourDataArgs = {
3486
3485
  block?: InputMaybe<Block_Height>;
3487
3486
  id: Scalars["ID"]["input"];
3488
3487
  subgraphError?: _SubgraphErrorPolicy_;
3489
3488
  };
3490
- type QueryTokenHourDatasArgs = {
3489
+ export type QueryTokenHourDatasArgs = {
3491
3490
  block?: InputMaybe<Block_Height>;
3492
3491
  first?: InputMaybe<Scalars["Int"]["input"]>;
3493
3492
  orderBy?: InputMaybe<TokenHourData_OrderBy>;
@@ -3496,7 +3495,7 @@ type QueryTokenHourDatasArgs = {
3496
3495
  subgraphError?: _SubgraphErrorPolicy_;
3497
3496
  where?: InputMaybe<TokenHourData_Filter>;
3498
3497
  };
3499
- type QueryTokensArgs = {
3498
+ export type QueryTokensArgs = {
3500
3499
  block?: InputMaybe<Block_Height>;
3501
3500
  first?: InputMaybe<Scalars["Int"]["input"]>;
3502
3501
  orderBy?: InputMaybe<Token_OrderBy>;
@@ -3505,12 +3504,12 @@ type QueryTokensArgs = {
3505
3504
  subgraphError?: _SubgraphErrorPolicy_;
3506
3505
  where?: InputMaybe<Token_Filter>;
3507
3506
  };
3508
- type QueryTotalsArgs = {
3507
+ export type QueryTotalsArgs = {
3509
3508
  block?: InputMaybe<Block_Height>;
3510
3509
  id: Scalars["ID"]["input"];
3511
3510
  subgraphError?: _SubgraphErrorPolicy_;
3512
3511
  };
3513
- type QueryTotals_CollectionArgs = {
3512
+ export type QueryTotals_CollectionArgs = {
3514
3513
  block?: InputMaybe<Block_Height>;
3515
3514
  first?: InputMaybe<Scalars["Int"]["input"]>;
3516
3515
  orderBy?: InputMaybe<Totals_OrderBy>;
@@ -3519,12 +3518,12 @@ type QueryTotals_CollectionArgs = {
3519
3518
  subgraphError?: _SubgraphErrorPolicy_;
3520
3519
  where?: InputMaybe<Totals_Filter>;
3521
3520
  };
3522
- type QueryTransactionArgs = {
3521
+ export type QueryTransactionArgs = {
3523
3522
  block?: InputMaybe<Block_Height>;
3524
3523
  id: Scalars["ID"]["input"];
3525
3524
  subgraphError?: _SubgraphErrorPolicy_;
3526
3525
  };
3527
- type QueryTransactionsArgs = {
3526
+ export type QueryTransactionsArgs = {
3528
3527
  block?: InputMaybe<Block_Height>;
3529
3528
  first?: InputMaybe<Scalars["Int"]["input"]>;
3530
3529
  orderBy?: InputMaybe<Transaction_OrderBy>;
@@ -3533,12 +3532,12 @@ type QueryTransactionsArgs = {
3533
3532
  subgraphError?: _SubgraphErrorPolicy_;
3534
3533
  where?: InputMaybe<Transaction_Filter>;
3535
3534
  };
3536
- type QueryUniswapDayDataArgs = {
3535
+ export type QueryUniswapDayDataArgs = {
3537
3536
  block?: InputMaybe<Block_Height>;
3538
3537
  id: Scalars["ID"]["input"];
3539
3538
  subgraphError?: _SubgraphErrorPolicy_;
3540
3539
  };
3541
- type QueryUniswapDayDatasArgs = {
3540
+ export type QueryUniswapDayDatasArgs = {
3542
3541
  block?: InputMaybe<Block_Height>;
3543
3542
  first?: InputMaybe<Scalars["Int"]["input"]>;
3544
3543
  orderBy?: InputMaybe<UniswapDayData_OrderBy>;
@@ -3547,17 +3546,17 @@ type QueryUniswapDayDatasArgs = {
3547
3546
  subgraphError?: _SubgraphErrorPolicy_;
3548
3547
  where?: InputMaybe<UniswapDayData_Filter>;
3549
3548
  };
3550
- type QueryUserArgs = {
3549
+ export type QueryUserArgs = {
3551
3550
  block?: InputMaybe<Block_Height>;
3552
3551
  id: Scalars["ID"]["input"];
3553
3552
  subgraphError?: _SubgraphErrorPolicy_;
3554
3553
  };
3555
- type QueryUserServerArgs = {
3554
+ export type QueryUserServerArgs = {
3556
3555
  block?: InputMaybe<Block_Height>;
3557
3556
  id: Scalars["ID"]["input"];
3558
3557
  subgraphError?: _SubgraphErrorPolicy_;
3559
3558
  };
3560
- type QueryUserServersArgs = {
3559
+ export type QueryUserServersArgs = {
3561
3560
  block?: InputMaybe<Block_Height>;
3562
3561
  first?: InputMaybe<Scalars["Int"]["input"]>;
3563
3562
  orderBy?: InputMaybe<UserServer_OrderBy>;
@@ -3566,12 +3565,12 @@ type QueryUserServersArgs = {
3566
3565
  subgraphError?: _SubgraphErrorPolicy_;
3567
3566
  where?: InputMaybe<UserServer_Filter>;
3568
3567
  };
3569
- type QueryUserTotalsArgs = {
3568
+ export type QueryUserTotalsArgs = {
3570
3569
  block?: InputMaybe<Block_Height>;
3571
3570
  id: Scalars["ID"]["input"];
3572
3571
  subgraphError?: _SubgraphErrorPolicy_;
3573
3572
  };
3574
- type QueryUserTotals_CollectionArgs = {
3573
+ export type QueryUserTotals_CollectionArgs = {
3575
3574
  block?: InputMaybe<Block_Height>;
3576
3575
  first?: InputMaybe<Scalars["Int"]["input"]>;
3577
3576
  orderBy?: InputMaybe<UserTotals_OrderBy>;
@@ -3580,7 +3579,7 @@ type QueryUserTotals_CollectionArgs = {
3580
3579
  subgraphError?: _SubgraphErrorPolicy_;
3581
3580
  where?: InputMaybe<UserTotals_Filter>;
3582
3581
  };
3583
- type QueryUsersArgs = {
3582
+ export type QueryUsersArgs = {
3584
3583
  block?: InputMaybe<Block_Height>;
3585
3584
  first?: InputMaybe<Scalars["Int"]["input"]>;
3586
3585
  orderBy?: InputMaybe<User_OrderBy>;
@@ -3589,7 +3588,7 @@ type QueryUsersArgs = {
3589
3588
  subgraphError?: _SubgraphErrorPolicy_;
3590
3589
  where?: InputMaybe<User_Filter>;
3591
3590
  };
3592
- type Refiner = {
3591
+ export type Refiner = {
3593
3592
  dlp: Dlp;
3594
3593
  id: Scalars["ID"]["output"];
3595
3594
  name: Scalars["String"]["output"];
@@ -3599,14 +3598,14 @@ type Refiner = {
3599
3598
  schema?: Maybe<Schema>;
3600
3599
  schemaDefinitionUrl: Scalars["String"]["output"];
3601
3600
  };
3602
- type RefinerPaymentsArgs = {
3601
+ export type RefinerPaymentsArgs = {
3603
3602
  first?: InputMaybe<Scalars["Int"]["input"]>;
3604
3603
  orderBy?: InputMaybe<PaymentReceived_OrderBy>;
3605
3604
  orderDirection?: InputMaybe<OrderDirection>;
3606
3605
  skip?: InputMaybe<Scalars["Int"]["input"]>;
3607
3606
  where?: InputMaybe<PaymentReceived_Filter>;
3608
3607
  };
3609
- type Refiner_Filter = {
3608
+ export type Refiner_Filter = {
3610
3609
  /** Filter for the block changed event. */
3611
3610
  _change_block?: InputMaybe<BlockChangedFilter>;
3612
3611
  and?: InputMaybe<Array<InputMaybe<Refiner_Filter>>>;
@@ -3733,8 +3732,8 @@ type Refiner_Filter = {
3733
3732
  schema_starts_with?: InputMaybe<Scalars["String"]["input"]>;
3734
3733
  schema_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
3735
3734
  };
3736
- type Refiner_OrderBy = "dlp" | "dlp__address" | "dlp__createdAt" | "dlp__createdAtBlock" | "dlp__createdTxHash" | "dlp__creator" | "dlp__iconUrl" | "dlp__id" | "dlp__metadata" | "dlp__name" | "dlp__owner" | "dlp__performanceRating" | "dlp__status" | "dlp__token" | "dlp__treasury" | "dlp__verificationBlockNumber" | "dlp__website" | "id" | "name" | "owner" | "payments" | "refinementInstructionUrl" | "schema" | "schemaDefinitionUrl" | "schema__createdAt" | "schema__createdAtBlock" | "schema__createdTxHash" | "schema__definitionUrl" | "schema__dialect" | "schema__id" | "schema__name";
3737
- type Schema = {
3735
+ export type Refiner_OrderBy = "dlp" | "dlp__address" | "dlp__createdAt" | "dlp__createdAtBlock" | "dlp__createdTxHash" | "dlp__creator" | "dlp__iconUrl" | "dlp__id" | "dlp__metadata" | "dlp__name" | "dlp__owner" | "dlp__performanceRating" | "dlp__status" | "dlp__token" | "dlp__treasury" | "dlp__verificationBlockNumber" | "dlp__website" | "id" | "name" | "owner" | "payments" | "refinementInstructionUrl" | "schema" | "schemaDefinitionUrl" | "schema__createdAt" | "schema__createdAtBlock" | "schema__createdTxHash" | "schema__definitionUrl" | "schema__dialect" | "schema__id" | "schema__name";
3736
+ export type Schema = {
3738
3737
  createdAt: Scalars["BigInt"]["output"];
3739
3738
  createdAtBlock: Scalars["BigInt"]["output"];
3740
3739
  createdTxHash: Scalars["Bytes"]["output"];
@@ -3744,14 +3743,14 @@ type Schema = {
3744
3743
  name: Scalars["String"]["output"];
3745
3744
  refiners: Array<Refiner>;
3746
3745
  };
3747
- type SchemaRefinersArgs = {
3746
+ export type SchemaRefinersArgs = {
3748
3747
  first?: InputMaybe<Scalars["Int"]["input"]>;
3749
3748
  orderBy?: InputMaybe<Refiner_OrderBy>;
3750
3749
  orderDirection?: InputMaybe<OrderDirection>;
3751
3750
  skip?: InputMaybe<Scalars["Int"]["input"]>;
3752
3751
  where?: InputMaybe<Refiner_Filter>;
3753
3752
  };
3754
- type Schema_Filter = {
3753
+ export type Schema_Filter = {
3755
3754
  /** Filter for the block changed event. */
3756
3755
  _change_block?: InputMaybe<BlockChangedFilter>;
3757
3756
  and?: InputMaybe<Array<InputMaybe<Schema_Filter>>>;
@@ -3852,8 +3851,8 @@ type Schema_Filter = {
3852
3851
  or?: InputMaybe<Array<InputMaybe<Schema_Filter>>>;
3853
3852
  refiners_?: InputMaybe<Refiner_Filter>;
3854
3853
  };
3855
- type Schema_OrderBy = "createdAt" | "createdAtBlock" | "createdTxHash" | "definitionUrl" | "dialect" | "id" | "name" | "refiners";
3856
- type Server = {
3854
+ export type Schema_OrderBy = "createdAt" | "createdAtBlock" | "createdTxHash" | "definitionUrl" | "dialect" | "id" | "name" | "refiners";
3855
+ export type Server = {
3857
3856
  /** The unique ID of the server, using serverId. */
3858
3857
  id: Scalars["ID"]["output"];
3859
3858
  /** The owner who registered this server. */
@@ -3873,14 +3872,14 @@ type Server = {
3873
3872
  /** User trust relationships for this server. */
3874
3873
  userTrusts: Array<UserServer>;
3875
3874
  };
3876
- type ServerUserTrustsArgs = {
3875
+ export type ServerUserTrustsArgs = {
3877
3876
  first?: InputMaybe<Scalars["Int"]["input"]>;
3878
3877
  orderBy?: InputMaybe<UserServer_OrderBy>;
3879
3878
  orderDirection?: InputMaybe<OrderDirection>;
3880
3879
  skip?: InputMaybe<Scalars["Int"]["input"]>;
3881
3880
  where?: InputMaybe<UserServer_Filter>;
3882
3881
  };
3883
- type Server_Filter = {
3882
+ export type Server_Filter = {
3884
3883
  /** Filter for the block changed event. */
3885
3884
  _change_block?: InputMaybe<BlockChangedFilter>;
3886
3885
  and?: InputMaybe<Array<InputMaybe<Server_Filter>>>;
@@ -3982,8 +3981,8 @@ type Server_Filter = {
3982
3981
  url_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
3983
3982
  userTrusts_?: InputMaybe<UserServer_Filter>;
3984
3983
  };
3985
- type Server_OrderBy = "id" | "owner" | "owner__id" | "publicKey" | "registeredAtBlock" | "registeredAtTimestamp" | "serverAddress" | "transactionHash" | "url" | "userTrusts";
3986
- type Subscription = {
3984
+ export type Server_OrderBy = "id" | "owner" | "owner__id" | "publicKey" | "registeredAtBlock" | "registeredAtTimestamp" | "serverAddress" | "transactionHash" | "url" | "userTrusts";
3985
+ export type Subscription = {
3987
3986
  /** Access to subgraph metadata */
3988
3987
  _meta?: Maybe<_Meta_>;
3989
3988
  bundle?: Maybe<Bundle>;
@@ -4061,15 +4060,15 @@ type Subscription = {
4061
4060
  userTotals_collection: Array<UserTotals>;
4062
4061
  users: Array<User>;
4063
4062
  };
4064
- type Subscription_MetaArgs = {
4063
+ export type Subscription_MetaArgs = {
4065
4064
  block?: InputMaybe<Block_Height>;
4066
4065
  };
4067
- type SubscriptionBundleArgs = {
4066
+ export type SubscriptionBundleArgs = {
4068
4067
  block?: InputMaybe<Block_Height>;
4069
4068
  id: Scalars["ID"]["input"];
4070
4069
  subgraphError?: _SubgraphErrorPolicy_;
4071
4070
  };
4072
- type SubscriptionBundlesArgs = {
4071
+ export type SubscriptionBundlesArgs = {
4073
4072
  block?: InputMaybe<Block_Height>;
4074
4073
  first?: InputMaybe<Scalars["Int"]["input"]>;
4075
4074
  orderBy?: InputMaybe<Bundle_OrderBy>;
@@ -4078,12 +4077,12 @@ type SubscriptionBundlesArgs = {
4078
4077
  subgraphError?: _SubgraphErrorPolicy_;
4079
4078
  where?: InputMaybe<Bundle_Filter>;
4080
4079
  };
4081
- type SubscriptionBurnArgs = {
4080
+ export type SubscriptionBurnArgs = {
4082
4081
  block?: InputMaybe<Block_Height>;
4083
4082
  id: Scalars["ID"]["input"];
4084
4083
  subgraphError?: _SubgraphErrorPolicy_;
4085
4084
  };
4086
- type SubscriptionBurnsArgs = {
4085
+ export type SubscriptionBurnsArgs = {
4087
4086
  block?: InputMaybe<Block_Height>;
4088
4087
  first?: InputMaybe<Scalars["Int"]["input"]>;
4089
4088
  orderBy?: InputMaybe<Burn_OrderBy>;
@@ -4092,12 +4091,12 @@ type SubscriptionBurnsArgs = {
4092
4091
  subgraphError?: _SubgraphErrorPolicy_;
4093
4092
  where?: InputMaybe<Burn_Filter>;
4094
4093
  };
4095
- type SubscriptionCollectArgs = {
4094
+ export type SubscriptionCollectArgs = {
4096
4095
  block?: InputMaybe<Block_Height>;
4097
4096
  id: Scalars["ID"]["input"];
4098
4097
  subgraphError?: _SubgraphErrorPolicy_;
4099
4098
  };
4100
- type SubscriptionCollectsArgs = {
4099
+ export type SubscriptionCollectsArgs = {
4101
4100
  block?: InputMaybe<Block_Height>;
4102
4101
  first?: InputMaybe<Scalars["Int"]["input"]>;
4103
4102
  orderBy?: InputMaybe<Collect_OrderBy>;
@@ -4106,12 +4105,12 @@ type SubscriptionCollectsArgs = {
4106
4105
  subgraphError?: _SubgraphErrorPolicy_;
4107
4106
  where?: InputMaybe<Collect_Filter>;
4108
4107
  };
4109
- type SubscriptionDataRegistryProofArgs = {
4108
+ export type SubscriptionDataRegistryProofArgs = {
4110
4109
  block?: InputMaybe<Block_Height>;
4111
4110
  id: Scalars["ID"]["input"];
4112
4111
  subgraphError?: _SubgraphErrorPolicy_;
4113
4112
  };
4114
- type SubscriptionDataRegistryProofsArgs = {
4113
+ export type SubscriptionDataRegistryProofsArgs = {
4115
4114
  block?: InputMaybe<Block_Height>;
4116
4115
  first?: InputMaybe<Scalars["Int"]["input"]>;
4117
4116
  orderBy?: InputMaybe<DataRegistryProof_OrderBy>;
@@ -4120,17 +4119,17 @@ type SubscriptionDataRegistryProofsArgs = {
4120
4119
  subgraphError?: _SubgraphErrorPolicy_;
4121
4120
  where?: InputMaybe<DataRegistryProof_Filter>;
4122
4121
  };
4123
- type SubscriptionDlpArgs = {
4122
+ export type SubscriptionDlpArgs = {
4124
4123
  block?: InputMaybe<Block_Height>;
4125
4124
  id: Scalars["ID"]["input"];
4126
4125
  subgraphError?: _SubgraphErrorPolicy_;
4127
4126
  };
4128
- type SubscriptionDlpListArgs = {
4127
+ export type SubscriptionDlpListArgs = {
4129
4128
  block?: InputMaybe<Block_Height>;
4130
4129
  id: Scalars["ID"]["input"];
4131
4130
  subgraphError?: _SubgraphErrorPolicy_;
4132
4131
  };
4133
- type SubscriptionDlpListsArgs = {
4132
+ export type SubscriptionDlpListsArgs = {
4134
4133
  block?: InputMaybe<Block_Height>;
4135
4134
  first?: InputMaybe<Scalars["Int"]["input"]>;
4136
4135
  orderBy?: InputMaybe<DlpList_OrderBy>;
@@ -4139,12 +4138,12 @@ type SubscriptionDlpListsArgs = {
4139
4138
  subgraphError?: _SubgraphErrorPolicy_;
4140
4139
  where?: InputMaybe<DlpList_Filter>;
4141
4140
  };
4142
- type SubscriptionDlpPerformanceArgs = {
4141
+ export type SubscriptionDlpPerformanceArgs = {
4143
4142
  block?: InputMaybe<Block_Height>;
4144
4143
  id: Scalars["ID"]["input"];
4145
4144
  subgraphError?: _SubgraphErrorPolicy_;
4146
4145
  };
4147
- type SubscriptionDlpPerformancesArgs = {
4146
+ export type SubscriptionDlpPerformancesArgs = {
4148
4147
  block?: InputMaybe<Block_Height>;
4149
4148
  first?: InputMaybe<Scalars["Int"]["input"]>;
4150
4149
  orderBy?: InputMaybe<DlpPerformance_OrderBy>;
@@ -4153,12 +4152,12 @@ type SubscriptionDlpPerformancesArgs = {
4153
4152
  subgraphError?: _SubgraphErrorPolicy_;
4154
4153
  where?: InputMaybe<DlpPerformance_Filter>;
4155
4154
  };
4156
- type SubscriptionDlpRewardArgs = {
4155
+ export type SubscriptionDlpRewardArgs = {
4157
4156
  block?: InputMaybe<Block_Height>;
4158
4157
  id: Scalars["ID"]["input"];
4159
4158
  subgraphError?: _SubgraphErrorPolicy_;
4160
4159
  };
4161
- type SubscriptionDlpRewardsArgs = {
4160
+ export type SubscriptionDlpRewardsArgs = {
4162
4161
  block?: InputMaybe<Block_Height>;
4163
4162
  first?: InputMaybe<Scalars["Int"]["input"]>;
4164
4163
  orderBy?: InputMaybe<DlpReward_OrderBy>;
@@ -4167,7 +4166,7 @@ type SubscriptionDlpRewardsArgs = {
4167
4166
  subgraphError?: _SubgraphErrorPolicy_;
4168
4167
  where?: InputMaybe<DlpReward_Filter>;
4169
4168
  };
4170
- type SubscriptionDlpsArgs = {
4169
+ export type SubscriptionDlpsArgs = {
4171
4170
  block?: InputMaybe<Block_Height>;
4172
4171
  first?: InputMaybe<Scalars["Int"]["input"]>;
4173
4172
  orderBy?: InputMaybe<Dlp_OrderBy>;
@@ -4176,17 +4175,17 @@ type SubscriptionDlpsArgs = {
4176
4175
  subgraphError?: _SubgraphErrorPolicy_;
4177
4176
  where?: InputMaybe<Dlp_Filter>;
4178
4177
  };
4179
- type SubscriptionEpochArgs = {
4178
+ export type SubscriptionEpochArgs = {
4180
4179
  block?: InputMaybe<Block_Height>;
4181
4180
  id: Scalars["ID"]["input"];
4182
4181
  subgraphError?: _SubgraphErrorPolicy_;
4183
4182
  };
4184
- type SubscriptionEpochReferenceArgs = {
4183
+ export type SubscriptionEpochReferenceArgs = {
4185
4184
  block?: InputMaybe<Block_Height>;
4186
4185
  id: Scalars["ID"]["input"];
4187
4186
  subgraphError?: _SubgraphErrorPolicy_;
4188
4187
  };
4189
- type SubscriptionEpochReferencesArgs = {
4188
+ export type SubscriptionEpochReferencesArgs = {
4190
4189
  block?: InputMaybe<Block_Height>;
4191
4190
  first?: InputMaybe<Scalars["Int"]["input"]>;
4192
4191
  orderBy?: InputMaybe<EpochReference_OrderBy>;
@@ -4195,7 +4194,7 @@ type SubscriptionEpochReferencesArgs = {
4195
4194
  subgraphError?: _SubgraphErrorPolicy_;
4196
4195
  where?: InputMaybe<EpochReference_Filter>;
4197
4196
  };
4198
- type SubscriptionEpochesArgs = {
4197
+ export type SubscriptionEpochesArgs = {
4199
4198
  block?: InputMaybe<Block_Height>;
4200
4199
  first?: InputMaybe<Scalars["Int"]["input"]>;
4201
4200
  orderBy?: InputMaybe<Epoch_OrderBy>;
@@ -4204,7 +4203,7 @@ type SubscriptionEpochesArgs = {
4204
4203
  subgraphError?: _SubgraphErrorPolicy_;
4205
4204
  where?: InputMaybe<Epoch_Filter>;
4206
4205
  };
4207
- type SubscriptionFactoriesArgs = {
4206
+ export type SubscriptionFactoriesArgs = {
4208
4207
  block?: InputMaybe<Block_Height>;
4209
4208
  first?: InputMaybe<Scalars["Int"]["input"]>;
4210
4209
  orderBy?: InputMaybe<Factory_OrderBy>;
@@ -4213,17 +4212,17 @@ type SubscriptionFactoriesArgs = {
4213
4212
  subgraphError?: _SubgraphErrorPolicy_;
4214
4213
  where?: InputMaybe<Factory_Filter>;
4215
4214
  };
4216
- type SubscriptionFactoryArgs = {
4215
+ export type SubscriptionFactoryArgs = {
4217
4216
  block?: InputMaybe<Block_Height>;
4218
4217
  id: Scalars["ID"]["input"];
4219
4218
  subgraphError?: _SubgraphErrorPolicy_;
4220
4219
  };
4221
- type SubscriptionFileArgs = {
4220
+ export type SubscriptionFileArgs = {
4222
4221
  block?: InputMaybe<Block_Height>;
4223
4222
  id: Scalars["ID"]["input"];
4224
4223
  subgraphError?: _SubgraphErrorPolicy_;
4225
4224
  };
4226
- type SubscriptionFilesArgs = {
4225
+ export type SubscriptionFilesArgs = {
4227
4226
  block?: InputMaybe<Block_Height>;
4228
4227
  first?: InputMaybe<Scalars["Int"]["input"]>;
4229
4228
  orderBy?: InputMaybe<File_OrderBy>;
@@ -4232,12 +4231,12 @@ type SubscriptionFilesArgs = {
4232
4231
  subgraphError?: _SubgraphErrorPolicy_;
4233
4232
  where?: InputMaybe<File_Filter>;
4234
4233
  };
4235
- type SubscriptionFlashArgs = {
4234
+ export type SubscriptionFlashArgs = {
4236
4235
  block?: InputMaybe<Block_Height>;
4237
4236
  id: Scalars["ID"]["input"];
4238
4237
  subgraphError?: _SubgraphErrorPolicy_;
4239
4238
  };
4240
- type SubscriptionFlashesArgs = {
4239
+ export type SubscriptionFlashesArgs = {
4241
4240
  block?: InputMaybe<Block_Height>;
4242
4241
  first?: InputMaybe<Scalars["Int"]["input"]>;
4243
4242
  orderBy?: InputMaybe<Flash_OrderBy>;
@@ -4246,12 +4245,12 @@ type SubscriptionFlashesArgs = {
4246
4245
  subgraphError?: _SubgraphErrorPolicy_;
4247
4246
  where?: InputMaybe<Flash_Filter>;
4248
4247
  };
4249
- type SubscriptionGranteeArgs = {
4248
+ export type SubscriptionGranteeArgs = {
4250
4249
  block?: InputMaybe<Block_Height>;
4251
4250
  id: Scalars["ID"]["input"];
4252
4251
  subgraphError?: _SubgraphErrorPolicy_;
4253
4252
  };
4254
- type SubscriptionGranteesArgs = {
4253
+ export type SubscriptionGranteesArgs = {
4255
4254
  block?: InputMaybe<Block_Height>;
4256
4255
  first?: InputMaybe<Scalars["Int"]["input"]>;
4257
4256
  orderBy?: InputMaybe<Grantee_OrderBy>;
@@ -4260,12 +4259,12 @@ type SubscriptionGranteesArgs = {
4260
4259
  subgraphError?: _SubgraphErrorPolicy_;
4261
4260
  where?: InputMaybe<Grantee_Filter>;
4262
4261
  };
4263
- type SubscriptionMintArgs = {
4262
+ export type SubscriptionMintArgs = {
4264
4263
  block?: InputMaybe<Block_Height>;
4265
4264
  id: Scalars["ID"]["input"];
4266
4265
  subgraphError?: _SubgraphErrorPolicy_;
4267
4266
  };
4268
- type SubscriptionMintsArgs = {
4267
+ export type SubscriptionMintsArgs = {
4269
4268
  block?: InputMaybe<Block_Height>;
4270
4269
  first?: InputMaybe<Scalars["Int"]["input"]>;
4271
4270
  orderBy?: InputMaybe<Mint_OrderBy>;
@@ -4274,12 +4273,12 @@ type SubscriptionMintsArgs = {
4274
4273
  subgraphError?: _SubgraphErrorPolicy_;
4275
4274
  where?: InputMaybe<Mint_Filter>;
4276
4275
  };
4277
- type SubscriptionParamsArgs = {
4276
+ export type SubscriptionParamsArgs = {
4278
4277
  block?: InputMaybe<Block_Height>;
4279
4278
  id: Scalars["ID"]["input"];
4280
4279
  subgraphError?: _SubgraphErrorPolicy_;
4281
4280
  };
4282
- type SubscriptionParams_CollectionArgs = {
4281
+ export type SubscriptionParams_CollectionArgs = {
4283
4282
  block?: InputMaybe<Block_Height>;
4284
4283
  first?: InputMaybe<Scalars["Int"]["input"]>;
4285
4284
  orderBy?: InputMaybe<Params_OrderBy>;
@@ -4288,12 +4287,12 @@ type SubscriptionParams_CollectionArgs = {
4288
4287
  subgraphError?: _SubgraphErrorPolicy_;
4289
4288
  where?: InputMaybe<Params_Filter>;
4290
4289
  };
4291
- type SubscriptionPaymentReceivedArgs = {
4290
+ export type SubscriptionPaymentReceivedArgs = {
4292
4291
  block?: InputMaybe<Block_Height>;
4293
4292
  id: Scalars["ID"]["input"];
4294
4293
  subgraphError?: _SubgraphErrorPolicy_;
4295
4294
  };
4296
- type SubscriptionPaymentReceivedsArgs = {
4295
+ export type SubscriptionPaymentReceivedsArgs = {
4297
4296
  block?: InputMaybe<Block_Height>;
4298
4297
  first?: InputMaybe<Scalars["Int"]["input"]>;
4299
4298
  orderBy?: InputMaybe<PaymentReceived_OrderBy>;
@@ -4302,12 +4301,12 @@ type SubscriptionPaymentReceivedsArgs = {
4302
4301
  subgraphError?: _SubgraphErrorPolicy_;
4303
4302
  where?: InputMaybe<PaymentReceived_Filter>;
4304
4303
  };
4305
- type SubscriptionPerformanceDlpEpochUserArgs = {
4304
+ export type SubscriptionPerformanceDlpEpochUserArgs = {
4306
4305
  block?: InputMaybe<Block_Height>;
4307
4306
  id: Scalars["ID"]["input"];
4308
4307
  subgraphError?: _SubgraphErrorPolicy_;
4309
4308
  };
4310
- type SubscriptionPerformanceDlpEpochUsersArgs = {
4309
+ export type SubscriptionPerformanceDlpEpochUsersArgs = {
4311
4310
  block?: InputMaybe<Block_Height>;
4312
4311
  first?: InputMaybe<Scalars["Int"]["input"]>;
4313
4312
  orderBy?: InputMaybe<PerformanceDlpEpochUser_OrderBy>;
@@ -4316,17 +4315,17 @@ type SubscriptionPerformanceDlpEpochUsersArgs = {
4316
4315
  subgraphError?: _SubgraphErrorPolicy_;
4317
4316
  where?: InputMaybe<PerformanceDlpEpochUser_Filter>;
4318
4317
  };
4319
- type SubscriptionPermissionArgs = {
4318
+ export type SubscriptionPermissionArgs = {
4320
4319
  block?: InputMaybe<Block_Height>;
4321
4320
  id: Scalars["ID"]["input"];
4322
4321
  subgraphError?: _SubgraphErrorPolicy_;
4323
4322
  };
4324
- type SubscriptionPermissionFileArgs = {
4323
+ export type SubscriptionPermissionFileArgs = {
4325
4324
  block?: InputMaybe<Block_Height>;
4326
4325
  id: Scalars["ID"]["input"];
4327
4326
  subgraphError?: _SubgraphErrorPolicy_;
4328
4327
  };
4329
- type SubscriptionPermissionFilesArgs = {
4328
+ export type SubscriptionPermissionFilesArgs = {
4330
4329
  block?: InputMaybe<Block_Height>;
4331
4330
  first?: InputMaybe<Scalars["Int"]["input"]>;
4332
4331
  orderBy?: InputMaybe<PermissionFile_OrderBy>;
@@ -4335,7 +4334,7 @@ type SubscriptionPermissionFilesArgs = {
4335
4334
  subgraphError?: _SubgraphErrorPolicy_;
4336
4335
  where?: InputMaybe<PermissionFile_Filter>;
4337
4336
  };
4338
- type SubscriptionPermissionsArgs = {
4337
+ export type SubscriptionPermissionsArgs = {
4339
4338
  block?: InputMaybe<Block_Height>;
4340
4339
  first?: InputMaybe<Scalars["Int"]["input"]>;
4341
4340
  orderBy?: InputMaybe<Permission_OrderBy>;
@@ -4344,17 +4343,17 @@ type SubscriptionPermissionsArgs = {
4344
4343
  subgraphError?: _SubgraphErrorPolicy_;
4345
4344
  where?: InputMaybe<Permission_Filter>;
4346
4345
  };
4347
- type SubscriptionPoolArgs = {
4346
+ export type SubscriptionPoolArgs = {
4348
4347
  block?: InputMaybe<Block_Height>;
4349
4348
  id: Scalars["ID"]["input"];
4350
4349
  subgraphError?: _SubgraphErrorPolicy_;
4351
4350
  };
4352
- type SubscriptionPoolDayDataArgs = {
4351
+ export type SubscriptionPoolDayDataArgs = {
4353
4352
  block?: InputMaybe<Block_Height>;
4354
4353
  id: Scalars["ID"]["input"];
4355
4354
  subgraphError?: _SubgraphErrorPolicy_;
4356
4355
  };
4357
- type SubscriptionPoolDayDatasArgs = {
4356
+ export type SubscriptionPoolDayDatasArgs = {
4358
4357
  block?: InputMaybe<Block_Height>;
4359
4358
  first?: InputMaybe<Scalars["Int"]["input"]>;
4360
4359
  orderBy?: InputMaybe<PoolDayData_OrderBy>;
@@ -4363,12 +4362,12 @@ type SubscriptionPoolDayDatasArgs = {
4363
4362
  subgraphError?: _SubgraphErrorPolicy_;
4364
4363
  where?: InputMaybe<PoolDayData_Filter>;
4365
4364
  };
4366
- type SubscriptionPoolHourDataArgs = {
4365
+ export type SubscriptionPoolHourDataArgs = {
4367
4366
  block?: InputMaybe<Block_Height>;
4368
4367
  id: Scalars["ID"]["input"];
4369
4368
  subgraphError?: _SubgraphErrorPolicy_;
4370
4369
  };
4371
- type SubscriptionPoolHourDatasArgs = {
4370
+ export type SubscriptionPoolHourDatasArgs = {
4372
4371
  block?: InputMaybe<Block_Height>;
4373
4372
  first?: InputMaybe<Scalars["Int"]["input"]>;
4374
4373
  orderBy?: InputMaybe<PoolHourData_OrderBy>;
@@ -4377,7 +4376,7 @@ type SubscriptionPoolHourDatasArgs = {
4377
4376
  subgraphError?: _SubgraphErrorPolicy_;
4378
4377
  where?: InputMaybe<PoolHourData_Filter>;
4379
4378
  };
4380
- type SubscriptionPoolsArgs = {
4379
+ export type SubscriptionPoolsArgs = {
4381
4380
  block?: InputMaybe<Block_Height>;
4382
4381
  first?: InputMaybe<Scalars["Int"]["input"]>;
4383
4382
  orderBy?: InputMaybe<Pool_OrderBy>;
@@ -4386,12 +4385,12 @@ type SubscriptionPoolsArgs = {
4386
4385
  subgraphError?: _SubgraphErrorPolicy_;
4387
4386
  where?: InputMaybe<Pool_Filter>;
4388
4387
  };
4389
- type SubscriptionRefinerArgs = {
4388
+ export type SubscriptionRefinerArgs = {
4390
4389
  block?: InputMaybe<Block_Height>;
4391
4390
  id: Scalars["ID"]["input"];
4392
4391
  subgraphError?: _SubgraphErrorPolicy_;
4393
4392
  };
4394
- type SubscriptionRefinersArgs = {
4393
+ export type SubscriptionRefinersArgs = {
4395
4394
  block?: InputMaybe<Block_Height>;
4396
4395
  first?: InputMaybe<Scalars["Int"]["input"]>;
4397
4396
  orderBy?: InputMaybe<Refiner_OrderBy>;
@@ -4400,12 +4399,12 @@ type SubscriptionRefinersArgs = {
4400
4399
  subgraphError?: _SubgraphErrorPolicy_;
4401
4400
  where?: InputMaybe<Refiner_Filter>;
4402
4401
  };
4403
- type SubscriptionSchemaArgs = {
4402
+ export type SubscriptionSchemaArgs = {
4404
4403
  block?: InputMaybe<Block_Height>;
4405
4404
  id: Scalars["ID"]["input"];
4406
4405
  subgraphError?: _SubgraphErrorPolicy_;
4407
4406
  };
4408
- type SubscriptionSchemasArgs = {
4407
+ export type SubscriptionSchemasArgs = {
4409
4408
  block?: InputMaybe<Block_Height>;
4410
4409
  first?: InputMaybe<Scalars["Int"]["input"]>;
4411
4410
  orderBy?: InputMaybe<Schema_OrderBy>;
@@ -4414,12 +4413,12 @@ type SubscriptionSchemasArgs = {
4414
4413
  subgraphError?: _SubgraphErrorPolicy_;
4415
4414
  where?: InputMaybe<Schema_Filter>;
4416
4415
  };
4417
- type SubscriptionServerArgs = {
4416
+ export type SubscriptionServerArgs = {
4418
4417
  block?: InputMaybe<Block_Height>;
4419
4418
  id: Scalars["ID"]["input"];
4420
4419
  subgraphError?: _SubgraphErrorPolicy_;
4421
4420
  };
4422
- type SubscriptionServersArgs = {
4421
+ export type SubscriptionServersArgs = {
4423
4422
  block?: InputMaybe<Block_Height>;
4424
4423
  first?: InputMaybe<Scalars["Int"]["input"]>;
4425
4424
  orderBy?: InputMaybe<Server_OrderBy>;
@@ -4428,12 +4427,12 @@ type SubscriptionServersArgs = {
4428
4427
  subgraphError?: _SubgraphErrorPolicy_;
4429
4428
  where?: InputMaybe<Server_Filter>;
4430
4429
  };
4431
- type SubscriptionSwapArgs = {
4430
+ export type SubscriptionSwapArgs = {
4432
4431
  block?: InputMaybe<Block_Height>;
4433
4432
  id: Scalars["ID"]["input"];
4434
4433
  subgraphError?: _SubgraphErrorPolicy_;
4435
4434
  };
4436
- type SubscriptionSwapsArgs = {
4435
+ export type SubscriptionSwapsArgs = {
4437
4436
  block?: InputMaybe<Block_Height>;
4438
4437
  first?: InputMaybe<Scalars["Int"]["input"]>;
4439
4438
  orderBy?: InputMaybe<Swap_OrderBy>;
@@ -4442,12 +4441,12 @@ type SubscriptionSwapsArgs = {
4442
4441
  subgraphError?: _SubgraphErrorPolicy_;
4443
4442
  where?: InputMaybe<Swap_Filter>;
4444
4443
  };
4445
- type SubscriptionTickArgs = {
4444
+ export type SubscriptionTickArgs = {
4446
4445
  block?: InputMaybe<Block_Height>;
4447
4446
  id: Scalars["ID"]["input"];
4448
4447
  subgraphError?: _SubgraphErrorPolicy_;
4449
4448
  };
4450
- type SubscriptionTicksArgs = {
4449
+ export type SubscriptionTicksArgs = {
4451
4450
  block?: InputMaybe<Block_Height>;
4452
4451
  first?: InputMaybe<Scalars["Int"]["input"]>;
4453
4452
  orderBy?: InputMaybe<Tick_OrderBy>;
@@ -4456,17 +4455,17 @@ type SubscriptionTicksArgs = {
4456
4455
  subgraphError?: _SubgraphErrorPolicy_;
4457
4456
  where?: InputMaybe<Tick_Filter>;
4458
4457
  };
4459
- type SubscriptionTokenArgs = {
4458
+ export type SubscriptionTokenArgs = {
4460
4459
  block?: InputMaybe<Block_Height>;
4461
4460
  id: Scalars["ID"]["input"];
4462
4461
  subgraphError?: _SubgraphErrorPolicy_;
4463
4462
  };
4464
- type SubscriptionTokenDayDataArgs = {
4463
+ export type SubscriptionTokenDayDataArgs = {
4465
4464
  block?: InputMaybe<Block_Height>;
4466
4465
  id: Scalars["ID"]["input"];
4467
4466
  subgraphError?: _SubgraphErrorPolicy_;
4468
4467
  };
4469
- type SubscriptionTokenDayDatasArgs = {
4468
+ export type SubscriptionTokenDayDatasArgs = {
4470
4469
  block?: InputMaybe<Block_Height>;
4471
4470
  first?: InputMaybe<Scalars["Int"]["input"]>;
4472
4471
  orderBy?: InputMaybe<TokenDayData_OrderBy>;
@@ -4475,12 +4474,12 @@ type SubscriptionTokenDayDatasArgs = {
4475
4474
  subgraphError?: _SubgraphErrorPolicy_;
4476
4475
  where?: InputMaybe<TokenDayData_Filter>;
4477
4476
  };
4478
- type SubscriptionTokenHourDataArgs = {
4477
+ export type SubscriptionTokenHourDataArgs = {
4479
4478
  block?: InputMaybe<Block_Height>;
4480
4479
  id: Scalars["ID"]["input"];
4481
4480
  subgraphError?: _SubgraphErrorPolicy_;
4482
4481
  };
4483
- type SubscriptionTokenHourDatasArgs = {
4482
+ export type SubscriptionTokenHourDatasArgs = {
4484
4483
  block?: InputMaybe<Block_Height>;
4485
4484
  first?: InputMaybe<Scalars["Int"]["input"]>;
4486
4485
  orderBy?: InputMaybe<TokenHourData_OrderBy>;
@@ -4489,7 +4488,7 @@ type SubscriptionTokenHourDatasArgs = {
4489
4488
  subgraphError?: _SubgraphErrorPolicy_;
4490
4489
  where?: InputMaybe<TokenHourData_Filter>;
4491
4490
  };
4492
- type SubscriptionTokensArgs = {
4491
+ export type SubscriptionTokensArgs = {
4493
4492
  block?: InputMaybe<Block_Height>;
4494
4493
  first?: InputMaybe<Scalars["Int"]["input"]>;
4495
4494
  orderBy?: InputMaybe<Token_OrderBy>;
@@ -4498,12 +4497,12 @@ type SubscriptionTokensArgs = {
4498
4497
  subgraphError?: _SubgraphErrorPolicy_;
4499
4498
  where?: InputMaybe<Token_Filter>;
4500
4499
  };
4501
- type SubscriptionTotalsArgs = {
4500
+ export type SubscriptionTotalsArgs = {
4502
4501
  block?: InputMaybe<Block_Height>;
4503
4502
  id: Scalars["ID"]["input"];
4504
4503
  subgraphError?: _SubgraphErrorPolicy_;
4505
4504
  };
4506
- type SubscriptionTotals_CollectionArgs = {
4505
+ export type SubscriptionTotals_CollectionArgs = {
4507
4506
  block?: InputMaybe<Block_Height>;
4508
4507
  first?: InputMaybe<Scalars["Int"]["input"]>;
4509
4508
  orderBy?: InputMaybe<Totals_OrderBy>;
@@ -4512,12 +4511,12 @@ type SubscriptionTotals_CollectionArgs = {
4512
4511
  subgraphError?: _SubgraphErrorPolicy_;
4513
4512
  where?: InputMaybe<Totals_Filter>;
4514
4513
  };
4515
- type SubscriptionTransactionArgs = {
4514
+ export type SubscriptionTransactionArgs = {
4516
4515
  block?: InputMaybe<Block_Height>;
4517
4516
  id: Scalars["ID"]["input"];
4518
4517
  subgraphError?: _SubgraphErrorPolicy_;
4519
4518
  };
4520
- type SubscriptionTransactionsArgs = {
4519
+ export type SubscriptionTransactionsArgs = {
4521
4520
  block?: InputMaybe<Block_Height>;
4522
4521
  first?: InputMaybe<Scalars["Int"]["input"]>;
4523
4522
  orderBy?: InputMaybe<Transaction_OrderBy>;
@@ -4526,12 +4525,12 @@ type SubscriptionTransactionsArgs = {
4526
4525
  subgraphError?: _SubgraphErrorPolicy_;
4527
4526
  where?: InputMaybe<Transaction_Filter>;
4528
4527
  };
4529
- type SubscriptionUniswapDayDataArgs = {
4528
+ export type SubscriptionUniswapDayDataArgs = {
4530
4529
  block?: InputMaybe<Block_Height>;
4531
4530
  id: Scalars["ID"]["input"];
4532
4531
  subgraphError?: _SubgraphErrorPolicy_;
4533
4532
  };
4534
- type SubscriptionUniswapDayDatasArgs = {
4533
+ export type SubscriptionUniswapDayDatasArgs = {
4535
4534
  block?: InputMaybe<Block_Height>;
4536
4535
  first?: InputMaybe<Scalars["Int"]["input"]>;
4537
4536
  orderBy?: InputMaybe<UniswapDayData_OrderBy>;
@@ -4540,17 +4539,17 @@ type SubscriptionUniswapDayDatasArgs = {
4540
4539
  subgraphError?: _SubgraphErrorPolicy_;
4541
4540
  where?: InputMaybe<UniswapDayData_Filter>;
4542
4541
  };
4543
- type SubscriptionUserArgs = {
4542
+ export type SubscriptionUserArgs = {
4544
4543
  block?: InputMaybe<Block_Height>;
4545
4544
  id: Scalars["ID"]["input"];
4546
4545
  subgraphError?: _SubgraphErrorPolicy_;
4547
4546
  };
4548
- type SubscriptionUserServerArgs = {
4547
+ export type SubscriptionUserServerArgs = {
4549
4548
  block?: InputMaybe<Block_Height>;
4550
4549
  id: Scalars["ID"]["input"];
4551
4550
  subgraphError?: _SubgraphErrorPolicy_;
4552
4551
  };
4553
- type SubscriptionUserServersArgs = {
4552
+ export type SubscriptionUserServersArgs = {
4554
4553
  block?: InputMaybe<Block_Height>;
4555
4554
  first?: InputMaybe<Scalars["Int"]["input"]>;
4556
4555
  orderBy?: InputMaybe<UserServer_OrderBy>;
@@ -4559,12 +4558,12 @@ type SubscriptionUserServersArgs = {
4559
4558
  subgraphError?: _SubgraphErrorPolicy_;
4560
4559
  where?: InputMaybe<UserServer_Filter>;
4561
4560
  };
4562
- type SubscriptionUserTotalsArgs = {
4561
+ export type SubscriptionUserTotalsArgs = {
4563
4562
  block?: InputMaybe<Block_Height>;
4564
4563
  id: Scalars["ID"]["input"];
4565
4564
  subgraphError?: _SubgraphErrorPolicy_;
4566
4565
  };
4567
- type SubscriptionUserTotals_CollectionArgs = {
4566
+ export type SubscriptionUserTotals_CollectionArgs = {
4568
4567
  block?: InputMaybe<Block_Height>;
4569
4568
  first?: InputMaybe<Scalars["Int"]["input"]>;
4570
4569
  orderBy?: InputMaybe<UserTotals_OrderBy>;
@@ -4573,7 +4572,7 @@ type SubscriptionUserTotals_CollectionArgs = {
4573
4572
  subgraphError?: _SubgraphErrorPolicy_;
4574
4573
  where?: InputMaybe<UserTotals_Filter>;
4575
4574
  };
4576
- type SubscriptionUsersArgs = {
4575
+ export type SubscriptionUsersArgs = {
4577
4576
  block?: InputMaybe<Block_Height>;
4578
4577
  first?: InputMaybe<Scalars["Int"]["input"]>;
4579
4578
  orderBy?: InputMaybe<User_OrderBy>;
@@ -4582,7 +4581,7 @@ type SubscriptionUsersArgs = {
4582
4581
  subgraphError?: _SubgraphErrorPolicy_;
4583
4582
  where?: InputMaybe<User_Filter>;
4584
4583
  };
4585
- type Swap = {
4584
+ export type Swap = {
4586
4585
  amount0: Scalars["BigDecimal"]["output"];
4587
4586
  amount1: Scalars["BigDecimal"]["output"];
4588
4587
  amountUSD: Scalars["BigDecimal"]["output"];
@@ -4599,7 +4598,7 @@ type Swap = {
4599
4598
  token1: Token;
4600
4599
  transaction: Transaction;
4601
4600
  };
4602
- type Swap_Filter = {
4601
+ export type Swap_Filter = {
4603
4602
  /** Filter for the block changed event. */
4604
4603
  _change_block?: InputMaybe<BlockChangedFilter>;
4605
4604
  amount0?: InputMaybe<Scalars["BigDecimal"]["input"]>;
@@ -4783,8 +4782,8 @@ type Swap_Filter = {
4783
4782
  transaction_starts_with?: InputMaybe<Scalars["String"]["input"]>;
4784
4783
  transaction_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
4785
4784
  };
4786
- type Swap_OrderBy = "amount0" | "amount1" | "amountUSD" | "id" | "logIndex" | "origin" | "pool" | "pool__collectedFeesToken0" | "pool__collectedFeesToken1" | "pool__collectedFeesUSD" | "pool__createdAtBlockNumber" | "pool__createdAtTimestamp" | "pool__feeTier" | "pool__feesUSD" | "pool__id" | "pool__liquidity" | "pool__liquidityProviderCount" | "pool__observationIndex" | "pool__sqrtPrice" | "pool__tick" | "pool__token0Price" | "pool__token1Price" | "pool__totalValueLockedETH" | "pool__totalValueLockedToken0" | "pool__totalValueLockedToken1" | "pool__totalValueLockedUSD" | "pool__totalValueLockedUSDUntracked" | "pool__txCount" | "pool__untrackedVolumeUSD" | "pool__volumeToken0" | "pool__volumeToken1" | "pool__volumeUSD" | "recipient" | "sender" | "sqrtPriceX96" | "tick" | "timestamp" | "token0" | "token0__decimals" | "token0__derivedETH" | "token0__feesUSD" | "token0__id" | "token0__name" | "token0__poolCount" | "token0__symbol" | "token0__totalSupply" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token0__txCount" | "token0__untrackedVolumeUSD" | "token0__volume" | "token0__volumeUSD" | "token1" | "token1__decimals" | "token1__derivedETH" | "token1__feesUSD" | "token1__id" | "token1__name" | "token1__poolCount" | "token1__symbol" | "token1__totalSupply" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked" | "token1__txCount" | "token1__untrackedVolumeUSD" | "token1__volume" | "token1__volumeUSD" | "transaction" | "transaction__blockNumber" | "transaction__gasPrice" | "transaction__gasUsed" | "transaction__id" | "transaction__timestamp";
4787
- type Tick = {
4785
+ export type Swap_OrderBy = "amount0" | "amount1" | "amountUSD" | "id" | "logIndex" | "origin" | "pool" | "pool__collectedFeesToken0" | "pool__collectedFeesToken1" | "pool__collectedFeesUSD" | "pool__createdAtBlockNumber" | "pool__createdAtTimestamp" | "pool__feeTier" | "pool__feesUSD" | "pool__id" | "pool__liquidity" | "pool__liquidityProviderCount" | "pool__observationIndex" | "pool__sqrtPrice" | "pool__tick" | "pool__token0Price" | "pool__token1Price" | "pool__totalValueLockedETH" | "pool__totalValueLockedToken0" | "pool__totalValueLockedToken1" | "pool__totalValueLockedUSD" | "pool__totalValueLockedUSDUntracked" | "pool__txCount" | "pool__untrackedVolumeUSD" | "pool__volumeToken0" | "pool__volumeToken1" | "pool__volumeUSD" | "recipient" | "sender" | "sqrtPriceX96" | "tick" | "timestamp" | "token0" | "token0__decimals" | "token0__derivedETH" | "token0__feesUSD" | "token0__id" | "token0__name" | "token0__poolCount" | "token0__symbol" | "token0__totalSupply" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token0__txCount" | "token0__untrackedVolumeUSD" | "token0__volume" | "token0__volumeUSD" | "token1" | "token1__decimals" | "token1__derivedETH" | "token1__feesUSD" | "token1__id" | "token1__name" | "token1__poolCount" | "token1__symbol" | "token1__totalSupply" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked" | "token1__txCount" | "token1__untrackedVolumeUSD" | "token1__volume" | "token1__volumeUSD" | "transaction" | "transaction__blockNumber" | "transaction__gasPrice" | "transaction__gasUsed" | "transaction__id" | "transaction__timestamp";
4786
+ export type Tick = {
4788
4787
  createdAtBlockNumber: Scalars["BigInt"]["output"];
4789
4788
  createdAtTimestamp: Scalars["BigInt"]["output"];
4790
4789
  id: Scalars["ID"]["output"];
@@ -4796,7 +4795,7 @@ type Tick = {
4796
4795
  price1: Scalars["BigDecimal"]["output"];
4797
4796
  tickIdx: Scalars["BigInt"]["output"];
4798
4797
  };
4799
- type Tick_Filter = {
4798
+ export type Tick_Filter = {
4800
4799
  /** Filter for the block changed event. */
4801
4800
  _change_block?: InputMaybe<BlockChangedFilter>;
4802
4801
  and?: InputMaybe<Array<InputMaybe<Tick_Filter>>>;
@@ -4897,8 +4896,8 @@ type Tick_Filter = {
4897
4896
  tickIdx_not?: InputMaybe<Scalars["BigInt"]["input"]>;
4898
4897
  tickIdx_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
4899
4898
  };
4900
- type Tick_OrderBy = "createdAtBlockNumber" | "createdAtTimestamp" | "id" | "liquidityGross" | "liquidityNet" | "pool" | "poolAddress" | "pool__collectedFeesToken0" | "pool__collectedFeesToken1" | "pool__collectedFeesUSD" | "pool__createdAtBlockNumber" | "pool__createdAtTimestamp" | "pool__feeTier" | "pool__feesUSD" | "pool__id" | "pool__liquidity" | "pool__liquidityProviderCount" | "pool__observationIndex" | "pool__sqrtPrice" | "pool__tick" | "pool__token0Price" | "pool__token1Price" | "pool__totalValueLockedETH" | "pool__totalValueLockedToken0" | "pool__totalValueLockedToken1" | "pool__totalValueLockedUSD" | "pool__totalValueLockedUSDUntracked" | "pool__txCount" | "pool__untrackedVolumeUSD" | "pool__volumeToken0" | "pool__volumeToken1" | "pool__volumeUSD" | "price0" | "price1" | "tickIdx";
4901
- type Token = {
4899
+ export type Tick_OrderBy = "createdAtBlockNumber" | "createdAtTimestamp" | "id" | "liquidityGross" | "liquidityNet" | "pool" | "poolAddress" | "pool__collectedFeesToken0" | "pool__collectedFeesToken1" | "pool__collectedFeesUSD" | "pool__createdAtBlockNumber" | "pool__createdAtTimestamp" | "pool__feeTier" | "pool__feesUSD" | "pool__id" | "pool__liquidity" | "pool__liquidityProviderCount" | "pool__observationIndex" | "pool__sqrtPrice" | "pool__tick" | "pool__token0Price" | "pool__token1Price" | "pool__totalValueLockedETH" | "pool__totalValueLockedToken0" | "pool__totalValueLockedToken1" | "pool__totalValueLockedUSD" | "pool__totalValueLockedUSDUntracked" | "pool__txCount" | "pool__untrackedVolumeUSD" | "pool__volumeToken0" | "pool__volumeToken1" | "pool__volumeUSD" | "price0" | "price1" | "tickIdx";
4900
+ export type Token = {
4902
4901
  decimals: Scalars["BigInt"]["output"];
4903
4902
  derivedETH: Scalars["BigDecimal"]["output"];
4904
4903
  feesUSD: Scalars["BigDecimal"]["output"];
@@ -4917,21 +4916,21 @@ type Token = {
4917
4916
  volumeUSD: Scalars["BigDecimal"]["output"];
4918
4917
  whitelistPools: Array<Pool>;
4919
4918
  };
4920
- type TokenTokenDayDataArgs = {
4919
+ export type TokenTokenDayDataArgs = {
4921
4920
  first?: InputMaybe<Scalars["Int"]["input"]>;
4922
4921
  orderBy?: InputMaybe<TokenDayData_OrderBy>;
4923
4922
  orderDirection?: InputMaybe<OrderDirection>;
4924
4923
  skip?: InputMaybe<Scalars["Int"]["input"]>;
4925
4924
  where?: InputMaybe<TokenDayData_Filter>;
4926
4925
  };
4927
- type TokenWhitelistPoolsArgs = {
4926
+ export type TokenWhitelistPoolsArgs = {
4928
4927
  first?: InputMaybe<Scalars["Int"]["input"]>;
4929
4928
  orderBy?: InputMaybe<Pool_OrderBy>;
4930
4929
  orderDirection?: InputMaybe<OrderDirection>;
4931
4930
  skip?: InputMaybe<Scalars["Int"]["input"]>;
4932
4931
  where?: InputMaybe<Pool_Filter>;
4933
4932
  };
4934
- type TokenDayData = {
4933
+ export type TokenDayData = {
4935
4934
  close: Scalars["BigDecimal"]["output"];
4936
4935
  date: Scalars["Int"]["output"];
4937
4936
  feesUSD: Scalars["BigDecimal"]["output"];
@@ -4947,7 +4946,7 @@ type TokenDayData = {
4947
4946
  volume: Scalars["BigDecimal"]["output"];
4948
4947
  volumeUSD: Scalars["BigDecimal"]["output"];
4949
4948
  };
4950
- type TokenDayData_Filter = {
4949
+ export type TokenDayData_Filter = {
4951
4950
  /** Filter for the block changed event. */
4952
4951
  _change_block?: InputMaybe<BlockChangedFilter>;
4953
4952
  and?: InputMaybe<Array<InputMaybe<TokenDayData_Filter>>>;
@@ -5078,8 +5077,8 @@ type TokenDayData_Filter = {
5078
5077
  volume_not?: InputMaybe<Scalars["BigDecimal"]["input"]>;
5079
5078
  volume_not_in?: InputMaybe<Array<Scalars["BigDecimal"]["input"]>>;
5080
5079
  };
5081
- type TokenDayData_OrderBy = "close" | "date" | "feesUSD" | "high" | "id" | "low" | "open" | "priceUSD" | "token" | "token__decimals" | "token__derivedETH" | "token__feesUSD" | "token__id" | "token__name" | "token__poolCount" | "token__symbol" | "token__totalSupply" | "token__totalValueLocked" | "token__totalValueLockedUSD" | "token__totalValueLockedUSDUntracked" | "token__txCount" | "token__untrackedVolumeUSD" | "token__volume" | "token__volumeUSD" | "totalValueLocked" | "totalValueLockedUSD" | "untrackedVolumeUSD" | "volume" | "volumeUSD";
5082
- type TokenHourData = {
5080
+ export type TokenDayData_OrderBy = "close" | "date" | "feesUSD" | "high" | "id" | "low" | "open" | "priceUSD" | "token" | "token__decimals" | "token__derivedETH" | "token__feesUSD" | "token__id" | "token__name" | "token__poolCount" | "token__symbol" | "token__totalSupply" | "token__totalValueLocked" | "token__totalValueLockedUSD" | "token__totalValueLockedUSDUntracked" | "token__txCount" | "token__untrackedVolumeUSD" | "token__volume" | "token__volumeUSD" | "totalValueLocked" | "totalValueLockedUSD" | "untrackedVolumeUSD" | "volume" | "volumeUSD";
5081
+ export type TokenHourData = {
5083
5082
  close: Scalars["BigDecimal"]["output"];
5084
5083
  feesUSD: Scalars["BigDecimal"]["output"];
5085
5084
  high: Scalars["BigDecimal"]["output"];
@@ -5095,7 +5094,7 @@ type TokenHourData = {
5095
5094
  volume: Scalars["BigDecimal"]["output"];
5096
5095
  volumeUSD: Scalars["BigDecimal"]["output"];
5097
5096
  };
5098
- type TokenHourData_Filter = {
5097
+ export type TokenHourData_Filter = {
5099
5098
  /** Filter for the block changed event. */
5100
5099
  _change_block?: InputMaybe<BlockChangedFilter>;
5101
5100
  and?: InputMaybe<Array<InputMaybe<TokenHourData_Filter>>>;
@@ -5226,8 +5225,8 @@ type TokenHourData_Filter = {
5226
5225
  volume_not?: InputMaybe<Scalars["BigDecimal"]["input"]>;
5227
5226
  volume_not_in?: InputMaybe<Array<Scalars["BigDecimal"]["input"]>>;
5228
5227
  };
5229
- type TokenHourData_OrderBy = "close" | "feesUSD" | "high" | "id" | "low" | "open" | "periodStartUnix" | "priceUSD" | "token" | "token__decimals" | "token__derivedETH" | "token__feesUSD" | "token__id" | "token__name" | "token__poolCount" | "token__symbol" | "token__totalSupply" | "token__totalValueLocked" | "token__totalValueLockedUSD" | "token__totalValueLockedUSDUntracked" | "token__txCount" | "token__untrackedVolumeUSD" | "token__volume" | "token__volumeUSD" | "totalValueLocked" | "totalValueLockedUSD" | "untrackedVolumeUSD" | "volume" | "volumeUSD";
5230
- type Token_Filter = {
5228
+ export type TokenHourData_OrderBy = "close" | "feesUSD" | "high" | "id" | "low" | "open" | "periodStartUnix" | "priceUSD" | "token" | "token__decimals" | "token__derivedETH" | "token__feesUSD" | "token__id" | "token__name" | "token__poolCount" | "token__symbol" | "token__totalSupply" | "token__totalValueLocked" | "token__totalValueLockedUSD" | "token__totalValueLockedUSDUntracked" | "token__txCount" | "token__untrackedVolumeUSD" | "token__volume" | "token__volumeUSD" | "totalValueLocked" | "totalValueLockedUSD" | "untrackedVolumeUSD" | "volume" | "volumeUSD";
5229
+ export type Token_Filter = {
5231
5230
  /** Filter for the block changed event. */
5232
5231
  _change_block?: InputMaybe<BlockChangedFilter>;
5233
5232
  and?: InputMaybe<Array<InputMaybe<Token_Filter>>>;
@@ -5387,14 +5386,14 @@ type Token_Filter = {
5387
5386
  whitelistPools_not_contains?: InputMaybe<Array<Scalars["String"]["input"]>>;
5388
5387
  whitelistPools_not_contains_nocase?: InputMaybe<Array<Scalars["String"]["input"]>>;
5389
5388
  };
5390
- type Token_OrderBy = "decimals" | "derivedETH" | "feesUSD" | "id" | "name" | "poolCount" | "symbol" | "tokenDayData" | "totalSupply" | "totalValueLocked" | "totalValueLockedUSD" | "totalValueLockedUSDUntracked" | "txCount" | "untrackedVolumeUSD" | "volume" | "volumeUSD" | "whitelistPools";
5391
- type Totals = {
5389
+ export type Token_OrderBy = "decimals" | "derivedETH" | "feesUSD" | "id" | "name" | "poolCount" | "symbol" | "tokenDayData" | "totalSupply" | "totalValueLocked" | "totalValueLockedUSD" | "totalValueLockedUSDUntracked" | "txCount" | "untrackedVolumeUSD" | "volume" | "volumeUSD" | "whitelistPools";
5390
+ export type Totals = {
5392
5391
  dataAccessFees: Scalars["BigDecimal"]["output"];
5393
5392
  id: Scalars["ID"]["output"];
5394
5393
  totalFileContributions: Scalars["BigInt"]["output"];
5395
5394
  uniqueFileContributors: Scalars["BigInt"]["output"];
5396
5395
  };
5397
- type Totals_Filter = {
5396
+ export type Totals_Filter = {
5398
5397
  /** Filter for the block changed event. */
5399
5398
  _change_block?: InputMaybe<BlockChangedFilter>;
5400
5399
  and?: InputMaybe<Array<InputMaybe<Totals_Filter>>>;
@@ -5432,8 +5431,8 @@ type Totals_Filter = {
5432
5431
  uniqueFileContributors_not?: InputMaybe<Scalars["BigInt"]["input"]>;
5433
5432
  uniqueFileContributors_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
5434
5433
  };
5435
- type Totals_OrderBy = "dataAccessFees" | "id" | "totalFileContributions" | "uniqueFileContributors";
5436
- type Transaction = {
5434
+ export type Totals_OrderBy = "dataAccessFees" | "id" | "totalFileContributions" | "uniqueFileContributors";
5435
+ export type Transaction = {
5437
5436
  blockNumber: Scalars["BigInt"]["output"];
5438
5437
  burns: Array<Maybe<Burn>>;
5439
5438
  collects: Array<Maybe<Collect>>;
@@ -5445,42 +5444,42 @@ type Transaction = {
5445
5444
  swaps: Array<Maybe<Swap>>;
5446
5445
  timestamp: Scalars["BigInt"]["output"];
5447
5446
  };
5448
- type TransactionBurnsArgs = {
5447
+ export type TransactionBurnsArgs = {
5449
5448
  first?: InputMaybe<Scalars["Int"]["input"]>;
5450
5449
  orderBy?: InputMaybe<Burn_OrderBy>;
5451
5450
  orderDirection?: InputMaybe<OrderDirection>;
5452
5451
  skip?: InputMaybe<Scalars["Int"]["input"]>;
5453
5452
  where?: InputMaybe<Burn_Filter>;
5454
5453
  };
5455
- type TransactionCollectsArgs = {
5454
+ export type TransactionCollectsArgs = {
5456
5455
  first?: InputMaybe<Scalars["Int"]["input"]>;
5457
5456
  orderBy?: InputMaybe<Collect_OrderBy>;
5458
5457
  orderDirection?: InputMaybe<OrderDirection>;
5459
5458
  skip?: InputMaybe<Scalars["Int"]["input"]>;
5460
5459
  where?: InputMaybe<Collect_Filter>;
5461
5460
  };
5462
- type TransactionFlashedArgs = {
5461
+ export type TransactionFlashedArgs = {
5463
5462
  first?: InputMaybe<Scalars["Int"]["input"]>;
5464
5463
  orderBy?: InputMaybe<Flash_OrderBy>;
5465
5464
  orderDirection?: InputMaybe<OrderDirection>;
5466
5465
  skip?: InputMaybe<Scalars["Int"]["input"]>;
5467
5466
  where?: InputMaybe<Flash_Filter>;
5468
5467
  };
5469
- type TransactionMintsArgs = {
5468
+ export type TransactionMintsArgs = {
5470
5469
  first?: InputMaybe<Scalars["Int"]["input"]>;
5471
5470
  orderBy?: InputMaybe<Mint_OrderBy>;
5472
5471
  orderDirection?: InputMaybe<OrderDirection>;
5473
5472
  skip?: InputMaybe<Scalars["Int"]["input"]>;
5474
5473
  where?: InputMaybe<Mint_Filter>;
5475
5474
  };
5476
- type TransactionSwapsArgs = {
5475
+ export type TransactionSwapsArgs = {
5477
5476
  first?: InputMaybe<Scalars["Int"]["input"]>;
5478
5477
  orderBy?: InputMaybe<Swap_OrderBy>;
5479
5478
  orderDirection?: InputMaybe<OrderDirection>;
5480
5479
  skip?: InputMaybe<Scalars["Int"]["input"]>;
5481
5480
  where?: InputMaybe<Swap_Filter>;
5482
5481
  };
5483
- type Transaction_Filter = {
5482
+ export type Transaction_Filter = {
5484
5483
  /** Filter for the block changed event. */
5485
5484
  _change_block?: InputMaybe<BlockChangedFilter>;
5486
5485
  and?: InputMaybe<Array<InputMaybe<Transaction_Filter>>>;
@@ -5531,8 +5530,8 @@ type Transaction_Filter = {
5531
5530
  timestamp_not?: InputMaybe<Scalars["BigInt"]["input"]>;
5532
5531
  timestamp_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
5533
5532
  };
5534
- type Transaction_OrderBy = "blockNumber" | "burns" | "collects" | "flashed" | "gasPrice" | "gasUsed" | "id" | "mints" | "swaps" | "timestamp";
5535
- type UniswapDayData = {
5533
+ export type Transaction_OrderBy = "blockNumber" | "burns" | "collects" | "flashed" | "gasPrice" | "gasUsed" | "id" | "mints" | "swaps" | "timestamp";
5534
+ export type UniswapDayData = {
5536
5535
  date: Scalars["Int"]["output"];
5537
5536
  feesUSD: Scalars["BigDecimal"]["output"];
5538
5537
  id: Scalars["ID"]["output"];
@@ -5542,7 +5541,7 @@ type UniswapDayData = {
5542
5541
  volumeUSD: Scalars["BigDecimal"]["output"];
5543
5542
  volumeUSDUntracked: Scalars["BigDecimal"]["output"];
5544
5543
  };
5545
- type UniswapDayData_Filter = {
5544
+ export type UniswapDayData_Filter = {
5546
5545
  /** Filter for the block changed event. */
5547
5546
  _change_block?: InputMaybe<BlockChangedFilter>;
5548
5547
  and?: InputMaybe<Array<InputMaybe<UniswapDayData_Filter>>>;
@@ -5612,8 +5611,8 @@ type UniswapDayData_Filter = {
5612
5611
  volumeUSD_not?: InputMaybe<Scalars["BigDecimal"]["input"]>;
5613
5612
  volumeUSD_not_in?: InputMaybe<Array<Scalars["BigDecimal"]["input"]>>;
5614
5613
  };
5615
- type UniswapDayData_OrderBy = "date" | "feesUSD" | "id" | "tvlUSD" | "txCount" | "volumeETH" | "volumeUSD" | "volumeUSDUntracked";
5616
- type User = {
5614
+ export type UniswapDayData_OrderBy = "date" | "feesUSD" | "id" | "tvlUSD" | "txCount" | "volumeETH" | "volumeUSD" | "volumeUSDUntracked";
5615
+ export type User = {
5617
5616
  fileContributions?: Maybe<Array<DataRegistryProof>>;
5618
5617
  /** All files owned by this user */
5619
5618
  files: Array<File>;
@@ -5623,35 +5622,35 @@ type User = {
5623
5622
  /** All server trust relationships for this user */
5624
5623
  serverTrusts: Array<UserServer>;
5625
5624
  };
5626
- type UserFileContributionsArgs = {
5625
+ export type UserFileContributionsArgs = {
5627
5626
  first?: InputMaybe<Scalars["Int"]["input"]>;
5628
5627
  orderBy?: InputMaybe<DataRegistryProof_OrderBy>;
5629
5628
  orderDirection?: InputMaybe<OrderDirection>;
5630
5629
  skip?: InputMaybe<Scalars["Int"]["input"]>;
5631
5630
  where?: InputMaybe<DataRegistryProof_Filter>;
5632
5631
  };
5633
- type UserFilesArgs = {
5632
+ export type UserFilesArgs = {
5634
5633
  first?: InputMaybe<Scalars["Int"]["input"]>;
5635
5634
  orderBy?: InputMaybe<File_OrderBy>;
5636
5635
  orderDirection?: InputMaybe<OrderDirection>;
5637
5636
  skip?: InputMaybe<Scalars["Int"]["input"]>;
5638
5637
  where?: InputMaybe<File_Filter>;
5639
5638
  };
5640
- type UserPermissionsArgs = {
5639
+ export type UserPermissionsArgs = {
5641
5640
  first?: InputMaybe<Scalars["Int"]["input"]>;
5642
5641
  orderBy?: InputMaybe<Permission_OrderBy>;
5643
5642
  orderDirection?: InputMaybe<OrderDirection>;
5644
5643
  skip?: InputMaybe<Scalars["Int"]["input"]>;
5645
5644
  where?: InputMaybe<Permission_Filter>;
5646
5645
  };
5647
- type UserServerTrustsArgs = {
5646
+ export type UserServerTrustsArgs = {
5648
5647
  first?: InputMaybe<Scalars["Int"]["input"]>;
5649
5648
  orderBy?: InputMaybe<UserServer_OrderBy>;
5650
5649
  orderDirection?: InputMaybe<OrderDirection>;
5651
5650
  skip?: InputMaybe<Scalars["Int"]["input"]>;
5652
5651
  where?: InputMaybe<UserServer_Filter>;
5653
5652
  };
5654
- type UserServer = {
5653
+ export type UserServer = {
5655
5654
  /** Composite ID: userId-serverId */
5656
5655
  id: Scalars["ID"]["output"];
5657
5656
  /** The server that is trusted. */
@@ -5667,7 +5666,7 @@ type UserServer = {
5667
5666
  /** The user who trusts the server. */
5668
5667
  user: User;
5669
5668
  };
5670
- type UserServer_Filter = {
5669
+ export type UserServer_Filter = {
5671
5670
  /** Filter for the block changed event. */
5672
5671
  _change_block?: InputMaybe<BlockChangedFilter>;
5673
5672
  and?: InputMaybe<Array<InputMaybe<UserServer_Filter>>>;
@@ -5757,12 +5756,12 @@ type UserServer_Filter = {
5757
5756
  user_starts_with?: InputMaybe<Scalars["String"]["input"]>;
5758
5757
  user_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
5759
5758
  };
5760
- type UserServer_OrderBy = "id" | "server" | "server__id" | "server__publicKey" | "server__registeredAtBlock" | "server__registeredAtTimestamp" | "server__serverAddress" | "server__transactionHash" | "server__url" | "transactionHash" | "trustedAt" | "trustedAtBlock" | "untrustedAtBlock" | "user" | "user__id";
5761
- type UserTotals = {
5759
+ export type UserServer_OrderBy = "id" | "server" | "server__id" | "server__publicKey" | "server__registeredAtBlock" | "server__registeredAtTimestamp" | "server__serverAddress" | "server__transactionHash" | "server__url" | "transactionHash" | "trustedAt" | "trustedAtBlock" | "untrustedAtBlock" | "user" | "user__id";
5760
+ export type UserTotals = {
5762
5761
  fileContributionsCount: Scalars["BigInt"]["output"];
5763
5762
  id: Scalars["ID"]["output"];
5764
5763
  };
5765
- type UserTotals_Filter = {
5764
+ export type UserTotals_Filter = {
5766
5765
  /** Filter for the block changed event. */
5767
5766
  _change_block?: InputMaybe<BlockChangedFilter>;
5768
5767
  and?: InputMaybe<Array<InputMaybe<UserTotals_Filter>>>;
@@ -5784,8 +5783,8 @@ type UserTotals_Filter = {
5784
5783
  id_not_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
5785
5784
  or?: InputMaybe<Array<InputMaybe<UserTotals_Filter>>>;
5786
5785
  };
5787
- type UserTotals_OrderBy = "fileContributionsCount" | "id";
5788
- type User_Filter = {
5786
+ export type UserTotals_OrderBy = "fileContributionsCount" | "id";
5787
+ export type User_Filter = {
5789
5788
  /** Filter for the block changed event. */
5790
5789
  _change_block?: InputMaybe<BlockChangedFilter>;
5791
5790
  and?: InputMaybe<Array<InputMaybe<User_Filter>>>;
@@ -5803,8 +5802,8 @@ type User_Filter = {
5803
5802
  permissions_?: InputMaybe<Permission_Filter>;
5804
5803
  serverTrusts_?: InputMaybe<UserServer_Filter>;
5805
5804
  };
5806
- type User_OrderBy = "fileContributions" | "files" | "id" | "permissions" | "serverTrusts";
5807
- type _Block_ = {
5805
+ export type User_OrderBy = "fileContributions" | "files" | "id" | "permissions" | "serverTrusts";
5806
+ export type _Block_ = {
5808
5807
  /** The hash of the block */
5809
5808
  hash?: Maybe<Scalars["Bytes"]["output"]>;
5810
5809
  /** The block number */
@@ -5815,7 +5814,7 @@ type _Block_ = {
5815
5814
  timestamp?: Maybe<Scalars["Int"]["output"]>;
5816
5815
  };
5817
5816
  /** The type for the top-level _meta field */
5818
- type _Meta_ = {
5817
+ export type _Meta_ = {
5819
5818
  /**
5820
5819
  * Information about a specific subgraph block. The hash of the block
5821
5820
  * will be null if the _meta field has a block constraint that asks for
@@ -5829,15 +5828,15 @@ type _Meta_ = {
5829
5828
  /** If `true`, the subgraph encountered indexing errors at some past block */
5830
5829
  hasIndexingErrors: Scalars["Boolean"]["output"];
5831
5830
  };
5832
- type _SubgraphErrorPolicy_ =
5831
+ export type _SubgraphErrorPolicy_ =
5833
5832
  /** Data will be returned even if the subgraph has indexing errors */
5834
5833
  "allow"
5835
5834
  /** If the subgraph has indexing errors, data will be omitted. The default. */
5836
5835
  | "deny";
5837
- type GetUserPermissionsQueryVariables = Exact<{
5836
+ export type GetUserPermissionsQueryVariables = Exact<{
5838
5837
  userId: Scalars["ID"]["input"];
5839
5838
  }>;
5840
- type GetUserPermissionsQuery = {
5839
+ export type GetUserPermissionsQuery = {
5841
5840
  user?: {
5842
5841
  id: string;
5843
5842
  permissions: Array<{
@@ -5863,10 +5862,10 @@ type GetUserPermissionsQuery = {
5863
5862
  }>;
5864
5863
  } | null;
5865
5864
  };
5866
- type GetUserTrustedServersQueryVariables = Exact<{
5865
+ export type GetUserTrustedServersQueryVariables = Exact<{
5867
5866
  userId: Scalars["ID"]["input"];
5868
5867
  }>;
5869
- type GetUserTrustedServersQuery = {
5868
+ export type GetUserTrustedServersQuery = {
5870
5869
  user?: {
5871
5870
  id: string;
5872
5871
  serverTrusts: Array<{
@@ -5884,10 +5883,10 @@ type GetUserTrustedServersQuery = {
5884
5883
  }>;
5885
5884
  } | null;
5886
5885
  };
5887
- type GetUserFilesQueryVariables = Exact<{
5886
+ export type GetUserFilesQueryVariables = Exact<{
5888
5887
  userId: Scalars["ID"]["input"];
5889
5888
  }>;
5890
- type GetUserFilesQuery = {
5889
+ export type GetUserFilesQuery = {
5891
5890
  user?: {
5892
5891
  id: string;
5893
5892
  files: Array<{
@@ -5903,10 +5902,10 @@ type GetUserFilesQuery = {
5903
5902
  }>;
5904
5903
  } | null;
5905
5904
  };
5906
- type GetFileProofsQueryVariables = Exact<{
5905
+ export type GetFileProofsQueryVariables = Exact<{
5907
5906
  fileIds: Array<Scalars["BigInt"]["input"]> | Scalars["BigInt"]["input"];
5908
5907
  }>;
5909
- type GetFileProofsQuery = {
5908
+ export type GetFileProofsQuery = {
5910
5909
  dataRegistryProofs: Array<{
5911
5910
  fileId: string;
5912
5911
  dlp?: {
@@ -5914,10 +5913,10 @@ type GetFileProofsQuery = {
5914
5913
  } | null;
5915
5914
  }>;
5916
5915
  };
5917
- type GetDlpQueryVariables = Exact<{
5916
+ export type GetDlpQueryVariables = Exact<{
5918
5917
  id: Scalars["ID"]["input"];
5919
5918
  }>;
5920
- type GetDlpQuery = {
5919
+ export type GetDlpQuery = {
5921
5920
  dlp?: {
5922
5921
  id: string;
5923
5922
  name?: string | null;
@@ -5927,10 +5926,10 @@ type GetDlpQuery = {
5927
5926
  owner?: string | null;
5928
5927
  } | null;
5929
5928
  };
5930
- type GetSchemaQueryVariables = Exact<{
5929
+ export type GetSchemaQueryVariables = Exact<{
5931
5930
  id: Scalars["ID"]["input"];
5932
5931
  }>;
5933
- type GetSchemaQuery = {
5932
+ export type GetSchemaQuery = {
5934
5933
  schema?: {
5935
5934
  id: string;
5936
5935
  name: string;
@@ -5946,11 +5945,11 @@ type GetSchemaQuery = {
5946
5945
  }>;
5947
5946
  } | null;
5948
5947
  };
5949
- type ListSchemasQueryVariables = Exact<{
5948
+ export type ListSchemasQueryVariables = Exact<{
5950
5949
  first: Scalars["Int"]["input"];
5951
5950
  skip: Scalars["Int"]["input"];
5952
5951
  }>;
5953
- type ListSchemasQuery = {
5952
+ export type ListSchemasQuery = {
5954
5953
  schemas: Array<{
5955
5954
  id: string;
5956
5955
  name: string;
@@ -5961,21 +5960,19 @@ type ListSchemasQuery = {
5961
5960
  createdTxHash: string;
5962
5961
  }>;
5963
5962
  };
5964
- type CountSchemasQueryVariables = Exact<{
5963
+ export type CountSchemasQueryVariables = Exact<{
5965
5964
  [key: string]: never;
5966
5965
  }>;
5967
- type CountSchemasQuery = {
5966
+ export type CountSchemasQuery = {
5968
5967
  schemas: Array<{
5969
5968
  id: string;
5970
5969
  }>;
5971
5970
  };
5972
- declare const GetUserPermissionsDocument: TypedDocumentNode<GetUserPermissionsQuery, GetUserPermissionsQueryVariables>;
5973
- declare const GetUserTrustedServersDocument: TypedDocumentNode<GetUserTrustedServersQuery, GetUserTrustedServersQueryVariables>;
5974
- declare const GetUserFilesDocument: TypedDocumentNode<GetUserFilesQuery, GetUserFilesQueryVariables>;
5975
- declare const GetFileProofsDocument: TypedDocumentNode<GetFileProofsQuery, GetFileProofsQueryVariables>;
5976
- declare const GetDlpDocument: TypedDocumentNode<GetDlpQuery, GetDlpQueryVariables>;
5977
- declare const GetSchemaDocument: TypedDocumentNode<GetSchemaQuery, GetSchemaQueryVariables>;
5978
- declare const ListSchemasDocument: TypedDocumentNode<ListSchemasQuery, ListSchemasQueryVariables>;
5979
- declare const CountSchemasDocument: TypedDocumentNode<CountSchemasQuery, CountSchemasQueryVariables>;
5980
-
5981
- export { type Aggregation_Interval, type BlockChangedFilter, type Block_Height, type Bundle, type Bundle_Filter, type Bundle_OrderBy, type Burn, type Burn_Filter, type Burn_OrderBy, type Collect, type Collect_Filter, type Collect_OrderBy, CountSchemasDocument, type CountSchemasQuery, type CountSchemasQueryVariables, type DataRegistryProof, type DataRegistryProof_Filter, type DataRegistryProof_OrderBy, type Dlp, type DlpList, type DlpList_Filter, type DlpList_OrderBy, type DlpPerformance, type DlpPerformance_Filter, type DlpPerformance_OrderBy, type DlpPerformancesArgs, type DlpRefinersArgs, type DlpReward, type DlpReward_Filter, type DlpReward_OrderBy, type Dlp_Filter, type Dlp_OrderBy, type Epoch, type EpochPerformancesArgs, type EpochReference, type EpochReference_Filter, type EpochReference_OrderBy, type Epoch_Filter, type Epoch_OrderBy, type Exact, type Factory, type Factory_Filter, type Factory_OrderBy, type File, type File_Filter, type File_OrderBy, type Flash, type Flash_Filter, type Flash_OrderBy, GetDlpDocument, type GetDlpQuery, type GetDlpQueryVariables, GetFileProofsDocument, type GetFileProofsQuery, type GetFileProofsQueryVariables, GetSchemaDocument, type GetSchemaQuery, type GetSchemaQueryVariables, GetUserFilesDocument, type GetUserFilesQuery, type GetUserFilesQueryVariables, GetUserPermissionsDocument, type GetUserPermissionsQuery, type GetUserPermissionsQueryVariables, GetUserTrustedServersDocument, type GetUserTrustedServersQuery, type GetUserTrustedServersQueryVariables, type Grantee, type GranteePermissionsArgs, type Grantee_Filter, type Grantee_OrderBy, type Incremental, type InputMaybe, ListSchemasDocument, type ListSchemasQuery, type ListSchemasQueryVariables, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type Mint, type Mint_Filter, type Mint_OrderBy, type OrderDirection, type Params, type Params_Filter, type Params_OrderBy, type PaymentReceived, type PaymentReceived_Filter, type PaymentReceived_OrderBy, type PerformanceDlpEpochUser, type PerformanceDlpEpochUser_Filter, type PerformanceDlpEpochUser_OrderBy, type Permission, type PermissionFile, type PermissionFilePermissionsArgs, type PermissionFile_Filter, type PermissionFile_OrderBy, type Permission_Filter, type Permission_OrderBy, type Pool, type PoolBurnsArgs, type PoolCollectsArgs, type PoolDayData, type PoolDayData_Filter, type PoolDayData_OrderBy, type PoolHourData, type PoolHourData_Filter, type PoolHourData_OrderBy, type PoolMintsArgs, type PoolPoolDayDataArgs, type PoolPoolHourDataArgs, type PoolSwapsArgs, type PoolTicksArgs, type Pool_Filter, type Pool_OrderBy, type Query, type QueryBundleArgs, type QueryBundlesArgs, type QueryBurnArgs, type QueryBurnsArgs, type QueryCollectArgs, type QueryCollectsArgs, type QueryDataRegistryProofArgs, type QueryDataRegistryProofsArgs, type QueryDlpArgs, type QueryDlpListArgs, type QueryDlpListsArgs, type QueryDlpPerformanceArgs, type QueryDlpPerformancesArgs, type QueryDlpRewardArgs, type QueryDlpRewardsArgs, type QueryDlpsArgs, type QueryEpochArgs, type QueryEpochReferenceArgs, type QueryEpochReferencesArgs, type QueryEpochesArgs, type QueryFactoriesArgs, type QueryFactoryArgs, type QueryFileArgs, type QueryFilesArgs, type QueryFlashArgs, type QueryFlashesArgs, type QueryGranteeArgs, type QueryGranteesArgs, type QueryMintArgs, type QueryMintsArgs, type QueryParamsArgs, type QueryParams_CollectionArgs, type QueryPaymentReceivedArgs, type QueryPaymentReceivedsArgs, type QueryPerformanceDlpEpochUserArgs, type QueryPerformanceDlpEpochUsersArgs, type QueryPermissionArgs, type QueryPermissionFileArgs, type QueryPermissionFilesArgs, type QueryPermissionsArgs, type QueryPoolArgs, type QueryPoolDayDataArgs, type QueryPoolDayDatasArgs, type QueryPoolHourDataArgs, type QueryPoolHourDatasArgs, type QueryPoolsArgs, type QueryRefinerArgs, type QueryRefinersArgs, type QuerySchemaArgs, type QuerySchemasArgs, type QueryServerArgs, type QueryServersArgs, type QuerySwapArgs, type QuerySwapsArgs, type QueryTickArgs, type QueryTicksArgs, type QueryTokenArgs, type QueryTokenDayDataArgs, type QueryTokenDayDatasArgs, type QueryTokenHourDataArgs, type QueryTokenHourDatasArgs, type QueryTokensArgs, type QueryTotalsArgs, type QueryTotals_CollectionArgs, type QueryTransactionArgs, type QueryTransactionsArgs, type QueryUniswapDayDataArgs, type QueryUniswapDayDatasArgs, type QueryUserArgs, type QueryUserServerArgs, type QueryUserServersArgs, type QueryUserTotalsArgs, type QueryUserTotals_CollectionArgs, type QueryUsersArgs, type Query_MetaArgs, type Refiner, type RefinerPaymentsArgs, type Refiner_Filter, type Refiner_OrderBy, type Scalars, type Schema, type SchemaRefinersArgs, type Schema_Filter, type Schema_OrderBy, type Server, type ServerUserTrustsArgs, type Server_Filter, type Server_OrderBy, type Subscription, type SubscriptionBundleArgs, type SubscriptionBundlesArgs, type SubscriptionBurnArgs, type SubscriptionBurnsArgs, type SubscriptionCollectArgs, type SubscriptionCollectsArgs, type SubscriptionDataRegistryProofArgs, type SubscriptionDataRegistryProofsArgs, type SubscriptionDlpArgs, type SubscriptionDlpListArgs, type SubscriptionDlpListsArgs, type SubscriptionDlpPerformanceArgs, type SubscriptionDlpPerformancesArgs, type SubscriptionDlpRewardArgs, type SubscriptionDlpRewardsArgs, type SubscriptionDlpsArgs, type SubscriptionEpochArgs, type SubscriptionEpochReferenceArgs, type SubscriptionEpochReferencesArgs, type SubscriptionEpochesArgs, type SubscriptionFactoriesArgs, type SubscriptionFactoryArgs, type SubscriptionFileArgs, type SubscriptionFilesArgs, type SubscriptionFlashArgs, type SubscriptionFlashesArgs, type SubscriptionGranteeArgs, type SubscriptionGranteesArgs, type SubscriptionMintArgs, type SubscriptionMintsArgs, type SubscriptionParamsArgs, type SubscriptionParams_CollectionArgs, type SubscriptionPaymentReceivedArgs, type SubscriptionPaymentReceivedsArgs, type SubscriptionPerformanceDlpEpochUserArgs, type SubscriptionPerformanceDlpEpochUsersArgs, type SubscriptionPermissionArgs, type SubscriptionPermissionFileArgs, type SubscriptionPermissionFilesArgs, type SubscriptionPermissionsArgs, type SubscriptionPoolArgs, type SubscriptionPoolDayDataArgs, type SubscriptionPoolDayDatasArgs, type SubscriptionPoolHourDataArgs, type SubscriptionPoolHourDatasArgs, type SubscriptionPoolsArgs, type SubscriptionRefinerArgs, type SubscriptionRefinersArgs, type SubscriptionSchemaArgs, type SubscriptionSchemasArgs, type SubscriptionServerArgs, type SubscriptionServersArgs, type SubscriptionSwapArgs, type SubscriptionSwapsArgs, type SubscriptionTickArgs, type SubscriptionTicksArgs, type SubscriptionTokenArgs, type SubscriptionTokenDayDataArgs, type SubscriptionTokenDayDatasArgs, type SubscriptionTokenHourDataArgs, type SubscriptionTokenHourDatasArgs, type SubscriptionTokensArgs, type SubscriptionTotalsArgs, type SubscriptionTotals_CollectionArgs, type SubscriptionTransactionArgs, type SubscriptionTransactionsArgs, type SubscriptionUniswapDayDataArgs, type SubscriptionUniswapDayDatasArgs, type SubscriptionUserArgs, type SubscriptionUserServerArgs, type SubscriptionUserServersArgs, type SubscriptionUserTotalsArgs, type SubscriptionUserTotals_CollectionArgs, type SubscriptionUsersArgs, type Subscription_MetaArgs, type Swap, type Swap_Filter, type Swap_OrderBy, type Tick, type Tick_Filter, type Tick_OrderBy, type Token, type TokenDayData, type TokenDayData_Filter, type TokenDayData_OrderBy, type TokenHourData, type TokenHourData_Filter, type TokenHourData_OrderBy, type TokenTokenDayDataArgs, type TokenWhitelistPoolsArgs, type Token_Filter, type Token_OrderBy, type Totals, type Totals_Filter, type Totals_OrderBy, type Transaction, type TransactionBurnsArgs, type TransactionCollectsArgs, type TransactionFlashedArgs, type TransactionMintsArgs, type TransactionSwapsArgs, type Transaction_Filter, type Transaction_OrderBy, type UniswapDayData, type UniswapDayData_Filter, type UniswapDayData_OrderBy, type User, type UserFileContributionsArgs, type UserFilesArgs, type UserPermissionsArgs, type UserServer, type UserServerTrustsArgs, type UserServer_Filter, type UserServer_OrderBy, type UserTotals, type UserTotals_Filter, type UserTotals_OrderBy, type User_Filter, type User_OrderBy, type _Block_, type _Meta_, type _SubgraphErrorPolicy_ };
5971
+ export declare const GetUserPermissionsDocument: DocumentNode<GetUserPermissionsQuery, GetUserPermissionsQueryVariables>;
5972
+ export declare const GetUserTrustedServersDocument: DocumentNode<GetUserTrustedServersQuery, GetUserTrustedServersQueryVariables>;
5973
+ export declare const GetUserFilesDocument: DocumentNode<GetUserFilesQuery, GetUserFilesQueryVariables>;
5974
+ export declare const GetFileProofsDocument: DocumentNode<GetFileProofsQuery, GetFileProofsQueryVariables>;
5975
+ export declare const GetDlpDocument: DocumentNode<GetDlpQuery, GetDlpQueryVariables>;
5976
+ export declare const GetSchemaDocument: DocumentNode<GetSchemaQuery, GetSchemaQueryVariables>;
5977
+ export declare const ListSchemasDocument: DocumentNode<ListSchemasQuery, ListSchemasQueryVariables>;
5978
+ export declare const CountSchemasDocument: DocumentNode<CountSchemasQuery, CountSchemasQueryVariables>;